/*
* Map for breakpoints
*/
:root {
  --Font-Family-Primary: "Sharp Sans";
  --font-size-6xl: 100px;
  --font-size-5xl: 80px;
  --font-size-4xl: 60px;
  --font-size-xxxl: 56px;
  --font-size-xxl: 40px;
  --font-size-xl: 28px;
  --font-size-lg: 24px;
  --font-size-md: 20px;
  --font-size-sm: 18px;
  --font-size-xs: 16px;
  --font-size-xxs: 14px;
  --font-size-xxxs: 12px;
  --line-height-6xl: 120px;
  --line-height-5xl: 95px;
  --line-height-4xl: 65px;
  --line-height-xxxl: 64px;
  --line-height-xxl: 54px;
  --line-height-xl: 42px;
  --line-height-lg: 34px;
  --line-height-md: 30px;
  --line-height-sm: 26px;
  --line-height-xs: 26px;
  --line-height-xxs: 22px;
  --line-height-xxxs: 20px;
}

@media (max-width: 767px) {
  :root {
    --font-size-6xl: 57px;
    --font-size-5xl: 36px;
    --font-size-4xl: 38px;
    --font-size-xxxl: 36px;
    --font-size-xxl: 25px;
    --font-size-xl: 22px;
    --font-size-lg: 20px;
    --font-size-md: 18px;
    --font-size-sm: 16px;
    --font-size-xs: 14px;
    --font-size-xxs: 14px;
    --font-size-xxxs: 14px;
    --line-height-6xl: 70px;
    --line-height-5xl: 45px;
    --line-height-4xl: 48px;
    --line-height-xxxl: 46px;
    --line-height-xxl: 30px;
    --line-height-xl: 36px;
    --line-height-lg: 30px;
    --line-height-md: 28px;
    --line-height-sm: 26px;
    --line-height-xs: 24px;
    --line-height-xxs: 22px;
    --line-height-xxxs: 22px;
  }
}
:root {
  --spacing-4xs: 2px;
  --spacing-3xs: 4px;
  --spacing-xxs: 6px;
  --spacing-xs: 10px;
  --spacing-sm: 15px;
  --spacing-md: 20px;
  --spacing-lg: 25px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;
  --spacing-3xl: 60px;
  --spacing-4xl: 80px;
  --spacing-5xl: 100px;
  --spacing-6xl: 180px;
  --border-radius-border-radius-full: 100px;
  --border-radius-border-radius-xl: 40px;
  --border-radius-border-radius-Large: 20px;
  --border-radius-border-radius-mid: 8px;
  --border-radius-border-radius-0: 4px;
}
@media (max-width: 767px) {
  :root {
    --spacing-4xs: 2px;
    --spacing-3xs: 4px;
    --spacing-xxs: 4px;
    --spacing-xs: 8px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 18px;
    --spacing-xl: 20px;
    --spacing-xxl: 30px;
    --spacing-3xl: 46px;
    --spacing-4xl: 60px;
    --spacing-5xl: 70px;
    --spacing-6xl: 90px;
  }
}

:root {
  --Green: #0c3d3d;
  --Mint: #9BC7B6;
  --White: #FFFFFF;
  --Borders-light-backgrounds:#ffffff;
  --Borders-light-backgrounds: #585858;
  --Grey:#6F7477;
  --Light-Grey: #F5F5F5;
  --Sci-Grey: #F0F1EE;
  --Border: #C0C0C0;
  --heading-color-1:#0F2E30;
  --heading-color-2:#252525;
  --paragraph-text: #4A4A4A;
}

