@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --primary-color: #030710;
  --secondary-color: #130b1c;
  --tertiary-color: #f1f5e3;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-inter: Inter, sans-serif;
}

/* Base styles and global variables */
body {
  font-family: var(--font-inter);
  color: var(--white-color);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--primary-color);
  font-weight: 400;
}

a,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white-color);
  margin-top: 0;
  line-height: 1.2;
  font-weight: 400;
}

.text-black {
  color: var(--black-color);
}

.text-primary-color {
  color: var(--primary-color);
}

.text-secondary-color {
  color: var(--secondary-color);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-tertiary {
  background-color: var(--tertiary-color) !important;
}

.bg-white {
  background-color: var(--white-color);
}

.header-container {
  background-color: transparent;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
@media (min-width: 1200px) {
  .header-container {
    padding: 16px 0;
  }
}

.navbar-brand img {
  height: 40px;
}

.navbar-nav .nav-link {
  color: #ffffff;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
  text-transform: capitalize;
  font-family: "Avenir", sans-serif;
}
body.es_wrapper .navbar-nav .nav-link, body.fr_wrapper .navbar-nav .nav-link, body.de_wrapper .navbar-nav .nav-link {
  font-size: 16px;
}

.navbar-nav .nav-link:hover {
  font-weight: 600;
}

.dropdown-toggle {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
}

.dropdown-toggle:hover {
  background-color: #ffffff;
}

.dropdown-toggle::after {
  margin-left: 8px;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: 8px;
  box-shadow: 0 -8px 0 #ffffff, 0 8px 0 #ffffff;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
  opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  box-shadow: none;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  opacity: 1;
  transform: rotate(-45deg);
}

@media (max-width: 1199px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 15px;
    background-color: #130b1c;
    z-index: 1000;
  }
  .navbar-nav {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    padding: 10px 0;
    color: #ffffff;
    font-size: 1rem;
    width: 100%;
  }
}
.flag-icon {
  width: 24px;
  height: 16px;
  margin-right: 5px;
}

.header-container a.btn {
  font-size: 12px;
}

#chat-widget-container {
  bottom: 4px !important;
}
@media (min-width: 1024px) {
  #chat-widget-container {
    bottom: 10px !important;
  }
}

.global-go-up-button {
  background-color: transparent;
  background-image: url("/assets/images/png/scroll-up-btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: fixed;
  bottom: 10px;
  right: 50px;
  width: 75px;
  height: 75px;
  z-index: 100;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.global-go-up-button:hover {
  transform: translateY(-2px);
}
.global-go-up-button:active {
  transform: translateY(0);
}
@media (max-width: 575px) {
  .global-go-up-button {
    right: 16px;
    border-radius: 14px;
  }
}

.global-go-up-button.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* FOR GOOGLE TRANSLATE CSS START HERE */
body {
  top: 0 !important;
}

body .goog-text-highlight {
  background: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

.goog-te-gadget {
  display: block !important;
}

#google_translate_element,
select.goog-te-combo {
  position: fixed;
  z-index: 999;
  top: -999px;
}

.goog-te-banner-frame,
.goog-te-menu-frame,
.goog-te-tooltip {
  display: none !important;
}

font,
.goog-text-highlight {
  background-color: rgba(0, 0, 0, 0) !important;
  box-shadow: none !important;
}

#goog-gt-tt,
.goog-te-combo,
.skiptranslate {
  display: none !important;
}

#teams-dropdown-menu span.icon .fa {
  display: inline-block;
  color: #030710;
}

#teams-dropdown-menu span.icon {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}

#teams-dropdown-menu span.icon i {
  transition: transform 0.2s ease;
  transform-origin: center;
}

.loader {
  z-index: 999999;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  left: 0;
}

#teams-dropdown-menu ul li {
  text-transform: capitalize;
}

#teams-dropdown-menu {
  border-radius: 10px;
  position: relative;
  background-color: #ffffff;
  cursor: pointer;
  width: 60px;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 6px;
  margin-bottom: 0px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

#teams-dropdown-menu * {
  cursor: pointer;
}

