* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
.load{
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  z-index: 99999;
  perspective: 500px;
  transition:all .3s ease;
}
.spinner{
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.spinner::before,
.spinner::after{
  content: "";
  position: absolute;
  border-radius: inherit;
}
.spinner:before{
  width: 100%;
  height: 100%;
  background-image:linear-gradient(0deg, #ff00cc 0%,
  #333399 100%);
  animation: spin .5s infinite linear;
}
.spinner:after{
  width: 85%;
  height: 85%;
  background-color: black;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes spin {
  to{
    transform:rotate(360deg);
  }
}
.hero {
  width: 100%;
  height: 100vh;
  background-image: url(./image/Smoke.png);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.logo {
  width: 100px;
  cursor: pointer;
}
.navbar {
  width: 85%;
  height: 15%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

button {
  /* color: #eaecf5;
  padding: 10px 25px;
  border: 1px solid #fbfcfd;
  background: transparent;
  border-radius: 50px;
  outline: none;
  cursor:pointer; */
  color: #fbfcfd;
  padding: 10px 25px;
  border: 1px solid #fbfcfd;
  background: transparent;
  border-radius: 50px;
  outline: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: cursive;
}
.navbar button:hover {
  background: aqua;
  color: #3d3d3d;
  box-shadow: 0 0 4px 6px rgb(103, 238, 238), 0 0 8px 8px rgb(165, 248, 248);
  transition: 0.3s ease-in;
  font-size: 1.2rem;
  transform: skewY(30px);
  
}
.content {
  color: #fbfcfd;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
}
.content button:hover {
  background: aqua;
  color: #3d3d3d;
  box-shadow: 0 0 4px 6px rgb(103, 238, 238), 0 0 8px 8px rgb(165, 248, 248);
  transition: 0.3s ease-in;
}
h1 {
  font-size: 80px;
  margin: 10px 0 30px;
  line-height: 80px;
}
.side-bar {
  width: 50px;
  height: 100vh;
  background: linear-gradient(#00545d, #000729);
  position: absolute;
  right: 0;
  top: 0;
}
.menu {
  display: block;
  width: 25px;
  margin: 40px auto 0;
  cursor: pointer;
}

.side-bar .menu-bar{
  position: absolute;
  width: 200px;
  height: 300px;
  margin-top:45%;
  right: -13rem;
  display: grid;
  align-items: center;
  gap: 3px 0;
  list-style-type: none;
  color: #fff;
  transition:.3s ease;
  border-radius: 5%;
  outline-offset: -0.4rem;
}
.side-bar .menu-bar li{
  font-weight: 900;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  opacity: 1; 
  
}
.side-bar .menu-bar li::after{
  position: absolute;
  content: "";
  height: 2px;
  background-color: rgba(71, 205, 50, 0.672);
  bottom:  0; 
  left:50%;
  width: 0;
  transition: all 0.3s;
}
.side-bar .menu-bar li:hover:after{
  left: 0;
  width: 100%;
}
.menu-bar:hover{
  outline: 0.1rem solid rgba(78, 235, 16, 0.87);
  outline-offset: 0rem;
  /* transition: .3s ease-in; */
}

 .menu-bar.active{
  right: 2.8rem; 
  text-align: center;
  background-color:rgb(41, 81, 124);
  /* transition: .3s linear; */
  opacity:0.88;
}


.social-links img,
.useful-links img {
  width: 25px;
  margin: 5px auto;
  cursor: pointer;
}
.social-links {
  width: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.social-links img:hover{
  cursor: pointer;
}
.useful-links {
  width: 50px;
  text-align: center;
  position: absolute;
  bottom: 30px;
}
.bubbles img {
  width: 50px;
  animation: bubble 7s linear infinite;
}
.bubbles {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  bottom: -70px;
}
@keyframes bubble {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(-80vh);
    opacity: 0;
  }
}
.bubbles img:nth-child(1) {
  animation-delay: 2s;
  width: 25px;
}
.bubbles img:nth-child(2) {
  animation-delay: 1s;
  width: 35px;
}
.bubbles img:nth-child(3) {
  animation-delay: 3s;
  width: 20px;
}
.bubbles img:nth-child(4) {
  animation-delay: 4.5s;
  width: 25px;
}
.bubbles img:nth-child(5) {
  animation-delay: 3s;
  width: 20px;
}
.bubbles img:nth-child(6) {
  animation-delay: 6s;
  width: 35px;
}
.bubbles img:nth-child(7) {
  animation-delay: 7s;
  width: 30px;
}
footer {
  background-color: #000729;
  text-align: center;
  bottom: 20px;
}
footer span {
  color: white;
}
footer .foot {
  color: #fff;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  align-items: center;
  opacity: 0.7;
}
footer h5 {
  color: aliceblue;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