@media (min-width: 993px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 992px) {
  .mobile-nav-visible {
    overflow-y: hidden;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
ul, ol, li, span, a {
  font-family: var(--Font-Family-Primary);
}

@font-face {
  font-family: "Sharp Sans";
  src: url("/wp-content/sass/fonts/Sharp Sans.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@media (min-width: 993px) {
  body {
    padding-top: 80px;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/*Font size utils*/
.f-size-6xl {
  font-size: var(--font-size-6xl) !important;
  line-height: var(--line-height-6xl) !important;
}

.f-size-5xl {
  font-size: var(--font-size-5xl) !important;
  line-height: var(--line-height-5xl) !important;
}

.f-size-4xl {
  font-size: var(--font-size-4xl) !important;
  line-height: var(--line-height-4xl) !important;
}

.f-size-xxxl {
  font-size: var(--font-size-xxxl) !important;
  line-height: var(--line-height-xxxl) !important;
}

.f-size-xxl {
  font-size: var(--font-size-xxl) !important;
  line-height: var(--line-height-xxl) !important;
}

.f-size-xl {
  font-size: var(--font-size-xl) !important;
  line-height: var(--line-height-xl) !important;
}

.f-size-lg {
  font-size: var(--font-size-lg) !important;
  line-height: var(--line-height-lg) !important;
}

.f-size-md {
  font-size: var(--font-size-md) !important;
  line-height: var(--line-height-md) !important;
}

.f-size-sm {
  font-size: var(--font-size-sm) !important;
  line-height: var(--line-height-sm) !important;
}

.f-size-xs {
  font-size: var(--font-size-xs) !important;
  line-height: var(--line-height-xs) !important;
}

.f-size-xxs {
  font-size: var(--font-size-xxs) !important;
  line-height: var(--line-height-xxs) !important;
}

.f-size-xxxs {
  font-size: var(--font-size-xxxs) !important;
  line-height: var(--line-height-xxxs) !important;
}

.section-padding-top {
  padding-top: var(--spacing-4xl);
}

.section-padding-bottom {
  padding-bottom: var(--spacing-4xl);
}

.section-padding-top-zero {
  padding-top: 0px;
}

.section-padding-bottom-zero {
  padding-bottom: 0px;
}

.spacing-primatives-4xs {
  margin-bottom: var(--spacing-4xs);
}

.spacing-primatives-3xs {
  margin-bottom: var(--spacing-3xs);
}

.spacing-primatives-xxs {
  margin-bottom: var(--spacing-xxs);
}

.spacing-primatives-xs {
  margin-bottom: var(--spacing-xs);
}

.spacing-primatives-sm {
  margin-bottom: var(--spacing-sm);
}

.spacing-primatives-md {
  margin-bottom: var(--spacing-md);
}

.spacing-primatives-lg {
  margin-bottom: var(--spacing-lg);
}

.spacing-primatives-xl {
  margin-bottom: var(--spacing-xl);
}

.spacing-primatives-xxl {
  margin-bottom: var(--spacing-xxl);
}

.spacing-primatives-3xl {
  margin-bottom: var(--spacing-3xl);
}

.spacing-primatives-4xl {
  margin-bottom: var(--spacing-4xl);
}

.spacing-primatives-5xl {
  margin-bottom: var(--spacing-5xl);
}

.spacing-primatives-6xl {
  margin-bottom: var(--spacing-6xl);
}

/**
 * InfoBox Component Styles
 * Based on Info Slider but with single image instead of carousel
 * Matches Figma design specifications
 */
.infobox--darkmode-on {
  background-color: var(--black);
  padding: var(--spacing-4xl) 0;
  color: var(--white);
}
.infobox--darkmode-on .infobox__title, .infobox--darkmode-on .infobox__description {
  color: var(--white);
}

.infobox {
  width: 100%;
  padding-top: var(--spacing-4xl);
}
.infobox__container {
  max-width: var(--content-width);
  margin: 0 auto;
  width: 100%;
}
@media (: ) {
  .infobox__container {
    padding: 0 var(--spacing-md);
  }
}
.infobox__content {
  display: flex;
  gap: var(--spacing-lg);
  align-items: start;
}
@media (max-width: 992px) {
  .infobox__content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
}
.infobox__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
}
@media (max-width: 992px) {
  .infobox__text {
    order: 2;
    max-width: 100%;
    padding: 0px;
  }
}
.infobox__title {
  font-family: var(--Font-Family-Primary);
  font-size: var(--Font-Size-f-size-xxxl);
  font-weight: var(--Font-Weight-Bold);
  line-height: var(--Line-Height-Line-height-f-size-xxxl);
  color: var(--heading-primary);
  margin: 0;
}
.infobox__description {
  font-family: var(--Font-Family-Primary);
  font-size: var(--Font-Size-f-size-sm);
  font-weight: var(--Font-Weight-Regular);
  line-height: var(--line-height-Line-height-f-size-sm);
  color: var(--paragraph-text);
}
.infobox__description p {
  margin: 0 0 var(--spacing-sm) 0;
}
.infobox__description p:last-child {
  margin-bottom: 0;
}
.infobox__buttons {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  margin-top: var(--spacing-md);
}
@media (max-width: 992px) {
  .infobox__buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: flex-start;
  }
}
.infobox__image-container {
  flex: 1;
  max-width: 705px;
}
@media (max-width: 992px) {
  .infobox__image-container {
    order: 1;
    max-width: 100%;
    width: 100%;
  }
}
.infobox__pattern-enable .infobox__image-wrapper {
  position: relative;
}
.infobox__pattern-enable .infobox__image-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/wp-content/uploads/2025/09/pattern-overlay.svg") no-repeat;
  background-size: contain;
  background-position: bottom;
}
.infobox__image-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-mid);
  overflow: hidden;
}
.infobox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.infobox--image-left .infobox__content {
  flex-direction: row;
}
@media (max-width: 992px) {
  .infobox--image-left .infobox__content {
    flex-direction: column;
  }
}
.infobox--image-right .infobox__content {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .infobox--image-right .infobox__content {
    flex-direction: column;
  }
}

