/* Fonts */
@import url("../fonts/Satoshi/css/satoshi.css");
@import url("../fonts/Recoleta/Recoleta.css");
@import url("../fonts/SF-Pro/SF-Pro.css");
/* Variables */
.ff1 {
  font-family: "SF Pro Text";
}

.ff2 {
  font-family: "Satoshi";
}

.ff3 {
  font-family: "Recoleta";
}

:root {
  /* Fonts */
  --ff1: "SF Pro Text";
  --ff2: "Satoshi";
  --ff3: "Recoleta";
  /* Colors */
  --col0: #000000;
  --col1: #F5F5F5;
  --col2: #D0D0D0;
  --col3: #4C4C4C;
  --col3e: #4e4e4e;
  --col4: #DDED59;
  --col5: #CBDEF7;
  --col6: #FB5B32;
  --col7: #3259FB;
  --col9: #002946;
  --col10: #969696;
  --col11: #242424;
  --graytheme: #E9E9E9;
  --graytext: #808080;
  --resp: 1;
  --fresp: 1;
}
@media (min-width: 2200px) {
  :root {
    --resp: 1.3;
  }
}
@media (min-width: 3000px) {
  :root {
    --resp: 2;
  }
}
@media (max-width: 1800px) {
  :root {
    --resp: 0.95;
  }
}
@media (max-width: 1600px) {
  :root {
    --resp: 0.9;
  }
}
@media (max-width: 1400px) {
  :root {
    --resp: 0.85;
  }
}
@media (max-width: 1300px) {
  :root {
    --resp: 0.8;
  }
}
@media (min-width: 2200px) {
  :root {
    --fresp: 1.3;
  }
}
@media (min-width: 3000px) {
  :root {
    --fresp: 2;
  }
}
@media (max-width: 1800px) {
  :root {
    --fresp: 0.95;
  }
}
@media (max-width: 1400px) {
  :root {
    --fresp: 0.85;
  }
}
@media (max-width: 1300px) {
  :root {
    --fresp: 0.8;
  }
}

/* Keyframes */
@keyframes fadeInAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animUpDown {
  0%, 100% {
    transform: translateY(25px);
  }
  50% {
    transform: translateY(-25px);
  }
}
.anim-up-down {
  transform: translateY(25px);
  animation: animUpDown 5s ease-in-out forwards infinite;
  animation-play-state: paused;
}

.section--active .anim-up-down {
  animation-play-state: running;
}

/* Common */
html {
  overflow-x: hidden;
}

body {
  background-color: #fff;
  color: var(--col1);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: calc(16px * var(--fresp));
  font-family: var(--ff1);
  font-weight: 400;
  overflow-x: hidden;
}
body a {
  text-decoration: none;
  transition: 0.23s ease-out;
}
body .landing {
  position: relative;
  z-index: 1;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #eaeaea;
}

::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1520px;
  }
}
@media (min-width: 1800px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1620px;
  }
}
@media (min-width: 2200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 2020px;
  }
}
a {
  color: var(--col1);
  transition: 0.23s ease-out;
}
a:hover {
  color: #000;
}

.nowrap {
  white-space: nowrap;
}

.fade-in {
  opacity: 0;
}

.auth-content .anim-up-down,
.main-page .anim-up-down {
  transform: translateY(25px);
  animation: animUpDownAuth 5s ease-in-out forwards infinite;
}
@keyframes animUpDownAuth {
  0%, 100% {
    transform: translateY(25px);
  }
  50% {
    transform: translateY(-25px);
  }
}

.primaryText {
  color: var(--col0) !important;
}

@media (max-width: 1600px) and (max-height: 800px) {
  .dropdown-menu .dropdown-item {
    font-size: calc(1.2rem * var(--resp));
    padding-block: 0.45rem;
  }
}

.main-page .btn-round,
.auth-main .btn-round {
  padding: 0;
  border-radius: 50%;
  width: calc(58px * var(--resp));
  height: calc(58px * var(--resp));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.main-page .btn-round--white,
.auth-main .btn-round--white {
  background-color: white;
}
.main-page .btn-round--white:hover, .main-page .btn-round--white:focus, .main-page .btn-round--white:active,
.auth-main .btn-round--white:hover,
.auth-main .btn-round--white:focus,
.auth-main .btn-round--white:active {
  opacity: 0.7;
  background-color: white;
}
.main-page .btn-round--white img,
.auth-main .btn-round--white img {
  width: 50%;
  height: auto;
}
.main-page .btn-round--edit,
.auth-main .btn-round--edit {
  width: calc(34px * var(--resp));
  height: calc(34px * var(--resp));
  background-color: #A4DFD4;
}
@media (max-width: 768px) {
  .main-page .btn-round--edit,
  .auth-main .btn-round--edit {
    width: calc(44px * var(--resp));
    height: calc(44px * var(--resp));
  }
}
.main-page .btn-round--edit:hover, .main-page .btn-round--edit:focus, .main-page .btn-round--edit:active,
.auth-main .btn-round--edit:hover,
.auth-main .btn-round--edit:focus,
.auth-main .btn-round--edit:active {
  opacity: 0.7;
  background-color: #A4DFD4;
}
.main-page .btn-round--edit img,
.auth-main .btn-round--edit img {
  width: 60%;
}
.main-page .btn-round--actions,
.auth-main .btn-round--actions {
  width: calc(34px * var(--resp));
  height: calc(34px * var(--resp));
  background-color: #EEF0FE;
}
@media (max-width: 768px) {
  .main-page .btn-round--actions,
  .auth-main .btn-round--actions {
    width: calc(44px * var(--resp));
    height: calc(44px * var(--resp));
  }
}
.main-page .btn-round--actions:hover, .main-page .btn-round--actions:focus, .main-page .btn-round--actions:active,
.auth-main .btn-round--actions:hover,
.auth-main .btn-round--actions:focus,
.auth-main .btn-round--actions:active {
  opacity: 0.8;
  background-color: #EEF0FE;
}
.main-page .btn-round--actions img,
.auth-main .btn-round--actions img {
  width: 52.5%;
}
.main-page .btn-round--orange,
.auth-main .btn-round--orange {
  width: calc(58px * var(--resp));
  height: calc(58px * var(--resp));
  background-color: var(--col6);
}
.main-page .btn-round--orange:hover, .main-page .btn-round--orange:focus, .main-page .btn-round--orange:active,
.auth-main .btn-round--orange:hover,
.auth-main .btn-round--orange:focus,
.auth-main .btn-round--orange:active {
  opacity: 0.8;
  background-color: var(--col6);
}
.main-page .btn-round--orange img,
.auth-main .btn-round--orange img {
  width: 52.5%;
}
.main-page .btn-round--green,
.auth-main .btn-round--green {
  width: calc(48px * var(--resp));
  height: calc(48px * var(--resp));
  background-color: var(--col2);
}
.main-page .btn-round--green:hover, .main-page .btn-round--green:focus, .main-page .btn-round--green:active,
.auth-main .btn-round--green:hover,
.auth-main .btn-round--green:focus,
.auth-main .btn-round--green:active {
  opacity: 0.8;
  background-color: var(--col2);
}
.main-page .btn-round--green img,
.auth-main .btn-round--green img {
  max-width: 42.5%;
}
.main-page .btn-round--navy,
.auth-main .btn-round--navy {
  width: calc(48px * var(--resp));
  height: calc(48px * var(--resp));
  background-color: var(--col9);
}
.main-page .btn-round--navy:hover, .main-page .btn-round--navy:focus, .main-page .btn-round--navy:active,
.auth-main .btn-round--navy:hover,
.auth-main .btn-round--navy:focus,
.auth-main .btn-round--navy:active {
  opacity: 0.8;
  background-color: var(--col9);
}
.main-page .btn-round--navy img,
.auth-main .btn-round--navy img {
  max-width: 42.5%;
}
.main-page .btn-round--dark,
.auth-main .btn-round--dark {
  width: calc(48px * var(--resp));
  height: calc(48px * var(--resp));
  background-color: #393939;
}
.main-page .btn-round--dark:hover, .main-page .btn-round--dark:focus, .main-page .btn-round--dark:active,
.auth-main .btn-round--dark:hover,
.auth-main .btn-round--dark:focus,
.auth-main .btn-round--dark:active {
  opacity: 0.8;
  background-color: var(--col3);
}
.main-page .btn-solid,
.auth-main .btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.3s ease-in-out;
}
.main-page .btn-solid--orange,
.auth-main .btn-solid--orange {
  border-radius: calc(34px * var(--resp));
  background-color: var(--col6);
  color: white;
  padding-inline: calc(1.2rem * var(--resp));
  height: calc(50px * var(--resp));
  box-shadow: 0px 8px 22px 0px rgba(255, 144, 97, 0.0705882353);
}
.main-page .btn-solid--orange:hover, .main-page .btn-solid--orange:focus, .main-page .btn-solid--orange:active, .main-page .btn-solid--orange.show,
.auth-main .btn-solid--orange:hover,
.auth-main .btn-solid--orange:focus,
.auth-main .btn-solid--orange:active,
.auth-main .btn-solid--orange.show {
  background-color: var(--col6);
  color: white;
  opacity: 0.8;
}
.main-page .btn-solid--blue,
.auth-main .btn-solid--blue {
  border-radius: calc(34px * var(--resp));
  background-color: var(--col7);
  color: white;
  padding-inline: calc(1.2rem * var(--resp));
  height: calc(50px * var(--resp));
}
.main-page .btn-solid--blue:hover, .main-page .btn-solid--blue:focus, .main-page .btn-solid--blue:active, .main-page .btn-solid--blue.show,
.auth-main .btn-solid--blue:hover,
.auth-main .btn-solid--blue:focus,
.auth-main .btn-solid--blue:active,
.auth-main .btn-solid--blue.show {
  background-color: var(--col7);
  color: white;
  opacity: 0.8;
}
.main-page .btn-solid--limegreen,
.auth-main .btn-solid--limegreen {
  height: 50px;
  border-radius: calc(34px * var(--resp));
  background-color: var(--col4);
  color: var(--col1);
  box-shadow: 0px 8px 22px 0px rgba(255, 144, 97, 0.0705882353);
  gap: 0.25rem;
}
.main-page .btn-solid--limegreen:hover, .main-page .btn-solid--limegreen:focus, .main-page .btn-solid--limegreen:active,
.auth-main .btn-solid--limegreen:hover,
.auth-main .btn-solid--limegreen:focus,
.auth-main .btn-solid--limegreen:active {
  background-color: var(--col4);
  color: var(--col1);
  opacity: 0.8;
}
.main-page .btn-solid--navy,
.auth-main .btn-solid--navy {
  padding-inline: calc(1.2rem * var(--resp));
  height: calc(42px * var(--resp));
  border-radius: calc(40px * var(--resp));
  background-color: var(--col9);
  color: white;
  gap: 0.25rem;
}
.main-page .btn-solid--navy:hover, .main-page .btn-solid--navy:focus, .main-page .btn-solid--navy:active,
.auth-main .btn-solid--navy:hover,
.auth-main .btn-solid--navy:focus,
.auth-main .btn-solid--navy:active {
  background-color: var(--col9);
  color: white;
  opacity: 0.8;
}
.main-page .btn-solid--dark,
.auth-main .btn-solid--dark {
  padding-inline: calc(1rem * var(--resp));
  height: calc(46px * var(--resp));
  border-radius: calc(40px * var(--resp));
  background-color: var(--col0);
  color: white;
}
.main-page .btn-solid--dark:hover, .main-page .btn-solid--dark:focus, .main-page .btn-solid--dark:active,
.auth-main .btn-solid--dark:hover,
.auth-main .btn-solid--dark:focus,
.auth-main .btn-solid--dark:active {
  color: white;
  opacity: 0.8;
  background-color: var(--col0);
}
.main-page .btn-solid--dark .dd-icon,
.auth-main .btn-solid--dark .dd-icon {
  margin-top: 4px;
}
.main-page .btn-outlined,
.auth-main .btn-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.3s ease-in-out;
}
.main-page .btn-outlined--dark,
.auth-main .btn-outlined--dark {
  border-radius: calc(34px * var(--resp));
  color: var(--col0);
  background-color: transparent;
  border: 1px solid var(--col0);
  padding-inline: calc(1.2rem * var(--resp));
  height: calc(62px * var(--resp));
}
.main-page .btn-outlined--dark:hover, .main-page .btn-outlined--dark:focus, .main-page .btn-outlined--dark:active,
.auth-main .btn-outlined--dark:hover,
.auth-main .btn-outlined--dark:focus,
.auth-main .btn-outlined--dark:active {
  color: white;
  background-color: var(--col0);
}

/* Forms */
.form-group--search {
  position: relative;
}
.form-group--search .form-control {
  flex: 1;
  min-width: calc(325px * var(--resp));
  height: calc(48px * var(--resp));
  padding: 0 calc(22px * var(--resp)) 0 calc(3.25rem * var(--resp));
  border-radius: calc(40px * var(--resp));
}
.form-group--search .form-control:focus {
  outline: 0;
  box-shadow: none;
}
@media (max-width: 1600px) {
  .form-group--search .form-control {
    min-width: calc(250px * var(--resp));
  }
}
.form-group--search .form-control + img {
  max-width: 1rem;
  position: absolute;
  top: 51%;
  left: calc(1.25rem * var(--resp));
  transform: translateY(-50%);
}

.checkbox-container {
  margin: auto;
}
.checkbox-container input[type=checkbox],
.checkbox-container input[type=radio] {
  height: 0;
  width: 0;
}
.checkbox-container input[type=checkbox] + label,
.checkbox-container input[type=radio] + label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.23, 1);
}
.checkbox-container input[type=checkbox] + label > b,
.checkbox-container input[type=radio] + label > b {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid var(--col0);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.23, 1);
}
.checkbox-container input[type=checkbox]:checked + label > b,
.checkbox-container input[type=radio]:checked + label > b {
  border: 0.65rem solid var(--col0);
  animation: shrink-bounce 0.1s cubic-bezier(0.4, 0, 0.23, 1);
}
.checkbox-container input[type=checkbox]:checked + label > b:before,
.checkbox-container input[type=radio]:checked + label > b:before {
  content: "";
  position: absolute;
  top: 0.425rem;
  left: 0.285rem;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform-origin: 0% 100%;
  animation: checkbox-check 0.1s 0.35s cubic-bezier(0.4, 0, 0.23, 1) forwards;
}
.checkbox-container input[type=radio] + label > b {
  border-radius: 50%;
}
.checkbox-container input[type=radio]:checked + label > b {
  border: 1px solid var(--col0);
  background-color: var(--col0);
  animation: none;
}
.checkbox-container input[type=radio]:checked + label > b:before {
  border: 0;
  content: "";
  position: absolute;
  top: 0.505rem;
  left: 0.385rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: white;
  animation: none;
}
@media (max-width: 1600px) {
  .checkbox-container input[type=radio]:checked + label > b:before {
    top: 0.45rem;
    left: 0.35rem;
  }
}
@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: var(--col4);
    transform: translate3d(0, 0, 0) rotate(44deg);
  }
  33% {
    width: 0.375em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(44deg);
  }
  100% {
    width: 0.35rem;
    height: 0.7rem;
    border-color: var(--col4);
    transform: translate3d(0, -0.75em, 0) rotate(44deg);
  }
}

/* Header */
.headerSec {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: 0.5s;
  z-index: 11;
  min-height: 100vh;
  display: flex;
  align-items: center;
  height: calc(100px * var(--resp));
  background: transparent;
  color: #000000;
  background-image: url("../images/landing/hero.jpg");
  background-position: top center;
  background-repeat: no-repeat;
}
.headerSec nav {
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  background: rgba(255, 255, 255, 0.25);
}
.headerSec.scrolling {
  height: calc(80px * var(--resp));
}
.headerSec__logo {
  height: calc(47.5px * var(--resp));
  padding-inline: 0px;
  display: flex;
  align-items: center;
}
.headerSec__logo-icon {
  height: calc(65px * var(--resp));
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.headerSec__logo-text {
  height: calc(28px * var(--resp));
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.headerSec__logo span {
  color: #222;
  font-weight: 600;
  font-size: calc(30px * var(--resp));
  font-family: var(--ff3);
}
.headerSec nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
  padding: 10px;
  border-radius: 10px;
  border: 3px solid rgb(255, 255, 255);
}
.headerSec nav li a {
  color: #000;
  transition: 0.23s ease-out;
}
.headerSec nav li a:hover {
  color: #282B30;
  font-weight: 600;
}
.headerSec nav li.active a {
  color: #282B30;
  font-weight: 600;
}
.headerSec nav ul {
  list-style-type: none;
  padding-right: 2rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
.headerSec nav ul li {
  margin: 0;
}
.headerSec nav ul li a {
  line-height: 0;
  margin: 0;
  transition: 0.23s ease-out;
  height: calc(45px * var(--resp));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(0px * var(--resp));
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.headerSec nav ul li a.active {
  background: var(--Gradient2, linear-gradient(90deg, #6320D0 0%, #E92C81 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #000000;
}
.headerSec nav ul li a:hover {
  color: #000000;
}
.headerSec .signin {
  color: #fff;
  color: #fff;
  border-radius: 100px;
  border: 0.7px solid #3B3D55;
  background: linear-gradient(180deg, #000019 0%, #1E1F37 100%);
  /* display: flex; */
  padding: 8px 18px;
  transition: 0.23s ease-out;
}
.headerSec .signin a {
  color: #fff;
}
.headerSec .signin:hover {
  background: #fff;
  color: #000;
}

.top-header p {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.top-header {
  background: #101626;
  color: #fff;
  min-height: calc(57px * var(--resp));
  display: flex;
  align-items: center;
}

.top-header__link {
  display: inline-flex;
  gap: 10px;
  color: #fff;
}
.top-header__link:hover {
  color: #fff;
}

.sticky-top.shadow-sm {
  top: 0 !important;
}

.top-header .button {
  height: calc(57px * var(--resp));
}

@media (max-width: 1800px) {
  .headerSec {
    height: calc(100px * var(--resp) * 0.8);
  }
  .headerSec__logo img,
  .headerSec__logo svg {
    height: calc(65px * var(--resp) * 0.8);
    width: calc(65px * var(--resp) * 0.8);
  }
}
@media (max-width: 767.98px) {
  .top-header {
    font-size: 10px;
  }
}
/* Menu section */
.menuSec {
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 111;
  opacity: 0;
  visibility: hidden;
  z-index: -111;
  pointer-events: none;
  transition: 0.5s ease;
  background: rgba(0, 0, 0, 0);
}
.menuSec__inner {
  background: linear-gradient(95deg, rgba(38, 0, 252, 0.2) -4.31%, rgba(255, 82, 241, 0.2) 94.07%, rgba(255, 0, 234, 0.2) 94.07%);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: calc(2268px * var(--resp)) auto;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 90%;
  height: 100%;
  transition-timing-function: cubic-bezier(1, 0, 1, 1);
  transition-duration: 0.65s;
  transition-delay: 0s;
  transform: translateX(100%);
}
.menuSec__inner a {
  color: #fff;
}
.menuSec.active {
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.menuSec.active, .menuSec.animating {
  opacity: 1;
  visibility: visible;
  z-index: 1111;
  pointer-events: all;
}
.menuSec.active .menuSec__inner {
  transition-timing-function: cubic-bezier(0, 1, 1, 1);
  transition-duration: 0.65s;
  transition-delay: 0s;
  transform: translateX(0);
}
@media (min-width: 992px) {
  .menuSec {
    display: none;
  }
}
.menuSec__head {
  position: absolute;
  left: 20px;
  top: 0;
  right: 20px;
  padding: 20px 0 0;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.menuSec__head .headerSec__logo span {
  color: #fff;
  font-size: 30px;
}
.menuSec__head img {
  display: inline-block;
}
.menuSec__head .menu-btn {
  display: inline-flex;
  height: 30px;
  padding: 10px;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 14px;
}
.menuSec__head-logo svg {
  height: calc(47.5px * var(--resp));
  width: calc(174px * var(--resp));
}
.menuSec__head-desc {
  text-transform: capitalize;
}
.menuSec__links {
  position: absolute;
  top: 80px;
  max-height: calc(100vh - 200px);
  left: 0;
  right: 0;
  overflow-y: auto;
  list-style-type: none;
  padding: 25px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.menuSec__links h2 {
  font-family: calc(--ff1);
  font-weight: 400;
  font-size: 28px;
}
.menuSec__links li {
  margin-bottom: 20px;
  position: relative;
  font-size: 18px;
}
.menuSec__links li a {
  display: block;
  position: relative;
  font-weight: 400;
}
.menuSec__links li a.active {
  color: var(--col5);
}
.menuSec__links li a.active::after {
  content: "";
  height: 2px;
  width: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.menuSec .social-links a {
  background-color: #fff;
}
.menuSec .social-links a img {
  filter: invert(100%);
}
.menuSec__foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 15px;
  text-align: left;
}

.menu-btn--hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 32px;
  height: 32px;
  padding-block: 3.5px;
  align-items: end;
}
.menu-btn--hamburger span {
  display: block;
  width: 32px;
  height: 3px;
  background-color: #000000;
  margin-left: 5px;
  border-radius: 4px;
  transition: 0.23s ease-out;
}
.menu-btn--hamburger span:nth-child(2) {
  width: 85%;
}
.menu-btn--hamburger span:nth-child(3) {
  width: 65%;
}
.menu-btn--hamburger:hover span {
  background-color: #000000;
  width: 100% !important;
}

.menu-btn--cross {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  width: 30px;
  height: 30px;
}
.menu-btn--cross span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin-left: 5px;
  position: absolute;
  border-radius: 2px;
  transition: 0.23s ease-out;
}
.menu-btn--cross span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.menu-btn--cross span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg);
}
.menu-btn--cross:hover span {
  background-color: #fff;
}

.no-scroll {
  overflow: hidden;
}

/* Footer */
.footerSec {
  background-color: #000000;
  color: #fff;
  position: relative;
  padding-bottom: calc(50px * var(--resp));
  margin-top: calc(245px * var(--resp));
  font-size: calc(18px * var(--fresp));
}
.footerSec .container {
  position: relative;
  padding-top: calc(345px * var(--resp));
}
.footerSec .footerSec__bottom-deco {
  min-height: 15vw;
  background-image: url("../images/footer-deco.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  position: relative;
  margin-block: min(5rem, 8vh) min(3rem, 5vh);
}
.footerSec .section-heading2 {
  line-height: 1;
  font-size: calc(62px * var(--resp));
}
.footerSec::after {
  content: "";
  position: absolute;
  width: 55vw;
  height: 50vw;
  left: 50%;
  top: 90%;
  transform: translate3d(-50%, 0%, 0);
  background: rgba(255, 255, 255, 0.4);
  filter: blur(474px);
}
.footerSec a {
  color: #c0c0c0;
  transition: 0.23s ease-out;
}

.footerBanner {
  background-color: #cecece;
  color: #000;
  background-image: url("../images/footer-banner-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: calc(470px * var(--resp));
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-250px * var(--resp));
  border-radius: calc(40px * var(--resp));
  padding: calc(50px * var(--resp));
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
@media (max-width: 1600px) {
  .footerBanner {
    min-height: calc(480px * var(--resp));
  }
}
.footerBanner__text-wrapper {
  flex: 1;
  max-width: 80%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.footerBanner__text-wrapper p {
  max-width: 65%;
  margin-bottom: 0;
}
.footerBanner__btn-wrapper {
  margin-left: auto;
}
.footerBanner__btn-wrapper a {
  display: inline-flex;
  height: calc(112px * var(--resp));
  padding: 15px 15px 15px calc(50px * var(--resp));
  background-color: #000;
  border-radius: calc(60px * var(--resp));
  color: #fff;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  gap: calc(30px * var(--resp));
  white-space: nowrap;
  transition: 0.23s ease-out;
}
.footerBanner__btn-wrapper a .text {
  font-size: calc(32px * var(--fresp));
}
.footerBanner__btn-wrapper a span:last-child {
  display: inline-flex;
  width: calc(85px * var(--resp));
  min-width: calc(85px * var(--resp));
  height: calc(85px * var(--resp));
  background-color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.footerBanner__btn-wrapper a span:last-child img {
  display: inline-block;
  width: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.footerBanner__btn-wrapper a:hover {
  opacity: 0.9;
  color: white;
}
.footerBanner__btn-wrapper a:hover .text {
  animation: moveText 1.5s ease-in-out alternate 2;
}
.footerBanner__btn-wrapper a:hover img {
  animation: moveArrow 1.5s ease-in-out alternate 2;
}
@keyframes moveText {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(0.88);
  }
}
@keyframes moveArrow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30%, -30%) scale(1.05);
  }
  100% {
    transform: translate(-10%, 10%) scale(0.88);
  }
}
.footerBanner h2 {
  font-size: calc(42px * var(--fresp));
  font-family: var(--ff2);
  font-weight: bold;
  margin-bottom: calc(30px * var(--resp));
}
.footerBanner p {
  font-size: calc(20px * var(--fresp));
}

.footerSec__socialLinks {
  display: flex;
  gap: calc(20px * var(--resp));
}
.footerSec__socialLinks a {
  width: calc(54px * var(--resp));
  height: calc(54px * var(--resp));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  transition: 0.23s ease-out;
}
.footerSec__socialLinks a img {
  display: inline-block;
  width: 50%;
}
.footerSec__socialLinks a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footerSec__separator {
  height: 1.5px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #FFFFFF 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.2;
  margin-block: calc(35px * var(--resp));
  max-width: 70%;
  margin-inline: auto;
}

.footerSec__link-row {
  color: #c0c0c0;
}

.footerSec__links h3 {
  text-transform: uppercase;
  margin-bottom: calc(35px * var(--resp));
}
.footerSec__links ul {
  list-style-type: none;
  padding: 0;
}
.footerSec__links ul li {
  margin-bottom: calc(25px * var(--resp));
}
.footerSec__links ul li a:hover {
  color: #fff;
}

.footerSec__links2 ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footerSec__links2 ul a:hover {
  color: #fff;
}

.footerSec__subscribe {
  margin-top: calc(40px * var(--resp));
  margin-bottom: calc(60px * var(--resp));
}
.footerSec__subscribe h3 {
  color: #8e8e8e;
  font-weight: 400;
  font-size: calc(18px * var(--fresp));
  margin-bottom: 20px;
  padding-left: 20px;
}
.footerSec__subscribe-input-wrapper {
  display: inline-flex;
  position: relative;
}
.footerSec__subscribe-input {
  position: relative;
  width: calc(390px * var(--resp));
  height: calc(58px * var(--resp));
  border-radius: calc(30px * var(--resp));
  color: #fff;
  background-color: #0f0f0f;
  border: none;
  padding-inline: 30px 140px;
}
.footerSec__subscribe-input::-moz-placeholder {
  color: #8e8e8e;
}
.footerSec__subscribe-input::placeholder {
  color: #8e8e8e;
}
.footerSec__subscribe-button {
  background: #fff;
  color: #0c0c2d;
  font-size: calc(18px * var(--fresp));
  height: calc(58px * var(--resp));
  width: calc(120px * var(--resp));
  border: none;
  border-radius: calc(30px * var(--resp));
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.23s ease-out;
}
.footerSec__subscribe-button:hover {
  background: rgba(255, 255, 255, 0.75);
}

/* Header */
.headerSec {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: 0.5s;
  z-index: 11;
  min-height: 100vh;
  display: flex;
  align-items: center;
  height: calc(100px * var(--resp));
  background: transparent;
  color: #000000;
  background-image: url("../images/landing/hero.jpg");
  background-position: top center;
  background-repeat: no-repeat;
}
.headerSec nav {
  -webkit-backdrop-filter: blur(7.5px);
  backdrop-filter: blur(7.5px);
  background: rgba(255, 255, 255, 0.25);
}
.headerSec.scrolling {
  height: calc(80px * var(--resp));
}
.headerSec__logo {
  height: calc(47.5px * var(--resp));
  padding-inline: 0px;
  display: flex;
  align-items: center;
}
.headerSec__logo-icon {
  height: calc(65px * var(--resp));
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.headerSec__logo-text {
  height: calc(28px * var(--resp));
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.headerSec__logo span {
  color: #222;
  font-weight: 600;
  font-size: calc(30px * var(--resp));
  font-family: var(--ff3);
}
.headerSec nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
  padding: 10px;
  border-radius: 10px;
  border: 3px solid rgb(255, 255, 255);
}
.headerSec nav li a {
  color: #000;
  transition: 0.23s ease-out;
}
.headerSec nav li a:hover {
  color: #282B30;
  font-weight: 600;
}
.headerSec nav li.active a {
  color: #282B30;
  font-weight: 600;
}
.headerSec nav ul {
  list-style-type: none;
  padding-right: 2rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
.headerSec nav ul li {
  margin: 0;
}
.headerSec nav ul li a {
  line-height: 0;
  margin: 0;
  transition: 0.23s ease-out;
  height: calc(45px * var(--resp));
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(0px * var(--resp));
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.headerSec nav ul li a.active {
  background: var(--Gradient2, linear-gradient(90deg, #6320D0 0%, #E92C81 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #000000;
}
.headerSec nav ul li a:hover {
  color: #000000;
}
.headerSec .signin {
  color: #fff;
  color: #fff;
  border-radius: 100px;
  border: 0.7px solid #3B3D55;
  background: linear-gradient(180deg, #000019 0%, #1E1F37 100%);
  /* display: flex; */
  padding: 8px 18px;
  transition: 0.23s ease-out;
}
.headerSec .signin a {
  color: #fff;
}
.headerSec .signin:hover {
  background: #fff;
  color: #000;
}

.top-header p {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

.top-header {
  background: #101626;
  color: #fff;
  min-height: calc(57px * var(--resp));
  display: flex;
  align-items: center;
}

.top-header__link {
  display: inline-flex;
  gap: 10px;
  color: #fff;
}
.top-header__link:hover {
  color: #fff;
}

.sticky-top.shadow-sm {
  top: 0 !important;
}

.top-header .button {
  height: calc(57px * var(--resp));
}

@media (max-width: 1800px) {
  .headerSec {
    height: calc(100px * var(--resp) * 0.8);
  }
  .headerSec__logo img,
  .headerSec__logo svg {
    height: calc(65px * var(--resp) * 0.8);
    width: calc(65px * var(--resp) * 0.8);
  }
}
@media (max-width: 767.98px) {
  .top-header {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */