@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=Inter:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Michroma&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 */
  --border-color: $border-color;
  /* Border Color */
  --box-shadow-primary-color: $box-shadow-primary-color;
  /* Box Shadow Color */
  --box-shadow-secondary-color: $box-shadow-secondary-color;
  /* Box Shadow Color */
}

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

body {
  background: #0D0D0D;
  color: #FFF;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
}

h1 {
  font-size: clamp(3.5rem, -0.4286rem + 6.5476vw, 9rem);
}

h2 {
  font-size: 5.2rem;
}

h3 {
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
}

h4 {
  font-size: 2.8rem;
}

h5 {
  font-size: 2.4rem;
}

h6 {
  font-size: 2rem;
}

p {
  font-size: 1.6rem;
}

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

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

.fs-18 {
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 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;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: normal;
  font-style: normal;
}

img {
  width: 100%;
  display: block;
}

.button-active {
  background: linear-gradient(96deg, #45ABF1 -26.19%, #41AF91 125.02%);
  color: #000 !important;
  border: 1px solid transparent;
  transition: all ease-in-out 0.3s;
}
.button-active:hover {
  border: 1px solid #45ADE7;
  background: transparent;
  color: #45ABF1 !important;
}

input:focus {
  outline: 0;
}

.error-message {
  display: none;
  color: #DC4040;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  margin-top: 4px;
}

.parsley-errors-list li {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 16.8px;
  color: #DC4040;
  margin-top: 0.6rem;
}

.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: 150px;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #000;
  color: #fff !important;
  text-align: center;
  border-radius: 6px;
  padding: 8px;
  font-size: 14px !important;
  position: absolute;
  bottom: 120%;
  left: 50%;
  margin-left: -60px;
}

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