.Single-left-image .infobox--image-left {
  padding-top: 0;
}
.Single-left-image .infobox--image-left .infobox__text {
  max-width: 675px;
}

/**
 * Supreme Footer Component Styles
 * Based on Figma design specifications
 */
.supreme-footer {
  background-color: var(--Green);
  padding: var(--spacing-xxl) 0;
  width: 100%;
}
.supreme-footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-xxl);
}
@media (max-width: 992px) {
  .supreme-footer__content {
    flex-direction: column;
  }
}
.supreme-footer__left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.supreme-footer__right {
  flex: 1;
  max-width: 819px;
}
@media (max-width: 992px) {
  .supreme-footer__right {
    max-width: 100%;
  }
}
.supreme-footer__sponsor {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xs);
  margin-bottom: var(--spacing-xs);
}
@media (max-width: 767px) {
  .supreme-footer__sponsor {
    margin-bottom: var(--spacing-xxl);
  }
}
.supreme-footer__sponsor-label {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-xs);
  color: var(--White);
}
.supreme-footer__sponsor-name {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: var(--line-height-md);
  color: var(--White);
}
.supreme-footer__contact {
  display: flex;
  align-items: center;
  gap: var(--spacing-3xs);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}
@media (max-width: 767px) {
  .supreme-footer__contact {
    margin-bottom: var(--spacing-xxl);
  }
}
.supreme-footer__contact-label {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxs);
  font-weight: 700;
  line-height: var(--line-height-xxs);
  color: var(--White);
}
.supreme-footer__contact-email {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxs);
  font-weight: 400;
  line-height: var(--line-height-xxs);
  color: var(--White);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.3s ease;
}
.supreme-footer__contact-email:hover {
  opacity: 0.8;
}
.supreme-footer__links {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .supreme-footer__links {
    gap: var(--spacing-md);
  }
}
.supreme-footer__link {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxs);
  font-weight: 600;
  line-height: var(--line-height-xxs);
  color: var(--White);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.5s ease;
}
.supreme-footer__link:hover {
  color: var(--Mint);
  border: 1px solid var(--Mint);
  padding: var(--spacing-xxs) var(--spacing-sm);
}
.supreme-footer__disclaimer {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxs);
}
.supreme-footer__disclaimer-label {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxs);
  font-weight: 700;
  line-height: var(--line-height-xxs);
  color: var(--White);
}
.supreme-footer__disclaimer-text {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxs);
  font-weight: 400;
  line-height: var(--line-height-xxs);
  color: var(--White);
  margin: 0;
}

/**
 * Supreme Header Component Styles
 * Based on Figma design specifications
 */
.supreme-header {
  background-color: var(--Green);
  width: 100%;
  position: relative;
  z-index: 1000;
  padding: var(--spacing-lg) 0;
}
@media (min-width: 993px) {
  .supreme-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media (max-width: 992px) {
  .supreme-header {
    padding: var(--spacing-md) 0;
  }
}
.supreme-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.supreme-header__logo {
  flex-shrink: 0;
}
.supreme-header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.supreme-header__logo-image {
  height: auto;
  width: auto;
  max-width: 299px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1280px) {
  .supreme-header__logo-image {
    max-width: 200px;
  }
}
@media (max-width: 1080px) {
  .supreme-header__logo-image {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .supreme-header__logo-image {
    height: auto;
    max-width: 123px;
  }
}
.supreme-header__logo-text {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: var(--White);
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .supreme-header__logo-text {
    font-size: var(--font-size-lg);
  }
}
.supreme-header__nav {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
}
@media (max-width: 1280px) {
  .supreme-header__nav {
    gap: var(--spacing-sm);
  }
}
.supreme-header__menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1280px) {
  .supreme-header__menu {
    gap: var(--spacing-sm);
  }
}
@media (max-width: 992px) {
  .supreme-header__menu {
    display: none;
  }
}
.supreme-header__menu-item {
  margin: 0;
  padding: 0;
}
.supreme-header__menu-link {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-xs);
  color: var(--White);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.5s ease;
  white-space: nowrap;
}
.supreme-header__menu-link:hover {
  color: var(--Mint);
}
@media (max-width: 1200px) {
  .supreme-header__menu-link {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }
}
.supreme-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  background-color: var(--White);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: var(--line-height-sm);
  color: var(--Green);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.supreme-header__cta:hover {
  background-color: #0D5E5E;
  color: var(--White);
}
@media (max-width: 1200px) {
  .supreme-header__cta {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    padding: var(--spacing-xxs) var(--spacing-xxs);
  }
}
@media (max-width: 767px) {
  .supreme-header__cta {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xxs);
    padding: var(--spacing-xxs) var(--spacing-sm);
  }
}