#teams-dropdown-menu .flag-text {
  font-size: 0px;
  color: #000000;
}

#teams-dropdown-menu ul {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(10, 10, 10, 0.0509803922), 0 0 10px 0 rgba(10, 10, 10, 0.0784313725);
  display: none;
  left: 0;
  overflow: hidden;
  padding: 10px 0;
  position: absolute;
  top: 50px;
  width: 135px;
  z-index: 99;
  padding: 0;
  left: unset !important;
  right: 0;
}

img.img-fluid.flg {
  margin-right: 10px;
}

#teams-dropdown-menu ul.active {
  display: block;
  animation: slidedown 0.2s;
  top: 50px;
}

#teams-dropdown-menu ul.active ~ span.icon i {
  transform: rotate(180deg);
}

@keyframes slidedown {
  from {
    margin-top: -25px;
    opacity: 0;
  }
  to {
    margin-top: 0;
    opacity: 1;
  }
}
#teams-dropdown-menu ul li {
  padding: 10px 15px;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.5px;
  height: auto !important;
  display: flex;
  margin-left: 0;
  float: none;
  font-family: "Inter", sans-serif;
}

#teams-dropdown-menu ul li:hover {
  color: #000 !important;
  background-color: #f0f0f0;
}

#teams-dropdown-menu span.icon:before {
  display: none;
  content: none;
}

@media screen and (max-width: 1199px) {
  #teams-dropdown-menu {
    height: 32px;
    position: relative !important;
    cursor: pointer !important;
    width: 60px !important;
    display: flex !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
  }
  #teams-dropdown-menu .flag-text {
    font-size: 0px;
    color: #000000;
    margin-right: 10px;
  }
  #teams-dropdown-menu .submenu-button {
    display: none;
  }
  #teams-dropdown-menu span.icon i {
    color: #000;
  }
  .header-main #teams-dropdown-menu {
    margin-left: auto !important;
  }
  .header.sticky header nav.menu.open ul {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  #teams-dropdown-menu .flag-text {
    margin-right: 0;
  }
}
/* FOR GOOGLE TRANSLATE CSS END'S HERE */
/* TABLE CSS START HERE */
table {
  width: 100%;
  height: auto;
  position: relative;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
table tr th {
  color: #fff !important;
  font-size: 16px;
  text-align: center;
}
@media (min-width: 1024px) {
  table tr th {
    padding: 16px !important;
    font-size: 24px;
  }
}
table tr td {
  font-weight: 400;
  text-align: center;
}
@media (min-width: 1024px) {
  table tr td {
    padding: 16px !important;
  }
}

/* TABLE CSS END HERE */
/* fade-in-scroll CSS START HERE */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* fade-in-scroll CSS END HERE */
/* section-container CSS START HERE */
.section-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* section-container CSS END HERE */
/* font-weight CSS START HERE */
.font-normal {
  font-weight: 400;
}

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

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

/* font-weight CSS END HERE */
/* font-size CSS START HERE */
.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-base {
  font-size: 1rem;
  line-height: 1.6;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75;
}

/* font-size CSS END HERE */
/* background-color CSS START HERE */
.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-white {
  background-color: var(--white-color);
}

/* background-color CSS START HERE */
html,
body {
  height: 100%;
}

body {
  background-color: #030710;
  background-image: url("/assets/images/svg/body-bg.svg");
  background-repeat: repeat-y;
  background-position: center 9%;
  background-size: 100% auto;
  min-height: 100vh;
}
body main.sign-up-container {
  background-image: url("/assets/images/webp/bg-sign-up.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  min-height: 100vh;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.btn.active, .btn:hover {
  color: #ffffff;
  background-color: #001eff;
  border: 1px solid #001eff;
}
.btn:active {
  background-color: #ffffff !important;
  color: #030710 !important;
}

@media (min-width: 1024px) {
  .w-lg-25 {
    width: 25% !important;
  }
  body:not(.en_wrapper) .w-lg-25 {
    width: 50% !important;
  }
}

.glass-container {
  width: 100%;
  height: auto;
  position: relative;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gradient-text {
  background: linear-gradient(94.59deg, #4056ff -3.32%, #ffa200 14.51%, #ff46f0 43.63%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.modal-wrapper {
  display: flex;
  gap: 2rem;
}
.modal-wrapper .modal-hero {
  width: 100%;
  height: 100%;
  min-height: 590px;
  max-width: 388px;
  overflow: hidden;
  border-radius: 12px;
  background-image: url("/assets/images/webp/modal-hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.modal-wrapper .modal-description img {
  width: 100%;
  max-width: 306px;
  margin-bottom: 3rem;
}
.modal-wrapper .modal-description h1 {
  margin-bottom: 2rem;
}

.btn-close {
  --bs-btn-close-color: #90a1b9;
  --bs-btn-close-opacity: 1;
  filter: none;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3e%3cpath d='M2 2l12 12M14 2L2 14' stroke='%2390A1B9' stroke-width='2' stroke-linecap='round'/%3e%3c/svg%3e");
}

.forgot-password-wrapper {
  display: flex;
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 767.98px) {
  .forgot-password-wrapper {
    flex-direction: column;
  }
}

.forgot-password-side {
  flex: 0 0 42%;
  min-height: 520px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(120% 120% at 50% 20%, rgba(146, 86, 255, 0.35) 0%, rgba(24, 14, 40, 0.95) 55%, rgb(8, 6, 16) 100%);
}
@media (max-width: 767.98px) {
  .forgot-password-side {
    min-height: 320px;
    flex: 0 0 auto;
  }
}

.forgot-password-icon {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.forgot-password-icon img {
  width: 44px;
  height: 44px;
  display: block;
}

.forgot-password-content {
  flex: 1;
  padding: 2.5rem;
}
@media (max-width: 767.98px) {
  .forgot-password-content {
    padding: 2rem 1.25rem;
  }
}

/** form control styling **/
.form-control-underline {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  border-radius: 0;
  padding: 12px;
  font-size: 16px;
  color: #666;
  width: 100%;
}

.form-control-underline:focus-visible,
.form-control-underline:focus {
  outline: none;
}

.form-control,
.form-control:focus {
  background-color: #eef2e6;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  color: #030710;
}

.form-control-underline::-moz-placeholder, .form-control::-moz-placeholder {
  color: #030710;
}

.form-control-underline::placeholder,
.form-control::placeholder {
  color: #030710;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(180, 200, 150, 0.3);
  background-color: #e8eede;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/** form control styling **/
/* SIGN IN | SIGN UP*/
.apply {
  background-color: transparent;
  border: none;
  color: #030710;
  transition: color 0.3s ease;
  font-size: 1rem;
  width: 100%;
}
.apply:hover {
  color: #0b1a3b;
}

.sign-up-disclaimer {
  margin-top: 2rem;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  color: #001eff;
}

.auth-container {
  padding: 1rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .auth-container {
    width: 80%;
  }
}

.sign-in-container {
  min-height: calc(100dvh - 80px);
}
@media (max-width: 1200px) {
  .sign-in-container {
    min-height: calc(100dvh - 106px);
  }
}

.form-control {
  border-radius: 30px !important;
}

.auth-hero {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  overflow: hidden;
}
.auth-hero.sign-in-hero {
  background-image: url("/assets/images/webp/sign-in-hero.webp");
}

.password-input-wrapper {
  position: relative;
}
.password-input-wrapper .form-control {
  padding-right: 3rem;
}
.password-input-wrapper .password-toggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1rem;
  background: transparent;
  border: none;
  color: #030710;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-input-wrapper .password-toggle-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.password-input-wrapper .password-toggle-btn:focus {
  outline: none;
  color: #ffffff;
}
.password-input-wrapper .password-toggle-btn i {
  font-size: 1.1rem;
  color: #030710;
}

.sign-in {
  color: #ff46f0;
  text-decoration: none;
  transition: all 0.3s all;
}
.sign-in:hover {
  text-decoration: underline;
}

/* SIGN IN | SIGN UP*/
.main-wrapper.hero {
  background-color: transparent;
  display: flex;
  min-height: calc(100dvh - 66px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .main-wrapper.hero {
    min-height: calc(100dvh - 100px);
  }
}
.main-wrapper.hero .hero-asset {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: 613px;
  margin: 0 auto;
}

#services.section-container .glass-card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#services.section-container .glass-card .bar {
  width: 70px;
  height: 15px;
  background-color: #ffffff;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
#services.section-container .glass-card h3 {
  font-size: 24px;
}

#about-us.section-container .img-container img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  #about-us.section-container .row.about-us-grid > [class^=col-] {
    display: flex;
  }
  #about-us.section-container .glass-container,
  #about-us.section-container .about-us-img-grid {
    width: 100%;
    height: 100%;
  }
  #about-us.section-container .about-us-img-grid img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
#about-us.section-container .about-us-img-grid {
  border-radius: 30px;
  overflow: hidden;
}
#about-us.section-container .about-us-img-grid img {
  width: 100%;
  height: 100%;
}

#pricing.section-container .pricing-card {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: filter 0.3s ease;
  cursor: pointer;
  filter: blur(4px);
}
#pricing.section-container .pricing-card .btn.active {
  color: #ffffff !important;
}
#pricing.section-container .pricing-card h3,
#pricing.section-container .pricing-card h4 {
  font-weight: 700;
  margin-bottom: 0;
}
#pricing.section-container .pricing-card p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
#pricing.section-container .pricing-card .divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
#pricing.section-container .pricing-card:hover {
  filter: blur(0);
}
#pricing.section-container .pricing-card.active {
  filter: blur(0);
  background-color: #ffffff;
  color: #030710;
}
#pricing.section-container .pricing-card.active .divider {
  background-color: #030710;
}
#pricing.section-container .pricing-card.active h2,
#pricing.section-container .pricing-card.active h3,
#pricing.section-container .pricing-card.active h4,
#pricing.section-container .pricing-card.active p {
  color: #000000 !important;
}

footer {
  padding-top: 3rem;
  padding-bottom: 2rem;
  color: #ffffff;
}
footer .cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
footer .cards-container img {
  max-width: 200px;
}
@media (min-width: 1024px) {
  footer .cards-container img.logo {
    max-width: 395px !important;
    width: 100%;
  }
  footer .cards-container img.cards {
    width: 100%;
    max-width: 370px;
  }
}
footer .cards-container p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  footer .cards-container {
    align-items: center;
    margin-bottom: 0;
  }
}
footer .footer-links {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 992px) {
  footer .footer-links {
    text-align: left;
  }
}
footer .footer-links h6 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
footer .footer-links ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer .footer-links ul li {
  margin-bottom: 0.75rem;
}
footer .footer-links ul li:last-child {
  margin-bottom: 0;
}
footer .footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  text-transform: capitalize;
}
footer .footer-links ul li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
footer .footer-links ul li p {
  text-transform: capitalize;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
}
footer .footer-links ul li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  footer .footer-links {
    margin-bottom: 0;
  }
}
footer .footer-divider {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  opacity: 0.25;
  margin-bottom: 2rem;
}

/*  POLICY PAGE CSS START HERE */
.policy-content {
  position: relative;
  /* Custom to this site */
  background-color: transparent;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .policy-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.policy-content .terms-content {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
}
.policy-content .terms-content span {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
}
@media (max-width: 375px) {
  .policy-content .terms-content {
    font-size: 14px;
  }
}
.policy-content .terms-content h1,
.policy-content .terms-content h2 {
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.3;
  margin: 0;
  padding: 50px 0 15px 0;
}
@media (max-width: 1199px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 40px 0 15px 0;
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    padding: 30px 0 10px 0;
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content h1,
  .policy-content .terms-content h2 {
    font-size: 18px;
    padding: 20px 0 10px 0;
  }
}
.policy-content .terms-content h6 {
  margin: 0 0 15px 0;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.3;
}
.policy-content .terms-content b {
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
}
@media (max-width: 575px) {
  .policy-content .terms-content b {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .policy-content .terms-content b {
    font-size: 15px;
  }
}
.policy-content .terms-content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 15px;
}
.policy-content .terms-content p.version {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.policy-content .terms-content a {
  color: #ffffff;
  transition: 0.3s all;
  font-weight: 500;
}
.policy-content .terms-content a:hover {
  color: #ff46f0;
  transition: 0.3s all;
}
.policy-content .print {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  right: 0;
  padding: 20px 14px;
  writing-mode: vertical-rl;
  color: #fff;
  background: #001eff;
  box-shadow: 0px 4px 60px rgba(30, 92, 255, 0.2);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transform: rotate(-180deg);
  transition: 0.3s all;
  border-radius: 0px 12px 12px 0px;
  position: sticky;
  width: -moz-max-content;
  width: max-content;
  float: right;
  top: 140px;
  z-index: 2;
}
@media (max-width: 1399px) {
  .policy-content .print {
    padding: 20px 10px;
  }
}
@media (max-width: 991px) {
  .policy-content .print {
    writing-mode: unset;
    transform: none;
    border-radius: 12px 0 0 12px;
    padding: 10px;
    font-size: 0;
    transition: 0.3s all;
  }
}
@media (max-width: 575px) {
  .policy-content .print {
    padding: 8px;
  }
}
.policy-content .print img {
  padding-top: 10px;
}
@media (max-width: 991px) {
  .policy-content .print img {
    padding: 0;
    transform: rotate(90deg);
  }
}

.mb-self h2 {
  margin-bottom: 10px;
}

/*  POLICY PAGE CSS END'S HERE */
.faq-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h1 {
  font-size: 55px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.faq-header p {
  color: #4a5565;
  font-size: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 2px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .faq-item {
    padding: 26px;
  }
}

.faq-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  grid-column: 1/-1;
  border-color: #e5e7eb;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
}

.faq-item.active .faq-question {
  color: #ffffff;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq-item.active .faq-icon {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.faq-answer {
  display: none;
  margin-top: 20px;
  padding-top: 16px;
  margin-left: 0;
  color: #ffffff;
  line-height: 100%;
  font-size: 1rem;
  border-top: 1px solid #e5e7eb;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .faq-answer {
    margin-left: 43px;
  }
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-item.active {
    grid-column: 1;
  }
}
table thead tr th {
  border: 1px solid #130b1c !important;
  color: #ffffff !important;
  font-size: 12px;
  text-align: center;
  background-color: #130b1c !important;
  padding: 8px !important;
  width: 50%;
}
@media (min-width: 1024px) {
  table thead tr th {
    font-size: 24px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}
table tbody tr td {
  font-weight: 400;
  text-align: center;
  font-size: 12px;
  padding: 8px !important;
}
@media (min-width: 1024px) {
  table tbody tr td {
    font-size: 16px;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

.cancel-membership-section {
  filter: drop-shadow(14px 17px 68px rgba(0, 0, 0, 0.1019607843));
}
.cancel-membership-section h3 {
  color: #ffffff;
  font-weight: 800;
  font-size: 35px;
}
.cancel-membership-section p {
  font-weight: 500;
  font-size: 1rem;
  color: #ffffff;
}
.cancel-membership-section .form-group {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
.cancel-membership-section .form-group label {
  font-size: 24px;
}
.cancel-membership-section .form-group input {
  color: #ffffff;
  font-size: 24px;
  border: none;
  border-bottom: 1px solid #ffffff;
}
.cancel-membership-section .form-group input::-moz-placeholder {
  color: #ffffff;
}
.cancel-membership-section .form-group input::placeholder {
  color: #ffffff;
}
.cancel-membership-section .form-group input:focus-visible {
  outline: none;
}
.cancel-membership-section .cancel-now {
  width: 100%;
}
@media (min-width: 1024px) {
  .cancel-membership-section .cancel-now {
    width: -moz-fit-content;
    width: fit-content;
  }
}/*# sourceMappingURL=main.css.map */