@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@400;600;700;800&display=swap");

body,
html {
  overflow-x: hidden;
  font-family: "Mukta", sans-serif;
  background-color: var(--dark-blue);
}

:root {
  --font-normal: 16px;
  --font-sm: 18px;
  --font-md: 24px;
  --font-lg: 36px;
  --font-xl: 48px;
  --font-xxl: 80px;
  --dark-blue: #1c0d38;
  --light-blue: rgba(43, 61, 251, 1);
  --white: rgba(255, 255, 255, 1);
  --black: #000000;
}

.font-normal {
  font-size: var(--font-normal) !important;
}

.font-sm {
  font-size: var(--font-sm) !important;
}

.font-md {
  font-size: var(--font-md) !important;
}

.font-lg {
  font-size: var(--font-lg) !important;
}

.font-xl {
  font-size: var(--font-xl) !important;
}

.font-xxl {
  font-size: var(--font-xxl) !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.slick-slider {
  margin: 0 -15px;
}

.slick-slide {
  margin: 0 20px;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-xtra-bold {
  font-weight: 800 !important;
}

.text-white {
  color: var(--white) !important;
}

/* ================================== COMMON CLASS START  ================================================== */
.main-heading {
  font-size: var(--font-xxl);
  font-weight: 800;
}

.heading {
  font-size: var(--font-xl);
  font-weight: 700;
}

.sub-heading {
  font-size: var(--font-lg);
  font-weight: 700;
}

.small-heading {
  font-size: var(--font-sm);
  font-weight: 600;
}

.para {
  font-size: var(--font-sm);
  font-weight: 400;
}

.common-btn {
  font-size: var(--font-normal);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(180.21deg, #5a25c4 27.38%, #2b3dfb 99.81%);
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.common-btn:hover {
  color: var(--white);
  opacity: 0.8;
}

.cursor-pointer {
  cursor: pointer;
}

.opacity-70 {
  opacity: 70%;
}

/* ================================== COMMON CLASS END ================================================== */
/* =====================================NAVBAR-CSS======================== */
/* SCROLL TOP CSS START */
.social-icons img {
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.social-icons img:hover {
  /* box-shadow: 0px 0px 10px #fff; */
  transform: translateY(-8px);
}

#scroll {
  position: fixed;
  z-index: 999999;
  right: 20px;
  top: 88%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: var(--yellow);
  box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.09);
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  border-radius: 60px;
  background-image: url("../images/svg/up-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  animation: moves 3s ease-in-out infinite;
}

@keyframes moves {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

#scroll:hover {
  opacity: 0.8;
  box-shadow: 0px 0px 20px white;
}

#scroll:hover span {
  border-bottom-color: white;
}

.z-index {
  position: relative !important;
  z-index: 10;
}

/* NAVBAR-CSS */
.nav-btn {
  border-radius: 8px;
  padding: 6px 15px;
  background: linear-gradient(180.21deg, #5a25c4 27.38%, #2b3dfb 99.81%);
  transition: 0.3s;
}

.nav-btn:hover {
  background-color: transparent !important;
  color: white !important;
  opacity: 0.8;
}

.navbar-bg {
  background: rgba(28, 13, 56, 1);
}

.shadow-white {
  background: rgba(28, 13, 56, 1);
}

.navbar-wrapper .navbar-btns button:hover {
  background-color: transparent;
  color: #0ed145;
}

.navbar-wrapper .navbar-btns button:hover .cmmg-soon {
  display: inline-block;
}

.navbar-wrapper .navbar-btns button:hover .launch-app {
  display: none;
}

.button span {
  display: block;
  border-radius: 6px;
}

/* NAVBAR-HOVER */
.navbar-wrapper .nav-items-list a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  font-weight: 400;
  color: white;
  position: relative;
}

.navbar-wrapper .nav-items-list a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: -7px;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  background-color: white;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
  opacity: 100%;
}

a {
  text-decoration: none !important;
}

.navabar-fixed {
  z-index: 100;
}

.navbar-wrapper .nav-items-list a:hover::after {
  width: 100%;
  left: 0;
}

/* NAVBAR-HOVER-END */
.navbar-wrapper .search-icon {
  z-index: 4;
}

.navbar-wrapper .hamburger-menu {
  position: relative;
  width: 25px;
  cursor: pointer;
  height: 21px;
}

.navbar-wrapper .first {
  top: 0;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-wrapper .sec {
  top: 9px;
  background: #ffffff;
  -webkit-transition: all 0ms 300ms;
  transition: all 0ms 300ms;
}

.navbar-wrapper .third {
  top: 18px;
  -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-wrapper .hamburger-menu span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 10px;
  position: absolute;
  display: inline-block;
  left: 0;
  z-index: 23;
}

.navbar-wrapper .animate .sec {
  opacity: 0;
}

.navbar-wrapper .animate .first {
  top: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-wrapper .animate .third {
  top: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar-wrapper .hamburger-menu.animate span {
  background-color: white;
}

.overlay-btns button:hover {
  background-color: transparent;
  color: #ffffff;
}

@media (max-width: 1199.98px) {
  .fix-screen-mobile {
    height: 100vh;
    overflow: hidden;
  }

  .nav-logo {
    width: 153px;
  }

  .minting-card img {
    opacity: 0.2;
  }

  .overlay-links {
    color: var(--black);
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
  }

  .overlay-links::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 3px;
    left: 0;
    bottom: -5px;
    background-color: white;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
  }

  .overlay-links:hover::after {
    width: 100%;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
  }

  .mobile-view #overlay {
    -webkit-transition: 0.7s ease;
    transition: 0.7s ease;
    opacity: 1;
    pointer-events: all;
    z-index: 15;
  }

  .mobile-view #overlay .left {
    opacity: 1;
    width: 100%;
    height: 100vh;
  }

  .mobile-view #overlay .left .copyright a {
    font-size: 18px;
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left .copyright a:hover {
    text-decoration: none;
  }

  .mobile-view #overlay .left ul li:nth-child(1) {
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left ul li:nth-child(2) {
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left ul li:nth-child(3) {
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left ul li:nth-child(4) {
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left ul li:nth-child(5) {
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left ul li:nth-child(6) {
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left ul li:nth-child(7) {
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left ul li:nth-child(8) {
    -webkit-animation: mymove 0.9s;
    animation: mymove 0.9s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  .mobile-view #overlay .left ul li a {
    font-size: 27px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
  }

  #overlay {
    -webkit-transition: 1s ease !important;
    transition: 1s ease !important;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(28, 13, 56, 1);
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
}

.svg-img {
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.svg-img:hover {
  transform: translateY(-5px);
  box-shadow: 0px 0px 10px #fff;
}

@media (min-width: 576px) {
  .mobile-view #overlay .left ul li a {
    font-size: 29px;
    font-weight: 600;
  }
}

@-webkit-keyframes mymove {
  from {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 1;
  }
}

@keyframes mymove {
  from {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 1;
  }
}

.left,
.right {
  opacity: 0;
}

.left li,
.right li {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.left li a,
.right li a {
  font-size: 30px;
  /* color: #ffffff; */
  text-decoration: none;
}

@media (min-width: 576px) {

  .left li a,
  .right li a {
    font-size: 40px;
  }
}

@media (min-width: 1199.98px) {
  #overlay {
    display: none;
  }
}

@keyframes new {
  0% {
    transform: translateY(-10px);
  }

  25% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  75% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* NAVBAR-CSS-END */
/* ================================== ROADMAP CSS ======================================================= */
.roadmap-content {
  background-image: url("../images/roadmap-content-bg-img.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 26px;
}

.roadmap-circle-phase {
  align-items: center;
  background-image: url("../images/roadmap-circle-bg-img.png");
  background-size: 100% 100%;
  border-radius: 50%;
  width: 113px;
  height: 113px;
  display: flex;
  justify-content: center;
  box-shadow: 0px 0px 18px 1px var(--white);
}

.line:after {
  background-image: url("../images/roadmap-line.png");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  content: "";
  left: 50%;
  position: absolute;
}

.dotted-line-height {
  height: 80px;
}

.roadmap-planet {
  right: 0;
  top: 14%;
}

.roadmap-row .roadmap-content {
  transition: all 0.4s ease-in-out;
}

.roadmap-row:hover .roadmap-content {
  box-shadow: 0px 0px 10px 1px var(--white);
}

/* ======================================================= HERO SECTION =========================================== */
.hero-section {
  background: url("../images/hero-bg.png");
  background-size: cover;
  background-position-x: center;
  min-height: 107vmin;
}

.hero {
  min-height: 80vh;
}

.hero-btn {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  padding: 12px 30px;
}

.hero-section:before {
  background: var(--dark-blue);
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 0;
  bottom: -20px;
  filter: blur(10px);
  height: 60px;
}

/* ======================================================= ABOUT SECTION =========================================== */
.about-sec-img-left {
  top: 72px;
  left: 22px;
  transition: all 0.3s;
}

.about-sec-img-right {
  top: 50%;
  right: 22px;
  transition: all 0.3s ease-in-out;
}

.moving-animation {
  animation: moving-animation linear 2.3s infinite alternate-reverse;
}

@keyframes moving-animation {
  0% {
    transform: translateY(-15px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-15px);
  }
}

.moving-animation-2 {
  animation: moving-animation-2 linear 2.5s infinite alternate-reverse;
}

@keyframes moving-animation-2 {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(8px);
  }
}

.moving-animation-3 {
  animation: moving-animation-3 linear 2.5s infinite alternate-reverse;
}

@keyframes moving-animation-3 {
  0% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

.rotate-animation {
  cursor: pointer;
  transition: 2s;
  -webkit-animation: planet 5s infinite linear;
}

@keyframes planet {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
  }
}

/* ======================================================= CARD SECTION =========================================== */
.team-card {
  border-radius: 25px;
  background: linear-gradient(94.58deg,
      rgba(255, 255, 255, 0.042) 15.58%,
      rgba(255, 255, 255, 0.02) 100%);
  transition: all 0.3s ease-in-out;
  border: none;
  height: 450px;
}

@media (min-width: 576px) and (max-width: 768px) {
  .team-card {
    height: 400px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .team-card {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .team-card {
    height: unset;
  }
}

.team-card img {
  border-radius: 25px;
}

.team-card:hover {
  background-color: var(--light-blue);
}

.box img {
  border-radius: 20px;
}

.team-absolute-img {
  bottom: -120px;
  left: 22px;
}

/* -------------------------------------------- ACCORDION-STARTS ----------------------------------------------------------- */
.accordion-item .accordion-button {
  background: rgba(0, 0, 0, 0.13);
}

.accordion-item {
  border: none !important;
  background: none;
  border-radius: 5px !important;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: initial !important;
}

.accordion-item {
  border-radius: 5px !important;
  background-image: url("../images/accordion-bg-img.png") !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(90deg) !important;
}

.faq-side-img {
  right: 0;
}

.faq-side-img-2 {
  bottom: 10%;
}

/* -------------------------------------------- ACCORDION-ENDS ------------------------------------------------------------- */
/* TOKEN-CSS-START */
.token {
  background: #1c0d38;
}

.eleifend {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: rgba(131, 18, 131, 1);
}

.token-pink {
  background: rgba(255, 29, 255, 1) !important;
}

.token-brown {
  background: rgba(76, 11, 92, 1) !important;
}

.token-blue {
  background: rgba(75, 21, 198, 1) !important;
}

.token-dark {
  background: rgba(45, 16, 110, 1) !important;
}

.token-light-brown {
  background: rgba(137, 0, 167, 1) !important;
}

.copyright-text {
  border-top: 1px solid var(--white);
}

.copyright-text p {
  opacity: 0.7;
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

/* blur-images */
.footer-blur-img {
  bottom: -25%;
}

.footer-blur-img-2 {
  right: 0;
  bottom: 0;
}

.faq-blur-img {
  top: -14%;
}

.token-blur-img {
  right: 0;
  top: -24%;
}

.about-us-img {
  top: 50%;
  right: 0;
}

/* preloader */
#loading {
  position: fixed;
  width: 100%;
  min-height: 100vh;
  background-color: var(--dark-blue);
  z-index: 999999;
  overflow: hidden !important;
}

.loading-img {
  min-height: 100vh;
}

#loading img {
  animation: loader-animation 3s ease infinite;
}

@keyframes loader-animation {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

/* scroll */
/* SCROLL TOP CSS START */
#scroll {
  position: fixed;
  z-index: 2;
  right: 20px;
  top: 88%;
  cursor: pointer;
  width: 60px;
  height: 60px;
  box-shadow: 1px 3px 20px rgba(0, 0, 0, 0.09);
  text-indent: -9999px;
  display: none;
  border-radius: 60px;
  background: url("../images/up-arrow-icon-2.png"),
    linear-gradient(180.21deg, #5a25c4 27.38%, #2b3dfb 99.81%);
  background-repeat: no-repeat;
  background-position: center;
  animation: moves 2s ease-in-out infinite;
  transition: all 0.4s ease-in-out;
  box-shadow: 0px 0px 8px 1px var(--white);
}

@keyframes moves {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

#scroll:hover {
  opacity: 0.9;
  box-shadow: 0px 0px 16px 1px var(--white);
}

#scroll:hover span {
  border-bottom-color: white;
}

@media (min-width: 1400px) {
  .roadmap-rocket {
    margin-bottom: -24px;
  }

  .hero-content h1 {
    line-height: 86px;
  }
}

@media (max-width: 1399.98px) {
  :root {
    --font-xxl: 68px;
  }

  .roadmap-rocket {
    margin-bottom: -20px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --font-normal: 16px;
    --font-sm: 18px;
    --font-md: 24px;
    --font-lg: 28px;
    --font-xl: 46px;
    --font-xxl: 50px;
  }

  .about-sec-img-left {
    top: -14%;
  }

  .about-sec-img-right {
    top: 75%;
  }

  .header-gif {
    height: 455px !important;
    width: 486px !important;
    transform: scale(0.8);
  }
}

@media (max-width: 991.98px) {
  :root {
    --font-md: 22px;
    --font-lg: 26px;
    --font-xl: 42px;
    --font-xxl: 40px;
  }

  :root {
    --font-lg: 30px;
  }

  .header-gif {
    left: -12%;
  }

  .roadmap-rocket {
    margin-bottom: -90px;
  }

  .roadmap-circle-phase {
    width: 93px;
    height: 93px;
  }

  .dotted-line-height {
    height: 120px;
  }

  .hero-section {
    min-height: 75vh;
  }

  .about-sec-img-right {
    top: 90%;
  }

  .hero {
    min-height: unset;
  }

  .team-card h3 {
    font-size: var(--font-md) !important;
  }
}

@media (max-width: 767.98px) {
  :root {
    --font-normal: 14px;
    --font-sm: 16px;
    --font-md: 18px;
    --font-lg: 24px;
    --font-xl: 38px;
    --font-xxl: 37px;
  }

  .header-gif {
    left: -35%;
  }

  .roadmap-circle-phase {
    width: 73px;
    height: 73px;
  }

  .dotted-line-height {
    height: 120px;
  }

  .roadmap-phaseimg {
    width: 40%;
  }

  .roadmap-phaseimg2 {
    width: 20%;
  }

  .roadmap-rocket {
    margin-bottom: -60px;
  }

  #scroll {
    width: 40px;
    height: 40px;
    background: url("../images/up-arrow-icon.png"),
      linear-gradient(180.21deg, #5a25c4 27.38%, #2b3dfb 99.81%);
    background-repeat: no-repeat;
    background-position: center;
  }
}

.gif-custom {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  transform: rotate(45deg);
}

.gif-custom::after {
  position: absolute;
  content: "";
  background: radial-gradient(54.14% 46.81% at 51.71% 50%,
      #000000 41%,
      #1f1b43 66%,
      #453d98 96%);
  background-blend-mode: screen;
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  border-radius: 60px;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.gif-custom img {
  transform: rotate(-45deg) !important;
  position: inherit !important;
}

.video-border {
  border: 2px solid rgba(90, 37, 196, 1);
  border-radius: 10px;
  padding: 14px;
}

.roadmap-40img {
  max-width: 200px;
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .gif-custom {
    transform: scale(0.7) rotate(45deg);
  }
}

@media (max-width: 992px) {
  .gif-custom {
    transform: scale(0.7) rotate(45deg);
  }

}

@media (max-width: 767.98px) {
  .gif-custom {
    transform: scale(0.6) rotate(45deg);
  }

  .hero-gif {
    max-height: 437px;
  }
}

@media (max-width: 575.98px) {
  :root {
    --font-lg: 20px;
    --font-xl: 30px;
    --font-xxl: 28px;
  }

  .roadmap-phaseimg {
    width: 140px;
  }

  .roadmap-40img {
    max-width: 120px;
    width: 100%;
  }

  .roadmap-phaseimg2 {
    width: 110px;
  }

  .roadmap-rocket img {
    width: 57px;
  }

  .dotted-line-height {
    height: 64px;
  }

  .roadmap-circle-phase {
    width: 63px;
    height: 63px;
  }

  .line-custom-height {
    height: 96px;
  }

  .roadmap-rocket {
    margin-bottom: -40px;
  }

  .eleifend {
    width: 40px;
    height: 40px;
  }

  .footer-icon img {
    width: 38px;
    height: 38px;
  }

  .hero-section:before {
    bottom: -55px;
  }
}

@media (max-width: 375.98px) {
  .gif-custom {
    transform: scale(0.5) rotate(45deg);
  }

  .hero-gif {
    max-height: 410px;
    margin-top: -69px;
  }
}

.slick-dots li button:before {
  font-size: 10px !important;
  color: white !important;
  top: 21px !important;
}