/**
 * Supreme What to Expect Component Styles
 * Desktop: 5 cards arranged around a central circular image
 * Mobile: Accordion-style vertical list
 */
.supreme-what-to-expect {
  --circle-ring-size: 666px;
  --circle-image-size: 370px;
  --number-width: 112px;
  --card-max-width: 35%;
  --card-scale: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: var(--spacing-6xl) var(--spacing-5xl) 204px;
}
@media (max-width: 1399px) {
  .supreme-what-to-expect {
    padding: var(--spacing-6xl) var(--spacing-md);
  }
}
@media (max-width: 992px) {
  .supreme-what-to-expect {
    padding: var(--spacing-6xl) var(--spacing-md);
  }
}
.supreme-what-to-expect__desktop-layout {
  display: block;
}
@media (max-width: 1399px) {
  .supreme-what-to-expect__desktop-layout {
    display: none;
  }
}
.supreme-what-to-expect__header {
  text-align: center;
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxxl);
  font-weight: 500;
  line-height: var(--line-height-xxxl);
  color: var(--heading-color-1);
  margin: 0 0 var(--spacing-3xl) 0;
}
.supreme-what-to-expect__circle-layout {
  position: relative;
  width: 100%;
  height: 709px;
}
.supreme-what-to-expect__circle-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--circle-ring-size);
  height: var(--circle-ring-size);
  display: flex;
  align-items: center;
  justify-content: center;
}
.supreme-what-to-expect__circle-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 6px dashed var(--Sci-Grey);
}
.supreme-what-to-expect__circle-image {
  width: var(--circle-image-size);
  height: var(--circle-image-size);
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.supreme-what-to-expect__circle-placeholder {
  width: var(--circle-image-size);
  height: var(--circle-image-size);
  border-radius: 50%;
  background-color: var(--Sci-Grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Grey);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  position: relative;
  z-index: 1;
}
.supreme-what-to-expect__card {
  position: absolute;
  display: grid;
  gap: 0;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + var(--left)), calc(-50% + var(--top)));
}
.supreme-what-to-expect__card--right {
  grid-template-columns: auto 1fr;
  max-width: var(--card-max-width);
  gap: var(--spacing-md);
}
.supreme-what-to-expect__card--right .supreme-what-to-expect__card-text {
  align-items: flex-start;
}
.supreme-what-to-expect__card--right#supreme-card-3 {
  max-width: 46%;
}
.supreme-what-to-expect__card--left {
  grid-template-columns: 1fr auto;
  text-align: right;
  max-width: var(--card-max-width);
  gap: var(--spacing-md);
}
.supreme-what-to-expect__card--left .supreme-what-to-expect__card-number {
  order: 1;
}
.supreme-what-to-expect__card--left .supreme-what-to-expect__card-text {
  align-items: flex-end;
}
.supreme-what-to-expect__card-number {
  display: grid;
  place-content: center;
  width: var(--number-width);
  height: 115px;
  background-color: var(--Sci-Grey);
  color: var(--heading-color-1);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxxl);
  font-weight: 500;
  line-height: var(--line-height-xxxl);
}
.supreme-what-to-expect__card-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}
.supreme-what-to-expect__card-heading {
  color: var(--heading-color-1);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: var(--line-height-xl);
  margin: 0;
}
.supreme-what-to-expect__card-content {
  color: var(--paragraph-text);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xs);
  font-weight: 400;
  line-height: var(--line-height-xs);
  margin: 0;
}
.supreme-what-to-expect__mobile-layout {
  display: none;
}
@media (max-width: 1399px) {
  .supreme-what-to-expect__mobile-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.supreme-what-to-expect__mobile-image-container {
  position: relative;
  width: 193px;
  height: 193px;
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1399px) {
  .supreme-what-to-expect__mobile-image-container {
    margin-bottom: var(--spacing-xxl);
  }
}
.supreme-what-to-expect__mobile-image {
  width: 193px;
  height: 193px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.supreme-what-to-expect__mobile-placeholder {
  width: 193px;
  height: 193px;
  border-radius: 50%;
  background-color: var(--Sci-Grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Grey);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  border: 4px solid #e8e8e8;
  box-shadow: 0 0 0 4px #f5f5f5;
  position: relative;
  z-index: 1;
}
.supreme-what-to-expect__mobile-title {
  text-align: center;
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxxl);
  font-weight: 500;
  line-height: var(--line-height-xxxl);
  color: var(--heading-color-1);
  margin: 0 0 var(--spacing-xl) 0;
}
.supreme-what-to-expect__accordion {
  width: 100%;
  position: relative;
}
.supreme-what-to-expect__accordion-item {
  position: relative;
}
.supreme-what-to-expect__accordion-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 14px;
  top: calc(var(--spacing-md) + 5px);
  bottom: -30px;
  width: 2px;
  border-left: 2px dashed var(--Sci-Grey);
  z-index: 0;
}
.supreme-what-to-expect__accordion-separator {
  height: 1px;
  background-color: #e8e8e8;
  margin-left: calc(29px + var(--spacing-md));
  margin-right: 0;
}
.supreme-what-to-expect__accordion-header {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  width: 100%;
  padding: 19px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.supreme-what-to-expect__accordion-number {
  display: grid;
  place-content: center;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  background-color: var(--Sci-Grey);
  color: var(--heading-color-1);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: var(--line-height-md);
  position: relative;
  z-index: 1;
}
.supreme-what-to-expect__accordion-title {
  flex: 1;
  color: var(--heading-color-1);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: var(--line-height-md);
}
.supreme-what-to-expect__accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--heading-color-1);
}
.supreme-what-to-expect__chevron-down {
  display: block;
  transition: transform 0.3s ease;
}
.is-active .supreme-what-to-expect__chevron-down {
  display: none;
}
.supreme-what-to-expect__chevron-up {
  display: none;
  transition: transform 0.3s ease;
}
.is-active .supreme-what-to-expect__chevron-up {
  display: block;
}
.supreme-what-to-expect__accordion-content {
  padding: 0 0 20px calc(29px + var(--spacing-md));
  display: none;
  margin-top: -10px;
}
.is-active .supreme-what-to-expect__accordion-content {
  display: block;
}
.supreme-what-to-expect__accordion-description {
  color: var(--paragraph-text);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-md);
  margin: 0;
}