.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 Section CSS Start */
.header-main {
  position: fixed;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background: rgba(13, 13, 13, 0.3);
}
.header-main .header {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 8rem;
  position: relative;
}
@media (max-width: 1366px) {
  .header-main .header {
    padding: 1.6rem 4rem;
  }
}
@media (max-width: 991px) {
  .header-main .header {
    padding: 1.6rem 2rem;
  }
  .header-main .header.menu-active .header-web {
    right: 0;
  }
}
@media (max-width: 392px) {
  .header-main .header {
    padding: 1.6rem 1rem;
  }
}
.header-main .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 .overlay.menu-overlay {
  opacity: 1;
  visibility: visible;
}
.header-main .header .header-web {
  display: flex;
  align-items: center;
  width: 75%;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .header .header-web {
    flex-direction: column;
    gap: 3rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 28rem;
    align-items: start;
    background: #0D0D0D;
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    z-index: 999;
    padding: 1.6rem;
    height: 100vh;
    gap: 3rem;
    justify-content: normal;
    transition: all 0.3s ease-in-out;
  }
}
.header-main .header .header-web .header-nav ul {
  display: flex;
  gap: 4.9rem;
}
@media (max-width: 991px) {
  .header-main .header .header-web .header-nav ul {
    gap: 2rem;
    flex-direction: column;
  }
}
.header-main .header .header-web .header-nav ul li a {
  color: #FFF;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  transition: all ease-in-out 0.3s;
}
.header-main .header .header-web .header-nav ul li a:hover {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  color: #FFF;
  transition: all ease-in-out 0.3s;
}
.header-main .header .header-web .header-buttons ul {
  display: flex;
  gap: 1.8rem;
}
.header-main .header .header-web .header-buttons ul li .header-button {
  width: 17.1rem;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border-radius: 0.8rem;
  border: 1.5px solid #45ADE7;
  color: #45ABF1;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 700;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 1199px) {
  .header-main .header .header-web .header-buttons ul li .header-button {
    width: 11rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .header-main .header .header-web .header-buttons ul li .header-button {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
}
.header-main .header .header-web .header-buttons ul li .header-button:hover {
  background: linear-gradient(96deg, #45ADE7 -26.19%, #41AF92 125.02%);
  color: #000;
  text-align: center;
}
.header-main .header .header-web .header-buttons ul li .button-active {
  transition: all ease-in-out 0.3s;
}
.header-main .header .header-web .header-buttons ul li .button-active:hover {
  background: none;
  border-radius: 0.8rem;
  border: 1.5px solid #45ADE7 !important;
  color: #45ABF1 !important;
}
.header-main .header .header-mobile-menu {
  display: none;
  cursor: pointer;
  transition: 300ms all ease-in-out;
}
@media (max-width: 991px) {
  .header-main .header .header-mobile-menu {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    position: relative;
    z-index: 999;
  }
  .header-main .header .header-mobile-menu span {
    width: 100%;
    height: 1.5px;
    border-radius: 2px;
    position: absolute;
    background: #FFF;
    transition: 0.3s all ease-in-out;
  }
  .header-main .header .header-mobile-menu span:nth-of-type(1) {
    top: 4px;
  }
  .header-main .header .header-mobile-menu span:nth-of-type(2) {
    top: 12px;
  }
  .header-main .header .header-mobile-menu span:nth-of-type(3) {
    top: 20px;
  }
  .header-main .header .header-mobile-menu.menu-open span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header-main .header .header-mobile-menu.menu-open span:nth-of-type(2) {
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  .header-main .header .header-mobile-menu.menu-open span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.mobile-header-img {
  display: none;
}
@media (max-width: 991px) {
  .mobile-header-img {
    display: block;
    max-width: 15rem;
  }
}

.header-img {
  width: 100%;
  max-width: 15rem;
}
.header-img img {
  width: 100%;
}

/* Header Section CSS End */
/* Footer Section CSS Start */
.footer {
  max-width: 128rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: 2.3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  .footer {
    padding: 0 4rem;
    padding-top: 0;
  }
}
@media (max-width: 991px) {
  .footer {
    flex-direction: column;
    gap: 1rem;
    padding: 0;
  }
}
@media (max-width: 392px) {
  .footer {
    margin-bottom: 1.5rem;
    gap: 0.6rem;
  }
}
@media (max-width: 320px) {
  .footer {
    padding: 0 0.5rem;
  }
}
.footer .footer-left p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 21.6px;
  text-align: center;
  color: #FFF;
}
@media (max-width: 991px) {
  .footer .footer-left p {
    font-size: 1.6rem;
  }
}
@media (max-width: 392px) {
  .footer .footer-left p {
    font-size: 1.2rem;
  }
}
.footer .footer-right {
  display: flex;
  gap: 3.6rem;
}
@media (max-width: 991px) {
  .footer .footer-right {
    gap: 1.5rem;
  }
}
@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: #FFF;
  transition: 0.3s all ease-in-out;
}
.footer .footer-right a:hover {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}
@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 {
  transition: all ease-in-out 0.3s;
}
.social-icons-wrapper a:hover {
  color: #FFF;
}
.social-icons-wrapper a i::before {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .social-icons-wrapper a i::before {
    font-size: 1.4rem;
  }
}

/* Footer Section CSS End */
.container-main {
  display: flex;
  flex-direction: column;
  gap: 12.8rem;
  padding: 9.5rem 0rem 2rem;
  overflow: hidden;
}
@media (max-width: 1366px) {
  .container-main {
    gap: 8rem;
  }
}
@media (max-width: 991px) {
  .container-main {
    padding-top: 4rem;
  }
}
@media (max-width: 576px) {
  .container-main {
    gap: 4rem;
    padding-top: 2rem;
  }
}

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

::-webkit-scrollbar-track {
  background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
}

.main {
  padding-top: 7.8rem;
}

.affiliate-main {
  position: relative;
}
.affiliate-main::before {
  content: "";
  position: absolute;
  width: 63rem;
  height: 85rem;
  right: 0px;
  top: -12rem;
  z-index: -1;
}
.affiliate-main .affiliate {
  max-width: 144rem;
  margin: 0 auto;
  display: flex;
  gap: 5.2rem;
  padding: 0 8rem;
}
@media (max-width: 1280px) {
  .affiliate-main .affiliate {
    padding: 0 4rem;
    gap: 4rem;
    flex-direction: column;
  }
}
@media (max-width: 678px) {
  .affiliate-main .affiliate {
    padding: 0 2rem;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate {
    gap: 2rem;
    padding: 0 1.5rem;
  }
}
.affiliate-main .affiliate .affiliate-left {
  width: 100%;
}
.affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 {
  color: #FFF;
  text-shadow: 0px 0px 0px #FFF;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, -0.4286rem + 6.5476vw, 9rem);
  font-weight: 700;
}
@media (max-width: 1280px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 {
    text-align: center;
    max-width: 74rem;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 {
    max-width: 56rem;
  }
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 {
    max-width: 37rem;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 {
    font-size: 3rem;
  }
}
@media (max-width: 320px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 {
    font-size: 2.5rem;
  }
}
.affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 span {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, -0.4286rem + 6.5476vw, 9rem);
  font-weight: 700;
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 span {
    font-size: 3rem;
  }
}
@media (max-width: 320px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-heading h1 span {
    font-size: 2.5rem;
  }
}
.affiliate-main .affiliate .affiliate-left p {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 400;
  margin-top: 1.2rem;
}
@media (max-width: 1280px) {
  .affiliate-main .affiliate .affiliate-left p {
    text-align: center;
  }
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-left p {
    max-width: 27rem;
    margin: 1rem auto;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-left p {
    font-size: 1.2rem;
  }
}
.affiliate-main .affiliate .affiliate-left .affiliate-left-img {
  margin-right: 10.4rem;
  margin-top: 1rem;
}
@media (max-width: 1280px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-img {
    display: flex;
    justify-content: center;
    margin-right: 0;
  }
}
.affiliate-main .affiliate .affiliate-left .affiliate-left-img img {
  width: auto;
  float: right;
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-left .affiliate-left-img img {
    width: 15%;
  }
}
.affiliate-main .affiliate .affiliate-right {
  width: 100%;
  max-width: 39.3rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1280px) {
  .affiliate-main .affiliate .affiliate-right {
    margin: 0 auto;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-right {
    gap: 0.5rem;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box {
  border-radius: 0.8rem;
  background: #080E12;
  position: relative;
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up {
  padding: 2rem;
  border-bottom: 1px solid #2F2F2F;
  background: #131517;
  border-radius: 0.8rem 0.8rem 0 0;
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up p {
  color: #FFF;
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up p {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up p {
    font-size: 1.2rem;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up .affiliate-right-input {
  border-radius: 0.8rem;
  border: 1px solid #41AF92;
  background: #000;
  padding: 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 0.6rem;
}
@media (max-width: 576px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up .affiliate-right-input {
    gap: 0.4rem;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up .affiliate-right-input {
    padding: 0.8rem 0.5rem;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up .affiliate-right-input span {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #FFF;
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up .affiliate-right-input span {
    font-size: 1.8rem;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up .affiliate-right-input input {
  border: none;
  background: none;
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
  color: #FFF;
  padding: 0;
  width: 100%;
  font-family: "Raleway", sans-serif;
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up .affiliate-right-input input {
    font-size: 1.8rem;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-up .affiliate-right-input input {
    font-size: 1.6rem;
    width: 85%;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 320px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down {
    padding: 1rem 0;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box {
  display: flex;
  gap: 3.2rem;
  justify-content: space-evenly;
}
@media (max-width: 576px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box {
    gap: 1rem;
  }
}
@media (max-width: 320px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box {
    padding: 1rem;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .affiliate-rb {
  width: calc(100% - 3.2rem);
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .affiliate-rb p {
  color: #FFF;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .affiliate-rb p {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .affiliate-rb p {
    font-size: 1.2rem;
  }
}
@media (max-width: 320px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .affiliate-rb p {
    font-size: 1.1rem;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .affiliate-rb .affiliate-right-box-text {
  border-radius: 0.8rem;
  background: #1B1D1F;
  padding: 0.8rem;
  margin-top: 1rem;
  text-align: center;
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .affiliate-rb .affiliate-right-box-text span {
  font-family: "Raleway", sans-serif;
  color: #FFF;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  background: none;
  border: none;
  width: 100%;
  text-align: center;
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .affiliate-rb .affiliate-right-box-text span {
    font-size: 1.6rem;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-right-box .affiliate-right-box-down .affiliate-right-box-down-box .arb2 {
  width: 60%;
}
.affiliate-main .affiliate .affiliate-right a {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.8rem 0;
  border-radius: 0.8rem;
}
@media (max-width: 768px) {
  .affiliate-main .affiliate .affiliate-right a {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-right a {
    font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
    padding: 1rem 2rem;
  }
}
@media (max-width: 392px) {
  .affiliate-main .affiliate .affiliate-right a {
    padding: 0.8rem;
  }
}
@media (max-width: 320px) {
  .affiliate-main .affiliate .affiliate-right a {
    font-size: 1.4rem;
  }
}
.affiliate-main .affiliate .affiliate-right a span {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 0.8rem;
}
@media (max-width: 678px) {
  .affiliate-main .affiliate .affiliate-right a span {
    font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  }
}
@media (max-width: 320px) {
  .affiliate-main .affiliate .affiliate-right a span {
    font-size: 1.4rem;
  }
}
.affiliate-main .affiliate .affiliate-right .affiliate-imgs {
  display: flex;
  gap: 0.5rem;
  padding: 1.2rem 1.6rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .affiliate-main .affiliate .affiliate-right .affiliate-imgs {
    justify-content: space-evenly;
  }
}

.started-main {
  padding: 0 8rem;
}
@media (max-width: 768px) {
  .started-main {
    padding: 0 2rem;
  }
}
@media (max-width: 392px) {
  .started-main {
    padding: 0 1.5rem;
  }
}
.started-main::before {
  content: "";
  width: 65.3rem;
  height: 51.2rem;
  position: absolute;
  left: 1.2rem;
  top: -8.2rem;
  z-index: -1;
}
@media (max-width: 1366px) {
  .started-main::before {
    width: 100%;
    left: 0;
  }
}
.started-main .started {
  max-width: 128rem;
  margin: 0 auto;
  padding: 5.2rem;
  border-radius: 1.6rem;
  background: rgb(19, 21, 23);
  position: relative;
}
@media (max-width: 991px) {
  .started-main .started {
    padding: 5rem 2rem;
  }
}
@media (max-width: 392px) {
  .started-main .started {
    padding: 1.5rem;
  }
}
.started-main .started::before {
  content: "";
  position: absolute;
  background: linear-gradient(160deg, #45ADE7 0%, #000 35%);
  border-radius: 1.6rem;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.started-main .started::after {
  content: "";
  position: absolute;
  background: linear-gradient(155deg, #000 60%, #41AF92 100%);
  border-radius: 1.6rem;
  bottom: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.started-main .started .started-top {
  margin-bottom: 3.2rem;
}
.started-main .started .started-top h3 {
  color: #FFF;
  text-shadow: 0px 0px 0px #FFF;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
  text-align: center;
}
.started-main .started .started-top h3 span {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
}
.started-main .started .started-top p {
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 1.6rem;
  line-height: 21.86px;
  text-align: center;
}
@media (max-width: 678px) {
  .started-main .started .started-top p {
    font-size: 1.4rem;
  }
}
.started-main .started .started-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3.2rem;
  max-width: 92.4rem;
  margin: 0 auto;
}
@media (max-width: 678px) {
  .started-main .started .started-bottom {
    flex-direction: column;
    gap: 6.2rem;
    max-width: 30rem;
  }
}
.started-main .started .started-bottom .started-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}
@media (max-width: 991px) {
  .started-main .started .started-bottom .started-box {
    gap: 1rem;
  }
}
.started-main .started .started-bottom .started-box:nth-of-type(2)::before {
  content: "";
  position: absolute;
  width: calc(100% + 3rem);
  height: 1px;
  background: linear-gradient(180deg, #45ADE7 0%, #41AF92 100%);
  top: 1.5rem;
  left: 0;
  z-index: 0;
  transform: translateX(-50%);
}
.started-main .started .started-bottom .started-box:nth-of-type(2)::after {
  content: "";
  position: absolute;
  width: calc(100% + 3rem);
  height: 1px;
  background: linear-gradient(180deg, #45ADE7 0%, #41AF92 100%);
  z-index: 0;
  left: 100%;
  top: 1.5rem;
  transform: translateX(-50%);
}
@media (max-width: 678px) {
  .started-main .started .started-bottom .started-box:nth-of-type(2)::before {
    width: 1px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    top: inherit;
    bottom: 110%;
  }
  .started-main .started .started-bottom .started-box:nth-of-type(2)::after {
    width: 1px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    top: 110%;
  }
}
.started-main .started .started-bottom .started-box .started-num {
  position: relative;
}
.started-main .started .started-bottom .started-box .started-num::before {
  content: "";
  position: absolute;
  background: #45ADE7;
  height: 66%;
  width: 106%;
  top: -1px;
  left: -1px;
  right: -1px;
  z-index: 0;
  border-radius: 0.4rem;
}
.started-main .started .started-bottom .started-box .started-num::after {
  content: "";
  position: absolute;
  background: #41AF92;
  height: 66%;
  width: 106%;
  bottom: -1px;
  left: -1px;
  right: -1px;
  z-index: 0;
  border-radius: 0.4rem;
}
.started-main .started .started-bottom .started-box .started-num p {
  padding: 0.5rem 1.3rem;
  background: #0D0D0D;
  color: #FFF;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 0.4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 678px) {
  .started-main .started .started-bottom .started-box .started-num p {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .started-main .started .started-bottom .started-box .started-num p {
    font-size: 1.2rem;
  }
}
.started-main .started .started-bottom .started-box .seven-snum {
  position: relative;
}
.started-main .started .started-bottom .started-box span {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 678px) {
  .started-main .started .started-bottom .started-box span {
    font-size: 1.4rem;
  }
}
.started-main .started .started-bottom .started-box p {
  color: #DDD;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 678px) {
  .started-main .started .started-bottom .started-box p {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .started-main .started .started-bottom .started-box p {
    font-size: 1.2rem;
  }
}

.referral-main {
  position: relative;
}
@media (max-width: 1440px) {
  .referral-main {
    overflow: visible;
  }
}
.referral-main::before {
  content: "";
  width: 111.7rem;
  height: 143.8rem;
  position: absolute;
  right: -15rem;
  bottom: -12rem;
  z-index: -1;
}
@media (max-width: 1440px) {
  .referral-main::before {
    right: 0;
  }
}
.referral-main .referral {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5.2rem;
  max-width: 144rem;
  margin: 0 auto;
  padding: 7.2rem 8rem;
}
@media (max-width: 1366px) {
  .referral-main .referral {
    padding: 1px 2rem;
    gap: 3rem;
  }
}
@media (max-width: 1440px) {
  .referral-main .referral {
    padding: 1px 4rem;
  }
}
@media (max-width: 991px) {
  .referral-main .referral {
    padding: 1px 2rem;
  }
}
@media (max-width: 392px) {
  .referral-main .referral {
    gap: 2rem;
    padding: 1px 1.5rem;
  }
}
.referral-main .referral h3 {
  color: #FFF;
  text-shadow: 0px 0px 0px #FFF;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
}
@media (max-width: 576px) {
  .referral-main .referral h3 {
    max-width: 25rem;
    text-align: center;
  }
}
.referral-main .referral h3 span {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
}
.referral-main .referral .referral-toggle {
  display: flex;
  gap: 0.8rem;
  background: #131517;
  padding: 0.4rem;
  position: relative;
  border-radius: 1rem;
}
@media (max-width: 392px) {
  .referral-main .referral .referral-toggle {
    padding: 0.3rem;
    border-radius: 0.8rem;
  }
}
.referral-main .referral .referral-toggle .referral-toggle-box {
  width: 14rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  cursor: pointer;
  border-radius: 0.8rem;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 400;
  text-transform: capitalize;
}
.referral-main .referral .referral-toggle .referral-toggle-box.toggle-active {
  color: #000;
  z-index: 1;
}
@media (max-width: 991px) {
  .referral-main .referral .referral-toggle .referral-toggle-box {
    width: 13rem;
  }
}
@media (max-width: 392px) {
  .referral-main .referral .referral-toggle .referral-toggle-box {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .referral-main .referral .referral-toggle .referral-toggle-box {
    width: 10rem;
    padding: 0.5rem 1rem;
  }
}
.referral-main .referral .referral-boxes {
  display: none;
  gap: 3.2rem;
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2px;
}
.referral-main .referral .referral-boxes.tab-active {
  display: flex;
}
@media (max-width: 1280px) {
  .referral-main .referral .referral-boxes {
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .referral-main .referral .referral-boxes {
    flex-wrap: wrap;
    max-width: 65rem;
  }
}
@media (max-width: 392px) {
  .referral-main .referral .referral-boxes {
    gap: 1rem;
  }
}
@media (max-width: 320px) {
  .referral-main .referral .referral-boxes {
    flex-direction: column;
  }
}
.referral-main .referral .referral-boxes .referral-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 2.1rem;
  background: rgb(19, 21, 23);
  position: relative;
  border-radius: 1.2rem;
  width: calc(25% - 1.6rem);
}
@media (max-width: 1280px) {
  .referral-main .referral .referral-boxes .referral-box {
    flex: 1 1 35%;
  }
}
@media (max-width: 576px) {
  .referral-main .referral .referral-boxes .referral-box {
    max-width: 26rem;
    width: 100%;
    padding: 1.6rem 1rem;
  }
}
@media (max-width: 320px) {
  .referral-main .referral .referral-boxes .referral-box {
    padding: 1.5rem 1rem;
  }
}
.referral-main .referral .referral-boxes .referral-box::before {
  content: "";
  position: absolute;
  background: linear-gradient(160deg, #45ADE7 0%, #142D31 60%);
  height: 66%;
  top: -1px;
  left: -1px;
  right: -1px;
  border-radius: 1.2rem;
  z-index: -1;
}
.referral-main .referral .referral-boxes .referral-box::after {
  content: "";
  position: absolute;
  background: linear-gradient(165deg, #142D31 60%, #41AF92 100%);
  height: 66%;
  bottom: -1px;
  left: -1px;
  right: -1px;
  border-radius: 1.2rem;
  z-index: -2;
}
.referral-main .referral .referral-boxes .referral-box h5 {
  color: #FFF;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 1.1rem 1.9rem;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .referral-main .referral .referral-boxes .referral-box h5 {
    font-size: 2rem;
  }
}
@media (max-width: 320px) {
  .referral-main .referral .referral-boxes .referral-box h5 {
    margin: 0 1rem 1rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 576px) {
  .referral-main .referral .referral-boxes .referral-box .referral-cup-img {
    width: 4.4rem;
  }
}
.referral-main .referral .referral-boxes .referral-box .referral-cup-img img {
  width: auto;
}
@media (max-width: 576px) {
  .referral-main .referral .referral-boxes .referral-box .referral-cup-img img {
    width: 100%;
  }
}
.referral-main .referral .referral-boxes .referral-box p {
  color: #A5A5A5;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 400;
  margin: 2rem 0;
}
@media (max-width: 576px) {
  .referral-main .referral .referral-boxes .referral-box p {
    font-size: 1.3rem;
    margin: 1rem auto;
  }
}
@media (max-width: 320px) {
  .referral-main .referral .referral-boxes .referral-box p {
    max-width: 18rem;
    font-size: 1.2rem;
  }
}
.referral-main .referral .referral-boxes .referral-box p span {
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 700;
}
@media (max-width: 576px) {
  .referral-main .referral .referral-boxes .referral-box p span {
    font-size: 1.3rem;
  }
}
@media (max-width: 320px) {
  .referral-main .referral .referral-boxes .referral-box p span {
    font-size: 1.2rem;
  }
}
.referral-main .referral .referral-boxes .referral-box p .referral-gtext {
  background: linear-gradient(93.06deg, #45ACEA 2.95%, #41AF92 34.54%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 700;
  display: inline-block;
}
@media (max-width: 576px) {
  .referral-main .referral .referral-boxes .referral-box p .referral-gtext {
    font-size: 1.3rem;
  }
}
@media (max-width: 320px) {
  .referral-main .referral .referral-boxes .referral-box p .referral-gtext {
    font-size: 1.2rem;
  }
}
.referral-main .referral .referral-boxes .referral-box .referral-box-line {
  width: 7rem;
  height: 0.3rem;
  background: #45ADE7;
  border-radius: 1.5rem;
}

.about-main {
  padding: 7.2rem 0;
  position: relative;
}
@media (max-width: 1366px) {
  .about-main {
    padding: 0;
    overflow: visible;
  }
}
.about-main::before {
  content: "";
  position: absolute;
  background-size: cover;
  width: 62.4rem;
  height: 54.19rem;
  left: 5.8rem;
  top: -19.3rem;
  z-index: -1;
}
@media (max-width: 768px) {
  .about-main::before {
    height: 100%;
    width: 100%;
    left: 0;
  }
}
.about-main .about {
  max-width: 144rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 7.2rem;
  padding: 0 8rem;
}
@media (max-width: 1366px) {
  .about-main .about {
    padding: 0 4rem;
    gap: 4rem;
  }
}
@media (max-width: 1280px) {
  .about-main .about {
    flex-direction: column;
  }
}
@media (max-width: 678px) {
  .about-main .about {
    padding: 0 2rem;
  }
}
@media (max-width: 392px) {
  .about-main .about {
    padding: 0 1.5rem;
  }
}
.about-main .about .about-left h3 {
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.about-main .about .about-left h3 span {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
}
@media (max-width: 1366px) {
  .about-main .about .about-left h3 {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.about-main .about .about-left p {
  color: #C2C2C2;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 3rem;
  max-width: 42.4rem;
}
@media (max-width: 678px) {
  .about-main .about .about-left p {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .about-main .about .about-left p {
    max-width: 30rem;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
@media (max-width: 392px) {
  .about-main .about .about-left p {
    font-size: 1.2rem;
  }
}
.about-main .about .about-left .about-left-img img {
  width: auto;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .about-main .about .about-left .about-left-img img {
    width: 100%;
    margin-bottom: -6rem;
  }
}
.about-main .about .about-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 1280px) {
  .about-main .about .about-right {
    max-width: 90rem;
  }
}
@media (max-width: 768px) {
  .about-main .about .about-right {
    gap: 2rem;
  }
}
@media (max-width: 392px) {
  .about-main .about .about-right {
    gap: 1.5rem;
  }
}
@media (max-width: 320px) {
  .about-main .about .about-right {
    gap: 1rem;
  }
}
.about-main .about .about-right .about-right-outer {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about-main .about .about-right .about-right-outer {
    gap: 2rem;
  }
}
@media (max-width: 678px) {
  .about-main .about .about-right .about-right-outer {
    flex-direction: column;
  }
}
@media (max-width: 392px) {
  .about-main .about .about-right .about-right-outer {
    gap: 1.5rem;
  }
}
@media (max-width: 320px) {
  .about-main .about .about-right .about-right-outer {
    gap: 1rem;
  }
}
.about-main .about .about-right .about-right-outer .about-right-box {
  padding: 2.4rem;
  border-radius: 1.6rem;
  background: rgb(20, 20, 20);
  position: relative;
  width: calc(50% - 1.5rem);
}
@media (max-width: 768px) {
  .about-main .about .about-right .about-right-outer .about-right-box {
    width: calc(50% - 1rem);
    padding: 2.4rem 1.5rem;
  }
}
@media (max-width: 678px) {
  .about-main .about .about-right .about-right-outer .about-right-box {
    width: 100%;
    max-width: 33rem;
    margin: 0 auto;
  }
}
@media (max-width: 392px) {
  .about-main .about .about-right .about-right-outer .about-right-box {
    max-width: 100%;
    padding: 1.5rem;
  }
}
.about-main .about .about-right .about-right-outer .about-right-box::before {
  content: "";
  position: absolute;
  background: rgba(69, 172, 234, 0.3803921569);
  border-radius: 1.6rem 1.6rem 0 0;
  height: 51%;
  top: -1px;
  right: -1px;
  left: -1px;
  z-index: -1;
}
.about-main .about .about-right .about-right-outer .about-right-box::after {
  content: "";
  position: absolute;
  background: rgba(65, 175, 146, 0.3803921569);
  border-radius: 0 0 1.6rem 1.6rem;
  height: 51%;
  bottom: -1px;
  right: -1px;
  left: -1px;
  z-index: -2;
}
.about-main .about .about-right .about-right-outer .about-right-box .about-right-box-img {
  margin-bottom: 0.6rem;
}
.about-main .about .about-right .about-right-outer .about-right-box .about-right-box-img img {
  width: auto;
}
.about-main .about .about-right .about-right-outer .about-right-box h6 {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (max-width: 392px) {
  .about-main .about .about-right .about-right-outer .about-right-box h6 {
    font-size: 1.4rem;
  }
}
.about-main .about .about-right .about-right-outer .about-right-box p {
  color: #B1B1B1;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8rem;
  display: inline;
}
@media (max-width: 768px) {
  .about-main .about .about-right .about-right-outer .about-right-box p {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .about-main .about .about-right .about-right-outer .about-right-box p {
    font-size: 1.2rem;
  }
}
.about-main .about .about-right .about-right-outer .about-right-box span {
  color: #B1B1B1;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8rem;
}
@media (max-width: 768px) {
  .about-main .about .about-right .about-right-outer .about-right-box span {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .about-main .about .about-right .about-right-outer .about-right-box span {
    font-size: 1.2rem;
  }
}

.awards-main {
  position: relative;
}
.awards-main::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 80rem;
  top: 35.8rem;
  left: 0;
  z-index: -1;
}
.awards-main .awards {
  max-width: 144rem;
  margin: 0 auto;
  padding: 7.2rem 8rem;
  position: relative;
  background: rgba(20, 20, 20, 0.5019607843);
}
.awards-main .awards::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #385D77 15.28%, #233D50 50.43%, #02395E 86%, rgba(0, 0, 0, 0) 100%);
  z-index: -2;
}
.awards-main .awards::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: -1px;
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #385D77 15.28%, #233D50 50.43%, #02395E 86%, rgba(0, 0, 0, 0) 100%);
  z-index: -2;
}
@media (max-width: 768px) {
  .awards-main .awards {
    padding: 7.2rem 4rem;
  }
}
@media (max-width: 678px) {
  .awards-main .awards {
    padding: 7.2rem 2rem;
  }
}
@media (max-width: 576px) {
  .awards-main .awards {
    padding: 5rem 2rem;
  }
}
@media (max-width: 392px) {
  .awards-main .awards {
    padding: 1.5rem;
  }
}
.awards-main .awards h3 {
  color: #FFF;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 1.6rem;
}
@media (max-width: 392px) {
  .awards-main .awards h3 {
    margin-bottom: 1rem;
  }
}
.awards-main .awards h3 span {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
}
.awards-main .awards p {
  color: #C2C2C2;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 5.2rem;
}
@media (max-width: 678px) {
  .awards-main .awards p {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .awards-main .awards p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }
}
.awards-main .awards .awards-outer {
  max-width: 88rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .awards-main .awards .awards-outer {
    max-width: 56rem;
  }
}
.awards-main .awards .awards-outer .awards-img {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.2rem;
}
@media (max-width: 576px) {
  .awards-main .awards .awards-outer .awards-img {
    padding: 0 0.5rem;
  }
}
@media (max-width: 392px) {
  .awards-main .awards .awards-outer .awards-img {
    padding: 0;
  }
}
.awards-main .awards .awards-outer .awards-img img {
  width: 100%;
}

.faq-main {
  position: relative;
}
.faq-main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 164.4rem;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1440px) {
  .faq-main::before {
    height: 100%;
    left: 0;
  }
}
.faq-main .faq {
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 8rem;
}
@media (max-width: 1366px) {
  .faq-main .faq {
    padding: 0 4rem;
  }
}
@media (max-width: 678px) {
  .faq-main .faq {
    padding: 0 2rem;
  }
}
@media (max-width: 392px) {
  .faq-main .faq {
    padding: 0 1.5rem;
  }
}
.faq-main .faq h3 {
  color: #FFF;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 600;
  line-height: 4.8rem;
  text-transform: capitalize;
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .faq-main .faq h3 {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 392px) {
  .faq-main .faq h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
.faq-main .faq .faq-outer {
  display: flex;
  gap: 3rem;
  margin: 0 auto;
}
.faq-main .faq .faq-outer .faq-left {
  width: 100%;
}
@media (max-width: 991px) {
  .faq-main .faq .faq-outer .faq-left {
    display: none;
  }
}
.faq-main .faq .faq-outer .faq-left ul {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.faq-main .faq .faq-outer .faq-left ul li .faq-left-box {
  padding: 1rem 1.6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #111416;
  cursor: pointer;
  position: relative;
  border-radius: 0.8rem;
  border-bottom: rgba(65, 175, 146, 0.3137254902) 1px solid;
}
.faq-main .faq .faq-outer .faq-left ul li .faq-left-box.arrow-active {
  background: #191A1C;
}
.faq-main .faq .faq-outer .faq-left ul li .faq-left-box p {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 400;
  line-height: 3.8rem;
  text-transform: capitalize;
}
.faq-main .faq .faq-outer .faq-left ul li .faq-left-box .faq-img {
  transition: all ease-in-out 300ms;
}
.faq-main .faq .faq-outer .faq-left ul li .faq-left-box .faq-img img {
  width: auto;
}
.faq-main .faq .faq-outer .faq-right {
  padding: 1rem 2.4rem;
  border-radius: 0.8rem;
  background: #151618;
  max-width: 61.6rem;
  width: 100%;
}
@media (max-width: 991px) {
  .faq-main .faq .faq-outer .faq-right {
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: none;
  }
}
.faq-main .faq .faq-outer .faq-right .seven-tabs {
  opacity: 0;
  visibility: visible;
  transition: 0.3s all ease-in-out;
  height: 0;
}
.faq-main .faq .faq-outer .faq-right .seven-tabs.arrow-active {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.faq-main .faq .faq-outer .faq-right .seven-tabs.arrow-active::before {
  background: #191A1C;
}
@media (max-width: 991px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs {
    display: block;
    margin-bottom: 1.8rem;
    position: relative;
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .faq-main .faq .faq-outer .faq-right .seven-tabs:last-child {
    margin-bottom: 0;
  }
  .faq-main .faq .faq-outer .faq-right .seven-tabs::before {
    content: attr(data-title);
    display: block;
    font-size: 1.8rem;
    color: #FFF;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    cursor: pointer;
    padding: 2rem;
    border-radius: 1rem;
    background: #111416;
    border-bottom: rgba(65, 175, 146, 0.3137254902) 1px solid;
    border-radius: 1rem;
  }
}
@media (max-width: 991px) and (max-width: 678px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs::before {
    font-size: 1.6rem;
  }
}
@media (max-width: 991px) and (max-width: 576px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs::before {
    font-size: 1.4rem;
    padding: 1.6rem;
    padding-right: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 392px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs::before {
    padding: 1.4rem;
    padding-right: 3rem;
  }
}
@media (max-width: 991px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs::after {
    content: "";
    position: absolute;
    width: 2.4rem;
    height: 2.4rem;
    top: 2rem;
    right: 2rem;
    transition: 0.3s all ease-in-out;
  }
}
@media (max-width: 991px) and (max-width: 576px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs::after {
    top: 1rem;
  }
}
@media (max-width: 991px) and (max-width: 392px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs::after {
    transform: scale(0.7);
    right: 1rem;
  }
}
@media (max-width: 991px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs.arrow-active::after {
    transform: rotate(180deg);
  }
}
@media (max-width: 991px) and (max-width: 392px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs.arrow-active::after {
    transform: rotate(180deg) scale(0.7);
  }
}
.faq-main .faq .faq-outer .faq-right .seven-tabs p {
  color: #B1B1B1;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 4.8rem;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs p {
    opacity: 0;
    visibility: hidden;
    line-height: 2.8rem;
    padding-bottom: 0;
    height: 0;
  }
}
@media (max-width: 678px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs p {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs p {
    line-height: 2rem;
  }
}
@media (max-width: 392px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
@media (max-width: 991px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs.arrow-active p {
    height: auto;
    opacity: 1;
    visibility: visible;
    background: #151618;
    margin-bottom: 1rem;
    border-radius: 0 0 0.8rem 0.8rem;
    padding: 2rem;
  }
}
@media (max-width: 678px) {
  .faq-main .faq .faq-outer .faq-right .seven-tabs.arrow-active p {
    padding: 1rem;
  }
}

.downloadAppSection .downloadAppInnerWrapper {
  padding: 2.5rem 0 1rem 0;
  border: 1px solid;
  border-image-source: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #385D77 15.28%, #233D50 50.43%, #02395E 86%, rgba(0, 0, 0, 0) 100%);
  border-image-slice: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10.8rem;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppInnerWrapper {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppInnerWrapper {
    gap: 0;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppImgWrapper {
  max-width: 30rem;
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppImgWrapper {
    max-width: 25rem;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppImgWrapper img {
  width: 100%;
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper {
  max-width: 55rem;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper {
    padding: 2rem;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper img {
  width: 100%;
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper h3 {
  font-size: clamp(1.8rem, 1rem + 2.8vw, 3.8rem);
  margin-bottom: 1.2rem;
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadTextHighlight {
  background: linear-gradient(93deg, #45ACEA 3.98%, #41AF92 72.95%) no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper p {
  font-size: clamp(1.4rem, 0.125vw + 1.36rem, 1.6rem);
  line-height: 2.2rem;
  color: #B1B1B1;
  margin: auto auto 2.4rem auto;
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper {
  display: flex;
  gap: 1.2rem;
}
@media (max-width: 991px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper {
    flex-direction: column;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .androidBtn,
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .iosBtn {
  background: #FFF;
  color: #000;
  font-size: clamp(1.4rem, 0.25vw + 1.32rem, 1.8rem);
  font-weight: 700;
  font-family: "Lato", sans-serif;
  padding: 1.2rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  cursor: pointer;
  transition: 0.2s all ease-in-out;
  width: 100%;
  max-width: 24.7rem;
  border: 0;
  outline: 0;
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .androidBtn,
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .iosBtn {
    max-width: 100%;
  }
}
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .androidBtn img,
.downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .iosBtn img {
  width: 2.2rem;
}
@media (max-width: 576px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .androidBtn img,
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .iosBtn img {
    width: 2rem;
  }
}
@media (max-width: 392px) {
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .androidBtn img,
  .downloadAppSection .downloadAppInnerWrapper .downloadAppContentWrapper .downloadAppBtnWrapper .iosBtn img {
    width: 1.8rem;
  }
}

.contact-main {
  position: relative;
  padding: 0 8rem;
}
@media (max-width: 1366px) {
  .contact-main {
    padding: 1px 4rem;
  }
}
@media (max-width: 768px) {
  .contact-main {
    overflow: visible;
  }
}
@media (max-width: 678px) {
  .contact-main {
    padding: 1px 2rem;
  }
}
@media (max-width: 392px) {
  .contact-main {
    padding: 1px 1.5rem;
  }
}
.contact-main::before {
  content: "";
  position: absolute;
  width: 81.8rem;
  height: 71rem;
  right: -8.5rem;
  top: -32rem;
  z-index: -1;
}
@media (max-width: 1440px) {
  .contact-main::before {
    width: 100%;
    height: 100%;
    right: 0;
    overflow: visible;
  }
}
.contact-main .contact {
  max-width: 128rem;
  margin: 1px auto;
  padding: 5.2rem;
  background: rgb(19, 21, 23);
  position: relative;
  border-radius: 1.6rem;
}
@media (max-width: 576px) {
  .contact-main .contact {
    padding: 3rem 2rem;
  }
}
@media (max-width: 392px) {
  .contact-main .contact {
    padding: 1.5rem 1rem;
  }
}
.contact-main .contact::before {
  content: "";
  position: absolute;
  border-radius: 1.6rem;
  height: 50%;
  background: linear-gradient(160deg, #45ADE7 0%, #000 35%);
  z-index: -1;
  top: -1px;
  left: -1px;
  right: -1px;
}
.contact-main .contact::after {
  content: "";
  position: absolute;
  border-radius: 1.6rem;
  height: 50%;
  background: linear-gradient(155deg, #000 60%, #41AF92 100%);
  z-index: -2;
  bottom: -1px;
  left: -1px;
  right: -1px;
}
.contact-main .contact h3 {
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 1.6rem;
}
@media (max-width: 392px) {
  .contact-main .contact h3 {
    margin-bottom: 1rem;
  }
}
.contact-main .contact p {
  color: #B1B1B1;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 135.938%;
}
@media (max-width: 678px) {
  .contact-main .contact p {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .contact-main .contact p {
    font-size: 1.2rem;
  }
}
.contact-main .contact .contact-form {
  margin-top: 2.4rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 678px) {
  .contact-main .contact .contact-form {
    gap: 1rem;
  }
}
@media (max-width: 392px) {
  .contact-main .contact .contact-form {
    margin-top: 1rem;
  }
}
.contact-main .contact .contact-form h6 {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  width: 100%;
}
@media (max-width: 392px) {
  .contact-main .contact .contact-form h6 {
    font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  }
}
.contact-main .contact .contact-form .contact-ftop {
  display: flex;
  gap: 1.6rem;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-main .contact .contact-form .contact-ftop {
    flex-direction: column;
  }
}
@media (max-width: 678px) {
  .contact-main .contact .contact-form .contact-ftop {
    gap: 1rem;
  }
}
.contact-main .contact .contact-form .contact-ftop .contact-box {
  border-radius: 0.8rem;
  width: 100%;
  position: relative;
}
.contact-main .contact .contact-form .contact-ftop .contact-box input {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  background: none;
  border: none;
  width: 100%;
  background: #040E0F;
  border-radius: 0.8rem;
}
@media (max-width: 678px) {
  .contact-main .contact .contact-form .contact-ftop .contact-box input {
    font-size: 1.4rem;
  }
}
@media (max-width: 678px) {
  .contact-main .contact .contact-form .contact-ftop .contact-box input::-moz-placeholder {
    font-size: 1.4rem;
  }
  .contact-main .contact .contact-form .contact-ftop .contact-box input::placeholder {
    font-size: 1.4rem;
  }
}
.contact-main .contact .contact-form .contact-box {
  border-radius: 0.8rem;
  width: 100%;
  position: relative;
}
.contact-main .contact .contact-form .contact-box .contact-img {
  position: absolute;
  top: 1.8rem;
  left: 2rem;
  z-index: 1;
}
@media (max-width: 392px) {
  .contact-main .contact .contact-form .contact-box .contact-img {
    top: 1.3rem;
    left: 1rem;
  }
}
.contact-main .contact .contact-form .contact-box .contact-img img {
  width: auto;
  margin: auto;
  opacity: 0.6;
  transition: all ease-in-out 0.3s;
  margin: 0 auto;
}
@media (max-width: 678px) {
  .contact-main .contact .contact-form .contact-box .contact-img img {
    height: 1.8rem;
    width: 1.8rem;
  }
}
@media (max-width: 392px) {
  .contact-main .contact .contact-form .contact-box .contact-img img {
    height: 1.5rem;
    width: 1.5rem;
  }
}
.contact-main .contact .contact-form .contact-box input {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  background: none;
  border: none;
  width: 100%;
  padding: 1.7rem 5.6rem;
  position: relative;
  background: #040E0F;
}
@media (max-width: 678px) {
  .contact-main .contact .contact-form .contact-box input {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .contact-main .contact .contact-form .contact-box input {
    font-size: 1.2rem;
    padding: 1.2rem 3.6rem;
  }
}
@media (max-width: 320px) {
  .contact-main .contact .contact-form .contact-box input {
    padding: 1rem 3rem;
  }
}
.contact-main .contact .contact-form .contact-box input::-moz-placeholder {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.6;
}
.contact-main .contact .contact-form .contact-box input::placeholder {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.6;
}
@media (max-width: 678px) {
  .contact-main .contact .contact-form .contact-box input::-moz-placeholder {
    font-size: 1.4rem;
  }
  .contact-main .contact .contact-form .contact-box input::placeholder {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .contact-main .contact .contact-form .contact-box input::-moz-placeholder {
    font-size: 1.2rem;
  }
  .contact-main .contact .contact-form .contact-box input::placeholder {
    font-size: 1.2rem;
  }
}
.contact-main .contact .contact-form .contact-box textarea {
  position: relative;
  padding: 1.7rem 5.6rem;
  background: #040E0F;
  border-radius: 0.8rem;
  resize: none;
}
@media (max-width: 392px) {
  .contact-main .contact .contact-form .contact-box textarea {
    padding: 1.3rem 3.6rem;
  }
}
@media (max-width: 320px) {
  .contact-main .contact .contact-form .contact-box textarea {
    padding: 1rem 3rem;
  }
}
.contact-main .contact .contact-form .contact-box textarea::-moz-placeholder {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.6;
}
.contact-main .contact .contact-form .contact-box textarea::placeholder {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.6;
}
@media (max-width: 678px) {
  .contact-main .contact .contact-form .contact-box textarea::-moz-placeholder {
    font-size: 1.4rem;
  }
  .contact-main .contact .contact-form .contact-box textarea::placeholder {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .contact-main .contact .contact-form .contact-box textarea::-moz-placeholder {
    font-size: 1.2rem;
  }
  .contact-main .contact .contact-form .contact-box textarea::placeholder {
    font-size: 1.2rem;
  }
}
.contact-main .contact .contact-input-box {
  display: flex;
  justify-content: end;
  width: 100%;
}
.contact-main .contact .contact-input-box .contact-input {
  padding: 1.7rem 2.4rem;
  color: #000;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.8rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .contact-main .contact .contact-input-box .contact-input {
    padding: 1rem 1.4rem !important;
  }
}
@media (max-width: 678px) {
  .contact-main .contact .contact-input-box .contact-input {
    font-size: 1.4rem;
  }
}
@media (max-width: 320px) {
  .contact-main .contact .contact-input-box .contact-input {
    font-size: 1.2rem;
  }
}

.contact-message-box {
  height: 17.6rem;
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  background: none;
  border: none;
  width: 100%;
  outline: none;
}
@media (max-width: 678px) {
  .contact-message-box {
    font-size: 1.4rem;
    height: 10rem;
  }
}

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

.arrow-active .faq-img {
  transform: rotate(180deg);
}

.bet__selector {
  height: 85%;
  display: inline-block;
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  z-index: 1;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 0.5rem;
  background: linear-gradient(96deg, #45ABF1 -26.19%, #41AF91 125.02%);
  color: #FFF;
}
@media (max-width: 392px) {
  .bet__selector {
    top: 0.3rem;
    left: 0.3rem;
  }
}

.alert {
  width: 100%;
  background: #040E0F;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
}

.sucess_txt {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #41AF92;
}

.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: #DC4040;
}

.showmore {
  text-decoration: underline;
  cursor: pointer;
}

.sp-c-tc-page-wrapper {
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .sp-c-tc-page-wrapper {
    margin-top: 2rem;
  }
}
.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: #FFF;
}
@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;
  }
}

.footer-main {
  box-shadow: 0px 1px 4px -1px rgba(255, 255, 255, 0.8);
}

.auth-container {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .auth-container {
    background: #131517;
  }
}

.auth {
  height: 100dvh;
  margin: 0 auto;
  display: flex;
}
.auth .auth-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .auth .auth-left {
    display: none;
  }
}
.auth .auth-left::before {
  content: "";
  position: absolute;
  width: 8rem;
  height: 7rem;
  top: 6.5rem;
  left: 2rem;
  z-index: 1;
}
.auth .auth-left::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 5.9rem;
  left: -3.8rem;
  bottom: 7rem;
}
.auth .auth-left .auth-img {
  position: absolute;
  top: 6.5rem;
}
.auth .auth-left .auth-img img {
  width: auto;
}
@media (max-width: 991px) {
  .auth .auth-left .auth-img img {
    width: 65%;
    margin: 0 auto;
  }
}
.auth .auth-left .auth-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.auth .auth-left .auth-text::before {
  content: "";
  position: absolute;
  width: 99.51rem;
  height: 99.51rem;
  top: -40rem;
  left: -28rem;
  bottom: 1.4rem;
  z-index: -1;
}
@media (max-width: 1199px) {
  .auth .auth-left .auth-text::before {
    top: -43rem;
    left: -36rem;
    transform: scale(0.6);
  }
}
.auth .auth-left .auth-text h3 {
  color: #FFF;
  text-align: center;
  font-family: "Michroma", sans-serif;
  font-size: clamp(2.4rem, 1.4667rem + 1.6204vw, 3.8rem);
  font-weight: 400;
  line-height: 8.1rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1199px) {
  .auth .auth-left .auth-text h3 {
    font-size: 2rem;
    line-height: 5rem;
  }
}
.auth .auth-left .auth-text h2 {
  color: #000;
  text-align: center;
  font-family: "Michroma", sans-serif;
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 8.1rem;
  background: linear-gradient(96deg, #45ABF1 -26.19%, #41AF91 125.02%);
  border-radius: 0.8rem;
  padding: 0 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1199px) {
  .auth .auth-left .auth-text h2 {
    font-size: 3rem;
    line-height: 5rem;
  }
}
.auth .auth-right {
  width: 100%;
  padding: 8rem 0 2rem;
  background: #131517;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .auth .auth-right {
    padding: 8rem 8rem 2rem;
  }
}
@media (max-width: 678px) {
  .auth .auth-right {
    overflow: visible;
  }
}
@media (max-width: 576px) {
  .auth .auth-right {
    padding: 3rem;
  }
}
@media (max-width: 320px) {
  .auth .auth-right {
    padding: 1.5rem;
  }
}
.auth .auth-right::before {
  content: "";
  position: absolute;
  width: 679.23px;
  height: 631.21px;
  left: 2rem;
  top: 0;
  z-index: -1;
}
@media (max-width: 576px) {
  .auth .auth-right::before {
    display: none;
  }
}
.auth .auth-right::after {
  position: absolute;
  width: 63rem;
  height: 52.6rem;
  left: 29rem;
  bottom: -25.9rem;
  z-index: 0;
}
@media (max-width: 576px) {
  .auth .auth-right::after {
    display: none;
  }
}
.auth .auth-right .auth-right-logo {
  position: relative;
  z-index: 3;
}
.auth .auth-right .auth-right-logo img {
  width: auto;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .auth .auth-right .auth-right-logo img {
    max-width: 13rem;
    margin: 0 auto;
  }
}
.auth .auth-right .auth-right-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100dvh - 20.6rem);
  margin-top: 4rem;
  position: relative;
}
@media screen and (min-width: 2000px) {
  .auth .auth-right .auth-right-box {
    justify-content: center;
  }
}
@media (max-width: 392px) {
  .auth .auth-right .auth-right-box {
    height: calc(100dvh - 11.3rem);
  }
}
.auth .auth-right .auth-right-box form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 44.2rem;
  gap: 2rem;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .auth .auth-right .auth-right-box form {
    max-width: 42rem;
  }
}
@media (max-width: 991px) {
  .auth .auth-right .auth-right-box form {
    max-width: 34rem;
  }
}
@media (max-width: 392px) {
  .auth .auth-right .auth-right-box form {
    gap: 1.5rem;
  }
}
.auth .auth-right .auth-right-box form h5 {
  color: #FFF;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
@media (max-width: 576px) {
  .auth .auth-right .auth-right-box form h5 {
    font-size: 2rem;
  }
}
.auth .auth-right .auth-right-box form .seven-input-outer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 392px) {
  .auth .auth-right .auth-right-box form .seven-input-outer {
    gap: 1.5rem;
  }
}
.auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box {
  width: 100%;
  position: relative;
}
.auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box .auth-input-img {
  position: absolute;
  height: 2.4rem;
  width: 2.4rem;
  top: 1.6rem;
  left: 2rem;
}
@media (max-width: 392px) {
  .auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box .auth-input-img {
    left: 1.2rem;
    top: 1.4rem;
  }
}
.auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box .auth-input-img img {
  width: auto;
  opacity: 0.6;
  transition: all ease-in-out 0.3s;
  margin: 0 auto;
}
.auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box .password-show {
  left: inherit;
  right: 2rem;
  cursor: pointer;
}
.auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box input {
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  background: #0D0D0D;
  border: none;
  width: 100%;
  padding: 1.6rem 5.6rem;
  border-radius: 0.8rem;
}
@media (max-width: 991px) {
  .auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box input {
    font-size: 1.4rem;
  }
}
@media (max-width: 392px) {
  .auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box input {
    padding: 1.6rem 4.8rem;
  }
}
@media (max-width: 320px) {
  .auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box input {
    font-size: 1.4rem;
  }
}
.auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box::-moz-placeholder {
  color: rgba(205, 205, 205, 0.5) !important;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  background: none;
  border: none;
  width: 100%;
}
.auth .auth-right .auth-right-box form .seven-input-outer .auth-input-box::placeholder {
  color: rgba(205, 205, 205, 0.5) !important;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 140%;
  background: none;
  border: none;
  width: 100%;
}
.auth .auth-right .auth-right-box form .remember-link-wrap {
  width: 100%;
  display: block;
}
.auth .auth-right .auth-right-box form .remember-link-wrap input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.auth .auth-right .auth-right-box form .remember-link-wrap input:checked + .remember-link:before {
  background: linear-gradient(96deg, #45ABF1 -26.19%, #41AF91 125.02%);
  border-color: transparent;
}
.auth .auth-right .auth-right-box form .remember-link-wrap input:checked + .remember-link:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 5px;
  height: 13px;
  border: 1px solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 576px) {
  .auth .auth-right .auth-right-box form .remember-link-wrap input:checked + .remember-link:after {
    width: 4px;
    height: 10px;
    left: 6px;
    top: 2px;
  }
}
.auth .auth-right .auth-right-box form .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: #FFF;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 576px) {
  .auth .auth-right .auth-right-box form .remember-link-wrap .remember-link {
    font-size: 1.4rem;
  }
}
.auth .auth-right .auth-right-box form .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 #44add6;
  pointer-events: all;
  border-radius: 3px;
}
@media (max-width: 576px) {
  .auth .auth-right .auth-right-box form .remember-link-wrap .remember-link:before {
    padding: 0.8rem;
  }
}
.auth .auth-right .auth-btn {
  padding: 1.6rem 2rem;
  border-radius: 0.8rem;
  background: linear-gradient(96deg, #45ADE7 -26.19%, #41AF92 125.02%);
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all ease-in-out 0.3s;
}
@media (max-width: 1199px) {
  .auth .auth-right .auth-btn {
    padding: 1.4rem 2rem;
    line-height: 2rem;
  }
}
@media (max-width: 392px) {
  .auth .auth-right .auth-btn {
    padding: 1rem;
  }
}
@media (max-width: 320px) {
  .auth .auth-right .auth-btn {
    font-size: 1.4rem;
  }
}
.auth .auth-right .auth-btn:hover {
  border: 1px solid #45ADE7;
  background: transparent;
  color: #45ABF1;
}
.auth .auth-right p {
  color: #FFF;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(39, 0, 84, 0.15);
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.4rem;
  display: inline;
}
@media (max-width: 991px) {
  .auth .auth-right p {
    display: block;
  }
}
@media (max-width: 392px) {
  .auth .auth-right p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.auth .auth-right p a {
  color: #45ABF1;
}
@media (max-width: 392px) {
  .auth .auth-right p a {
    font-size: 1.4rem;
  }
}
.auth .auth-right p span {
  color: #45ABF1;
}
@media (max-width: 392px) {
  .auth .auth-right p span {
    font-size: 1.4rem;
  }
}

.auth-fp {
  color: #45ADE7;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 140%;
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin: 6rem 0 32rem;
}
form .auth-heading h5 {
  color: #FFF;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (max-width: 320px) {
  form .auth-heading h5 {
    font-size: 2rem;
  }
}
form .auth-heading p {
  color: #CDCDCD;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
form .auth-heading p .auth-edit-btn {
  display: inline-block;
  margin-left: 0.5rem;
}
form .auth-boxes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
}
@media (max-width: 991px) {
  form .auth-boxes {
    gap: 1.5rem;
  }
}
@media (max-width: 392px) {
  form .auth-boxes {
    gap: 1rem;
  }
}
@media (max-width: 320px) {
  form .auth-boxes {
    gap: 0.6rem;
  }
}
form .auth-boxes input {
  overflow: hidden;
  border-radius: 8px;
  background: #040E0F;
  -webkit-box-shadow: 0px 0px 5.217px 0px rgba(204, 204, 204, 0.1);
  border: none;
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 1.3714rem + 0.2976vw, 1.8rem);
  font-weight: 400;
  text-transform: capitalize;
  text-align: center;
  width: 5rem;
  height: 5rem;
  transition: all ease-in-out 0.2s;
  border: 1px solid transparent;
  border-radius: 8px;
  -webkit-text-fill-color: #ffffff;
}
@media (max-width: 991px) {
  form .auth-boxes input {
    height: 4.5rem;
    width: 4.5rem;
  }
}
@media (max-width: 392px) {
  form .auth-boxes input {
    height: 3.5rem;
    width: 3.5rem;
  }
}
form .auth-boxes input:focus {
  border-color: #45ADE7;
}
form .auth-boxes input.parsley-error {
  border-color: #DC4040;
}
form .auth-boxes input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 30px #000;
  -webkit-text-fill-color: #ffffff;
  border: 0;
}
form .auth-boxes input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 30px #000;
  background-color: #000;
  color: #ffffff;
  border: 0;
}
form p {
  color: #CDCDCD;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
form p span {
  color: #45ADE7;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
form .auth-right-buttons {
  display: flex;
  gap: 3rem;
  width: 100%;
}
@media (max-width: 392px) {
  form .auth-right-buttons {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
form .auth-right-buttons input {
  color: #45ADE7;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  padding: 1.7rem 2rem;
  border-radius: 8px;
  border: 1.2px solid #45ADE7;
  background: none;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 1199px) {
  form .auth-right-buttons input {
    padding: 1rem 2rem;
  }
}

.reset-buttons {
  display: flex;
  width: 100%;
  gap: 3rem;
}
@media (max-width: 392px) {
  .reset-buttons {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}
.reset-buttons input {
  color: #45ADE7;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 140%;
  padding: 1.7rem 2rem;
  border-radius: 8px;
  border: 1.2px solid #45ADE7;
  background: none;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .reset-buttons input {
    padding: 1rem 2rem;
  }
}
@media (max-width: 320px) {
  .reset-buttons input {
    font-size: 1.4rem;
    padding: 1rem;
  }
}

.password-show {
  position: relative;
  transition: all ease-in-out 0.3s;
}

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

a {
  color: #45ABF1;
}
@media (max-width: 392px) {
  a {
    font-size: 1.2rem;
  }
}

.resend-link {
  color: #45ABF1;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.auth-right .otp-form .otp-count-sec-out {
  display: inline;
}
.auth-right .otp-form .otp-count-sec {
  display: inline;
}

.trems-conditions {
  margin-top: 2rem;
  padding-bottom: 1rem;
}

.forgot-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-btn-nrml {
  border: 1px solid #45ADE7;
  background: transparent;
  color: #45ABF1;
  padding: 1.7rem 2rem;
  border-radius: 0.8rem;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  text-align: center;
}
.auth-btn-nrml:hover {
  background: linear-gradient(96deg, #45ADE7 -26.19%, #41AF92 125.02%);
  color: #000;
  border: 1px solid transparent;
}
@media (max-width: 392px) {
  .auth-btn-nrml {
    padding: 1rem;
  }
}

.auth-down-text {
  padding-top: 2rem;
}
@media (max-width: 392px) {
  .auth-down-text {
    display: block !important;
  }
}

.auth-tc {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #131517;
}

.available-name {
  display: none;
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 16.8px;
  color: #B1B1B1;
  margin-top: 0.6rem;
}
.available-name span {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 16.8px;
  color: #FFF;
}

.auth-right-box .otp-ver-form {
  gap: 0 !important;
}
.auth-right-box .otp-ver-form .auth-boxes, .auth-right-box .otp-ver-form .opt-resend, .auth-right-box .otp-ver-form .resend-link, .auth-right-box .otp-ver-form .auth-right-buttons {
  margin-top: 3.2rem;
}
