/* @import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=ADLaM+Display&display=swap");

body {
  /* font-family: "Cabin", sans-serif; */
  font-family: "ADLaM Display", cursive;
  background-color: #121212;
}

.logo {
  position: fixed;
  top: 90px;
  left: 100px;
  height: 80px;
  transform: translate(-50%, -50%);
}

.copyright {
  position: fixed;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-size: 12px;
  text-align: center;
  width: 100%;
}

#scroll-down-animation {
  cursor: pointer;
  margin-bottom: 30px;
}

#scroll-down-animation p {
  padding-bottom: 10px;
  color: #fff;
}

#scroll-up-animation {
  cursor: pointer;
  margin-bottom: 30px;
}

#scroll-up-animation p {
  padding-bottom: 10px;
  color: #fff;
}

.mouse {
  margin: 0 auto;
  display: block;
  border-radius: 50px;
  border: 2px solid #fff;
  height: 50px;
  width: 25px;
  position: relative;
}

.move {
  position: absolute;
  background-color: #fff;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: move 2s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, 15px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 25px);
    opacity: 0;
  }
}

.moveup {
  position: absolute;
  background-color: #fff;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: moveup 2s linear infinite;
}

@keyframes moveup {
  0% {
    transform: translate(-50%, 25px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, 15px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
}

#searchthis {
  position: fixed;
  width: 100%;
  max-width: 900px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20vh;
  margin: 20px;
}

#search-btn {
  background: #0099ff;
  color: white;
  font: "trebuchet ms", trebuchet;
  padding: 20px 30px;
  border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
  border: 0 none;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}

#search-box {
  background: #eee;
  padding: 20px 30px;
  border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  border: 0 none;
  width: calc(100% - 100px);
  font-size: 18px;
}

.arrow-icon {
  height: 17px;
  width: 40px;
}

@media only screen and (max-width: 600px) {
  #search-btn {
    padding: 10px 10px;
    font-size: 14px;
  }
  #search-box {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.popupOverlay {
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.popup {
  background-color: #ffffff;
  width: 420px;
  padding: 30px 40px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border-radius: 8px;
  display: none;
  text-align: center;
  z-index: 999;
}
.popup h2 {
  padding-bottom: 10px;
}
.popup p {
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
  line-height: 25px;
  padding-bottom: 10px;
}
.popup a {
  display: block;
  width: 150px;
  position: relative;
  margin: 10px auto;
  text-align: center;
  background-color: #0099ff;
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 0;
}

.preloader {
  height: 100vh;
  width: 100vw;
  position: absolute;
  z-index: 999;
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  animation: fadeInBg ease 6s;
  opacity: 0;
  visibility: hidden;
}

#particles-js {
  width: 100%;
  height: 100%;
  background: #111111;
}

.preLoadLogo {
  position: fixed;
  top: 90px;
  left: 100px;
  height: 80px;
  animation: fadeIn ease 4s;
  height: 80px;
  width: auto;
  max-width: 400px;
  transform: translate(-50%, -50%);
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    top: 50%;
    left: 50%;
    opacity: 0;
    max-width: 10px;
    height: 100%;
    width: 90%;
  }
  10% {
    top: 50%;
    left: 50%;
    opacity: 1;
    height: 100%;
    width: 90%;
  }
  60% {
    top: 50%;
    left: 50%;
    opacity: 1;
    height: 100%;
    width: 90%;
  }
  70% {
    top: 50%;
    left: 50%;
    opacity: 1;
    height: 100%;
    width: 90%;
  }
  100% {
    opacity: 0;
    width: auto;
    top: 50%;
    left: 50%;
    height: 80px;
  }
}

@keyframes fadeInBg {
  0% {
    opacity: 1;
    visibility: visible;
  }
  66% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