/**
 * Supreme Hero Section Styles
 * Full-width hero with video/image background
 */
.supreme-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--spacing-5xl) var(--spacing-md) var(--spacing-5xl);
}
@media (max-width: 992px) {
  .supreme-hero {
    padding: 250px var(--spacing-md) var(--spacing-4xl);
    min-height: auto;
    align-items: flex-start;
  }
}
.supreme-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.supreme-hero__video {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .supreme-hero__video {
    width: 100%;
    height: auto;
    min-height: 30%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.supreme-hero__bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
@media (max-width: 992px) {
  .supreme-hero__bg-image {
    width: 100%;
    height: auto;
    min-height: 100%;
    -o-object-position: center top;
       object-position: center top;
  }
}
.supreme-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(89deg, #F0F1EE 50.12%, rgba(240, 241, 238, 0.63) 61.95%, rgba(240, 241, 238, 0) 85.78%);
}
@media (max-width: 992px) {
  .supreme-hero__overlay {
    background: linear-gradient(180deg, rgba(240, 241, 238, 0) 0%, rgba(240, 241, 238, 0.3) 15%, rgba(240, 241, 238, 0.8) 25%, rgb(240, 241, 238) 30%, rgb(240, 241, 238) 100%);
  }
}
.supreme-hero__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.supreme-hero__content {
  max-width: 716px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
}
@media (max-width: 992px) {
  .supreme-hero__content {
    max-width: 100%;
    gap: var(--spacing-md);
  }
}
.supreme-hero__headlines {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.supreme-hero__headline-primary {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-5xl);
  font-weight: 600;
  line-height: var(--line-height-5xl);
  color: var(--heading-color-1);
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .supreme-hero__headline-primary {
    font-size: var(--font-size-6xl);
    line-height: var(--line-height-6xl);
  }
}
.supreme-hero__headline-secondary {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-5xl);
  font-weight: 600;
  line-height: var(--line-height-5xl);
  color: var(--heading-color-1);
  margin: 0;
}
.supreme-hero__description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 634px;
}
.supreme-hero__description p {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-md);
  color: var(--paragraph-text);
  margin: 0;
}
.supreme-hero__cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
@media (max-width: 992px) {
  .supreme-hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }
}
.supreme-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-lg);
  background-color: var(--Green);
  color: var(--White);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: var(--line-height-md);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.5s ease;
}
.supreme-hero__button:hover {
  background-color: #0D5E5E;
}
.supreme-hero__enrollment {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxs);
  font-weight: 400;
  line-height: var(--line-height-xxs);
  color: var(--paragraph-text);
  margin: 0;
  max-width: 228px;
}

/**
 * Supreme Where to Join Section Styles
 * Locations listing with map display
 * Desktop: Side-by-side layout (locations + single map)
 * Mobile: Accordion layout (map shows inline below selected location)
 */
.supreme-where-to-join {
  background-color: var(--Light-Grey);
  padding: 0 var(--spacing-md) var(--spacing-6xl);
  width: 100%;
}
@media (max-width: 992px) {
  .supreme-where-to-join {
    padding: 0 var(--spacing-md) var(--spacing-6xl);
  }
}
.supreme-where-to-join__container {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: var(--spacing-6xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-3xl);
}
@media (max-width: 992px) {
  .supreme-where-to-join__container {
    padding-top: var(--spacing-6xl);
    gap: 40px;
  }
}
.supreme-where-to-join__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
}
.supreme-where-to-join__title {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxxl);
  font-weight: 500;
  line-height: var(--line-height-xxxl);
  color: var(--Green);
  margin: 0;
}
.supreme-where-to-join__subtitle {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: var(--line-height-xl);
  color: var(--heading-color-1);
  margin: 0;
}
.supreme-where-to-join__content {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 0;
}
@media (max-width: 992px) {
  .supreme-where-to-join__content {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
}
.supreme-where-to-join__locations {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  width: 478px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .supreme-where-to-join__locations {
    width: 100%;
  }
}
.supreme-where-to-join__country {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxl);
  font-weight: 500;
  line-height: var(--line-height-xxl);
  color: var(--heading-color-1);
  margin: 0;
}
.supreme-where-to-join__locations-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.supreme-where-to-join__accordion-item {
  display: flex;
  flex-direction: column;
}
.supreme-where-to-join__location {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg) var(--spacing-sm);
  background-color: var(--White);
  width: 429px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
@media (max-width: 992px) {
  .supreme-where-to-join__location {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-sm);
  }
}
.supreme-where-to-join__location--selected {
  background-color: var(--Green);
}
.supreme-where-to-join__location--selected .supreme-where-to-join__location-city,
.supreme-where-to-join__location--selected .supreme-where-to-join__location-name {
  color: var(--White);
}
.supreme-where-to-join__location--selected .supreme-where-to-join__chevron {
  color: var(--White);
  transform: rotate(180deg);
}
.supreme-where-to-join__location-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.supreme-where-to-join__location-city {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: var(--line-height-xl);
  color: var(--heading-color-1);
  margin: 0;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  .supreme-where-to-join__location-city {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xl);
  }
}
.supreme-where-to-join__location-name {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-md);
  color: var(--heading-color-1);
  margin: 0;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  .supreme-where-to-join__location-name {
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
  }
}
.supreme-where-to-join__chevron {
  display: none;
  width: 24px;
  height: 24px;
  color: var(--heading-color-1);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .supreme-where-to-join__chevron {
    display: block;
  }
}
.supreme-where-to-join__accordion-map {
  display: none;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
@media (max-width: 992px) {
  .supreme-where-to-join__accordion-map {
    display: block;
    height: 0;
  }
  .supreme-where-to-join__accordion-item--open .supreme-where-to-join__accordion-map {
    height: 500px;
  }
}
.supreme-where-to-join__accordion-map-iframe {
  width: 100%;
  height: 500px;
  border: 0;
}
.supreme-where-to-join__accordion-map-placeholder {
  width: 100%;
  height: 500px;
  background-color: var(--Sci-Grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  color: var(--paragraph-text);
  text-align: center;
  padding: var(--spacing-md);
}
.supreme-where-to-join__accordion-map-placeholder p {
  margin: 0;
}
.supreme-where-to-join__map {
  flex: 1;
  min-height: 610px;
  position: relative;
}
@media (max-width: 992px) {
  .supreme-where-to-join__map {
    display: none;
  }
}
.supreme-where-to-join__map-iframe {
  width: 100%;
  height: 100%;
  min-height: 610px;
  border: 0;
}
@media (max-width: 992px) {
  .supreme-where-to-join__map-iframe {
    min-height: 300px;
  }
}
.supreme-where-to-join__map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 610px;
  background-color: var(--Sci-Grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--spacing-sm);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  color: var(--paragraph-text);
  text-align: center;
  padding: var(--spacing-md);
}
@media (max-width: 992px) {
  .supreme-where-to-join__map-placeholder {
    min-height: 300px;
  }
}
.supreme-where-to-join__map-placeholder p {
  margin: 0;
}
.supreme-where-to-join__bottom-text {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-md);
  color: var(--paragraph-text);
  margin: 0;
  text-align: center;
}
.supreme-where-to-join__bottom-text strong {
  font-weight: 600;
}
.supreme-where-to-join__bottom-text a {
  color: var(--paragraph-text);
}

/**
 * Supreme FAQ Section Styles
 * Accordion-style FAQ with title and CTA on left, questions on right
 * Desktop: Two-column layout
 * Mobile: Stacked layout
 */
