@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@font-face {
  font-family: "Glacial-Bold";
  src: url("../assets/fonts/GlacialIndifference-Bold.otf") format("opentype");
  font-display: swap;
}
.header {
  height: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 0;
  z-index: 9;
}
.header__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .navbar-expand-lg .navbar-nav {
  gap: 6rem;
}
.header .navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  padding: 0;
}
.header__btn button {
  background-color: #fff;
  color: #000;
  border-radius: 10rem;
  height: 6rem;
  min-width: 18rem;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  overflow: hidden;
  position: relative;
}
.header__btn button:hover .up {
  transform: translateY(-240%);
}
.header__btn button:hover .down {
  transform: translateY(0%);
}
.header__btn button .up {
  transform: translateY(0);
  transition: 0.4s;
}
.header__btn button .down {
  transform: translateY(240%);
  position: absolute;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .header__btn button {
    font-size: 1.4rem;
    min-width: 14rem;
    height: 4.8rem;
  }
}

.banner {
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
  overflow: hidden;
}
.banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(../assets/img/banner/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 30rem 0 20rem;
}
@media (max-width: 767px) {
  .banner__content {
    padding: 15rem 0 5rem;
  }
}
.banner__content h1 {
  color: #151111;
  font-weight: 700;
  font-size: 13.6rem;
  line-height: 13.6rem;
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif !important;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .banner__content h1 {
    font-size: 12rem;
    line-height: normal;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner__content h1 {
    font-size: 10rem;
    line-height: normal;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner__content h1 {
    font-size: 8rem;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .banner__content h1 {
    font-size: 4rem;
    line-height: normal;
  }
}
.banner__content p {
  font-weight: 400;
  font-size: 2.2rem;
  text-align: center;
  color: #151111;
  margin: 4.8rem 0 0;
}
.banner__img {
  position: absolute;
  top: -21rem;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background: radial-gradient(50% 50% at 50% 50%, #F7E4C9 0%, #82CDFF 35.5%, #3DA2FE 53%, #035097 78.06%, #051E35 89.13%, #000000 100%);
  height: 155rem;
  z-index: -1;
  width: 192rem;
}
.banner__img img {
  max-width: unset;
}
.banner__btn {
  margin: 4.8rem;
}
.banner__btn a {
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22.6rem;
  color: #fff;
  background-color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10rem;
  position: relative;
  overflow: hidden;
}
.banner__btn a:hover .up {
  transform: translateY(-240%);
}
.banner__btn a:hover .down {
  transform: translateY(0%);
}
.banner__btn a .up {
  transform: translateY(0);
  transition: 0.4s;
}
.banner__btn a .down {
  transform: translateY(240%);
  position: absolute;
  transition: 0.4s;
}
.banner__circle {
  position: absolute;
  top: 20rem;
}
.banner .container {
  position: relative;
}
@media (max-width: 767px) {
  .banner__list {
    display: none;
  }
}
.banner__list ul {
  margin: 0;
}
.banner__list ul li {
  position: absolute;
  transition: transform 0.1s ease-out;
}
.banner__list ul li:nth-child(1) {
  top: 12rem;
  left: 0;
}
.banner__list ul li:nth-child(2) {
  bottom: 12rem;
  left: 0;
}
.banner__list ul li:nth-child(3) {
  top: 12rem;
  right: 0;
}
.banner__list ul li:nth-child(4) {
  bottom: 12rem;
  right: 0;
}

.about {
  padding: 20rem 0 10rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    padding: 10rem 0 0;
  }
}
.about__img-center {
  position: relative;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  height: 500px;
  border-radius: 50%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 0.2rem solid #333;
  background-color: #000;
}
@media (max-width: 767px) {
  .about__img-center {
    display: none;
  }
}
.about__img-center canvas {
  height: 50rem;
  width: 50rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.about__img-view {
  display: none;
}
@media (max-width: 767px) {
  .about__img-view {
    display: block;
  }
}
.about__img-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.about__img-circle img {
  max-width: unset;
}
.about__img {
  margin: 0 0 3rem;
  text-align: center;
}
.about__title {
  position: relative;
  z-index: 2;
}
.about__title h2 {
  color: #fff;
  font-size: 10rem;
  text-align: center;
  margin: 0 0 4.8rem;
  font-family: "IBM Plex Sans", sans-serif !important;
  line-height: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .about__title h2 {
    font-size: 8rem;
    line-height: normal;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about__title h2 {
    font-size: 7.2rem;
    line-height: normal;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about__title h2 {
    font-size: 7rem;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .about__title h2 {
    font-size: 3.8rem;
    line-height: normal;
  }
}
.about__title p {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0;
  text-align: center;
  line-height: 30px;
}
@media (max-width: 767px) {
  .about__title p {
    font-size: 1.8rem;
  }
}
.about__content {
  padding: 10rem 0 12rem;
  position: relative;
}
@media (max-width: 767px) {
  .about__content {
    padding: 10rem 0 7rem;
  }
}
.about__value {
  text-align: center;
  z-index: 3;
  position: relative;
}
.about__value img {
  margin: 0 0 0 10rem;
}
@media (max-width: 767px) {
  .about__value img {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about__value img {
    margin: 0;
  }
}
.about__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .about__bg {
    display: none;
  }
}
.about__bg img {
  max-width: unset;
  animation: scaleAnimation 4s infinite;
}
.about__logo ul {
  padding: 0;
  margin: 0;
}
.about__logo ul li {
  list-style-type: none;
}
.about__logo ul li:nth-child(1) {
  position: absolute;
  top: -1rem;
  left: -5rem;
}
.about__logo ul li:nth-child(2) {
  position: absolute;
  top: 1rem;
  right: -8rem;
}
.about__logo ul li:nth-child(3) {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
}
.about__logo ul li:nth-child(4) {
  position: absolute;
  bottom: -5rem;
  right: 16rem;
}
.about__logo ul li:nth-child(5) {
  position: absolute;
  bottom: 9rem;
  right: -6rem;
}
.about__logo ul li:nth-child(6) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.feature__content span {
  color: #707070;
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0 0 1.2rem;
}
.feature__content h2 {
  color: #fff;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 80px;
  margin: 0 0 1.2rem;
}
@media (max-width: 767px) {
  .feature__content h2 {
    font-size: 3.2rem;
    line-height: normal;
  }
}
.feature__content p {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0;
  color: #707070;
}
@media (max-width: 767px) {
  .feature__content p {
    font-size: 1.8rem;
  }
}
.feature__img {
  text-align: end;
}
.feature__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 8rem;
  margin: 2.4rem 0 0;
}
@media (max-width: 767px) {
  .feature__box {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin: 3.3rem 0 0;
  }
}
.feature__card h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 2.4rem;
  color: #fff;
}
@media (max-width: 767px) {
  .feature__card h4 {
    margin: 0 0 0.8rem;
    font-size: 2rem;
  }
}
.feature__card p {
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0;
  color: #707070;
}

.digital {
  padding: 30rem 0 15rem;
  position: relative;
}
@media (max-width: 1199px) {
  .digital {
    padding: 6rem 0;
  }
}
.digital__content {
  position: relative;
}
@media (max-width: 991px) {
  .digital__content {
    margin: 0 0 4rem;
  }
}
.digital__content span {
  font-size: 2.2rem;
  font-weight: 400;
  color: #707070;
  margin: 0 0 2.4rem;
}
.digital__content h2 {
  font-size: 7.2rem;
  font-weight: 700;
  margin: 0 0 2.4rem;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .digital__content h2 {
    font-size: 5.2rem;
  }
}
@media (max-width: 767px) {
  .digital__content h2 {
    font-size: 3rem;
  }
}
.digital__content p {
  font-size: 2.2rem;
  font-weight: 400;
  margin: 0;
  color: #707070;
}
.digital__right {
  position: absolute;
  right: 0;
  top: -2rem;
}
@media (max-width: 1199px) {
  .digital__right {
    display: none;
  }
}
.digital__left {
  position: absolute;
  left: 0;
  top: -24rem;
}
@media (max-width: 1199px) {
  .digital__left {
    display: none;
  }
}

.explore {
  background-image: url(../assets/img/home/explore-bg.svg);
  background-repeat: no-repeat;
  padding: 30rem 0 10rem;
  background-position: top;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .explore {
    padding: 15rem 0 10rem;
  }
}
@media (max-width: 767px) {
  .explore {
    padding: 8rem 0 5rem;
    background-position: bottom;
    background-size: cover;
  }
}
.explore__content h2 {
  font-size: 10rem;
  line-height: 10rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .explore__content h2 {
    font-size: 7.2rem;
    line-height: normal;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .explore__content h2 {
    font-size: 7.2rem;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .explore__content h2 {
    font-size: 3.6rem;
    line-height: normal;
  }
}
.explore__btn {
  margin: 8rem 0 0;
  text-align: center;
}
.explore__btn a {
  background-color: #000;
  color: #fff;
  display: inline-flex;
  border-radius: 10rem;
  align-items: center;
  justify-content: center;
  min-width: 22.6rem;
  height: 7.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.explore__btn a:hover .up {
  transform: translateY(-240%);
}
.explore__btn a:hover .down {
  transform: translateY(0%);
}
.explore__btn a .up {
  transform: translateY(0);
  transition: 0.4s;
}
.explore__btn a .down {
  transform: translateY(240%);
  position: absolute;
  transition: 0.4s;
}

@media (max-width: 1399px) {
  .feature__img {
    text-align: center;
    margin: 8rem 0 0;
  }
}
@keyframes scaleAnimation {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
.privacy {
  min-height: 100vh;
  padding: 15rem 0 4rem;
  border-bottom: 0.1rem solid #333;
}
@media (max-width: 767px) {
  .privacy {
    padding: 15rem 0 0;
  }
}
.privacy__title h1 {
  color: #fff;
  font-size: 5.2rem;
  margin: 0 0 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .privacy__title h1 {
    font-size: 3.8rem;
  }
}
.privacy__title h4 {
  font-size: 2.2rem;
  margin: 0 0 2rem;
  font-weight: 600;
  color: #fff;
}
.privacy__title p {
  font-size: 1.6rem;
  margin: 0 0 2rem;
  color: #fff;
  font-weight: 400;
}
.privacy__content {
  margin: 0 0 4rem;
}
.privacy__content h2 {
  font-size: 2.6rem;
  margin: 0 0 1rem;
  font-weight: 600;
  color: #fff;
}
.privacy__content p {
  font-size: 1.6rem;
  color: #fff;
  margin: 0 0 1rem;
  font-weight: 400;
}
.privacy__content ul {
  margin: 0;
  padding: 0 0 0 4rem;
}
.privacy__content ul li {
  font-size: 1.6rem;
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 400;
}

.footer {
  padding: 10rem 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 5rem 0;
  }
}
.footer__start p {
  font-size: 1.4rem;
  margin: 0;
  color: #707070;
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer__start p {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__start {
    margin: 0 0 6rem;
    max-width: 50%;
  }
}
.footer__logo {
  margin: 0 0 3.2rem;
}
@media (max-width: 767px) {
  .footer__logo {
    text-align: center;
    margin: 0 0 1rem;
  }
}
@media (max-width: 767px) {
  .footer__list {
    margin: 2rem 0 0;
  }
}
.footer__list ul {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__list ul {
    justify-content: flex-start;
  }
}
.footer__list ul li a {
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
}
.footer__flex {
  display: flex;
  justify-content: end;
}
@media (max-width: 767px) {
  .footer__flex {
    justify-content: center;
    margin: 2rem 0 0;
  }
}
.footer__flex ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__flex ul li {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  list-style-type: none;
}
.footer__flex ul li a {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}

html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000 !important;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  margin: 0;
  overflow-x: hidden;
  position: relative;
  color: #fff;
}

.custom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 767px) {
  .container {
    padding: 0 2rem !important;
  }
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.home__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  background-color: transparent;
  border: none;
  padding: 0;
}
.home__card {
  border-radius: 2.4rem;
  background: linear-gradient(162deg, #1A1C26 3.47%, #130C1D 117.19%);
  padding: 8rem 4.2rem;
  position: relative;
}
@media (max-width: 480px) {
  .home__card {
    padding: 8rem 2rem 2rem;
    margin: 0 1rem;
  }
}
.home__card::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(to bottom right, #636578, #1B1825);
  z-index: -1;
  border-radius: 25px;
}
.home__card h1 {
  font-size: 3.2rem;
  font-family: "Glacial-Bold" !important;
  background: linear-gradient(180deg, #EAEEFF 0%, #13141B 222.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin: 0;
}
@media (max-width: 480px) {
  .home__card h1 {
    font-size: 2rem;
  }
}
.home__card h1 span {
  background: linear-gradient(93deg, #3E50FA 33.13%, #9A3EFA 65.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home__card h2 {
  font-size: 2.4rem;
  font-family: "Glacial-Bold" !important;
  background: linear-gradient(180deg, #EAEEFF 0%, #13141B 222.37%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 2.4rem;
  text-align: center;
}
@media (max-width: 480px) {
  .home__card h2 {
    font-size: 1.8rem;
    margin: 0 0 1rem;
  }
}
.home__card p {
  color: #61667F;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
@media (max-width: 480px) {
  .home__card p {
    font-size: 1.4rem;
  }
}
.home__logo {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
}
.home form {
  margin: 3.2rem 0 0;
}
.home form .input-group {
  height: 4.8rem;
  border-radius: 8px;
  border: 1px solid #505266;
  background: #2F3144;
  margin: 0 0 2.4rem;
}
.home form .input-group input {
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
}
.home form .input-group input::-moz-placeholder {
  color: #61667F;
  font-size: 1.6rem;
  font-weight: 400;
}
.home form .input-group input::placeholder {
  color: #61667F;
  font-size: 1.6rem;
  font-weight: 400;
}
.home form .input-group input:focus {
  box-shadow: none;
}
.home form .input-group .input-group-text {
  background-color: transparent;
  border: none;
}
.home__btn {
  margin: 4.8rem 0 0;
}
@media (max-width: 480px) {
  .home__btn {
    margin: 2.8rem 0 0;
  }
}
.home__btn button {
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(91deg, #3D4FFA 0.25%, #9C3DFA 100%);
  padding: 2.2rem 1.6rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  border: none;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .home__btn button {
    font-size: 1.4rem;
  }
}
.home__content p {
  margin: 6rem 0 0;
  text-align: center;
  color: #61667F;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (max-width: 480px) {
  .home__content p {
    margin: 3rem 0 0;
    font-size: 1.2rem;
  }
}

@media (max-height: 800px) {
  .home {
    padding: 11rem 0;
    height: 100%;
  }
  body {
    height: unset;
  }
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}

/* Add your CSS styling here */
.success-message {
  color: green;
  font-weight: bold;
  margin-top: 10px;
}

.error-message {
  display: block;
  font-size: 1.6rem;
  color: #ff6981;
  text-transform: capitalize;
}

.tick-image {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

.loader {
  border: 2px solid #f3f3f3;
  border-radius: 50%;
  border-top: 2px solid #3498db;
  width: 20px;
  height: 20px;
  display: none;
  /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#submitButton.success {
  background: #0DB58F;
}

.custom-modal .modal-body {
  padding: 0 !important;
}
.custom-modal .modal-content {
  background: transparent;
  border: none;
}/*# sourceMappingURL=style.css.map */