.d-flex {
  display: flex !important;
}

.flex-row {
  display: flex !important;
  flex-direction: row !important;
}

.flex-col {
  display: flex !important;
  flex-direction: column !important;
}

.d-flex-inline {
  display: inline-flex !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.justify-items-start {
  justify-content: flex-start !important;
}

.justify-items-center {
  justify-content: center !important;
}

.justify-items-end {
  justify-content: flex-end !important;
}

.justify-items-between {
  justify-content: space-between !important;
}

.flex-1 {
  flex: 1 !important;
}

/* Center horizontally & vertically */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Space-between horizontally, center vertically */
.flex-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-between-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Space-around horizontally, center vertically */
.flex-around-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex-start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-end-center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Column layout, centered both ways */
.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Row layout, centered vertically only */
.flex-row-center-v {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* Row layout, centered horizontally only */
.flex-row-center-h {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.g-0 {
  gap: 0 !important;
}

.g-4 {
  gap: 0.25rem;
}

.g-5 {
  gap: 0.3125rem;
}

.g-6 {
  gap: 0.375rem;
}

.g-8 {
  gap: 0.5rem;
}

.g-10 {
  gap: 0.625rem;
}

.g-12 {
  gap: 0.75rem;
}

.g-14 {
  gap: 0.875rem !important;
}

.g-16 {
  gap: 1rem !important;
}

.g-18 {
  gap: 1.125rem !important;
}

.g-20 {
  gap: 1.25rem !important;
}

.g-24 {
  gap: 1.5rem !important;
}

.g-30 {
  gap: 1.875rem !important;
}

.g-40 {
  gap: 2.5rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.px-0 {
  padding-inline: 0 !important;
}

.m-auto {
  margin: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mb-16 {
  margin-bottom: 16px;
}

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

.border-0 {
  border: none !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right;
}

.uppercase-text {
  text-transform: uppercase;
}

.lowercase-text {
  text-transform: lowercase;
}

.capitalize-text {
  text-transform: capitalize;
}

.text-nowrap {
  white-space: nowrap;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-center {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

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

.w-100 {
  width: 100%;
}

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

img {
  max-width: 100%;
}

.header_section {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.header_section .heading_text {
  font-weight: var(--fw-500);
  font-size: 42px;
  line-height: 150%;
  color: var(--text-white);
  font-family: At Aero;
}
.header_section .gradient_heading {
  background: linear-gradient(93.26deg, #F1A475 20%, #FCD9B8 50%, #CC835A 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.header_section .sub-heading_text {
  font-family: "Poppins";
  font-style: normal;
  font-weight: var(--fw-400);
  font-size: var(--fs-16-subheading-text);
  line-height: 150%;
  color: var(--text-legal-content);
}
.header_section .sub-heading_text_20 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: var(--fw-400);
  font-size: var(--fs-20-global-subheading);
  line-height: 150%;
  color: var(--text-legal-content);
}
.header_section .sub-heading_text_16 {
  font-weight: var(--fw-400);
  font-size: var(--fs-16-subheading-text);
  line-height: 150%;
  color: var(--text-legal-content);
  inset: 0;
  margin: auto;
  max-width: 800px;
}

.gold-box-bg {
  background: linear-gradient(96.15deg, #CC835A 5.22%, #FCD9B8 31.86%, #F9D4B3 55.03%, #FFEFE2 73.45%, #E6AA80 97.27%);
  border: 1px solid #F4F4F4;
}

.techno-sec .gold-box-bg {
  background: var(--color-button-sescondary-gradient);
}

.silver-box-bg {
  background: var(--gradiant-silver-color);
  border: 1px solid #F4F4F4;
}

.gradient_box {
  padding: 20px 10px;
  background: var(--gradiant-gold-color);
  border-radius: 10px;
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  gap: 10px;
  background: var(--gradiant-silver-color);
  border-radius: 4px;
  font-weight: var(--fw-400);
  font-size: var(--fs-18-btn-primary-gradient);
  line-height: 150%;
  text-align: center;
  color: #011A43;
  border: 0;
  cursor: pointer;
}

.btn-schedule-demo {
  min-width: 205px;
}

.get-started-btn {
  font-size: var(--fs-18-btn-primary-gradient);
  min-width: 189px;
  overflow: hidden;
}

.get-started-btn span svg {
  display: inline-block;
  transition: transform 0.4s ease;
}

.get-started-btn .icon-wrapper {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.get-started-btn span:last-child::after {
  content: url("/assets/images/icons/right-arrow-blue.svg");
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.get-started-btn:hover span:first-child {
  transform: scale(1.06);
}

.get-started-btn:hover span svg {
  transform: translateX(65px);
}

.get-started-btn:hover span:last-child::after {
  left: 0;
  opacity: 1;
}

.back-to-btn {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

.back-to-btn span svg {
  rotate: 180deg;
  filter: brightness(0) invert(1);
}

.back-to-btn span:last-child::after {
  left: 0px;
  transform: translateY(-50%) rotate(180deg);
  filter: brightness(0) invert(1);
}

.back-to-btn:hover span:last-child::after {
  left: -35px;
}

.btn-primary span,
button span {
  transition: all 0.2s ease;
  display: inline-flex;
  font-family: "Poppins";
}

.btn-primary:hover span,
button:hover > span {
  transform: scale(1.06);
}

.gradient-ring--left-top::after,
.gradient-ring--left-bottom::after,
.gradient-ring--right-top::before,
.gradient-ring--right-bottom::before {
  content: "";
  position: absolute;
  width: 242px;
  height: 242px;
  border-radius: 50%;
  background: var(--color-button-sescondary-gradient);
  -webkit-mask-image: radial-gradient(circle, transparent 100px, black 101px);
  mask-image: radial-gradient(circle, transparent 100px, black 101px);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  z-index: -1;
}

.gradient-ring--left-bottom::after {
  top: unset;
  right: unset;
  bottom: 0;
  left: 0;
}

.gradient-ring--left-top::after {
  top: 0;
  right: unset;
  bottom: unset;
  left: 0;
}

.gradient-ring--right-top::before {
  top: 0;
  right: 0;
  left: unset;
  bottom: unset;
}

.gradient-ring--right-bottom::before {
  top: unset;
  right: 0;
  left: unset;
  bottom: 0;
}

.restoring-trust-section.gradient-ring--right-top::before {
  top: 0;
  right: 0;
  transform: translate(80%, -10%);
  z-index: 2;
}
.restoring-trust-section.gradient-ring--left-bottom::after {
  left: 0;
  bottom: 0;
  transform: translate(-60%, 50%);
  z-index: 2;
}

@keyframes rotateAnimation1 {
  from {
    transform: translate(-48%, -80%) scale(1) rotate(0deg);
  }
  to {
    transform: translate(-48%, -80%) scale(1) rotate(360deg);
  }
}
@keyframes rotateAnimation2 {
  from {
    transform: translate(35%, 62%) scale(1) rotate(0deg);
  }
  to {
    transform: translate(35%, 62%) scale(1) rotate(360deg);
  }
}
@keyframes scaleDownLeftRing {
  from {
    transform: translate(-48%, -80%) scale(4.25);
    -webkit-mask-image: radial-gradient(circle, transparent 110px, black 101px);
    mask-image: radial-gradient(circle, transparent 110px, black 101px);
  }
  to {
    transform: translate(-48%, -80%) scale(1);
    -webkit-mask-image: radial-gradient(circle, transparent 100px, black 101px);
    mask-image: radial-gradient(circle, transparent 100px, black 101px);
  }
}
@keyframes scaleDownRightRing {
  from {
    transform: translate(35%, 62%) scale(4.25);
    -webkit-mask-image: radial-gradient(circle, transparent 110px, black 101px);
    mask-image: radial-gradient(circle, transparent 110px, black 101px);
  }
  to {
    transform: translate(35%, 62%) scale(1);
    -webkit-mask-image: radial-gradient(circle, transparent 100px, black 101px);
    mask-image: radial-gradient(circle, transparent 100px, black 101px);
  }
}
.contactus-section .gradient-ring--left-top::after {
  transform: translate(-48%, -80%) scale(4.25);
  z-index: 0;
  animation: scaleDownLeftRing 0.45s ease-in forwards, rotateAnimation1 20s linear infinite;
  animation-delay: 0s, 1s;
}
.contactus-section .gradient-ring--right-bottom::before {
  transform: translate(35%, 62%) scale(4.25);
  z-index: 0;
  animation: scaleDownRightRing 0.45s ease-in forwards, rotateAnimation2 20s linear infinite;
  animation-delay: 0s, 1s;
}

.learn-more-btn {
  font-family: "Poppins";
  font-weight: var(--fw-400);
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  text-decoration-line: underline;
  color: var(--text-white);
}

.svg-sprite-container {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

.wave-img {
  transform: translate(0, -30%);
  width: 100%;
  max-width: 530px;
  height: 530px;
  position: absolute;
  opacity: 0.2;
  z-index: -1;
  inset: 0;
  margin: auto;
}

@media (max-width: 1024px) {
  .gradient-ring--left-top::after, .gradient-ring--left-bottom::after, .gradient-ring--right-top::before, .gradient-ring--right-bottom::before {
    mask-image: radial-gradient(circle, transparent 108px, black 108px);
  }
  .wave-img {
    transform: translate(0, -14%);
  }
  .btn-primary {
    height: 44px;
    padding: 12px;
  }
  .btn-primary.get-started-btn {
    min-width: 173px;
  }
  .btn-primary.btn-schedule-demo {
    min-width: 184px;
  }
  .header_section .heading_text {
    font-size: 32px;
  }
  .restoring-trust-section.gradient-ring--left-bottom::after {
    transform: translate(-75%, 75%);
  }
  .custom-tab-grid-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .contactus-section .gradient-ring--left-top::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .wave-img {
    transform: translate(0, -23%);
  }
  .btn-primary {
    padding: 12px;
    height: 40px;
  }
  .btn-primary.get-started-btn {
    min-width: 130px;
    height: 40px;
  }
  .btn-primary.btn-schedule-demo {
    height: 32px;
    min-width: 148px;
  }
  .gradient-ring--right-top::before {
    transform: translate(62%, 0%);
    width: 100px;
    height: 100px;
    transform: translate(70%, 0%);
    mask-image: radial-gradient(circle, transparent 42px, black 42px);
  }
  .gradient-ring--right-top::after {
    transform: translate(62%, 0%);
    width: 100px;
    height: 100px;
    transform: translate(70%, 0%);
    mask-image: radial-gradient(circle, transparent 42px, black 42px);
  }
  .gradient-ring--right-bottom::before {
    content: "";
    right: -12%;
  }
  .header_section {
    gap: 8px;
  }
  .header_section .heading_text {
    font-size: 24px;
  }
  .custom-mob-grid-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .mob-align {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gradient-ring--left-top::after, .gradient-ring--left-bottom::after, .gradient-ring--right-top::before, .gradient-ring--right-bottom::before {
    mask-image: radial-gradient(circle, transparent 45px, black 45px);
  }
}
@media (max-width: 400px) {
  .contactus-section .gradient-ring--right-bottom::before {
    content: "";
    right: -22%;
    bottom: -20px;
  }
}
.scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(0, 24, 61, 0.8) !important;
}

.head_section {
  position: sticky;
  top: 0;
  z-index: 110;
  width: 100%;
  transition: 0.2s ease-in-out;
  margin: 0 auto;
  padding-block: 30px;
  padding-inline: 5%;
  height: 120px;
}
.head_section .header_custom_width {
  min-width: 100%;
}
.head_section .header_custom_width .logo_lg {
  width: 240px;
  height: auto;
}
.head_section .header_custom_width .header_tabs .select-menu {
  display: none;
  top: 55px;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: absolute;
  background: var(--bg-secondary);
  z-index: 10;
  border-radius: 6px;
  right: 0;
  overflow: hidden;
  color: var(--text-legal-content);
}
.head_section .header_custom_width .header_tabs .select-menu .option .option-text {
  min-width: 150px;
  padding: 12px;
  white-space: nowrap;
  width: 100%;
  display: inline-flex;
  transition: all 0.2s ease;
}
.head_section .header_custom_width .header_tabs .select-menu .option .option-text:hover {
  transform: translateX(4px);
}
.head_section .header_custom_width .header_tabs .select-menu .option .option-text.active {
  color: var(--text-white);
}
.head_section .header_custom_width .header_tabs .select-menu.open {
  opacity: 1;
  display: block;
  z-index: 9999;
  padding: 0 12px;
}
.head_section .header_custom_width .header_tabs .select-menu.open .option:hover {
  color: var(--color-menu-highlight);
}
.head_section .header_section_drop .header_custom_width {
  gap: 25px;
}
.head_section .header_section_drop .header_sub {
  margin-bottom: auto;
}
.head_section .header_section.header_section_drop {
  min-height: 147px;
}
.head_section .header_sub {
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.header_section_drop {
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: unset;
}
.header_section_drop .header_sub {
  display: inline-flex;
  gap: 25px;
  margin-top: 0px;
  width: auto;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px 0px;
  padding: 8px 16px 8px 24px;
}
.header_section_drop .header_sub .logoItem_2 {
  display: none;
}
.header_section_drop .header_sub .logoItem img {
  width: 30px;
}
.header_section_drop .header_sub .getIn span {
  display: none;
}
.header_section_drop .header_sub .getStartBtn {
  padding: 6px 16px;
  border-radius: 48px;
}
.header_section_drop .header_sub .getIn .getStartBtn svg {
  display: none;
}

.header_tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.logoItem {
  display: flex;
  align-items: center;
  gap: 14px;
  order: 2;
}

.nav-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333333;
}
.nav-icon:hover {
  color: #333333;
}
.nav-icon img {
  width: 16px;
  height: auto;
}

.hangBar {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 0;
}
.hangBar .hangBar_img {
  width: 48px;
  height: 48px;
  position: relative;
}

.header_actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_actions a {
  font-size: "fs-18";
  font-weight: "semibold";
  color: "menuBlue";
  font-style: normal;
}
.header_actions .getStartBtn {
  border: 1px solid var(--clr-menuBlue);
  font-weight: var(--fw-600);
  border-radius: 10px;
  padding: 12px 18px;
  width: 172px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.header_actions .getStartBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  background-color: var(--clr-menuBlue);
  color: var(--text-white);
  border-color: var(--clr-darkBlue);
  transition: all 0.2s ease-in-out;
}

.head_section .navbar-expand-lg {
  flex-wrap: nowrap;
}

.menuToggle {
  background: none;
}

.btn-border-right {
  border-right: 1.5px solid rgba(29, 3, 122, 0.2);
  height: 27px;
}

.header_section_drop .getInTouch,
.header_section_drop .btn-border-right {
  display: none;
}

.head_section.header_section_drop .logoItem {
  order: 1;
}
.head_section.header_section_drop .navbar-nav.header_tabs {
  order: 2;
}
.head_section .header_actions {
  order: 3;
  gap: 35px;
}

.navbar-nav .nav-item {
  position: relative;
  padding-block: 16px;
}
.navbar-nav .nav-item .nav_logo_icon_img {
  max-width: 100%;
  flex-shrink: 0;
}
.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .select-menu {
  position: relative;
  display: flex;
  color: var(--text-white);
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.navbar-nav .nav-item .nav-link:hover svg,
.navbar-nav .nav-item .select-menu:hover svg {
  transform: scale(1.1);
}
.navbar-nav .nav-item .nav-link .dropdown-arrow,
.navbar-nav .nav-item .select-menu .dropdown-arrow {
  transition: all 0.25s ease;
}
.navbar-nav .nav-item .nav-link:hover .dropdown-arrow,
.navbar-nav .nav-item .select-menu:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.navbar-nav .nav-item .nav-link span,
.navbar-nav .nav-item .select-menu span {
  color: var(--color-menu-highlight);
  font-size: 16px;
  font-weight: var(--fw-400);
}
.navbar-nav .nav-item .nav-hover-link {
  position: relative;
}
.navbar-nav .nav-item .nav-hover-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0%;
  width: 90%;
  height: 0.8px;
  background-color: var(--bg-white);
  transform: translateX(-50%) scaleX(0);
  transform-origin: left;
}
.navbar-nav .nav-item .nav-hover-link:hover::after, .navbar-nav .nav-item .nav-hover-link.active::after {
  transition: transform 1s ease;
  transform: translateX(-50%) scaleX(1);
}
.navbar-nav .nav-item .nav-hover-link.option-text:hover::after {
  transform: translateX(-50%) scaleX(0) !important;
}

.moreOptions_list li span {
  color: var(--color-menu-highlight);
}
.moreOptions_list li .down-arrow-icon {
  height: 8px;
  transition: all 0.25s ease;
}
.moreOptions_list li .nav-link.active .down-arrow-icon,
.moreOptions_list li .nav-link.rotated .down-arrow-icon {
  transform: rotate(180deg);
}

.mobMenu_open {
  -webkit-filter: blur(2px);
  filter: blur(2px);
  opacity: 0.4;
}

@media (max-width: 1300px) {
  .header_tabs {
    gap: 5px;
  }
}
@media (min-width: 1201px) {
  .menuToggle {
    display: none;
  }
  #mobileMenu {
    display: none !important;
  }
  main,
  footer {
    filter: none !important;
    opacity: 1 !important;
  }
}
@media (max-width: 1200px) {
  .head_section {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 10px 24px;
    transition: 0s ease-in-out;
  }
  .head_section .logo_lg {
    max-width: 180px;
    height: auto;
  }
  .head_section .navbar-nav {
    display: none;
  }
  .head_section .moreOptions {
    position: absolute;
    top: 71px;
    left: 50%;
    width: 100%;
    overflow: auto;
    height: calc(100vh - 71px);
    border-radius: 20px;
    background: var(--primary-bg);
    padding: 24px 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, 0);
  }
  .head_section .moreOptions .moreOptions_list {
    padding: 0px 24px;
    padding-inline: 5%;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-white);
    padding: 16px 0;
    text-decoration: none;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between) {
    display: inline-flex;
    position: relative;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between).active {
    color: var(--text-white);
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between).active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 20%;
    width: auto;
    height: 0.8px;
    background-color: var(--bg-white);
    display: inline-block;
    transform: translateY(-50%);
    left: 22px;
    right: 0;
    transition: opacity 0.3s ease;
    opacity: 1;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between):not(.active)::before {
    content: "";
    opacity: 0;
    display: none;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link.justify-items-between {
    justify-content: space-between;
    width: 100%;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link .down-arrow-icon {
    transition: all 0.25s ease;
    transform: rotate(0);
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link .rotated.down-arrow-icon {
    transform: rotate(180deg) !important;
  }
  .head_section .moreOptions .moreOptions_list .select-menu {
    background-color: transparent;
    position: relative;
    display: none;
  }
  .head_section .moreOptions .moreOptions_list .select-menu.open {
    display: block;
  }
  .head_section .moreOptions .moreOptions_list .select-menu.open li {
    padding: 12px 16px;
  }
  .head_section .moreOptions .moreOptions_list .select-menu .option .option-text {
    font-weight: var(--fw-400);
    font-size: 14px;
    line-height: 21px;
    color: var(--text-legal-content);
    position: relative;
  }
  .head_section .moreOptions .moreOptions_list .select-menu .option .option-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20%;
    width: 0;
    height: 0.8px;
    background-color: var(--bg-white);
    transition: width 0.3s ease;
    transform: translate(-50%, -50%);
  }
  .head_section .moreOptions .moreOptions_list .select-menu .option .option-text:hover, .head_section .moreOptions .moreOptions_list .select-menu .option .option-text.active {
    color: var(--text-white);
  }
  .head_section .moreOptions .moreOptions_list .select-menu .option .option-text:hover::after, .head_section .moreOptions .moreOptions_list .select-menu .option .option-text.active::after {
    width: 100%;
  }
  .head_section .moreOptions a {
    padding: 24px 0;
    justify-content: flex-start;
  }
  .head_bg_open .head_section {
    background: var(--bg-secondary);
    transition: 0.001s ease-in-out;
  }
  .head_bg_open .head_section.scrolled {
    background-color: var(--bg-secondary) !important;
  }
  .head_bg_open .head_section .moreOptions {
    background: var(--bg-secondary);
  }
}
@media (max-width: 767px) {
  .head_section {
    padding-inline: 5%;
    height: var(--header-height);
  }
  .head_section .header_custom_width .logo_lg {
    width: 112px;
    height: auto;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link {
    padding: 14px 0;
  }
  .head_section .moreOptions .moreOptions_list .nav-icon.nav-link:not(.justify-items-between).active::before {
    bottom: 15%;
    left: 16px;
  }
  .hangBar .hangBar_img {
    width: 30px;
    height: 30px;
  }
}
.footer_main {
  padding: 30px 60px;
  position: relative;
  background: url("/assets/images/icons/Ellipse-footer.svg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.footer_main::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  background: #445FA7;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-top: 40px;
  box-shadow: 0px 0px 500px 30px #445FA7;
  -webkit-box-shadow: 0px 0px 500px 30px #445FA7;
  z-index: -1;
}
.footer_main .AssetfooterFinal {
  content: "";
  position: absolute;
  width: 650px;
  height: 603px;
  left: -350px;
  top: 50%;
  z-index: -1;
  opacity: 0.4;
  transform: translateY(-40%) rotate(90deg);
}
.footer_main .AssetfooterFinal.AssetfooterFinal_after {
  top: 0;
  right: -350px;
  left: unset;
  z-index: -1;
  transform: translateY(0) rotate(-90deg);
}
.footer_main .overwrite-section-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer_main .overwrite-section-container .subfooter_left {
  display: none;
}
.footer_main .logo-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer_main .logo-content-wrapper .footer_top {
  text-align: center;
  max-height: 32px;
}
.footer_main .footer_header {
  display: inline-block;
}
.footer_main .footer_img {
  max-width: 167px;
  width: 100%;
  max-height: 32px;
  position: relative;
  z-index: 1;
}
.footer_main .footer_sub {
  font-style: normal;
  font-size: 20px;
  font-weight: var(--fw-400);
  margin: 0;
  color: var(--text-white);
  text-align: center;
  text-wrap-style: pretty;
}
.footer_main .footer_main_head {
  display: flex;
  align-items: center;
  justify-items: center;
}
.footer_main .footer_main_head .footer-nav {
  background: var(--gradiant-gold-color);
  gap: 12px;
  border-radius: 8px;
  border: 1px solid var(--bg-white);
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
}
.footer_main .footer_main_head .footer-nav::before, .footer_main .footer_main_head .footer-nav::after {
  content: "";
  width: 40%;
  height: 1px;
  position: absolute;
  background: linear-gradient(90deg, rgba(205, 221, 255, 0) 0%, #CDDDFF 72.69%);
}
.footer_main .footer_main_head .footer-nav::before {
  left: -45%;
}
.footer_main .footer_main_head .footer-nav::after {
  right: -45%;
  transform: rotate(180deg);
}
.footer_main .footer_main_head .footer-nav a {
  gap: 12px;
  color: var(--primary-text-color) !important;
  padding: 4px 10px;
}
.footer_main .footer_main_head .footer-nav img {
  width: 24px;
  height: 24px;
}
.footer_main .align_mid_footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  margin: auto;
  border-radius: 12px;
  color: var(--text-white);
  align-items: center;
}
.footer_main .align_mid_footer .align_mid_footer_list_items {
  gap: 38px;
}
.footer_main .align_mid_footer .align_mid_footer_list_items .footer_feature {
  padding: 4px 10px;
  white-space: nowrap;
}
.footer_main .align_mid_footer .align_mid_footer_list_items .footer_feature.footer-sub-nav-active a {
  text-decoration: underline;
  color: #F1A475;
}
.footer_main .align_mid_footer .align_mid_footer_list_items .footer_feature:hover a {
  text-decoration: underline;
  transform: scale(1.06);
}
.footer_main .align_mid_footer .align_mid_footer_list_items .footer_feature .mail_text_sub {
  font-size: var(--footer-nav-legal-14);
  display: inline-flex;
  transition: all 0.2s ease;
}
.footer_main .align_mid_footer_list {
  border-radius: 12px;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_main .align_mid_footer_list .footer_feature a {
  text-decoration: none;
  color: var(--text-white);
  font-size: var(--footer-nav-main-16);
  font-weight: var(--fw-400);
  display: inline-flex;
  transition: all 0.2s ease;
}
.footer_main .align_mid_footer_list .footer_feature:hover a {
  transform: scale(1.06);
}
.footer_main .animated-line,
.footer_main .animated-line-rgt {
  width: 100%;
  height: 2px;
  border: transparent;
}
.footer_main .animated-line {
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #668cff);
}
.footer_main .animated-line-rgt {
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #668cff);
}
.footer_main .left_footer_text {
  text-decoration: none;
  font-size: "fs-14";
  font-weight: "regular";
  color: "gray";
  font-style: normal;
}
.footer_main .mid_footer_text {
  margin: 0;
  font-size: "fs-14";
  font-weight: "regular";
  color: "grayblack";
  font-style: normal;
}
.footer_main .ftr-lft-line {
  width: 35vw;
}
.footer_main .ftr-btm-hr {
  width: 100%;
  margin: auto;
}
.footer_main hr {
  color: rgb(206, 216, 241);
}
.footer_main #footer li a:hover,
.footer_main .left_footer_text:hover,
.footer_main .nav-item a:hover,
.footer_main a.getInTouch:hover {
  color: #254fca !important;
}
.footer_main .subfooter_left:hover {
  text-decoration: underline;
}

.sub_footer {
  padding: 23px 60px;
  position: relative;
  background: var(--bg-blue);
}
.sub_footer .mail-wrapper svg {
  width: 24px;
  height: 24px;
}
.sub_footer .mail-wrapper .mail-text {
  line-height: 100%;
  text-align: center;
  color: var(--text-white);
  font-size: 14px;
}
.sub_footer .subfooter_mid {
  font-size: 14px;
  color: var(--text-white);
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap-style: balance;
}
.sub_footer .subfooter_right {
  gap: 16px;
}
.sub_footer .subfooter_right .footer_icon_align {
  display: inline-flex;
  align-items: center;
}
.sub_footer .subfooter_right .footer_icon_align a {
  width: 32px;
  height: 32px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  background: rgba(162, 173, 196, 0.0705882353);
  border-radius: 3px;
  transition: all 0.2s ease;
}
.sub_footer .subfooter_right .footer_icon_align a svg {
  transition: all 0.2s ease;
}
.sub_footer .subfooter_right .footer_icon_align a:hover {
  background: rgba(162, 173, 196, 0.2666666667);
}
.sub_footer .subfooter_right .footer_icon_align a:hover svg {
  scale: 1.06;
}

@media (max-width: 1024px) {
  .footer_main .AssetfooterFinal {
    width: 346px;
    height: 321px;
    left: -213px;
    top: 50%;
    transform: translateY(-35%) rotate(90deg);
  }
  .footer_main .AssetfooterFinal.AssetfooterFinal_after {
    top: 0;
    right: -213px;
    left: unset;
    z-index: -1;
    transform: translateY(0) rotate(-90deg);
  }
  .footer_main .overwrite-section-container {
    gap: 30px;
  }
  .footer_main .footer_img {
    max-width: 123px;
  }
  .footer_main .logo-content-wrapper {
    gap: 17px;
  }
  .footer_main .footer_sub {
    font-size: 14px;
  }
  .footer_main .align_mid_footer_list {
    gap: 8px;
  }
  .footer_main .align_mid_footer_list.align_mid_footer_list_items {
    gap: 20px;
  }
  .footer_main .align_mid_footer_list .footer_feature {
    padding: unset;
  }
  .footer_main .footer_main_head .footer-nav a {
    padding: 2px 5px;
  }
  .sub_footer {
    padding: 23px 15px;
  }
  .sub_footer .subfooter_mid {
    font-size: 12px;
  }
  .sub_footer .subfooter_right {
    gap: 12px;
  }
  .sub_footer .subfooter_right .footer_icon_align a {
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 2px;
  }
  .sub_footer .mail-wrapper svg {
    width: 20px;
    height: 20px;
  }
  .sub_footer .mail-wrapper .mail-text {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .footer_main {
    padding: 24px 16px 0;
  }
  .footer_main .AssetfooterFinal {
    width: 271px;
    height: 275px;
    left: -161px;
    top: 0;
    transform: translateY(-10%) rotate(90deg);
  }
  .footer_main .AssetfooterFinal.AssetfooterFinal_after {
    top: 0;
    right: -181px;
    left: unset;
    z-index: -1;
    transform: translateY(-15px) rotate(-90deg);
  }
  .footer_main .overwrite-section-container {
    gap: 20px;
  }
  .footer_main .footer_sub {
    text-wrap-style: stable;
  }
  .footer_main .footer_main_head .footer-nav::before, .footer_main .footer_main_head .footer-nav::after {
    content: unset;
  }
  .footer_main .overwrite-section-container {
    gap: 20px;
  }
  .footer_main .overwrite-section-container .subfooter_left {
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding-block: 8px;
  }
  .footer_main .align_mid_footer_list {
    flex-wrap: wrap;
  }
  .footer_main .align_mid_footer_list.align_mid_footer_list_items {
    gap: 0;
  }
  .mail-wrapper {
    position: relative;
  }
  .mail-wrapper::before {
    content: "";
    width: 100%;
    height: 1px;
    left: calc(100% + 1rem);
    position: absolute;
    background: linear-gradient(90deg, #CDDDFF 0%, rgba(205, 221, 255, 0) 50%);
  }
  .mail-wrapper::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    right: calc(100% + 1rem);
    background: linear-gradient(-90deg, #CDDDFF 0%, rgba(205, 221, 255, 0) 50%);
  }
  .mail-wrapper svg {
    width: 16px;
    height: 16px;
  }
  .sub_footer {
    flex-direction: column;
    gap: 20px;
    background: var(--primary-bg);
  }
  .sub_footer .subfooter_left {
    display: none;
    order: 3;
  }
  .sub_footer .subfooter_mid {
    order: 2;
    font-size: 10px;
  }
  .sub_footer .subfooter_right {
    order: 1;
  }
}
@media (max-width: 575px) {
  .footer_main .footer_main_head .footer-nav a {
    padding: 2px 0px;
  }
}
@media (max-width: 430px) {
  .footer_main .footer_main_head .footer-nav {
    max-width: 260px;
  }
  .footer_main .footer_main_head .footer-nav::before {
    content: "";
    width: 100%;
    height: 1px;
    inset: 0;
    transform: translateY(2px);
    margin: auto;
    background: linear-gradient(90deg, rgba(12, 31, 69, 0) 0%, #0C1F45 50%, rgba(12, 31, 69, 0) 100%);
  }
}
.legal-page-section {
  max-width: 1440px;
  padding-inline: 120px;
  color: var(--text-legal-content);
  inset: 0;
  margin: auto;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.legal-page-section h1, .legal-page-section h2, .legal-page-section h3, .legal-page-section h4, .legal-page-section h5, .legal-page-section h6 {
  color: var(--text-white);
  line-height: 150%;
}
.legal-page-section h3 {
  font-weight: var(--fw-500);
  font-size: var(--fs-legal-h3);
  margin-bottom: 10px;
}
.legal-page-section h4 {
  font-family: "At Aero";
  font-weight: var(--fw-400);
  font-size: var(--fs-legal-h4);
  margin-bottom: 10px;
}
.legal-page-section h5 {
  font-weight: var(--fw-400);
  font-family: "Poppins";
  font-size: var(--fs-legal-para);
  margin-bottom: 1rem;
}
.legal-page-section p {
  font-size: var(--fs-legal-para);
}
.legal-page-section ul {
  list-style: disc;
  margin-left: 30px;
  list-style-type: circle !important;
}
.legal-page-section ul > li {
  font-size: var(--fs-legal-para);
  list-style: disc;
  line-height: 150%;
}
.legal-page-section ul > li.list_style_none {
  list-style: none;
}
.legal-page-section ol > li {
  font-size: var(--fs-legal-para);
  line-height: 150%;
  list-style: decimal;
}
.legal-page-section .legal-header-banner {
  position: relative;
}
.legal-page-section .legal-header-banner::before {
  content: "";
  position: absolute;
  background: url("/assets/images/policies/policy-header-bg.svg") no-repeat center;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 0;
}
.legal-page-section .legal-header-banner .legal-header-banner-container {
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 270px;
  border-radius: 4px;
  overflow: hidden;
  z-index: 1;
}
.legal-page-section .legal-header-banner .legal-header-banner-container p {
  color: #c3ccdf;
}
.legal-page-section .legal-header-banner .legal-header-banner-container .legal-bg-overlay {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translate(-50%, -55%);
  width: 334px;
  height: 405px;
  opacity: 0.3;
}
.legal-page-section .legal-header-banner .legal-header-banner-container .legal-head {
  margin-bottom: 0;
  text-align: center;
  width: 80%;
  position: relative;
  z-index: 2;
}
.legal-page-section .legal-header-banner .legal-header-banner-container .legal-head .gradient-gold {
  background: linear-gradient(93.26deg, #F1A475 20%, #FCD9B8 50%, #CC835A 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.legal-page-section .legal-header-banner .legal-header-banner-container .legal-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  margin-right: 5%;
  margin-bottom: 22px;
  animation: legalBounce 2s infinite;
}
@keyframes legalBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.legal-page-section .legal-header-banner .legal-header-banner-container p {
  font-size: 16px;
  text-align: center;
  width: 80%;
  position: relative;
  z-index: 2;
}
.legal-page-section .policy-content .head-time-detail-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 40px;
}
.legal-page-section .policy-content .head-time-detail-wrapper p span {
  color: var(--text-white);
}
.legal-page-section .policy-content .section {
  margin-block: -1rem 60px;
}
.legal-page-section .policy-content .section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.legal-page-section .policy-content .section ul li:last-child {
  margin-bottom: 28px;
}
.legal-page-section .policy-content .section ul:last-child li:last-child {
  margin-bottom: 0;
}
.legal-page-section .policy-content .section ol li:last-child {
  margin-bottom: 28px;
}
.legal-page-section .policy-content .section ol:last-child li:last-child {
  margin-bottom: 0px;
}
.legal-page-section .policy-content h5 + p, .legal-page-section .policy-content h4 + p, .legal-page-section .policy-content h4 + h5 + p, .legal-page-section .policy-content ul + p {
  margin-bottom: 10px;
}
.legal-page-section .policy-content p:has(+ h5), .legal-page-section .policy-content h4 + h5 + p:has(+ h5) {
  margin-bottom: 30px;
}
.legal-page-section .policy-content ol {
  counter-reset: item;
  padding-left: 30px;
}
.legal-page-section .policy-content li > ul {
  margin-top: 6px;
  margin-bottom: 6px;
}
.legal-page-section .legal-header-banner-container:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 541.5px;
  left: 25%;
  top: 50%;
  background: rgba(255, 255, 255, 0.4509803922);
  filter: blur(47px);
  transform: translate(35%, -50%);
  rotate: -23deg;
  z-index: 1;
}
.legal-page-section .legal-header-banner-container::before {
  content: "";
  position: absolute;
  left: 8%;
  top: 50%;
  width: 70px;
  height: 541.5px;
  background: rgba(255, 255, 255, 0.4509803922);
  filter: blur(47px);
  rotate: -23deg;
  transform: translate(15%, -50%);
  z-index: 1;
}
.legal-page-section .policy-footer {
  border-top: 1px solid var(--bg-white);
  padding-block: 16px 30px;
}
.legal-page-section .policy-text-white {
  color: var(--text-white);
}
.legal-page-section .policy-email {
  color: var(--color-menu-highlight);
  text-decoration: underline;
}
.legal-page-section .policy-email-white {
  color: var(--text-white);
  text-decoration: none;
}
.legal-page-section .policy-text-bold-700 {
  font-weight: var(--fw-700);
}

@media (max-width: 1200px) {
  .legal-page-section {
    padding-inline: 2%;
    gap: 40px;
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container {
    min-height: 200px;
    padding: 5%;
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container::after {
    width: 54.14px;
    height: 290.96px;
    transform: translate(85%, -50%);
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container::before {
    width: 54.49px;
    height: 290.96px;
    transform: translate(25%, -50%);
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container .legal-icon {
    max-width: 100px;
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container .legal-icon {
    margin-bottom: 12px;
    margin-right: 2%;
  }
  .legal-page-section .policy-content .section {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .legal-page-section {
    padding-inline: 5%;
    gap: 24px;
  }
  .legal-page-section .policy-content .head-time-detail-wrapper {
    margin-bottom: 20px;
  }
  .legal-page-section h5 {
    margin-bottom: 0.5rem;
  }
  .legal-page-section .policy-content .section {
    margin-block: 0 28px;
  }
  .legal-page-section .policy-content .section h5 + p, .legal-page-section .policy-content .section h4 + p, .legal-page-section .policy-content .section h4 + h5 + p {
    margin-bottom: 8px;
  }
  .legal-page-section .policy-content .section p:has(+ h5), .legal-page-section .policy-content .section h4 + h5 + p:has(+ h5) {
    margin-bottom: 20px;
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container {
    text-align: left;
    align-items: center;
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container .legal-bg-overlay {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translate(-50%, -55%);
    width: 200px;
    height: 200px;
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container::before {
    width: 40px;
    height: 260px;
    left: 25%;
    top: 0%;
    transform: translate(75%, -10%);
    filter: blur(38px);
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container::after {
    width: 40px;
    height: 260px;
    transform: translate(45%, -50%);
    left: 10%;
    top: 50%;
    filter: blur(38px);
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container .legal-head {
    margin-bottom: 0;
    width: 80%;
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container .legal-icon {
    margin-bottom: -10px;
    margin-right: 0;
    max-width: 58px;
    height: auto;
  }
  .legal-page-section .legal-header-banner .legal-header-banner-container p {
    font-size: 12px;
    width: 85%;
  }
}
@media (min-device-width: 360px) and (max-device-width: 1440px) and (-webkit-min-device-pixel-ratio: 3) {
  .legal-page-section .section h4 {
    font-size: var(--fs-legal-h4);
  }
  .legal-page-section .section p {
    font-size: var(--fs-legal-para);
  }
}

/*# sourceMappingURL=legal-main.css.map */