.supreme-faq {
  background-color: var(--White);
  padding: var(--spacing-6xl) var(--spacing-md) var(--spacing-6xl);
  width: 100%;
}
.supreme-faq__container {
  max-width: 1070px;
  margin: 0 auto;
  display: flex;
  gap: var(--spacing-4xl);
  align-items: flex-start;
}
@media (max-width: 992px) {
  .supreme-faq__container {
    flex-direction: column;
    gap: var(--spacing-xxl);
  }
}
.supreme-faq__left {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .supreme-faq__left {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.supreme-faq__title {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxxl);
  font-weight: 500;
  line-height: var(--line-height-xxxl);
  color: var(--heading-color-1);
  margin: 0;
}
.supreme-faq__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-lg);
  background-color: var(--Green);
  color: var(--White);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 600;
  line-height: var(--line-height-md);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
.supreme-faq__button:hover {
  background-color: #0D5E5E;
}
.supreme-faq__right {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.supreme-faq__accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 992px) {
  .supreme-faq__accordion {
    gap: var(--spacing-xl);
  }
}
.supreme-faq__item {
  border-top: 1px solid var(--Border);
  border-bottom: 1px solid var(--Border);
  margin-top: -1px;
  cursor: pointer;
  padding: var(--spacing-xl) var(--spacing-md);
  transition: all 0.5s ease;
}
.supreme-faq__item:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .supreme-faq__item {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}
.supreme-faq__item--open {
  padding: var(--spacing-xxl) var(--spacing-md);
}
.supreme-faq__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  width: 100%;
}
@media (max-width: 992px) {
  .supreme-faq__header {
    gap: var(--spacing-sm);
  }
}
.supreme-faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--Green);
  position: relative;
}
.supreme-faq__icon-plus, .supreme-faq__icon-minus {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.25s ease;
}
.supreme-faq__icon-plus {
  opacity: 1;
}
.supreme-faq__item--open .supreme-faq__icon-plus {
  opacity: 0;
}
.supreme-faq__icon-minus {
  opacity: 0;
}
.supreme-faq__item--open .supreme-faq__icon-minus {
  opacity: 1;
}
.supreme-faq__question {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: var(--line-height-lg);
  color: var(--heading-color-1);
  flex: 1;
  text-align: left;
}
.supreme-faq__answer {
  display: none;
  margin-top: var(--spacing-xs);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-md);
  color: var(--paragraph-text);
}

/**
 * Supreme Why Participate Section Styles
 * FAQ Accordion style cards with side media
 * Desktop: Two-column layout with content left, media right
 * Mobile: Stacked layout
 */
.supreme-why-participate {
  background-color: var(--White);
  padding: 0 var(--spacing-md) var(--spacing-6xl);
  width: 100%;
}
@media (max-width: 992px) {
  .supreme-why-participate {
    padding: var(--spacing-6xl) var(--spacing-md);
  }
}
.supreme-why-participate__container {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  gap: var(--spacing-xs);
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .supreme-why-participate__container {
    flex-direction: column;
    gap: var(--spacing-xl);
  }
}
.supreme-why-participate__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xxl);
  padding-bottom: var(--spacing-4xl);
  max-width: 54.2%;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .supreme-why-participate__content {
    max-width: 100%;
    padding-bottom: 0;
    gap: var(--spacing-md);
  }
}
.supreme-why-participate__header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.supreme-why-participate__title {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-xxxl);
  font-weight: 500;
  line-height: var(--line-height-xxxl);
  color: var(--heading-color-1);
  margin: 0;
  max-width: 652px;
}
@media (max-width: 992px) {
  .supreme-why-participate__title {
    max-width: 100%;
  }
}
.supreme-why-participate__description {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-md);
  color: var(--paragraph-text);
  margin: 0;
}
@media (max-width: 767px) {
  .supreme-why-participate__description {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
  }
}
.supreme-why-participate__accordion {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
@media (max-width: 767px) {
  .supreme-why-participate__accordion {
    gap: var(--spacing-md);
  }
}
.supreme-why-participate__item {
  background-color: var(--Light-Grey);
  overflow: hidden;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.supreme-why-participate__item.is-active {
  background-color: var(--Green, #0f2e30);
}
.supreme-why-participate__item.is-active .supreme-why-participate__icon-plus {
  display: none;
}
.supreme-why-participate__item.is-active .supreme-why-participate__icon-minus {
  display: block;
}
.supreme-why-participate__item.is-active .supreme-why-participate__icon-minus svg rect:first-child,
.supreme-why-participate__item.is-active .supreme-why-participate__icon-minus svg > rect {
  fill: var(--Mint, #9bc7b6);
}
.supreme-why-participate__item.is-active .supreme-why-participate__item-icon svg rect:first-child {
  fill: var(--Mint, #9bc7b6);
}
.supreme-why-participate__item.is-active .supreme-why-participate__item-title {
  color: var(--White, #ffffff);
}
.supreme-why-participate__item.is-active .supreme-why-participate__item-answer p {
  color: var(--White, #ffffff);
}
.supreme-why-participate__item.is-active .supreme-why-participate__item-header:hover {
  background-color: transparent;
}
.supreme-why-participate__item-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg) var(--spacing-md);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.3s ease;
}
@media (max-width: 992px) {
  .supreme-why-participate__item-header {
    padding: var(--spacing-md) var(--spacing-sm);
    gap: var(--spacing-sm);
  }
}
.supreme-why-participate__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.supreme-why-participate__item-icon img,
.supreme-why-participate__item-icon svg {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .supreme-why-participate__item-icon {
    width: 24px;
    height: 24px;
  }
  .supreme-why-participate__item-icon img,
  .supreme-why-participate__item-icon svg {
    width: 24px;
    height: 24px;
  }
}
.supreme-why-participate__icon-plus {
  display: block;
}
.supreme-why-participate__icon-minus {
  display: none;
}
.supreme-why-participate__item-title {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
  line-height: var(--line-height-lg);
  color: var(--heading-color-1);
}
.supreme-why-participate__item-answer {
  display: none;
  padding: 0 var(--spacing-md) var(--spacing-lg) 68px;
}
@media (max-width: 992px) {
  .supreme-why-participate__item-answer {
    padding: 0 var(--spacing-sm) var(--spacing-md) 54px;
  }
}
.supreme-why-participate__item-answer p {
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: var(--line-height-md);
  color: var(--paragraph-text);
  margin: 0;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  .supreme-why-participate__item-answer p {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-sm);
  }
}
.supreme-why-participate__media {
  flex-shrink: 0;
  width: 42.1%;
  height: 547px;
}
@media (max-width: 1080px) {
  .supreme-why-participate__media {
    height: auto;
  }
}
@media (max-width: 992px) {
  .supreme-why-participate__media {
    width: 100%;
    height: auto;
    aspect-ratio: 623/547;
  }
}
.supreme-why-participate__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.supreme-why-participate__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.supreme-why-participate__placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--Sci-Grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Grey);
  font-family: var(--Font-Family-Primary);
  font-size: var(--font-size-md);
}

.about_us_wrapper h2 {
  margin-bottom: 20px;
}
.about_us_wrapper .oxy-rich-text {
  margin-bottom: 20px;
}
.about_us_wrapper .headline_logo_wrapper {
  margin-bottom: 20px;
}

.see-if-you-sec {
  background-color: var(--Green);
  padding: var(--spacing-6xl) 0;
  position: relative;
}
.see-if-you-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/12/new-bg-corner-img.svg");
  background-size: auto;
  background-position: top right;
  z-index: 0;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .see-if-you-sec::before {
    content: unset;
  }
}
.see-if-you-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2025/11/see-if-you-bottom-corner-img.svg");
  background-size: auto;
  background-position: left bottom;
  z-index: 0;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .see-if-you-sec::after {
    content: unset;
  }
}
.see-if-you-sec_wrapper {
  width: 100%;
}
.see-if-you-sec .form-wrapper {
  padding: var(--spacing-3xl) var(--spacing-lg);
  width: 666px;
}

.tab-div .oxy-tabs .tabs-1719-tab-active .tab-inner-div {
  box-shadow: -10px 0 2px 0 rgba(0, 0, 0, 0.05) inset;
}
.tab-div .oxy-tabs .tabs-1719-tab-active.tab-active .tab-inner-div {
  box-shadow: none;
  background-color: var(--Mint);
}

.mobile-accordion {
  display: none;
  width: 100%;
}
.mobile-accordion .accordion-item {
  width: 100%;
  margin-bottom: 2px;
}
.mobile-accordion .accordion-item .accordion-header {
  cursor: pointer;
}
.mobile-accordion .accordion-item .accordion-header .tab-inner-div {
  width: 100%;
}
.mobile-accordion .accordion-item .accordion-header.active .tab-inner-div {
  background-color: var(--Mint);
}

.supreme-hair-loss-form-wrapper .wFormContainer .wFormHeader {
  margin: 0;
  height: 0;
}
.supreme-hair-loss-form-wrapper .wFormContainer .wForm form {
  padding: 0;
}
.supreme-hair-loss-form-wrapper .wFormContainer .wFormFooter, .supreme-hair-loss-form-wrapper .wFormContainer .supportInfo {
  display: none;
}

.popup-close-icon {
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */