@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap);
/* Font Family */
/* Font Family List */
/* Looping the font family based on the index value */
/* Color */
/* Font Size */
/* Font Weight */
/* Lato Font Family */
:root {
  --theme-bg-color: $theme-bg-color;
  /* Background Color */
  --primary-font-color: $primary-font-color;
  /* Text Color */
  --secondary-font-color: $secondary-font-color;
  /* Text Color */
  --input-bg-color: $input-bg-color;
}

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

html {
  font-size: 10px;
  /* Base Font Size */
  scroll-behavior: smooth;
}

body {
  background: #0D1314;
  color: #ffffff;
  font-family: "Lato", sans-serif;
  line-height: normal;
  overflow-x: hidden;
}

.noscroll {
  touch-action: none !important;
  -ms-touch-action: none !important;
}

input, textarea {
  caret-color: #ffffff;
}

a {
  text-decoration: none;
}

h1 {
  font-size: clamp(3.2rem, 3.704vw + 1.067rem, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 4.861vw - 0.8rem, 6.2rem);
}

h3 {
  font-size: clamp(2rem, 0.926vw + 1.467rem, 2.8rem);
}

h4 {
  font-size: 5rem;
}

h5 {
  font-size: 3.2rem;
}

h6 {
  font-size: 2rem;
}

p {
  font-size: 1.6rem;
}

span {
  font-size: 1.4rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

ul li {
  list-style-type: none;
}

.btn-nrml {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 19.2px;
  text-align: center;
  border: #139EFE 1px solid;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
  padding: 1.2rem 1rem;
  border-radius: 0.8rem;
  width: 13.6rem;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
}

.btn-active {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 19.2px;
  text-align: center;
  background: #139EFE;
  color: #ffffff;
  padding: 1.2rem 1rem;
  border-radius: 0.8rem;
  width: 13.6rem;
  text-transform: uppercase;
  cursor: pointer;
}

.second-heading {
  font-family: "Kufam", sans-serif;
  color: #ffffff;
  font-size: clamp(2rem, 0.926vw + 1.467rem, 2.8rem);
  font-weight: 600;
  line-height: 36.4px;
  letter-spacing: 1px;
}

.heading-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.heading-top p {
  font-family: "Kufam", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 23.4px;
  letter-spacing: 1px;
  text-align: right;
  opacity: 0.6;
  width: 100%;
  max-width: 64.9rem;
}

.custom-modal {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.custom-modal.custom-modal-open {
  opacity: 1;
  visibility: visible;
}
.custom-modal.custom-modal-open .custom-modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.custom-modal .custom-modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.custom-modal .custom-modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50rem;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
  border-radius: 6px;
  max-height: 90%;
  padding: 2.4rem;
}
@media (max-width: 576px) {
  .custom-modal .custom-modal-wrapper {
    width: 90%;
    padding: 2rem;
  }
}
.custom-modal .custom-modal-wrapper .custom-modal-body p {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .custom-modal .custom-modal-wrapper .custom-modal-body p {
    font-size: 1.4rem;
  }
}
.custom-modal .custom-modal-wrapper .custom-modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #000000;
}
@media (max-width: 576px) {
  .custom-modal .custom-modal-wrapper .custom-modal-title {
    margin-bottom: 1.2rem;
  }
}
.custom-modal .custom-modal-wrapper .custom-modal-title h4 {
  color: #000000;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 991px) {
  .custom-modal .custom-modal-wrapper .custom-modal-title h4 {
    font-size: 1.8rem;
  }
}
.custom-modal .custom-modal-wrapper .custom-modal-title .custom-modal-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background: none;
  position: relative;
}
.custom-modal .custom-modal-wrapper .custom-modal-title .custom-modal-close:before {
  content: "";
  width: 14px;
  height: 2px;
  background: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
}
.custom-modal .custom-modal-wrapper .custom-modal-title .custom-modal-close:after {
  content: "";
  width: 14px;
  height: 2px;
  background: #000000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
}

.chat-bubble-reg {
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.chat-bubble-reg:hover .tooltip-text-register-btn {
  visibility: visible;
}
.chat-bubble-reg .tooltip-text-register-btn {
  visibility: hidden;
  width: 180px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  font-size: 14px !important;
  position: absolute;
  bottom: 120%;
  left: 43%;
  margin-left: -60px;
  text-transform: capitalize;
  line-height: 1.5;
}

.header-buttons a.chat-bubble-reg .tooltip-text-register-btn {
  top: 120%;
}

.link .tooltip-text-register-btn {
  width: 150px;
}

.notifyjs-corner .notifyjs-bootstrap-error {
  white-space: wrap;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-background-clip: text;
          background-clip: text;
}

.header-main {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  padding: 2rem 4rem;
  -webkit-backdrop-filter: blur(1.6rem);
          backdrop-filter: blur(1.6rem);
}
@media (max-width: 1366px) {
  .header-main {
    padding: 2rem 4rem;
  }
}
@media (max-width: 991px) {
  .header-main {
    padding: 2rem 2rem;
  }
}
@media (max-width: 678px) {
  .header-main {
    padding: 1.5rem;
  }
}
.header-main .header-wrapper {
  max-width: 128rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4rem;
  position: relative;
  background: rgb(6, 10, 11);
  border-radius: 1rem;
}
@media (max-width: 1366px) {
  .header-main .header-wrapper {
    max-width: 119rem;
  }
}
@media (max-width: 1024px) {
  .header-main .header-wrapper {
    padding: 1.2rem 2rem;
  }
}
@media (max-width: 991px) {
  .header-main .header-wrapper {
    padding: 0.5rem 1rem;
  }
}
.header-main .header-wrapper::before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: calc(100% + 3px);
  top: -1px;
  left: -1px;
  right: -2px;
  bottom: -1px;
  background: linear-gradient(90.26deg, rgba(19, 158, 254, 0.5) 9.27%, rgba(19, 158, 254, 0.0157895) 42.58%, rgba(30, 154, 176, 0) 42.59%, rgba(19, 158, 254, 0.455) 95.83%);
  border-radius: 1rem;
  z-index: -1;
}
.header-main .header-wrapper .logo {
  width: 100%;
  max-width: 15rem;
}
@media (max-width: 490px) {
  .header-main .header-wrapper .logo {
    max-width: 12rem;
  }
}
.header-main .header-wrapper .logo img {
  width: 100%;
}
.header-main .header-wrapper .header-overlay {
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.3s all ease-in-out;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
}
.header-main .header-wrapper .header-overlay.menu-overlay {
  opacity: 1;
  visibility: visible;
}
.header-main .header-wrapper .header-web {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 7.4rem;
  width: 78%;
}
@media (max-width: 1199px) {
  .header-main .header-wrapper .header-web {
    gap: 0;
    justify-content: space-between;
    width: 80%;
  }
}
@media (max-width: 991px) {
  .header-main .header-wrapper .header-web {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    width: 28rem;
    align-items: start;
    background: #0D1314;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    z-index: 999;
    padding: 2.5rem 1.5rem;
    height: 100vh;
    gap: 3rem;
    justify-content: normal;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 392px) {
  .header-main .header-wrapper .header-web {
    gap: 2rem;
  }
}
.header-main .header-wrapper .header-web.menu-active {
  right: 0;
}
.header-main .header-wrapper .header-web.menu-active .btn-nrml {
  color: #139EFE;
}
.header-main .header-wrapper .header-web .header-nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 1199px) {
  .header-main .header-wrapper .header-web .header-nav ul {
    gap: 3rem;
  }
}
@media (max-width: 991px) {
  .header-main .header-wrapper .header-web .header-nav ul {
    gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 392px) {
  .header-main .header-wrapper .header-web .header-nav ul {
    gap: 1rem;
  }
}
.header-main .header-wrapper .header-web .header-nav ul li a {
  font-family: "Lato", sans-serif;
  color: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.92rem;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
}
.header-main .header-wrapper .header-web .header-nav ul li a:hover {
  color: #139EFE;
}
@media (max-width: 1199px) {
  .header-main .header-wrapper .header-web .header-nav ul li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 991px) {
  .header-main .header-wrapper .header-web .header-nav ul li a {
    color: #139EFE;
  }
  .header-main .header-wrapper .header-web .header-nav ul li a:hover {
    color: #ffffff;
  }
}
@media (max-width: 392px) {
  .header-main .header-wrapper .header-web .header-nav ul li a {
    font-size: 1.2rem;
  }
}
.header-main .header-wrapper .header-web .header-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.header-main .header-wrapper .header-web .header-buttons .btn-nrml {
  transition: all ease-in-out 0.3s;
}
.header-main .header-wrapper .header-web .header-buttons .btn-nrml:hover {
  background: #139EFE;
}
@media (max-width: 991px) {
  .header-main .header-wrapper .header-web .header-buttons .btn-nrml {
    width: 12rem;
    font-size: 1.4rem;
    border: 1px solid #139EFE;
  }
  .header-main .header-wrapper .header-web .header-buttons .btn-nrml:hover {
    background: #139EFE;
    color: #ffffff;
  }
}
@media (max-width: 392px) {
  .header-main .header-wrapper .header-web .header-buttons .btn-nrml {
    font-size: 1.2rem;
    padding: 0.7rem;
  }
}
.header-main .header-wrapper .header-web .header-buttons .btn-active {
  transition: all ease-in-out 0.3s;
  border: #139EFE 1px solid;
}
.header-main .header-wrapper .header-web .header-buttons .btn-active:hover {
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%) !important;
  border: #139EFE 1px solid;
}
@media (max-width: 991px) {
  .header-main .header-wrapper .header-web .header-buttons .btn-active {
    width: 12rem;
    font-size: 1.4rem;
    background: #139EFE;
    border-color: #139EFE;
  }
  .header-main .header-wrapper .header-web .header-buttons .btn-active:hover {
    background: #ffffff;
    color: #139EFE;
    border: #139EFE 1px solid;
  }
}
@media (max-width: 392px) {
  .header-main .header-wrapper .header-web .header-buttons .btn-active {
    font-size: 1.2rem;
    padding: 0.7rem;
  }
}
.header-main .header-wrapper .header-mobile {
  display: none;
  cursor: pointer;
  transition: 300ms all ease-in-out;
}
@media (max-width: 991px) {
  .header-main .header-wrapper .header-mobile {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    position: relative;
    z-index: 999;
  }
  .header-main .header-wrapper .header-mobile span {
    width: 100%;
    height: 1.5px;
    border-radius: 2px;
    position: absolute;
    background: #ffffff;
    transition: 0.3s all ease-in-out;
  }
  .header-main .header-wrapper .header-mobile span:nth-of-type(1) {
    top: 4px;
  }
  .header-main .header-wrapper .header-mobile span:nth-of-type(2) {
    top: 12px;
  }
  .header-main .header-wrapper .header-mobile span:nth-of-type(3) {
    top: 20px;
  }
  .header-main .header-wrapper .header-mobile.menu-open span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header-main .header-wrapper .header-mobile.menu-open span:nth-of-type(2) {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  .header-main .header-wrapper .header-mobile.menu-open span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.logo-mobile {
  display: none;
}
@media (max-width: 991px) {
  .logo-mobile {
    display: block;
    max-width: 12rem;
  }
  .logo-mobile img {
    width: 100%;
  }
}

.footer {
  max-width: 128rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 4.4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  .footer {
    padding: 0 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .footer {
    flex-direction: column;
    gap: 1rem;
    padding: 2.2rem;
    padding-top: 0;
  }
}
@media (max-width: 392px) {
  .footer {
    gap: 0.6rem;
  }
}
@media (max-width: 320px) {
  .footer {
    padding: 0 0.5rem;
    padding-bottom: 1rem;
  }
}
.footer .logo {
  width: 100%;
  max-width: 15rem;
}
@media (max-width: 490px) {
  .footer .logo {
    max-width: 12rem;
  }
}
.footer .logo img {
  width: 100%;
}
.footer .footer-left p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 21.6px;
  text-align: center;
  color: #139EFE;
}
@media (max-width: 991px) {
  .footer .footer-left p {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .footer .footer-left p {
    font-size: 1.2rem;
  }
}
.footer .footer-right {
  display: flex;
  gap: 3.6rem;
}
@media (max-width: 678px) {
  .footer .footer-right {
    gap: 2rem;
  }
}
.footer .footer-right a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 19.2px;
  text-align: center;
  transition: 0.3s all ease-in-out;
  color: #ffffff;
}
.footer .footer-right a:hover {
  color: #139EFE;
}
@media (max-width: 991px) {
  .footer .footer-right a {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .footer .footer-right a {
    font-size: 1.2rem;
  }
}

.social-icons-wrapper {
  display: flex;
  gap: 1rem;
}
@media (max-width: 392px) {
  .social-icons-wrapper {
    margin-top: 0.8rem;
  }
}
.social-icons-wrapper a {
  color: #139EFE;
  transition: all ease-in-out 0.3s;
}
.social-icons-wrapper a:hover {
  color: #ffffff;
}
.social-icons-wrapper a i::before {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .social-icons-wrapper a i::before {
    font-size: 1.4rem;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: #139EFE;
}

.container-main {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  position: relative;
  background: rgba(13, 19, 20, 0.9);
  overflow: hidden;
}
.container-main::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.container-main::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .container-main {
    gap: 4rem;
  }
}
@media (max-width: 576px) {
  .container-main {
    gap: 2rem;
  }
}
@media (max-width: 392px) {
  .container-main {
    gap: 1rem;
  }
}
.container-main main {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media (max-width: 991px) {
  .container-main main {
    gap: 4rem;
  }
}
@media (max-width: 576px) {
  .container-main main {
    gap: 2rem;
  }
}
@media (max-width: 392px) {
  .container-main main {
    gap: 1rem;
  }
}

.container {
  max-width: 128rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1366px) {
  .container {
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .container {
    padding: 0 2rem;
  }
}
@media (max-width: 392px) {
  .container {
    padding: 1.5rem;
  }
}

.banner-main {
  position: relative;
}
.banner-main::before {
  content: "";
  position: absolute;
  width: 51.8rem;
  height: 51.8rem;
  left: -29rem;
  top: -33rem;
  background: #139EFE;
  filter: blur(51rem);
  z-index: 0;
  opacity: 0.3;
}
@media (max-width: 991px) {
  .banner-main::before {
    left: 0;
    top: 0;
    width: 30rem;
    height: 30rem;
  }
}
.banner-main::after {
  content: "";
  position: absolute;
  width: 51.8rem;
  height: 51.8rem;
  right: -36.7rem;
  top: -4.9rem;
  background: #139EFE;
  filter: blur(65rem);
  z-index: 0;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .banner-main::after {
    right: 0;
    height: 30rem;
    width: 30rem;
    top: 0;
  }
}
.banner-main .container {
  display: flex;
  gap: 5.7rem;
  padding-top: 18rem;
}
@media (max-width: 1280px) {
  .banner-main .container {
    gap: 1rem;
  }
}
@media (max-width: 991px) {
  .banner-main .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding-top: 11rem;
  }
}
@media (max-width: 392px) {
  .banner-main .container {
    padding-top: 10rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container {
    gap: 1rem;
  }
}
.banner-main .container .banner-left h1 {
  font-family: "Kufam", sans-serif;
  color: #ffffff;
  font-size: clamp(3.2rem, 3.704vw + 1.067rem, 6.4rem);
  font-weight: 700;
  line-height: 8.3rem;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .banner-main .container .banner-left h1 {
    line-height: 5.6rem;
  }
}
@media (max-width: 991px) {
  .banner-main .container .banner-left h1 {
    line-height: 3rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .banner-main .container .banner-left h1 {
    font-size: 3rem;
    line-height: normal;
  }
}
@media (max-width: 392px) {
  .banner-main .container .banner-left h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-left h1 {
    font-size: 2.2rem;
  }
}
.banner-main .container .banner-left h1 span {
  font-family: "Kufam", sans-serif;
  color: #139EFE;
  font-size: clamp(3.2rem, 3.704vw + 1.067rem, 6.4rem);
  font-weight: 700;
  line-height: 83.2px;
  letter-spacing: 1px;
  text-align: left;
}
@media (max-width: 1280px) {
  .banner-main .container .banner-left h1 span {
    line-height: 5.6rem;
  }
}
@media (max-width: 576px) {
  .banner-main .container .banner-left h1 span {
    font-size: 3rem;
    line-height: normal;
  }
}
@media (max-width: 392px) {
  .banner-main .container .banner-left h1 span {
    font-size: 2.4rem;
  }
}
.banner-main .container .banner-left p {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  margin-top: 0.4rem;
  opacity: 0.7;
}
@media (max-width: 1280px) {
  .banner-main .container .banner-left p {
    font-size: 1.8rem;
  }
}
@media (max-width: 991px) {
  .banner-main .container .banner-left p {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .banner-main .container .banner-left p {
    font-size: 1.4rem;
    line-height: normal;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-left p {
    font-size: 1.2rem;
  }
}
@media (max-width: 991px) {
  .banner-main .container .banner-left .banner-outer {
    display: flex;
    justify-content: center;
  }
}
.banner-main .container .banner-left .banner-outer .banner-lbcontainer {
  display: flex;
  gap: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 2rem;
  border-radius: 2rem;
  margin-top: 3.4rem;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
  border: 1px solid rgba(101, 182, 237, 0.3);
}
@media (max-width: 991px) {
  .banner-main .container .banner-left .banner-outer .banner-lbcontainer {
    margin-top: 2rem;
  }
}
@media (max-width: 576px) {
  .banner-main .container .banner-left .banner-outer .banner-lbcontainer {
    padding: 1rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-left .banner-outer .banner-lbcontainer {
    margin-top: 1rem;
  }
}
.banner-main .container .banner-left .banner-outer .banner-lbcontainer .banner-lbox {
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .banner-main .container .banner-left .banner-outer .banner-lbcontainer .banner-lbox {
    height: 6.5rem;
    width: 6.5rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-left .banner-outer .banner-lbcontainer .banner-lbox {
    height: 5.5rem;
    width: 5.5rem;
  }
}
.banner-main .container .banner-left .banner-outer .banner-lbcontainer .banner-lbox .banner-box-img img {
  width: 100%;
}
@media (max-width: 576px) {
  .banner-main .container .banner-left .banner-outer .banner-lbcontainer .banner-lbox .banner-box-img img {
    width: 80%;
  }
}
.banner-main .container .banner-left .banner-outer .banner-lbcontainer .banner-lbox p {
  font-size: 8.91px;
  font-weight: 700;
  line-height: 10.7px;
  letter-spacing: 0.1689066291px;
  text-transform: uppercase;
  text-align: left;
}
@media (max-width: 320px) {
  .banner-main .container .banner-left .banner-outer .banner-lbcontainer .banner-lbox p {
    font-size: 0.8rem;
  }
}
.banner-main .container .banner-right {
  border-radius: 1rem;
  max-width: 48rem;
  width: 100%;
}
.banner-main .container .banner-right .banner-top-wrapper {
  padding: 2rem 3rem 1rem;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(19, 158, 254, 0.2) 0%, rgba(114, 198, 255, 0.156709) 25%, rgba(29, 121, 181, 0.0447917) 77.08%, rgba(44, 154, 255, 0) 100%);
  border-radius: 1rem 1rem 0 0;
  border: 1px solid rgba(132, 197, 241, 0.3);
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-top-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-top-wrapper {
    padding: 1.5rem 1rem;
  }
}
.banner-main .container .banner-right .banner-top-wrapper .banner-flag {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.3rem;
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-flag {
    margin-bottom: 1.3rem;
  }
}
.banner-main .container .banner-right .banner-top-wrapper .banner-flag p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-flag p {
    font-size: 1.4rem;
    line-height: normal;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-flag p {
    font-size: 1.2rem;
  }
}
.banner-main .container .banner-right .banner-top-wrapper .banner-flag .banner-flag-img img {
  width: 100%;
}
.banner-main .container .banner-right .banner-top-wrapper .banner-rinput {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-input {
  width: 100%;
  border: 1px solid #139EFE;
  background: #191F27;
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  display: flex;
  gap: 0.48rem;
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-input {
    padding: 1rem 1.5rem;
  }
}
.banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-input span {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 21.6px;
}
.banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-input .banner-input-box {
  background: #191F27;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  outline: none;
  border: none;
  line-height: 21.6px;
  text-align: left;
  width: 100%;
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-input .banner-input-box {
    font-size: 1.4rem;
  }
}
.banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-cutype {
  background: #191F27;
  padding: 1.75rem 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 10.5rem;
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-cutype {
    padding: 1rem;
    max-width: 8rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-cutype {
    max-width: 6rem;
  }
}
.banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-cutype p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 21.6px;
  text-align: center;
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-cutype p {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-rinput .banner-cutype p {
    font-size: 1.2rem;
  }
}
.banner-main .container .banner-right .banner-top-wrapper .banner-plan {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.3rem;
  gap: 1rem;
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-plan {
    margin-bottom: 0.5rem;
  }
}
.banner-main .container .banner-right .banner-top-wrapper .banner-plan p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #ffffff;
  opacity: 0.7;
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-plan p {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-top-wrapper .banner-plan p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
.banner-main .container .banner-right .banner-btn {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 21px;
  margin-top: 1rem;
  border-radius: 0;
  padding: 1.6rem;
  display: block;
  background: #139EFE;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  transition: all ease-in-out 0.3s;
  border: 1px solid #139EFE;
}
.banner-main .container .banner-right .banner-btn span {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 21px;
}
@media (max-width: 576px) {
  .banner-main .container .banner-right .banner-btn span {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-btn span {
    font-size: 1.2rem;
  }
}
.banner-main .container .banner-right .banner-btn:hover {
  background: none;
  color: #139EFE;
}
@media (max-width: 576px) {
  .banner-main .container .banner-right .banner-btn {
    font-size: 1.4rem;
  }
}
@media (max-width: 490px) {
  .banner-main .container .banner-right .banner-btn {
    padding: 1.2rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-btn {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
}
.banner-main .container .banner-right .banner-pwrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
}
@media (max-width: 392px) {
  .banner-main .container .banner-right .banner-pwrapper {
    gap: 1rem;
  }
}
@media (max-width: 320px) {
  .banner-main .container .banner-right .banner-pwrapper {
    gap: 0.5rem;
  }
}
.banner-main .container .banner-right .banner-pwrapper .banner-pay {
  max-width: 11.2rem;
  height: auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.1019607843);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.45rem 0;
}
.banner-main .container .banner-right .banner-pwrapper .banner-pay img {
  margin: 0 auto;
}
.banner-main .container .banner-right .banner-pwrapper .bfc {
  border-radius: 0 0 0 1rem;
}
.banner-main .container .banner-right .banner-pwrapper .blc {
  border-radius: 0 0 1rem 0;
}

.scroll-main {
  padding: 3rem 0;
  background: rgba(6, 10, 11, 0.3019607843);
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .scroll-main {
    padding: 1rem 0;
  }
}
.scroll-main .scroll {
  display: flex;
  justify-content: space-between;
}
.scroll-main .scroll .swiper-wrapper {
  transition-timing-function: linear;
}
.scroll-main .scroll .swiper-wrapper .swiper-slide {
  width: auto;
  margin: 0 1.5rem;
}
.scroll-main .scroll p {
  font-family: "Kufam", sans-serif;
  color: #A7A7A7;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .scroll-main .scroll p {
    font-size: 1.4rem;
  }
}
@media (max-width: 490px) {
  .scroll-main .scroll p {
    font-size: 1.2rem;
  }
}

.commission-main {
  position: relative;
}
.commission-main::before {
  content: "";
  position: absolute;
  height: 14.7rem;
  width: 11.7rem;
  right: 0;
  top: 0;
  filter: opacity(0.1);
}
.commission-main .commission-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 678px) {
  .commission-main .commission-top {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 392px) {
  .commission-main .commission-top {
    gap: 1rem;
  }
}
.commission-main .commission-top .toggle-wrapper {
  display: flex;
  gap: 0.65rem;
  border: 0.64px solid #139EFE;
  padding: 0.63rem;
  border-radius: 1.2rem;
  position: relative;
}
@media (max-width: 392px) {
  .commission-main .commission-top .toggle-wrapper {
    padding: 0.3rem;
    border-radius: 0.8rem;
  }
}
.commission-main .commission-top .toggle-wrapper .bet__selector {
  height: 3.7rem;
  display: inline-block;
  position: absolute;
  left: 0.6rem;
  top: 0.6rem;
  z-index: 1;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 0 0.5rem 0.5rem 0;
  background: #139EFE;
  color: #ffffff;
}
.commission-main .commission-top .toggle-wrapper .bet__selector.first-active {
  border-radius: 0.5rem 0 0 0.5rem;
}
@media (max-width: 392px) {
  .commission-main .commission-top .toggle-wrapper .bet__selector {
    height: 2.8rem;
    top: 0.2rem;
    left: 0.2rem;
  }
}
.commission-main .commission-top .toggle-wrapper .commission-toggle-box {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 16.8px;
  text-align: center;
  padding: 1rem 3rem;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 392px) {
  .commission-main .commission-top .toggle-wrapper .commission-toggle-box {
    padding: 0.5rem;
    width: 10rem;
    font-size: 1.2rem;
    border-radius: 0.8rem;
  }
}
.commission-main .commission-top .toggle-wrapper .commission-toggle-box.toggle-active {
  color: #ffffff;
}
.commission-main .commission-boxes {
  display: none;
  gap: 7rem;
  margin-top: 5rem;
}
@media (max-width: 1199px) {
  .commission-main .commission-boxes {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .commission-main .commission-boxes {
    margin-top: 3rem;
  }
}
@media (max-width: 991px) {
  .commission-main .commission-boxes {
    margin: 3rem auto 0;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .commission-main .commission-boxes {
    flex-wrap: wrap;
    max-width: 42rem;
    gap: 2rem;
  }
}
@media (max-width: 490px) {
  .commission-main .commission-boxes {
    gap: 1.5rem;
  }
}
@media (max-width: 392px) {
  .commission-main .commission-boxes {
    margin: 1.5rem auto 0;
  }
}
@media (max-width: 320px) {
  .commission-main .commission-boxes {
    gap: 1rem;
  }
}
.commission-main .commission-boxes.tab-active {
  display: flex;
}
.commission-main .commission-boxes .commission-box {
  flex: 1 1 25%;
  width: 100%;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(147, 211, 255, 0.2) 0%, rgba(83, 187, 255, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
  border-radius: 1rem;
  position: relative;
  border: 1px solid rgba(64, 177, 255, 0.3);
  border-left: 0;
  border-top: 0;
}
@media (max-width: 991px) {
  .commission-main .commission-boxes .commission-box {
    flex: 1 1 45%;
  }
}
.commission-main .commission-boxes .commission-box .commission-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.1rem;
  margin-top: 0.93rem;
}
@media (max-width: 1024px) {
  .commission-main .commission-boxes .commission-box .commission-img {
    margin-bottom: 0;
    width: 6rem;
    margin: 0.5rem auto 0;
  }
}
@media (max-width: 768px) {
  .commission-main .commission-boxes .commission-box .commission-img {
    width: 5rem;
  }
}
@media (max-width: 991px) {
  .commission-main .commission-boxes .commission-box .commission-img img {
    width: 100%;
  }
}
.commission-main .commission-boxes .commission-box .cimg-back {
  position: absolute;
  transform: scale(1.3);
  top: 20px;
  left: 35%;
  z-index: -1;
  filter: blur(3rem);
}
@media (max-width: 392px) {
  .commission-main .commission-boxes .commission-box .cimg-back {
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }
}
.commission-main .commission-boxes .commission-box .cb-content {
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 218, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  margin-bottom: 3.1rem;
}
@media (max-width: 1440px) {
  .commission-main .commission-boxes .commission-box .cb-content {
    padding: 1rem;
  }
}
@media (max-width: 1024px) {
  .commission-main .commission-boxes .commission-box .cb-content {
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .commission-main .commission-boxes .commission-box .cb-content {
    padding: 0.5rem;
  }
}
@media (max-width: 392px) {
  .commission-main .commission-boxes .commission-box .cb-content {
    margin-bottom: 1rem;
    padding: 0.5rem;
  }
}
.commission-main .commission-boxes .commission-box .cb-content p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 21.6px;
}
@media (max-width: 1024px) {
  .commission-main .commission-boxes .commission-box .cb-content p {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) {
  .commission-main .commission-boxes .commission-box .cb-content p {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .commission-main .commission-boxes .commission-box .cb-content p {
    font-size: 1.2rem;
  }
}
.commission-main .commission-boxes .commission-box .cb-bottom {
  background: rgba(6, 10, 11, 0.5019607843);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 1rem 1rem 0 0;
  padding: 0.85rem 4.35rem;
  border: 1px solid;
  -o-border-image: radial-gradient(45.91% 100.28% at 44.04% -20.36%, #A37F5C 0%, rgba(123, 96, 70, 0) 100%);
     border-image: radial-gradient(45.91% 100.28% at 44.04% -20.36%, #A37F5C 0%, rgba(123, 96, 70, 0) 100%);
}
@media (max-width: 1024px) {
  .commission-main .commission-boxes .commission-box .cb-bottom {
    padding: 0.8rem 2rem;
  }
}
.commission-main .commission-boxes .commission-box .cb-bottom h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 33.89px;
}
@media (max-width: 1024px) {
  .commission-main .commission-boxes .commission-box .cb-bottom h3 {
    font-size: 2rem;
    line-height: normal;
  }
}
@media (max-width: 392px) {
  .commission-main .commission-boxes .commission-box .cb-bottom h3 {
    font-size: 1.4rem;
  }
}
.commission-main .commission-boxes .commission-box .cbb-1 {
  position: relative;
}
.commission-main .commission-boxes .commission-box .cbb-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.2rem;
  background: radial-gradient(45.91% 100.28% at 44.04% -20.36%, #A37F5C 0%, rgba(123, 96, 70, 0) 100%);
}
.commission-main .commission-boxes .commission-box .cbb-2 {
  position: relative;
}
.commission-main .commission-boxes .commission-box .cbb-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.2rem;
  background: radial-gradient(45.91% 100.28% at 44.04% -20.36%, #FDFFFE 0%, rgba(253, 255, 254, 0) 100%);
}
.commission-main .commission-boxes .commission-box .cbb-3 {
  position: relative;
}
.commission-main .commission-boxes .commission-box .cbb-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.2rem;
  background: radial-gradient(45.91% 100.28% at 44.04% -20.36%, #E8A72C 0%, rgba(232, 167, 44, 0) 100%);
}
.commission-main .commission-boxes .commission-box .cbb-4 {
  position: relative;
}
.commission-main .commission-boxes .commission-box .cbb-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0.2rem;
  background: radial-gradient(45.91% 100.28% at 44.04% -20.36%, #3AE574 0%, rgba(58, 229, 116, 0) 100%);
}

.about-main {
  position: relative;
}
.about-main::before {
  content: "";
  position: absolute;
  width: 44.8rem;
  height: 44.8rem;
  top: 0;
  left: -5rem;
  background: #139EFE;
  filter: blur(74rem);
  z-index: 0;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .about-main::before {
    left: 0;
    width: 30rem;
    height: 30rem;
  }
}
.about-main .about-box-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  margin: 5rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1199px) {
  .about-main .about-box-wrapper {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .about-main .about-box-wrapper {
    flex-wrap: wrap;
    width: 100%;
    margin: 2rem auto 0;
  }
}
@media (max-width: 490px) {
  .about-main .about-box-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 320px) {
  .about-main .about-box-wrapper {
    gap: 1rem;
  }
}
.about-main .about-box-wrapper .about-bxcol {
  display: grid;
  gap: 6rem;
}
@media (max-width: 1199px) {
  .about-main .about-box-wrapper .about-bxcol {
    gap: 2rem;
  }
}
@media (max-width: 991px) {
  .about-main .about-box-wrapper .about-bxcol {
    flex-direction: row;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .about-main .about-box-wrapper .about-bxcol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 490px) {
  .about-main .about-box-wrapper .about-bxcol {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 320px) {
  .about-main .about-box-wrapper .about-bxcol {
    gap: 1rem;
  }
}
.about-main .about-box-wrapper .about-bxcol .about-box {
  width: 100%;
  max-width: 20rem;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3.08rem 1.22rem;
  border-radius: 1rem;
}
.about-main .about-box-wrapper .about-bxcol .about-box:nth-child(1) {
  grid-column: 1;
  grid-row: 2/2;
  transform: translateY(-50%);
}
.about-main .about-box-wrapper .about-bxcol .about-box:nth-child(2) {
  grid-column: 2/2;
  grid-row: 1;
}
.about-main .about-box-wrapper .about-bxcol .about-box:nth-child(3) {
  grid-column: 2/2;
  grid-row: 2;
}
.about-main .about-box-wrapper .about-bxcol .about-box:nth-child(4) {
  grid-column: 3;
  grid-row: 2/2;
  transform: translateY(-50%);
}
.about-main .about-box-wrapper .about-bxcol .about-box:nth-child(5) {
  grid-column: 4/4;
  grid-row: 1;
}
.about-main .about-box-wrapper .about-bxcol .about-box:nth-child(6) {
  grid-column: 4/4;
  grid-row: 2;
}
.about-main .about-box-wrapper .about-bxcol .about-box:nth-child(7) {
  grid-column: 5;
  grid-row: 2/2;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .about-main .about-box-wrapper .about-bxcol .about-box {
    transform: none !important;
  }
}
@media (max-width: 678px) {
  .about-main .about-box-wrapper .about-bxcol .about-box {
    height: 100%;
  }
}
@media (max-width: 490px) {
  .about-main .about-box-wrapper .about-bxcol .about-box {
    max-width: 100%;
    padding: 2rem 1.2rem;
  }
}
.about-main .about-box-wrapper .about-bxcol .about-box .ab-img {
  margin-bottom: 1rem;
}
@media (max-width: 678px) {
  .about-main .about-box-wrapper .about-bxcol .about-box .ab-img {
    width: 3.5rem;
  }
}
@media (max-width: 320px) {
  .about-main .about-box-wrapper .about-bxcol .about-box .ab-img {
    width: 3rem;
  }
}
.about-main .about-box-wrapper .about-bxcol .about-box .ab-img img {
  width: 100%;
}
.about-main .about-box-wrapper .about-bxcol .about-box h6 {
  color: #139EFE;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.2rem;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .about-main .about-box-wrapper .about-bxcol .about-box h6 {
    font-size: 1.4rem;
    line-height: normal;
  }
}
@media (max-width: 392px) {
  .about-main .about-box-wrapper .about-bxcol .about-box h6 {
    font-size: 1.2rem;
  }
}
.about-main .about-box-wrapper .about-bxcol .about-box .text-container {
  text-align: center;
}
.about-main .about-box-wrapper .about-bxcol .about-box .text-container p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2rem;
  text-align: center;
  color: #ffffff;
  opacity: 0.6;
  display: inline;
}
@media (max-width: 991px) {
  .about-main .about-box-wrapper .about-bxcol .about-box .text-container p {
    font-size: 1.4rem;
    line-height: normal;
  }
}
@media (max-width: 392px) {
  .about-main .about-box-wrapper .about-bxcol .about-box .text-container p {
    font-size: 1.2rem;
  }
}
.about-main .about-box-wrapper .about-bxcol .about-box .text-container span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.2rem;
  color: #139EFE;
  cursor: pointer;
}
@media (max-width: 991px) {
  .about-main .about-box-wrapper .about-bxcol .about-box .text-container span {
    font-size: 1.4rem;
    line-height: normal;
  }
}
.about-main .about-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 5rem;
  margin: 0 auto;
  width: 100%;
  margin-top: 5rem;
}
@media (max-width: 991px) {
  .about-main .about-bottom-wrapper {
    padding: 0;
    gap: 2rem;
  }
}
@media (max-width: 678px) {
  .about-main .about-bottom-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 490px) {
  .about-main .about-bottom-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 320px) {
  .about-main .about-bottom-wrapper {
    margin-top: 1rem;
    gap: 1rem;
  }
}
.about-main .about-bottom-wrapper .about-bottom {
  width: 100%;
  border-top: 0;
  border-radius: 0 0 1rem 1rem;
  padding: 1rem;
  position: relative;
  background: #0E1E26;
}
.about-main .about-bottom-wrapper .about-bottom::after {
  content: "";
  position: absolute;
  height: 100%;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: radial-gradient(70.92% 105.12% at 50% 100%, #139EFE 0%, rgba(30, 154, 176, 0) 100%);
  border-radius: 0 0 1rem 1rem;
  z-index: -1;
}
@media (max-width: 678px) {
  .about-main .about-bottom-wrapper .about-bottom {
    max-width: 100%;
    flex: 1 1 35%;
  }
}
.about-main .about-bottom-wrapper .about-bottom p,
.about-main .about-bottom-wrapper .about-bottom span {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 27px;
  color: #ffffff;
  text-align: center;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .about-main .about-bottom-wrapper .about-bottom p,
  .about-main .about-bottom-wrapper .about-bottom span {
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media (max-width: 392px) {
  .about-main .about-bottom-wrapper .about-bottom p,
  .about-main .about-bottom-wrapper .about-bottom span {
    font-size: 1.2rem;
  }
}
@media (max-width: 320px) {
  .about-main .about-bottom-wrapper .about-bottom p,
  .about-main .about-bottom-wrapper .about-bottom span {
    font-size: 1rem;
    line-height: 16px;
  }
}
.about-main .about-bottom-wrapper .about-bottom span {
  display: block;
  text-transform: uppercase;
}

.award-main .award-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 9rem 0;
  background-color: rgba(6, 10, 11, 0.6);
  margin-top: 5rem;
  position: relative;
  border-radius: 2rem;
}
@media (max-width: 1280px) {
  .award-main .award-wrapper {
    padding: 6rem 0;
  }
}
@media (max-width: 991px) {
  .award-main .award-wrapper {
    padding: 4rem 0;
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  .award-main .award-wrapper {
    padding: 3rem 0;
  }
}
.award-main .award-wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 47%, rgba(217, 217, 217, 0) 53%, rgba(0, 0, 0, 0.8) 100%);
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 2rem;
  z-index: 2;
}
.award-main .award-wrapper .award-img {
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 678px) {
  .award-main .award-wrapper .award-img {
    padding: 0 2rem;
  }
}
.award-main .award-wrapper .award-img img {
  width: 100%;
}
.award-main .award-wrapper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.downloadAppSection .downloadAppWrapper {
  position: relative;
  height: 32rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppWrapper {
    height: auto;
    overflow: visible;
  }
}
.downloadAppSection .downloadAppWrapper img {
  width: 100%;
}
.downloadAppSection .downloadAppWrapper::before {
  min-height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppWrapper::before {
    border: 1px solid rgba(165, 239, 255, 0.2);
    border-radius: 2rem;
    background: none !important;
  }
}
.downloadAppSection .downloadAppWrapper::after {
  min-width: 56rem;
  min-height: 34rem;
  height: 100%;
  position: absolute;
  top: 0.5rem;
  left: 0.1rem;
  z-index: -1;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppWrapper::after {
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    opacity: 0.6;
    top: 0;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 6.4rem;
  padding: 1rem;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(165, 239, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(70, 144, 213, 0) 100%);
  border-radius: 2rem;
  height: 32rem;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper {
    flex-direction: column;
    height: auto;
    gap: 2rem;
    padding: 2.5rem;
  }
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppImgWrapper {
  max-width: 15rem;
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppImgWrapper {
    max-width: 12rem;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppImgWrapper img {
  width: 100%;
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper {
  max-width: 70rem;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper {
    text-align: center;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper h4 {
  font-size: clamp(1.6rem, 1.25vw + 1.2rem, 3.6rem);
  margin-bottom: 2.4rem;
  font-weight: 600;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper h4 {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 490px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper h4 {
    margin-bottom: 1rem;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper p {
  font-size: clamp(1.4rem, 0.5vw + 1.24rem, 2.2rem);
  margin-bottom: 4.4rem;
  opacity: 60%;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper p {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 490px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper p {
    margin-bottom: 2rem;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper {
  display: flex;
  gap: 2.4rem;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper {
    justify-content: center;
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper {
    flex-direction: column;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper a {
  padding: 1.2rem 2.4rem 1.2rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid #ffffff;
  border-radius: 1rem;
  background: transparent;
  color: #ffffff;
  font-size: clamp(1.4rem, 0.125vw + 1.36rem, 1.6rem);
  font-family: "Lato", sans-serif;
  cursor: pointer;
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper a {
    justify-content: center;
  }
}
.downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper a img {
  width: 2.4rem;
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppWrapper .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper a img {
    width: 2rem;
  }
}

.faq-main {
  position: relative;
}
.faq-main::after {
  content: "";
  position: absolute;
  width: 51.8rem;
  height: 51.8rem;
  border-radius: 50%;
  right: -41rem;
  bottom: -8rem;
  background: #139EFE;
  filter: blur(74rem);
  z-index: 0;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .faq-main::after {
    right: 0;
    bottom: 0;
    height: 30rem;
    width: 30rem;
  }
}
.faq-main .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .faq-main .faq-wrapper {
    margin-top: 2rem;
  }
}
.faq-main .faq-wrapper .faq-box {
  background: linear-gradient(0deg, rgba(1, 25, 30, 0.3), rgba(1, 25, 30, 0.3)), linear-gradient(0deg, rgba(6, 10, 11, 0.3), rgba(6, 10, 11, 0.3));
  padding: 2.85rem 2rem;
  border-bottom: 1px solid rgba(19, 158, 254, 0.2);
  border-top: 0;
  border-left: none;
  border-right: none;
}
.faq-main .faq-wrapper .faq-box:first-child .faq-active-text {
  display: block;
}
@media (max-width: 768px) {
  .faq-main .faq-wrapper .faq-box {
    padding: 1rem;
  }
}
.faq-main .faq-wrapper .faq-box.faq-active .faq-arrow {
  transform: rotate(180deg);
}
.faq-main .faq-wrapper .faq-box .faq-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.faq-main .faq-wrapper .faq-box .faq-head h6 {
  font-weight: 500;
  line-height: 27px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq-main .faq-wrapper .faq-box .faq-head h6 {
    font-size: 1.8rem;
    line-height: normal;
  }
}
@media (max-width: 490px) {
  .faq-main .faq-wrapper .faq-box .faq-head h6 {
    font-size: 1.6rem;
  }
}
@media (max-width: 392px) {
  .faq-main .faq-wrapper .faq-box .faq-head h6 {
    font-size: 1.4rem;
  }
}
.faq-main .faq-wrapper .faq-box .faq-head .faq-arrow {
  transition: all ease-in-out 0.5s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq-main .faq-wrapper .faq-box .faq-head .faq-arrow {
    width: 3rem;
  }
}
@media (max-width: 678px) {
  .faq-main .faq-wrapper .faq-box .faq-head .faq-arrow {
    width: 2.4rem;
  }
}
@media (max-width: 320px) {
  .faq-main .faq-wrapper .faq-box .faq-head .faq-arrow {
    width: 2rem;
  }
}
.faq-main .faq-wrapper .faq-box .faq-head .faq-arrow img {
  width: 100%;
}
.faq-main .faq-wrapper .faq-box .faq-active-text p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 27px;
  opacity: 0.6;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .faq-main .faq-wrapper .faq-box .faq-active-text p {
    font-size: 1.4rem;
    line-height: normal;
  }
}
@media (max-width: 490px) {
  .faq-main .faq-wrapper .faq-box .faq-active-text p {
    font-size: 1.2rem;
  }
}

.contact-main {
  position: relative;
}
.contact-main .container::before {
  content: "";
  position: absolute;
  height: 25.8rem;
  width: 25.8rem;
  left: 0;
  bottom: 0;
  background: #139EFE;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(100px);
  z-index: 1;
}
.contact-main .container::after {
  content: "";
  position: absolute;
  height: 25.8rem;
  width: 25.8rem;
  right: 0;
  top: 0;
  background: #139EFE;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(100px);
  z-index: 1;
}
.contact-main .container .contact {
  max-width: 128rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(145, 210, 255, 0.2) 0%, rgba(110, 191, 244, 0.0447917) 77.08%, rgba(50, 151, 240, 0.00879545) 95.5%, rgba(70, 144, 213, 0) 100%), linear-gradient(0deg, rgba(25, 31, 39, 0.1), rgba(25, 31, 39, 0.1));
  border-radius: 2rem;
  padding: 13.9rem 5rem;
  border: 1px solid #22577b;
}
@media (max-width: 1366px) {
  .contact-main .container .contact {
    padding: 5rem;
  }
}
@media (max-width: 991px) {
  .contact-main .container .contact {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .contact-main .container .contact {
    padding: 2rem 1rem;
  }
}
.contact-main .container .contact::before {
  content: "";
  position: absolute;
  width: 18.7rem;
  height: 13.7rem;
  top: -13.7rem;
  left: 2.2rem;
  z-index: 0;
}
@media (max-width: 576px) {
  .contact-main .container .contact::before {
    height: 10rem;
    width: 10rem;
    background-size: contain;
    top: -4rem;
  }
}
.contact-main .container .contact::after {
  content: "";
  position: absolute;
  height: 17.9rem;
  width: 17.9rem;
  bottom: 1.1rem;
  right: 0.82rem;
  z-index: -1;
}
.contact-main .container .contact .contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 13rem;
}
@media (max-width: 1366px) {
  .contact-main .container .contact .contact-wrapper {
    flex-direction: column;
    gap: 4rem;
  }
}
@media (max-width: 991px) {
  .contact-main .container .contact .contact-wrapper {
    gap: 0;
  }
}
.contact-main .container .contact .contact-wrapper .contact-left {
  width: 100%;
  max-width: 30.2rem;
  position: relative;
}
@media (max-width: 1366px) {
  .contact-main .container .contact .contact-wrapper .contact-left {
    width: 100%;
    max-width: 100%;
  }
}
.contact-main .container .contact .contact-wrapper .contact-left::before {
  content: "";
  position: absolute;
  width: 23.6rem;
  height: 23.6rem;
  left: -2.7rem;
  top: -24.7rem;
  z-index: -1;
}
@media (max-width: 1366px) {
  .contact-main .container .contact .contact-wrapper .contact-left::before {
    top: 0;
  }
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-left::before {
    width: 10rem;
    height: 10rem;
    background-size: contain;
    left: 0;
    top: 0;
  }
}
.contact-main .container .contact .contact-wrapper .contact-left h2 {
  font-family: "Kufam", sans-serif;
  color: #139EFE;
  font-size: clamp(2rem, 4.861vw - 0.8rem, 6.2rem);
  font-weight: 500;
  line-height: 85px;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 1366px) {
  .contact-main .container .contact .contact-wrapper .contact-left h2 {
    text-align: center;
    line-height: normal;
    margin-bottom: 1rem;
  }
}
@media (max-width: 320px) {
  .contact-main .container .contact .contact-wrapper .contact-left h2 {
    font-size: 1.7rem;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right {
  width: 100%;
}
.contact-main .container .contact .contact-wrapper .contact-right .cr-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 678px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top {
    gap: 2rem;
  }
}
@media (max-width: 320px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top {
    flex-direction: column;
    gap: 1rem;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review {
  background: radial-gradient(90.16% 143.01% at 15.32% 21.04%, rgba(19, 158, 254, 0.2) 0%, rgba(78, 179, 245, 0.0447917) 77.08%, rgba(0, 131, 251, 0) 100%);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  border: 1px solid #22577b;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.7rem;
  right: 0;
  bottom: 0;
  background-blend-mode: overlay;
  filter: blur(5rem);
  border-radius: 1rem;
}
@media (max-width: 991px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review {
    gap: 1rem;
    padding: 0.5rem;
  }
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }
}
@media (max-width: 320px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review {
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    gap: 0.5rem;
    align-items: center;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-left {
  width: 8.2rem;
  z-index: 10;
}
@media (max-width: 678px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-left {
    width: 3.6rem;
  }
}
@media (max-width: 392px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-left {
    width: 3.6rem;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-left img {
  width: 100%;
}
.contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-right {
  z-index: 10;
}
.contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-right h6 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 27px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-right h6 {
    font-size: 1.6rem;
  }
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-right h6 {
    font-size: 1.4rem;
    line-height: normal;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-right p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-right p {
    font-size: 1.4rem;
  }
}
@media (max-width: 678px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-right p {
    line-height: normal;
  }
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .cr-top .cr-review .cr-review-right p {
    line-height: 16px;
    font-size: 1.2rem;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top {
  background: rgba(6, 10, 11, 0.3);
  border-radius: 1rem 1rem 0 0;
  padding: 2rem;
  margin-top: 4.3rem;
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top {
    margin-top: 1.5rem;
    padding: 1.5rem 1rem;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 19px;
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top p {
    line-height: normal;
    font-size: 1.4rem;
    text-align: center;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2.8rem 0.5rem 0;
}
@media (max-width: 678px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top {
    flex-direction: column;
  }
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top {
    margin: 1.5rem 0 1rem;
    gap: 1rem;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top .ci-top-input {
  width: 100%;
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top .ci-top-input input {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 19.2px;
  color: #ffffff;
  border: none;
  outline: none;
  width: 100%;
  border-radius: 1rem;
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top .ci-top-input input {
    font-size: 1.4rem;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top .ci-top-input::-moz-placeholder {
  color: #ffffff;
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top .ci-top-input::placeholder {
  color: #ffffff;
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top .ci-top .ci-top-input .parsley-errors-list li {
  margin-top: 0;
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top textarea {
  width: 99%;
  height: 11.8rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 1.25rem 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 19.2px;
  border: none;
  outline: none;
  margin: 2rem 0.5rem 0.3rem;
  font-family: "Lato", sans-serif;
  resize: none;
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-info .contact-info-top textarea {
    margin: 0;
    font-size: 1.4rem;
  }
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-btn {
  width: 100%;
  background: #139EFE;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 21px;
  text-align: center;
  padding: 2.1rem;
  border-radius: 0 0 1rem 1rem;
  margin-top: 1rem;
  text-transform: uppercase;
  border: 1px solid #139EFE;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.contact-main .container .contact .contact-wrapper .contact-right .contact-btn:hover {
  background: none;
  color: #139EFE;
  border: #139EFE 1px solid;
}
@media (max-width: 576px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-btn {
    padding: 1.5rem;
  }
}
@media (max-width: 490px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-btn {
    padding: 1rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .contact-main .container .contact .contact-wrapper .contact-right .contact-btn {
    padding: 0.8rem;
  }
}

.faq-active-text {
  display: none;
}

.faq-active {
  position: relative;
  background: #0D1314 !important;
  border-radius: 1rem;
  border-bottom: none !important;
}
.faq-active::before {
  content: "";
  position: absolute;
  height: 100%;
  width: calc(100% + 2px);
  top: -1px;
  left: -1px;
  right: -1px;
  background: linear-gradient(180deg, #226C9F 0%, rgba(46, 111, 155, 0) 49.63%);
  z-index: -1;
  border-radius: 1rem;
}

@media (max-width: 392px) {
  .zm-btn-active {
    width: 10rem;
  }
}

@media (max-width: 392px) {
  .second-heading {
    font-size: 1.6rem;
    line-height: normal;
  }
}

@media (max-width: 991px) {
  .heading-top {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 991px) {
  .heading-top p {
    text-align: center;
    font-size: 1.4rem;
    line-height: normal;
  }
}
@media (max-width: 392px) {
  .heading-top p {
    font-size: 1.2rem;
  }
}

.chat-sticky-chat {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 3;
  border-radius: 50%;
  width: 6rem;
  transition: all ease-in-out 0.3s;
}
.chat-sticky-chat:hover {
  box-shadow: 0 0 3rem #139EFE;
}
@media (max-width: 1366px) {
  .chat-sticky-chat {
    bottom: 8.5rem;
  }
}
@media (max-width: 991px) {
  .chat-sticky-chat {
    bottom: 1.5rem;
  }
}
@media (max-width: 490px) {
  .chat-sticky-chat {
    width: 4.2rem;
    height: 4.2rem;
  }
}
.chat-sticky-chat img {
  width: 100%;
}

.zm-short-text {
  display: inline;
}

.alert {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0 0.3rem;
  position: relative;
}
@media (max-width: 490px) {
  .alert {
    margin-top: 1rem;
    padding: 1.25rem 2rem;
  }
}

.alert .closebtn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

.alert ul li {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #B0000D;
}

.success_msg {
  color: #3AE574;
}

.closebtn {
  color: #ffffff;
}

body::before {
  content: "";
  position: absolute;
  width: 51.8rem;
  height: 51.8rem;
  bottom: 0;
  left: -45rem;
  background: #139EFE;
  filter: blur(74rem);
  z-index: 0;
  opacity: 0.7;
}
@media (max-width: 991px) {
  body::before {
    height: 30rem;
    width: 30rem;
    left: 0;
  }
}
@media (max-width: 320px) {
  body::before {
    width: 22rem;
    height: 22rem;
  }
}

.sp-c-tc-page-wrapper {
  margin-top: 12rem;
}
@media (max-width: 991px) {
  .sp-c-tc-page-wrapper {
    margin-top: 10rem;
  }
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container {
  max-width: 144rem;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .sp-c-tc-page-wrapper .sp-c-tc-page-container {
    max-width: 100%;
    padding: 0 4rem;
  }
}
@media (max-width: 991px) {
  .sp-c-tc-page-wrapper .sp-c-tc-page-container {
    padding: 0 2rem;
  }
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content {
  max-width: 128rem;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc__heading {
  font-size: 3.6rem;
  margin-bottom: 3rem;
}
@media (max-width: 678px) {
  .sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc__heading {
    font-size: 2.6rem;
    margin-bottom: 2.4rem;
  }
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media (max-width: 678px) {
  .sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container h4 {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media (max-width: 678px) {
  .sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container p {
    font-size: 1.4rem;
  }
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container ol {
  list-style-position: inside;
  padding-left: 0;
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container ol li {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
@media (max-width: 678px) {
  .sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container ol li {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container ol .bulleted-list {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 3rem;
  color: #ffffff;
}
@media (max-width: 678px) {
  .sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container ol .bulleted-list {
    margin-bottom: 2rem;
  }
}
.sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container ol .bulleted-list li {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  font-weight: 400;
  list-style-type: disc;
}
@media (max-width: 678px) {
  .sp-c-tc-page-wrapper .sp-c-tc-page-container .sp-c-tc-page-content .sp-c-tc .sp-c-tc-container ol .bulleted-list li {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}

.grad-bg-auth {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.dots {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  top: 15rem;
  right: 17rem;
  z-index: 9;
  mix-blend-mode: color-dodge;
}
@media (max-width: 1920px) {
  .dots {
    right: 20%;
  }
}
@media (max-width: 1600px) {
  .dots {
    right: 15%;
  }
}
@media (max-width: 1440px) {
  .dots {
    right: 10%;
  }
}
@media (max-width: 1366px) {
  .dots {
    right: 5%;
  }
}
@media (max-width: 991px) {
  .dots {
    display: none;
  }
}

.auth-container {
  width: 100%;
  height: 100dvh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2rem;
  position: relative;
  background: rgba(13, 19, 20, 0.9);
}
@media (max-width: 392px) {
  .auth-container {
    padding: 2rem 1.5rem 0;
  }
}
@media (max-width: 320px) {
  .auth-container {
    padding: 1rem;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .auth-container {
    gap: 4rem;
  }
}
.auth-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
}
.auth-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.auth-header-main {
  max-width: 128rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media (max-width: 1366px) {
  .auth-header-main {
    padding: 0 4rem;
  }
}
@media (max-width: 490px) {
  .auth-header-main {
    padding: 0 2rem;
  }
}
@media (max-width: 392px) {
  .auth-header-main {
    padding: 0 0.5rem;
  }
}
.auth-header-main .auth-header-wrapper {
  display: flex;
  padding: 0.4rem;
  position: relative;
  background: rgb(6, 10, 11);
  border-radius: 1rem;
}
@media (max-width: 392px) {
  .auth-header-main .auth-header-wrapper {
    padding: 0;
  }
}
.auth-header-main .auth-header-wrapper::before {
  content: "";
  position: absolute;
  height: calc(100% + 2px);
  width: calc(100% + 3px);
  top: -1px;
  left: -1px;
  right: -2px;
  bottom: -1px;
  background: linear-gradient(90.26deg, rgba(19, 158, 254, 0.5) 9.27%, rgba(19, 158, 254, 0.0157895) 42.58%, rgba(30, 154, 176, 0) 42.59%, rgba(19, 158, 254, 0.455) 95.83%);
  border-radius: 1rem;
  z-index: -1;
}
.auth-header-main .auth-header-wrapper .logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.auth-header-main .auth-header-wrapper .logo img {
  width: auto;
}

.content-main {
  max-width: 128rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  gap: 6.5rem;
}
@media (max-width: 1366px) {
  .content-main {
    padding: 0 4rem;
  }
}
@media (max-width: 490px) {
  .content-main {
    padding: 0 2rem;
  }
}
@media (max-width: 392px) {
  .content-main {
    padding: 0 0.5rem;
  }
}
.content-main::before {
  content: "";
  position: absolute;
  height: 17.7rem;
  width: 17.7rem;
  top: -1.9rem;
  left: -6.2rem;
  z-index: -1;
}
@media (max-width: 490px) {
  .content-main::before {
    left: 0;
    background-size: contain !important;
    height: 10rem;
    width: 10rem;
  }
}
.content-main .content {
  width: 100%;
  margin: auto;
}
.content-main .content h1 {
  font-family: "Kufam", sans-serif;
  font-size: 6.2rem;
  font-weight: 600;
  line-height: 65.49px;
  letter-spacing: 1px;
  text-align: left;
}
@media (max-width: 991px) {
  .content-main .content h1 {
    font-size: 4rem;
    line-height: normal;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .content-main .content h1 {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .content-main .content h1 {
    text-align: center;
  }
}
@media (max-width: 490px) {
  .content-main .content h1 {
    font-size: 2.6rem;
  }
}
.content-main .content h1 span {
  font-family: "Kufam", sans-serif;
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 74.37px;
  letter-spacing: 1px;
  text-align: left;
  color: #139EFE;
  display: block;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .content-main .content h1 span {
    font-size: 4rem;
    line-height: normal;
    text-align: center;
    display: inline;
  }
}
@media (max-width: 490px) {
  .content-main .content h1 span {
    font-size: 2.6rem;
  }
}
.content-main .content .link {
  background: linear-gradient(90.06deg, rgba(6, 10, 11, 0.2) 15.54%, rgba(6, 10, 11, 0) 83.93%);
  border: rgba(19, 158, 254, 0.5) 1px solid;
  padding: 1.1rem 2.2rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1rem;
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .content-main .content .link {
    margin: 1rem auto 0;
  }
}
@media (max-width: 768px) {
  .content-main .content .link {
    margin-inline: auto;
  }
}
@media (max-width: 576px) {
  .content-main .content .link {
    margin: 1rem auto 0;
  }
}
@media (max-width: 392px) {
  .content-main .content .link {
    padding: 0.5rem 1rem;
  }
}
.content-main .content .link p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 26px;
}
@media (max-width: 1199px) {
  .content-main .content .link p {
    font-size: 1.6rem;
    line-height: normal;
  }
}
@media (max-width: 392px) {
  .content-main .content .link p {
    font-size: 1.4rem;
  }
}
.content-main .content .link a {
  color: #139EFE;
}
.content-main .content form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  margin-top: 5rem;
}
@media (max-width: 991px) {
  .content-main .content form {
    max-width: 60rem;
    margin: 2rem auto 0;
  }
}
@media (max-width: 576px) {
  .content-main .content form {
    gap: 1.5rem;
  }
}
@media (max-width: 490px) {
  .content-main .content form {
    max-width: 29rem;
  }
}
@media (max-width: 392px) {
  .content-main .content form {
    max-width: 100%;
  }
}
.content-main .content form input[type=number]::-webkit-inner-spin-button,
.content-main .content form input[type=number]::-webkit-outer-spin-button {
  /* WebKit */
  -webkit-appearance: none;
  margin: 0;
}
.content-main .content form form-split {
  display: flex;
  gap: 2.2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .content-main .content form form-split {
    flex-direction: column;
  }
}
@media (max-width: 490px) {
  .content-main .content form form-split {
    gap: 1rem;
  }
}
.content-main .content form a {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 19.2px;
  text-align: center;
  color: #139EFE;
  text-transform: uppercase;
  margin: 2rem 0;
  cursor: pointer;
}
@media (max-width: 490px) {
  .content-main .content form a {
    font-size: 1.4rem;
    line-height: normal;
    margin: 1rem 0;
  }
}
@media (max-width: 392px) {
  .content-main .content form a {
    font-size: 1.2rem;
  }
}
.content-main .content form .resend-link {
  margin: 0;
}
.content-main .content form .auth-edit-btn {
  margin-left: 0.5rem;
}
.content-main .content .btn {
  width: 100%;
  background: #139EFE;
  padding: 1.8rem;
  border: 1px solid #139EFE;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 21.6px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0;
  transition: all ease-in-out 0.3s;
}
.content-main .content .btn:hover {
  background: none;
  color: #139EFE;
}
@media (max-width: 678px) {
  .content-main .content .btn {
    padding: 1rem;
    font-size: 1.4rem;
    line-height: normal;
  }
}
.content-main .main-left {
  width: 70%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .content-main .main-left {
    display: none;
  }
}
.content-main .main-left::before {
  content: "";
  position: absolute;
  width: 45rem;
  height: 31rem;
  background: rgb(11, 17, 18);
  border: 1px solid rgba(192, 245, 255, 0.3);
  border-radius: 2rem;
  z-index: -1;
  top: 9rem;
}
@media (max-width: 1199px) {
  .content-main .main-left::before {
    width: 34rem;
    height: 18rem;
  }
}
@media (max-width: 991px) {
  .content-main .main-left::before {
    width: 28rem;
    height: 18rem;
    left: -3rem;
    top: 4rem;
  }
}
.content-main .main-left img {
  width: 40rem;
}
@media (max-width: 1199px) {
  .content-main .main-left img {
    width: 34rem;
  }
}

.auth-footer-main {
  padding-bottom: 6rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .auth-footer-main {
    padding-bottom: 4rem;
  }
}
@media (max-width: 392px) {
  .auth-footer-main {
    padding-bottom: 2rem;
  }
}
.auth-footer-main .auth-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.7rem;
}
@media (max-width: 490px) {
  .auth-footer-main .auth-footer {
    gap: 1rem;
  }
}
@media (max-width: 320px) {
  .auth-footer-main .auth-footer {
    padding: 0;
  }
}
.auth-footer-main .auth-footer .line {
  background: linear-gradient(190deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 98.53%);
  height: 1px;
  max-width: 38.6rem;
  width: 100%;
}
@media (max-width: 1440px) {
  .auth-footer-main .auth-footer .line {
    max-width: 23rem;
  }
}
@media (max-width: 768px) {
  .auth-footer-main .auth-footer .line {
    max-width: 11rem;
  }
}
@media (max-width: 490px) {
  .auth-footer-main .auth-footer .line {
    max-width: 4rem;
  }
}
.auth-footer-main .auth-footer .auth-footer-copy-text p {
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 991px) {
  .auth-footer-main .auth-footer .auth-footer-copy-text p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.auth-footer-main .auth-footer .auth-footer-copy-text p a {
  color: #139EFE;
}
@media (max-width: 991px) {
  .auth-footer-main .auth-footer .auth-footer-copy-text p a {
    font-size: 1.2rem;
  }
}
.auth-footer-main .auth-footer .auth-footer-copy-text p span {
  color: #139EFE;
  font-size: 1.6rem;
}
@media (max-width: 991px) {
  .auth-footer-main .auth-footer .auth-footer-copy-text p span {
    font-size: 1.2rem;
  }
}
.auth-footer-main .auth-footer .line2 {
  background: linear-gradient(90deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 98.53%);
  height: 1px;
  max-width: 38.6rem;
  width: 100%;
}
@media (max-width: 1440px) {
  .auth-footer-main .auth-footer .line2 {
    max-width: 23rem;
  }
}
@media (max-width: 768px) {
  .auth-footer-main .auth-footer .line2 {
    max-width: 11rem;
  }
}
@media (max-width: 490px) {
  .auth-footer-main .auth-footer .line2 {
    max-width: 4rem;
  }
}

.main-input-outer {
  width: 100%;
}
.main-input-outer .main-input-box {
  width: 100%;
  border-radius: 1rem;
  position: relative;
}
.main-input-outer .main-input-box .input-img {
  width: 2.4rem;
  position: absolute;
  left: 1.2rem;
  top: 1.6rem;
}
@media (max-width: 490px) {
  .main-input-outer .main-input-box .input-img {
    top: 1rem;
  }
}
@media (max-width: 392px) {
  .main-input-outer .main-input-box .input-img {
    width: 2rem;
    top: 1.3rem;
  }
}
.main-input-outer .main-input-box .input-img img {
  width: 100%;
  opacity: 0.5;
  transition: all ease-in-out 0.3s;
  margin: 0 auto;
}
.main-input-outer .main-input-box .password-show {
  right: 1.2rem;
  left: inherit;
}
.main-input-outer .main-input-box input {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 19.2px;
  background: none;
  border: none;
  outline: none;
  width: 100%;
  color: #ffffff;
  padding: 1.8rem 4.5rem 1.8rem 4.2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.8rem;
}
@media (max-width: 490px) {
  .main-input-outer .main-input-box input {
    font-size: 1.4rem;
    line-height: normal;
    padding: 1.4rem 4.2rem;
  }
}

.remember-link-wrap input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.remember-link-wrap input:checked + .remember-link:before {
  background: #139EFE;
  border-color: transparent;
}
.remember-link-wrap input:checked + .remember-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 8px;
  width: 5px;
  height: 13px;
  border: 1px solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 576px) {
  .remember-link-wrap input:checked + .remember-link:after {
    width: 4px;
    height: 10px;
    left: 6px;
    top: 2px;
  }
}
.remember-link-wrap .remember-link {
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 400;
  pointer-events: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 576px) {
  .remember-link-wrap .remember-link {
    font-size: 1.4rem;
  }
}
.remember-link-wrap .remember-link:before {
  content: "";
  -webkit-appearance: none;
  padding: 1rem;
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 10px;
  background: transparent;
  border: 1px solid #139EFE;
  pointer-events: all;
  border-radius: 3px;
}
@media (max-width: 576px) {
  .remember-link-wrap .remember-link:before {
    padding: 0.8rem;
  }
}

.error-message {
  display: none;
}
.error-message p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 16.8px;
  color: #B0000D;
  margin-top: 0.6rem;
}
@media (max-width: 490px) {
  .error-message p {
    font-size: 1.2rem;
  }
}

.avail-text {
  margin-top: 0.6rem;
  display: none;
}
.avail-text p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 16.8px;
}
@media (max-width: 490px) {
  .avail-text p {
    font-size: 1.2rem;
  }
}
.avail-text span {
  color: #139EFE;
}
@media (max-width: 490px) {
  .avail-text span {
    font-size: 1.2rem;
  }
}

.otp-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.3rem;
}
@media (max-width: 991px) {
  .otp-wrap {
    gap: 1rem;
    width: 100%;
  }
}
.otp-wrap .otp-input {
  background: rgba(255, 255, 255, 0.04);
  height: 6rem;
  width: 6rem;
  outline: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 19.2px;
  color: #ffffff;
  text-align: center;
  border-radius: 1rem;
  border: transparent 1px solid;
  transition: all ease-in-out 0.2s;
  -webkit-text-fill-color: #ffffff;
}
.otp-wrap .otp-input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 30px #000;
  -webkit-text-fill-color: #ffffff;
  border: 0;
}
.otp-wrap .otp-input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 30px #000;
  background-color: #000;
  color: #ffffff;
  border: 0;
}
.otp-wrap .otp-input:focus {
  border-color: #139EFE;
}
.otp-wrap .otp-input.parsley-error {
  border: 1px solid #B0000D;
}
@media (max-width: 490px) {
  .otp-wrap .otp-input {
    width: 4rem;
    height: 4rem;
  }
}
@media (max-width: 392px) {
  .otp-wrap .otp-input {
    width: 3.4rem;
    height: 3.4rem;
  }
}

.otp-text h6 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .otp-text h6 {
    text-align: center;
  }
}
@media (max-width: 490px) {
  .otp-text h6 {
    font-size: 1.8rem;
    line-height: 22px;
  }
}
.otp-text p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 28px;
  opacity: 0.6;
  margin-top: 1rem;
  text-align: center;
}
@media (max-width: 678px) {
  .otp-text p {
    font-size: 1.4rem;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .otp-text p span {
    display: inline-block;
  }
}

.opt-resend {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 19.2px;
}
.opt-resend span {
  color: #139EFE;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 19.2px;
}

.otp-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .otp-form {
    align-items: center;
  }
}

.eye-open {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  cursor: pointer;
}

.eye-close {
  cursor: pointer;
}

form .zm-cont-btn {
  margin: 0 !important;
  width: 100%;
  background: #139EFE;
  padding: 1.9rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 21.6px;
  text-align: center;
  color: #ffffff !important;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 490px) {
  form .zm-cont-btn {
    padding: 1.2rem;
  }
}

.parsley-errors-list li {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 16.8px;
  color: #B0000D;
  margin-top: 0.4rem;
}
@media (max-width: 392px) {
  .parsley-errors-list li {
    font-size: 1.2rem;
  }
}

.main-form-split {
  display: flex;
  flex-direction: row;
  gap: 2.2rem;
  width: 100%;
}
@media (max-width: 576px) {
  .main-form-split {
    flex-direction: column;
  }
}
@media (max-width: 490px) {
  .main-form-split {
    gap: 1.5rem;
  }
}

.error-message-container {
  width: 100%;
}
.error-message-container p {
  color: #B0000D;
  font-size: 1.4rem;
  line-height: 1.6rem;
}

.nrml-btn {
  width: 100%;
  border: #139EFE 1px solid;
  border-radius: 1rem;
  padding: 1.9rem;
  margin: 0 !important;
  transition: all ease-in-out 0.3s;
  line-height: 21.6px;
}
.nrml-btn:hover {
  background: #139EFE;
  color: #ffffff !important;
}
@media (max-width: 678px) {
  .nrml-btn {
    padding: 1rem;
    font-size: 1.4rem;
    line-height: normal;
  }
}

.remember-outer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.remember-outer a {
  margin: 0 !important;
}

.content .otp-main-form .otp-form {
  gap: 0;
}
.content .otp-main-form .otp-form .otp-wrap {
  margin-top: 2.3rem;
}
@media (max-width: 490px) {
  .content .otp-main-form .otp-form .otp-wrap {
    margin-top: 1.5rem;
  }
}
.content .otp-main-form .otp-form .opt-resend, .content .otp-main-form .otp-form .resend-link {
  margin-top: 1rem;
}

.content .otp-main-form .otp-cancel {
  margin: 0;
}
