@charset "UTF-8";
@import url("../fonts/TuskerGrotesk/stylesheet.css");
@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link.screen-reader-text:focus, .skip-link.screen-reader-text:focus-visible {
  position: fixed;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 100000;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--primary-color, #0066cc);
  color: #fff;
  text-decoration: none;
  border-radius: 0.25rem;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.9);
}

:where(a, button, input, select, textarea, summary, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 2px solid var(--primary-color, #0066cc);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-global-loader] {
    display: none !important;
  }
}
body:not(.sfa-show-wpml-dev-banner) .otgs-development-site-front-end {
  display: none !important;
}

#main-content:focus,
#content:focus {
  outline: none;
}

.ds-container {
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
  padding-inline: clamp(24px, (100vw - 1336px) / 2, 196px);
}
@media (min-width: 1440px) {
  .ds-container {
    padding-inline: 0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes spin-smooth {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes glow-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 60px rgba(255, 255, 255, 0.5));
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes clipReveal {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
/* ============ NO SCROLLBAR UTILITY ============ */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  /* Firefox - hide scrollbar */
  scrollbar-width: none;
  /* IE and Edge - hide scrollbar */
  -ms-overflow-style: none;
}

/* ============ BODY OVERFLOW HIDDEN DURING LOADING ============ */
body {
  overflow: hidden !important;
}

body.loading-complete {
  overflow: auto !important;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-135deg, #ff5a19 0%, #ff7a3d 25%, #ff8c42 50%, #ff6b1a 75%, #e84c0f 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  z-index: 99999;
  overflow: hidden;
}

.loader .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: float 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .loader .content {
    gap: 3rem;
  }
}
/* ============ SPINNER ============ */
.spinner-container {
  position: relative;
  width: 150px;
  height: 150px;
}

.spinner-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
  filter: blur(10px);
}

.spinner-inner {
  animation: spin-smooth 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-ring {
  position: absolute;
  inset: -40px;
  border: 2px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.6);
  border-left-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: spin-smooth 4s linear infinite reverse;
}

.middle-ring {
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: spin-smooth 5s linear infinite;
}

/* ============ SVG LOGO ============ */
.spinner-inner img,
.spinner-inner svg {
  width: 800px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
  animation: clipReveal 1.5s ease-out 0.5s forwards;
  clip-path: inset(0 100% 0 0);
  opacity: 1;
}

@media (min-width: 768px) {
  .spinner-inner img,
  .spinner-inner svg {
    width: 550px;
  }
}
/* ============ CUSTOM CURSOR ============ */
.glow-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  display: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.2);
  z-index: 9999;
}

.glow-cursor.active {
  display: block;
}

:root {
  --sfa-desktop-font-scale: 1;
  --tusker-7600-font-family:
    "TuskerGrotesk7600", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-6700-font-family:
    "TuskerGrotesk6700", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-6600-font-family:
    "TuskerGrotesk6600", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-6500-font-family:
    "TuskerGrotesk6500", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-5700-font-family:
    "TuskerGrotesk5700", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-5600-font-family:
    "TuskerGrotesk5600", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-5500-font-family:
    "TuskerGrotesk5500", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --changa-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --montserrat-font-family:
    "Montserrat", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --inter-font-family:
    "Inter", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --primary-color: #ff5a19;
  --secondary-color: #e6e5dc;
  --content-primary-color: #e4e4e7;
  --background-secondary-color: #09090b;
  --black-color: #000;
  --white-color: #fff;
}

html[dir=rtl] {
  --tusker-7600-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-6700-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-6600-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-6500-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-5700-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-5500-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-5600-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
  --tusker-5500-font-family:
    "Changa", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif;
}

@media (min-width: 981px) {
  :root {
    --sfa-desktop-font-scale: 0.8;
  }
}
.footer_section {
  background-color: var(--background-secondary-color);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.footer_section p, .footer_section a {
  margin: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .footer_section {
    padding: 0 0;
  }
}
.footer_section .footer_links_container {
  width: 100%;
  max-width: 1364px;
  margin: 0 auto;
  padding: 48px 0 0 0;
}
@media (max-width: 1399px) {
  .footer_section .footer_links_container {
    padding: 24px 24px 0 24px;
  }
}
.footer_section .footer_links {
  padding: 15px 0 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 31px 61px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_section .footer_links a {
  font-family: var(--tusker-6700-font-family);
  font-weight: 800;
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 1399px) {
  .footer_section .footer_links {
    padding: 0 0 39px;
    gap: 45px;
  }
}
@media (max-width: 768px) {
  .footer_section .footer_links {
    padding: 0 0 24px;
    gap: 31px 39px;
  }
  .footer_section .footer_links a {
    font-size: 16px;
  }
}
.footer_section .footer_copyright_container {
  width: 100%;
  max-width: 1336px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .footer_section .footer_copyright_container {
    padding: 0 24px;
  }
}
.footer_section .footer_copyright {
  padding: 35.5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer_section .footer_copyright .footer_copyright_text {
  color: #a1a1aa;
  font-family: var(--inter-font-family);
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  line-height: 24px;
}
.footer_section .footer_copyright .footer_stores_links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer_section .footer_copyright .footer_stores_links img {
  object-fit: contain;
}
@media (max-width: 1399px) {
  .footer_section .footer_copyright {
    padding: 24px 2px;
  }
}
@media (max-width: 1200px) {
  .footer_section .footer_copyright {
    flex-direction: column;
    gap: 24px;
  }
  .footer_section .footer_copyright .footer_copyright_text {
    order: 3;
    text-align: center;
  }
}
.footer_section .footer_social_icons_container {
  max-width: 1364px;
  height: 484px;
  margin: 0 auto;
  padding: 64px 152px;
  margin-bottom: 24px;
}
@media (max-width: 1120px) {
  .footer_section .footer_social_icons_container {
    padding: 64px 0;
  }
}
@media (max-width: 890px) {
  .footer_section .footer_social_icons_container {
    height: 358px;
    margin-top: 24px;
    padding: 44px 0;
  }
}
.footer_section .footer_social_icons {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.footer_section .footer_social_icons .social_icon_item {
  width: 171px;
  height: 171px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3a3a3c;
  border-radius: 50%;
  position: absolute;
}
.footer_section .footer_social_icons .social_icon_item.instagram_icon {
  left: 3.3%;
  bottom: 4.02%;
}
.footer_section .footer_social_icons .social_icon_item.facebook_icon {
  left: 21.6%;
  bottom: 7.09%;
}
.footer_section .footer_social_icons .social_icon_item.linkedin_icon {
  right: 35.36%;
  top: 6%;
}
.footer_section .footer_social_icons .social_icon_item.youtube_icon {
  right: 17.98%;
  bottom: -14.61%;
}
.footer_section .footer_social_icons .social_icon_item.X_icon {
  right: 0;
  bottom: -10.68%;
}
.footer_section .footer_social_icons .social_icon_item img {
  object-fit: contain;
}
@media (max-width: 1399px) {
  .footer_section .footer_social_icons .social_icon_item {
    width: 153px;
    height: 153px;
  }
  .footer_section .footer_social_icons .social_icon_item.linkedin_icon {
    right: 32.36%;
    top: 13%;
  }
}
@media (max-width: 1200px) {
  .footer_section .footer_social_icons .social_icon_item {
    width: 90px;
    height: 90px;
  }
  .footer_section .footer_social_icons .social_icon_item.X_icon {
    right: 5%;
    bottom: 17%;
  }
  .footer_section .footer_social_icons .social_icon_item.facebook_icon {
    left: 31.6%;
    bottom: 28.09%;
  }
  .footer_section .footer_social_icons .social_icon_item.instagram_icon {
    left: 17.3%;
    bottom: 21.3%;
  }
  .footer_section .footer_social_icons .social_icon_item.youtube_icon {
    right: 20.98%;
    bottom: 22.39%;
  }
}
@media (max-width: 1120px) {
  .footer_section .footer_social_icons .social_icon_item.linkedin_icon {
    right: 39.36%;
    top: 13%;
  }
  .footer_section .footer_social_icons .social_icon_item.facebook_icon {
    left: 35.6%;
    bottom: 39.09%;
  }
  .footer_section .footer_social_icons .social_icon_item.instagram_icon {
    left: 26.3%;
    bottom: 31.3%;
  }
  .footer_section .footer_social_icons .social_icon_item.youtube_icon {
    right: 27.98%;
    bottom: 28.39%;
  }
  .footer_section .footer_social_icons .social_icon_item.X_icon {
    right: 18.5%;
    bottom: 27%;
  }
}
@media (max-width: 890px) {
  .footer_section .footer_social_icons .social_icon_item.linkedin_icon {
    right: 32.36%;
    top: -3%;
  }
  .footer_section .footer_social_icons .social_icon_item.facebook_icon {
    left: 34.6%;
    bottom: 40.09%;
  }
  .footer_section .footer_social_icons .social_icon_item.instagram_icon {
    left: 22.3%;
    bottom: 31.3%;
  }
  .footer_section .footer_social_icons .social_icon_item.youtube_icon {
    right: 23.98%;
    bottom: -6.61%;
  }
  .footer_section .footer_social_icons .social_icon_item.X_icon {
    right: 14.5%;
    bottom: 18%;
  }
}
@media (max-width: 700px) {
  .footer_section .footer_social_icons .social_icon_item.linkedin_icon {
    right: 10.36%;
    top: -4%;
  }
  .footer_section .footer_social_icons .social_icon_item.facebook_icon {
    left: 35.6%;
    bottom: 37.09%;
  }
  .footer_section .footer_social_icons .social_icon_item.instagram_icon {
    left: 15.3%;
    bottom: 16.3%;
  }
  .footer_section .footer_social_icons .social_icon_item.youtube_icon {
    right: 24.98%;
    bottom: -6.61%;
  }
  .footer_section .footer_social_icons .social_icon_item.X_icon {
    right: 11.5%;
    bottom: 16%;
  }
}
@media (max-width: 500px) {
  .footer_section .footer_social_icons .social_icon_item.linkedin_icon {
    right: 3%;
    top: 5%;
  }
  .footer_section .footer_social_icons .social_icon_item.facebook_icon {
    left: 28.6%;
    bottom: 43.09%;
  }
  .footer_section .footer_social_icons .social_icon_item.instagram_icon {
    left: 4%;
    bottom: 34.3%;
  }
  .footer_section .footer_social_icons .social_icon_item.youtube_icon {
    right: 27.98%;
    bottom: -14.61%;
  }
  .footer_section .footer_social_icons .social_icon_item.X_icon {
    right: 7.5%;
    bottom: 8%;
  }
}
.footer_section .footer_social_icons .star_icon_1 {
  position: absolute;
  right: -12.26%;
  bottom: -17.1%;
  width: 142.2px;
  height: 142.2px;
}
.footer_section .footer_social_icons .star_icon_2 {
  position: absolute;
  left: 37.17%;
  bottom: 15.29%;
  width: 137.7px;
  height: 137.7px;
}
@media (max-width: 1399px) {
  .footer_section .footer_social_icons .star_icon_1 {
    width: 117px;
    height: 117px;
  }
  .footer_section .footer_social_icons .star_icon_2 {
    width: 108px;
    height: 108px;
    left: 40.17%;
    bottom: 22.29%;
  }
}
@media (max-width: 1200px) {
  .footer_section .footer_social_icons .star_icon_1 {
    width: 99px;
    height: 99px;
    right: 12.74%;
    bottom: 4.74%;
  }
  .footer_section .footer_social_icons .star_icon_2 {
    width: 90px;
    height: 90px;
    bottom: 43.29%;
    left: 44.17%;
  }
}
@media (max-width: 1120px) {
  .footer_section .footer_social_icons .star_icon_1 {
    right: 9.74%;
    bottom: 13.9%;
  }
}
@media (max-width: 890px) {
  .footer_section .footer_social_icons .star_icon_1 {
    right: 13.74%;
    bottom: -20.1%;
  }
  .footer_section .footer_social_icons .star_icon_2 {
    bottom: 50.29%;
    left: 45.17%;
  }
}
@media (max-width: 700px) {
  .footer_section .footer_social_icons .star_icon_1 {
    right: 12.74%;
    bottom: -19.1%;
  }
  .footer_section .footer_social_icons .star_icon_2 {
    bottom: 50.29%;
    left: 52.17%;
  }
}
@media (max-width: 500px) {
  .footer_section .footer_social_icons .star_icon_1 {
    right: 4.74%;
    bottom: -27.1%;
  }
  .footer_section .footer_social_icons .star_icon_2 {
    bottom: 52.29%;
    left: 50.17%;
  }
}
.footer_section .pattern_image,
.footer_section .pattern_image_mobile {
  position: absolute;
  bottom: 52.4px;
  left: 0;
  width: 100%;
  min-height: 567px;
  z-index: -1;
  object-fit: cover;
}
.footer_section .pattern_image_mobile {
  display: none;
}
@media (max-width: 1200px) {
  .footer_section .pattern_image {
    min-height: auto;
    bottom: clamp(52.4px, 168.4px + 407.6px * (1728px - 100vw) / 1128px, 460px);
  }
}
@media (max-width: 890px) {
  .footer_section .pattern_image_mobile {
    display: block;
    bottom: 307px;
    min-height: 181px;
    height: 425px;
    object-fit: fill;
  }
  .footer_section .pattern_image {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer_section .pattern_image_mobile {
    bottom: 178px;
  }
}

.page-template-page-home .site-footer,
.page-template-page-home .otgs-development-site-front-end,
.page-template-page-home .wpml-ls-statics-footer {
  display: none !important;
}
.ds-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 999;
  background: #e6e5dc;
}
body.admin-bar .ds-header {
  top: 32px;
}
@media (max-width: 1660px) {
  .ds-header {
    padding: 14px 0;
  }
}
.ds-header .ds-header__container {
  padding: 0 48px;
}
@media (max-width: 768px) {
  .ds-header .ds-header__container {
    padding: 0 24px;
  }
}
.ds-header .ds-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.ds-header .ds-header__inner-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ds-header__nav {
  display: flex;
  align-items: center;
}
.ds-header .ds-header__inner-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .ds-header .ds-header__inner-right {
    gap: 8px;
  }
}
.ds-header__logo {
  width: 120px;
  height: 64.31px;
  cursor: pointer;
}
.ds-header__logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ds-header__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
}
@media (max-width: 1660px) {
  .ds-header__links {
    display: none;
  }
}
.ds-header__link {
  position: relative;
}
.ds-header__link--has-children:hover > .ds-header__dropdown, .ds-header__link--has-children:focus-within > .ds-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ds-header__link--has-children:hover .ds-header__link-icon, .ds-header__link--has-children:focus-within .ds-header__link-icon {
  transform: rotate(-180deg) translateY(-3px);
}
[dir=rtl] .ds-header__link--has-children:hover .ds-header__link-icon, [dir=rtl] .ds-header__link--has-children:focus-within .ds-header__link-icon {
  transform: rotate(-180deg) translateY(3px);
}
.ds-header__link-text {
  font-weight: 400;
  font-family: var(--tusker-6700-font-family);
  font-size: calc(19px * var(--sfa-desktop-font-scale));
  line-height: 20px;
  color: var(--black-color);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 47.5px 0 44.5px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  transform-origin: bottom center;
}
[dir=rtl] .ds-header__link-text {
  font-weight: 800;
}
.ds-header__link-text:hover, .ds-header__link-text.active {
  border-color: var(--primary-color);
  color: var(--black-color);
}
.ds-header__link-icon {
  transition: transform 0.3s ease;
}
.ds-header__dropdown {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  z-index: 10;
  min-width: 154px;
  width: max-content;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background-color: var(--secondary-color);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.ds-header__dropdown-item {
  margin: 0;
  position: relative;
}
.ds-header__dropdown-item--has-children:hover > .ds-header__dropdown-link, .ds-header__dropdown-item--has-children:focus-within > .ds-header__dropdown-link {
  background-color: var(--black-color);
  color: var(--secondary-color);
}
.ds-header__dropdown-item--has-children:hover > .ds-header__dropdown--nested, .ds-header__dropdown-item--has-children:focus-within > .ds-header__dropdown--nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.ds-header__dropdown--nested {
  top: 0;
  inset-inline-start: 100%;
  transform: translateX(8px);
}
[dir=rtl] .ds-header__dropdown--nested {
  transform: translateX(-8px);
}
.ds-header__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  font-family: var(--tusker-5500-font-family);
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  color: var(--black-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
[dir=rtl] .ds-header__dropdown-link {
  font-weight: 800;
}
.ds-header__dropdown-link:hover, .ds-header__dropdown-link.active {
  background-color: rgba(0, 0, 0, 0.1019607843);
  color: var(--black-color);
}
.ds-header__dropdown-link.active {
  border-inline-start: 3px solid var(--primary-color);
  padding-inline-start: 17px;
}
.ds-header__dropdown-icon {
  flex-shrink: 0;
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  line-height: 1;
}
@media (max-width: 768px) {
  .ds-header__user-menu {
    display: none;
  }
}
.ds-header .user-menu-mobile {
  display: none;
}
@media (max-width: 768px) {
  .ds-header .user-menu-mobile {
    display: block;
    padding: 20px 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  .ds-header .user-menu-mobile .sfa-user-menu__login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.ds-header .ds-header__button-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .ds-header .ds-header__button-button {
    width: 52px;
    height: 52px;
  }
}
.ds-header .ds-header__button-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.ds-header .navbar-menu-button {
  display: none;
}
@media (max-width: 1660px) {
  .ds-header .navbar-menu-button {
    display: block;
  }
}
.ds-header .navbar-menu-button .ds-header__button-icon--close {
  width: 18px;
  height: 18px;
}
.ds-header .navbar-menu-button [aria-expanded=true] .ds-header__button-icon--menu {
  display: none;
}
.ds-header .navbar-menu-button [aria-expanded=true] .ds-header__button-icon--close {
  display: block;
}
.ds-header__mobile-menu {
  position: fixed;
  inset-inline: 0;
  top: var(--ds-header-offset, 0);
  bottom: 0;
  z-index: 998;
  background-color: var(--secondary-color);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform 0.35s ease, visibility 0.35s ease;
}
.ds-header__mobile-menu.is-open {
  visibility: visible;
  transform: translateY(0);
}
.ds-header__mobile-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ds-header__mobile-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.ds-header__mobile-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.ds-header__mobile-item:last-child {
  border-bottom: none;
}
.ds-header__mobile-item--has-children.is-open > .ds-header__mobile-row > .ds-header__mobile-accordion > .ds-header__mobile-accordion-icon {
  transform: rotate(-180deg);
}
.ds-header__mobile-subitem {
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.ds-header__mobile-subitem--has-children.is-open > .ds-header__mobile-row > .ds-header__mobile-accordion > .ds-header__mobile-accordion-icon {
  transform: rotate(-180deg);
}
.ds-header__mobile-row {
  display: flex;
  align-items: stretch;
}
.ds-header__mobile-row--nested .ds-header__mobile-sublink {
  flex: 1;
}
.ds-header__mobile-link {
  flex: 1;
  display: block;
  padding: 25px 48px;
  font-family: var(--tusker-6700-font-family);
  font-size: calc(30px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  color: var(--black-color);
  text-transform: uppercase;
  text-decoration: none;
}
[dir=rtl] .ds-header__mobile-link {
  font-weight: 800;
}
.ds-header__mobile-link.active {
  color: var(--primary-color);
}
@media (max-width: 768px) {
  .ds-header__mobile-link {
    padding: 20px 32px;
  }
}
.ds-header__mobile-accordion {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  padding: 0;
  border: 0;
  border-inline-start: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  cursor: pointer;
  color: var(--black-color);
}
.ds-header__mobile-accordion:hover, .ds-header__mobile-accordion:focus {
  background-color: transparent;
  color: var(--black-color);
  outline: none;
}
.ds-header__mobile-accordion:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: -2px;
}
.ds-header__mobile-accordion--nested {
  width: 48px;
}
.ds-header__mobile-accordion-icon {
  display: inline-block;
  font-size: calc(12px * var(--sfa-desktop-font-scale));
  line-height: 1;
  transition: transform 0.3s ease;
}
.ds-header__mobile-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: rgba(0, 0, 0, 0.04);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.ds-header__mobile-item.is-open > .ds-header__mobile-submenu, .ds-header__mobile-subitem--has-children.is-open > .ds-header__mobile-submenu {
  max-height: 1000px;
}
.ds-header__mobile-submenu--nested {
  background-color: rgba(0, 0, 0, 0.06);
}
.ds-header__mobile-submenu--nested .ds-header__mobile-sublink {
  padding-inline-start: 80px;
}
.ds-header__mobile-submenu--nested .ds-header__mobile-submenu--nested .ds-header__mobile-sublink {
  padding-inline-start: 96px;
}
.ds-header__mobile-sublink {
  display: block;
  padding: 16px 64px 16px 48px;
  font-family: var(--tusker-5500-font-family);
  font-size: calc(19px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  color: var(--black-color);
  text-transform: uppercase;
  text-decoration: none;
}
[dir=rtl] .ds-header__mobile-sublink {
  font-weight: 800;
}
.ds-header__mobile-sublink:hover, .ds-header__mobile-sublink.active {
  background-color: rgba(0, 0, 0, 0.1019607843);
  color: var(--black-color);
}
.ds-header__mobile-sublink.active {
  border-inline-start: 3px solid var(--primary-color);
  padding-inline-start: 61px;
}
[dir=rtl] .ds-header__mobile-sublink.active {
  padding-inline-start: 64px;
  padding-inline-end: 61px;
}
@media (max-width: 768px) {
  .ds-header__mobile-sublink {
    padding: 16px 32px;
  }
}

body {
  font-family: var(--montserrat-font-family);
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ds-info_card {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  padding: 24px;
  border-radius: 16px;
  min-height: 348px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .ds-info_card {
    gap: 40px;
  }
}
.ds-info_card__content__title {
  font-size: calc(30px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  line-height: 147%;
}
.ds-info_card__content__text {
  font-weight: 500;
  font-size: calc(20px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  color: #6e6c6c;
}
.ds-info_card__footer__icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease;
  cursor: pointer;
}
@media (prefers-reduced-motion: no-preference) {
  .ds-info_card__footer__icon:hover, .ds-info_card__footer__icon:focus-visible {
    transform: scale(1.05);
  }
}
.ds-info_card__footer__icon:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.ds-info_card__footer__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.ds-info_card__footer__link {
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 9999px;
  padding: 14px 16px;
  width: fit-content;
  display: block;
  text-decoration: none;
}
.ds-info_card__footer__link:hover {
  color: #fff;
}
.ds-info_card__footer__link span {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  font-family: var(--tusker-7600-font-family);
  line-height: 24px;
}
.ds-info_card__footer__link-with-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 9999px;
  padding: 14px 16px;
  width: fit-content;
}
.ds-info_card__footer__link-with-icon:hover {
  color: #fff;
}
.ds-info_card__footer__link-with-icon__icon {
  width: 24px;
  height: 24px;
}
.ds-info_card__footer__link-with-icon__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ds-info_card__footer__link-with-icon__text {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  font-family: var(--tusker-7600-font-family);
  line-height: 24px;
}

.event_card {
  width: clamp(312px, 26.9675925926vw, 466px);
  height: clamp(355px, 31.0763888889vw, 537px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .event_card {
    width: 312px;
    height: 355px;
  }
}
.event_card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(-180deg, rgba(0, 0, 0, 0) 50.09%, rgba(0, 0, 0, 0.71) 100%);
}
.event_card .event_card_image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.event_card .event_card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event_card .event_card_image .event_card_timer_badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: var(--content-primary-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-family: var(--montserrat-font-family);
  font-weight: 600;
  font-size: calc(clamp(12px, 0.9259259259vw, 16px) * var(--sfa-desktop-font-scale));
  line-height: 1.2;
  white-space: nowrap;
}
.event_card .event_card_image .event_card_timer_badge .timer_icon {
  width: clamp(16px, 1.1574074074vw, 20px);
  height: clamp(16px, 1.1574074074vw, 20px);
  object-fit: contain;
  flex-shrink: 0;
}
.event_card .event_card_image .event_card_timer_badge .timer_text {
  color: var(--content-primary-color);
}
@media (max-width: 980px) {
  .event_card .event_card_image .event_card_timer_badge {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    gap: 6px;
    font-size: 12px;
  }
  .event_card .event_card_image .event_card_timer_badge .timer_icon {
    width: 14px;
    height: 14px;
  }
}
.event_card .event_card_content {
  position: relative;
  z-index: 2;
  padding: 24px;
}
.event_card .event_card_content .event_card_date {
  padding: 16px 0;
  background-color: rgba(244, 244, 245, 0.2);
  border-radius: 8px;
  color: #fff;
  width: clamp(59px, 5.4398148148vw, 94px);
  margin-bottom: 30px;
}
.event_card .event_card_content .event_card_date .event_card_date_text {
  text-align: center;
}
.event_card .event_card_content .event_card_date .event_card_date_text .date_day {
  font-family: var(--tusker-6700-font-family);
  font-size: calc(clamp(24px, 1.9675925926vw, 34px) * var(--sfa-desktop-font-scale));
  line-height: 32px;
  font-weight: 800;
  margin-bottom: 6px;
}
.event_card .event_card_content .event_card_date .event_card_date_text .date_month {
  font-family: var(--tusker-5600-font-family);
  font-size: calc(clamp(19px, 1.4467592593vw, 25px) * var(--sfa-desktop-font-scale));
  line-height: 120%;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .event_card .event_card_content .event_card_date {
    padding: 6px 0;
    width: 59px;
  }
  .event_card .event_card_content .event_card_date .event_card_date_text .date_day {
    font-size: 24px;
    margin-bottom: 3px;
  }
  .event_card .event_card_content .event_card_date .event_card_date_text .date_month {
    font-size: 19px;
  }
}
.event_card .event_card_content .event_card_title {
  font-family: var(--tusker-5600-font-family);
  font-weight: 800;
  font-size: calc(clamp(28px, 2.4305555556vw, 42px) * var(--sfa-desktop-font-scale));
  line-height: 131%;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}
@media (max-width: 980px) {
  .event_card .event_card_content .event_card_title {
    font-size: 18px;
    margin-bottom: 1px;
  }
}
.event_card .event_card_content .event_card_footer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event_card .event_card_content .event_card_footer .info_item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event_card .event_card_content .event_card_footer .info_item img {
  width: clamp(16px, 1.3888888889vw, 24px);
  height: clamp(16px, 1.3888888889vw, 24px);
  object-fit: contain;
}
.event_card .event_card_content .event_card_footer .info_item .info_item_text {
  font-family: var(--montserrat-font-family);
  font-size: calc(clamp(12px, 1.1574074074vw, 20px) * var(--sfa-desktop-font-scale));
  font-weight: 500;
  line-height: 101%;
  color: #bcb9b9;
  max-width: 127px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .event_card .event_card_content .event_card_footer {
    gap: 10px;
  }
  .event_card .event_card_content .event_card_footer .info_item img {
    width: 12px;
    height: 12px;
  }
  .event_card .event_card_content .event_card_footer .info_item .info_item_text {
    font-size: 12px;
    max-width: 85px;
  }
}

/* Progressive blur container */
.progressive-blur {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 101%;
  pointer-events: none;
}
.progressive-blur > div {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.progressive-blur > div:nth-child(1) {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 70%);
}
.progressive-blur > div:nth-child(2) {
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgb(0, 0, 0) 55%, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 75%);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 45%, rgb(0, 0, 0) 55%, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 75%);
}
.progressive-blur > div:nth-child(3) {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 80%);
}
.progressive-blur > div:nth-child(4) {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 55%, rgb(0, 0, 0) 65%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 85%);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 55%, rgb(0, 0, 0) 65%, rgb(0, 0, 0) 75%, rgba(0, 0, 0, 0) 85%);
}
.progressive-blur > div:nth-child(5) {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 90%);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 90%);
}
.progressive-blur > div:nth-child(6) {
  backdrop-filter: blur(44px);
  -webkit-backdrop-filter: blur(44px);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 100%);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgb(0, 0, 0) 75%, rgb(0, 0, 0) 100%);
}

.list-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}
.list-cards > * {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
}
@media (max-width: 1440px) {
  .list-cards {
    gap: 24px;
  }
  .list-cards > * {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 1280px) {
  .list-cards {
    gap: 24px;
  }
  .list-cards > * {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 600px) {
  .list-cards {
    gap: 32px;
  }
  .list-cards > * {
    flex: 0 0 calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
}

.ds-feature_card {
  width: 100%;
  height: 358px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
}
.ds-feature_card--app-cta {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: inherit;
  width: 100%;
}
.ds-feature_card:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: -3px;
  box-shadow: 0 0 0 3px #0b57d0;
}
.ds-feature_card:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
@media (max-width: 600px) {
  .ds-feature_card {
    max-width: 100%;
    height: 388px;
  }
}
.ds-feature_card__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #f1f1f1;
}
.ds-feature_card__image::before, .ds-feature_card__image::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ds-feature_card__image::before {
  inset: 0;
  background: #454545;
}
.ds-feature_card__image::after {
  width: 28px;
  height: 28px;
  top: calc(50% - 14px);
  right: calc(50% - 14px);
  border: 3px solid rgba(24, 24, 27, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: ds-feature-card-spinner 0.8s linear infinite;
}
.ds-feature_card__image.is-loading::before, .ds-feature_card__image.is-loading::after {
  opacity: 1;
}
.ds-feature_card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ds-feature_card__content {
  position: relative;
  z-index: 3;
  padding: 24px 16px;
}
.ds-feature_card__content__title {
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  font-family: var(--tusker-5600-font-family);
  line-height: 130%;
  margin-bottom: 1px;
  color: #fff;
}
.ds-feature_card__content__text {
  font-size: calc(12px * var(--sfa-desktop-font-scale));
  font-family: var(--montserrat-font-family);
  font-weight: 500;
  line-height: 20px;
  color: #CCCCCC;
}
.ds-feature_card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.25) 72%, rgba(0, 0, 0, 0.52) 100%);
}

@keyframes ds-feature-card-spinner {
  to {
    transform: rotate(-360deg);
  }
}
/**
 * Pagination — `.ds-pagination`
 *
 * Markup: `template-parts/_pages/listing/listing-layout/pagination.php`
 */
.ds-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  z-index: 5;
  position: relative;
  margin: 40px auto 0;
}
@media (max-width: 600px) {
  .ds-pagination {
    margin-top: 32px;
  }
}
.ds-pagination--dark .ds-pagination__item {
  color: #000;
  background-color: transparent;
  border-color: #000;
}
.ds-pagination--dark .ds-pagination__item.is-active {
  cursor: default;
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.ds-pagination--dark .ds-pagination__dots {
  color: #000;
}
.ds-pagination--dark .ds-pagination__arrow {
  color: #000;
}
.ds-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: 4px;
  color: var(--white-color);
  text-decoration: none;
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  font-weight: 600;
  font-family: var(--inter-font-family);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.ds-pagination__item:hover {
  background-color: rgba(255, 255, 255, 0.1019607843);
  border-color: var(--white-color);
  color: var(--white-color);
}
.ds-pagination__item.is-active {
  border: 1px solid var(--white-color);
  cursor: default;
}
.ds-pagination__item.is-active:hover {
  color: var(--white-color);
  border-color: var(--white-color);
}
.ds-pagination__dots {
  color: var(--white-color);
  padding: 0 5px;
  letter-spacing: 2px;
}
.ds-pagination__arrow {
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  color: var(--white-color);
}
.ds-pagination__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

a.ds-pagination__item:hover {
  background-color: #1a1a1a;
  border-color: #444;
}

.discover_button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 174.5px;
  height: 174.5px;
}
.discover_button .discover_button_text {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
}
.discover_button .discover_button_text .rotating-image {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.discover_button .discover_button_icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
}
.discover_button .discover_button_icon_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
[dir=rtl] .discover_button .discover_button_icon_wrapper img {
  transform: scaleX(-1);
}
@media (max-width: 980px) {
  .discover_button {
    width: 104.47px;
    height: 104.48px;
  }
  .discover_button .discover_button_icon_wrapper {
    width: 41px;
    height: 41px;
  }
}

@keyframes rotateText {
  0% {
    transform: translate(50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(50%, -50%) rotate(-360deg);
  }
}
.breadcrumbs {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding-right: 24px;
  }
}
.breadcrumbs__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.breadcrumbs__icon {
  width: 16px;
  height: 16px;
  color: #667085;
}
html[dir=rtl] .breadcrumbs__icon {
  transform: rotate(-180deg);
}
.breadcrumbs__current, .breadcrumbs__link {
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-family: var(--montserrat-font-family);
  text-transform: capitalize;
}
html[dir=rtl] .breadcrumbs__current, html[dir=rtl] .breadcrumbs__link {
  font-size: calc(13px * var(--sfa-desktop-font-scale));
}
@media screen and (max-width: 768px) {
  .breadcrumbs__current, .breadcrumbs__link {
    font-size: 13px;
  }
}
.breadcrumbs__current {
  color: #71717a;
  font-weight: 600;
}
.breadcrumbs__link {
  color: #667085;
  font-weight: 400;
  text-decoration: none;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus-visible {
  text-decoration: underline;
}
.breadcrumbs__link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.sidebar-banner {
  width: 100%;
  max-width: 1728px;
  margin-inline: auto;
  padding: 32px 48px;
}
.sidebar-banner .banner-single {
  display: block;
  width: 100%;
  aspect-ratio: 342/226;
  border-radius: 24px;
  overflow: hidden;
}
.sidebar-banner .banner-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .sidebar-banner .banner-single {
    aspect-ratio: 1634/589;
  }
}
.sidebar-banner .banner-embla {
  position: relative;
  width: 100%;
}
.sidebar-banner .banner-embla__viewport {
  overflow: hidden;
  border-radius: 24px;
}
.sidebar-banner .banner-embla__container {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  touch-action: pan-y pinch-zoom;
  border-radius: 24px;
}
.sidebar-banner .banner-embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 342/226;
}
@media (min-width: 768px) {
  .sidebar-banner .banner-embla__slide {
    aspect-ratio: 1634/589;
  }
}
.sidebar-banner .banner-embla__slide-link {
  display: block;
  width: 100%;
  height: 100%;
}
.sidebar-banner .banner-embla__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sidebar-banner .banner-embla__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  position: absolute;
  bottom: 24px;
  inset-inline: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .sidebar-banner .banner-embla__pagination {
    display: none;
  }
}
.sidebar-banner .banner-embla__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.sidebar-banner .banner-embla__dot:hover {
  transform: scale(1.05);
}
.sidebar-banner .banner-embla__dot.is-active {
  background: #fff;
}
@media (hover: hover) {
  .sidebar-banner .banner-embla .banner-embla__slide img {
    transition: transform 0.4s ease;
  }
  .sidebar-banner .banner-embla .banner-embla__slide:hover img {
    transform: scale(1.04);
  }
}
.sidebar-banner .banner-single:focus-visible,
.sidebar-banner .banner-embla__slide-link:focus-visible {
  outline: 3px solid var(--white-color);
  outline-offset: -3px;
  border-radius: 24px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.35);
}
.sidebar-banner .banner-embla__dot:focus-visible {
  outline: 2px solid var(--white-color);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.35);
}
.sidebar-banner .banner-embla__dot:focus-visible:not(.is-active) {
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .sidebar-banner {
    padding: 32px 24px;
  }
}

.ds-checkbox-group {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .ds-checkbox-group {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.ds-checkbox-group__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ds-checkbox-group__list--inline {
  flex-direction: row;
  flex-wrap: wrap;
}
.ds-checkbox-group__item {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  user-select: none;
  padding: 16px 0;
}
.ds-checkbox-group__item:hover .ds-checkbox-group__box {
  border-color: #18181b;
}
.ds-checkbox-group.is-collapsed .ds-checkbox-group__item--extra {
  display: none;
}
.ds-checkbox-group__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ds-checkbox-group__input:checked ~ .ds-checkbox-group__box {
  border-color: #18181b;
}
.ds-checkbox-group__input:checked ~ .ds-checkbox-group__box::after {
  display: block;
}
.ds-checkbox-group__input:focus-visible ~ .ds-checkbox-group__box {
  outline: 2px solid #18181b;
  outline-offset: 2px;
}
.ds-checkbox-group__box {
  height: 24px;
  width: 24px;
  border: 2px solid #18181b;
  border-radius: 24px;
  position: relative;
  transition: border-color 0.2s ease;
}
.ds-checkbox-group__box.is-multiple {
  border-radius: 4px;
}
.ds-checkbox-group__box.is-multiple::after {
  border-radius: 3px;
}
.ds-checkbox-group__box::after {
  content: "";
  position: absolute;
  display: none;
  top: 3px;
  right: 3px;
  left: 3px;
  bottom: 3px;
  background-color: #18181b;
  border-radius: 24px;
}
.ds-checkbox-group__label {
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  line-height: 24px;
  color: #18181B;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
[dir=rtl] .ds-checkbox-group__label {
  font-weight: 600;
}
.ds-checkbox-group__toggle {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  line-height: 24px;
  color: #09090B;
  text-decoration: underline;
  text-transform: uppercase;
}
[dir=rtl] .ds-checkbox-group__toggle {
  font-weight: 600;
}
.ds-checkbox-group__toggle:hover, .ds-checkbox-group__toggle:focus {
  background-color: transparent;
  color: #09090B;
  text-decoration: underline;
}
.ds-checkbox-group__toggle:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
  border-radius: 4px;
}

.ds-chip-select {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .ds-chip-select {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.ds-chip-select__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ds-chip-select__item {
  background: transparent;
  border: 1px solid #18181B;
  border-radius: 100px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  color: #000;
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  line-height: 20px;
  transition: all 0.2s ease;
}
[dir=rtl] .ds-chip-select__item {
  font-weight: 600;
}
.ds-chip-select__item:hover {
  border-color: #000;
  background-color: rgba(0, 0, 0, 0.1019607843);
  color: #000;
}
.ds-chip-select__item:focus {
  background-color: transparent;
  color: #000000;
}
.ds-chip-select__item:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
}
.ds-chip-select__item.is-active {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.animated-logo {
  display: inline-block;
  position: relative;
  max-height: 46.59px;
}
.animated-logo .animated-logo_image {
  margin: 0 11.88px 0 8.11px;
  width: 35.89px;
  height: 46.59px;
  margin: 0 66px 0 62.23px;
  animation: logoMarginAnimation 8s ease-in-out 1;
}
.animated-logo .animated-logo_text_ar {
  width: 54.12px;
  height: 24.87px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  animation: logoTextOpacity 8s ease-in-out 1;
}
.animated-logo .animated-logo_text_en {
  width: 54.12px;
  height: 18.84px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  animation: logoTextOpacity 8s ease-in-out 1;
}
@media (max-width: 1024px) {
  .animated-logo {
    max-height: 31px;
  }
  .animated-logo .animated-logo_image {
    animation: none;
    width: 24px;
    height: 31px;
    margin: 0 44px 0 42px;
  }
  .animated-logo .animated-logo_text_ar {
    animation: none;
    width: 36px;
    height: 17px;
  }
  .animated-logo .animated-logo_text_en {
    animation: none;
    width: 36px;
    height: 13px;
  }
}
@keyframes logoMarginAnimation {
  0% {
    margin: 0 11.88px 0 8.11px;
  }
  70% {
    margin: 0 11.88px 0 8.11px;
  }
  100% {
    margin: 0 66px 0 62.23px;
  }
}
@keyframes logoTextOpacity {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sfa-language-switcher.sfa-custom-dropdown {
  position: relative;
  display: inline-block;
}
.sfa-language-switcher .sfa-lang-dropdown-toggle {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfa-language-switcher .sfa-lang-dropdown-toggle:hover, .sfa-language-switcher .sfa-lang-dropdown-toggle:focus {
  background-color: unset;
}
.sfa-language-switcher .sfa-lang-icon {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 0.3s ease;
  object-fit: contain;
}
.sfa-language-switcher .sfa-lang-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.sfa-language-switcher.active .sfa-lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sfa-language-switcher .sfa-lang-item {
  margin: 0;
}
.sfa-language-switcher .sfa-lang-item.current .sfa-lang-link {
  background-color: var(--secondary-color);
  font-weight: 600;
}
.sfa-language-switcher .sfa-lang-link {
  display: block;
  padding: 10px 16px;
  color: #000;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-family: var(--changa-font-family);
}
.sfa-language-switcher .sfa-lang-link:hover {
  background-color: #f5f5f5;
}
@media (max-width: 1024px) {
  .sfa-language-switcher .sfa-lang-dropdown-toggle {
    width: 52px;
    height: 52px;
  }
  .sfa-language-switcher .sfa-lang-icon {
    width: 20px;
    height: 20px;
  }
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.hero-media__text-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-media__person-image {
  position: relative;
  z-index: 1;
}

.ds-card-slider {
  width: 100%;
}
.ds-card-slider__viewport {
  width: 100%;
  overflow: hidden;
}
.ds-card-slider__container {
  display: flex;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ds-card-slider__slide {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
}
.ds-card-slider__card {
  width: clamp(312px, 312px + 65 * (100vw - 390px) / 910, 377px);
  height: 100%;
}
.ds-card-slider__card .ds-info_card {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .ds-card-slider__container {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.ds-empty_state {
  background-color: transparent;
  color: var(--black-color);
}
.ds-empty_state--light {
  color: var(--white-color) !important;
}
.ds-empty_state--light .ds-empty_state__image path {
  fill: var(--white-color) !important;
}
.ds-empty_state--spaced {
  padding-top: 80px;
  max-width: 640px;
  margin-inline: auto;
}
@media (max-width: 980px) {
  .ds-empty_state--spaced {
    padding: 50px 0;
  }
}
.ds-empty_state__image {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 24px;
}
.ds-empty_state__image path {
  fill: #18181b;
}
.ds-empty_state__title {
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  line-height: 40px;
  color: inherit;
  margin-bottom: 4px;
}
[dir=rtl] .ds-empty_state__title {
  font-weight: 600;
}
.ds-empty_state__description {
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  font-family: var(--montserrat-font-family);
  font-weight: 400;
  line-height: 24px;
  color: inherit;
}

.trusted-by-section {
  width: 100%;
  background-color: var(--white-color);
  position: relative;
  padding-top: clamp(94px, 94px + 109 * (100vw - 390px) / 974, 203px);
  padding-bottom: clamp(173px, 173px + 30 * (100vw - 390px) / 974, 203px);
  background-image: var(--bg-image-lg);
  background-position: center;
  background-size: 100% 90%;
  background-position-y: bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .trusted-by-section {
    background-image: var(--bg-image-sm);
  }
}
.trusted-by-section {
  display: flex;
}
.trusted-by-section .ds-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.trusted-by-section__header {
  text-align: center;
  margin-bottom: clamp(48px, 48px + 32 * (100vw - 390px) / 974, 80px);
}
.trusted-by-section__title {
  width: 100%;
  max-width: 824px;
  font-size: clamp(46px, 46px + 50 * (100vw - 390px) / 974, 96px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  color: var(--black-color);
  line-height: clamp(62px, 62px + 61 * (100vw - 390px) / 974, 123px);
  text-transform: uppercase;
  text-align: center;
}
.trusted-by-section__title .marked-letter {
  position: relative;
}
.trusted-by-section__title .marked-letter::before {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  bottom: clamp(-6px, -6px + -6 * (100vw - 390px) / 974, -12px);
  inset-inline: 0;
  width: 100%;
  height: clamp(7px, 7px + 7 * (100vw - 390px) / 974, 14px);
  border-radius: clamp(7px, 14px + 14 * (100vw - 390px) / 974, 12px);
}
html[dir=rtl] .trusted-by-section__title .marked-letter::before {
  bottom: clamp(8px, 8px + 10 * (100vw - 390px) / 974, 18px);
}
.trusted-by-section__partners {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 24px;
}
.trusted-by-section__partners:last-child {
  margin-bottom: 0;
}
.trusted-by-section__partners__title {
  font-size: calc(19px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  line-height: 100%;
  color: var(--primary-color);
  text-transform: uppercase;
  text-align: center;
  font-family: var(--tusker-6500-font-family);
}
.trusted-by-section__partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .trusted-by-section__partners__grid {
    flex-direction: column;
  }
}
.trusted-by-section__partners__item {
  width: calc(25% - 20px);
  max-width: 317px;
  min-width: 259px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: trusted-by-section-item-enter;
  animation-timing-function: linear;
  animation-fill-mode: both;
  animation-timeline: view();
  opacity: 0;
}
.trusted-by-section__partners__item img {
  width: fit-content;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.trusted-by-section__partners__item:nth-child(1) {
  animation-range: entry 0% entry 50%;
}
@media screen and (max-width: 768px) {
  .trusted-by-section__partners__item:nth-child(1) {
    animation-range: entry 0% entry 200%;
  }
}
.trusted-by-section__partners__item:nth-child(2) {
  animation-range: entry 25% entry 100%;
}
@media screen and (max-width: 768px) {
  .trusted-by-section__partners__item:nth-child(2) {
    animation-range: entry 0% entry 200%;
  }
}
.trusted-by-section__partners__item:nth-child(3) {
  animation-range: entry 50% entry 150%;
}
@media screen and (max-width: 768px) {
  .trusted-by-section__partners__item:nth-child(3) {
    animation-range: entry 0% entry 200%;
  }
}
.trusted-by-section__partners__item:nth-child(4) {
  animation-range: entry 75% entry 200%;
}
@media screen and (max-width: 768px) {
  .trusted-by-section__partners__item:nth-child(4) {
    animation-range: entry 0% entry 200%;
  }
}

@keyframes trusted-by-section-item-enter {
  from {
    opacity: 0;
    transform: translate3d(0, var(--trusted-by-section-item-travel, 3rem), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.ds-footer-curve {
  position: relative;
  width: 100%;
  margin-bottom: -8px;
}
.ds-footer-curve__bg-lg {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ds-footer-curve__bg-sm {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: none;
}
@media screen and (max-width: 450px) {
  .ds-footer-curve__bg-lg {
    display: none;
  }
  .ds-footer-curve__bg-sm {
    display: block;
  }
}

.sfa-search-popup {
  inset: 0;
  position: fixed;
  z-index: 2000;
}
.sfa-search-popup[hidden] {
  display: none;
}
.sfa-search-popup__backdrop {
  background: rgba(0, 0, 0, 0.4);
  inset: 0;
  position: absolute;
}
.sfa-search-popup .screen-reader-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.sfa-search-popup__dialog {
  background: #f4f4f5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  color: #18181b;
  inset-inline-end: auto;
  inset-inline-start: 50%;
  max-height: min(85vh, 760px);
  max-width: 655px;
  overflow: auto;
  padding: 24px 24px 16px 24px;
  position: absolute;
  top: 102px;
  transform: translateX(50%);
  width: calc(100% - 48px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.sfa-search-popup__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sfa-search-popup__header h2 {
  font-family: var(--tusker-5500-font-family);
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  line-height: 40px;
  font-weight: 400;
  text-transform: uppercase;
}
[dir=rtl] .sfa-search-popup__header h2 {
  font-weight: 600;
}
.sfa-search-popup__header .sfa-search-close {
  width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  box-sizing: border-box;
}
.sfa-search-popup__header .sfa-search-close img {
  width: 24px !important;
  height: 24px !important;
  display: block;
  object-fit: contain;
}
.sfa-search-popup__results-scroll {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.sfa-search-popup__controls {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}
.sfa-search-popup__controls .sfa-search-popup__search-field {
  position: relative;
  width: 100%;
}
.sfa-search-popup__controls input[type=search] {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  color: #18181b;
  font-family: var(--tusker-5500-font-family);
  line-height: 24px;
  height: 48px;
  padding: 12px;
  padding-inline-end: 44px;
  width: 100%;
}
.sfa-search-popup__controls input[type=search]::-webkit-search-decoration, .sfa-search-popup__controls input[type=search]::-webkit-search-cancel-button, .sfa-search-popup__controls input[type=search]::-webkit-search-results-button, .sfa-search-popup__controls input[type=search]::-webkit-search-results-decoration {
  appearance: none;
}
.sfa-search-popup__controls input[type=search]::-ms-clear {
  display: none;
}
.sfa-search-popup__controls .sfa-search-popup__clear {
  position: absolute;
  top: 50%;
  inset-inline-end: 12px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
.sfa-search-popup__controls .sfa-search-popup__clear[hidden] {
  display: none;
}
.sfa-search-popup__controls .sfa-search-popup__clear:hover {
  opacity: 0.75;
}
.sfa-search-popup__controls .sfa-search-popup__clear img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.sfa-search-popup__controls fieldset {
  border: 0;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.sfa-search-popup__controls fieldset button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 17px;
  color: #000;
  cursor: pointer;
  min-height: 36px;
  padding-inline: 14px;
}
.sfa-search-popup__controls fieldset button:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.2);
  color: #000;
}
.sfa-search-popup__controls fieldset button[aria-pressed=true] {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
}

.sfa-search-popup__results-heading {
  color: #18181b;
  font-family: var(--tusker-5500-font-family);
  font-size: calc(22px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 8px;
}
.sfa-search-popup__results-heading[hidden] {
  display: none;
}

.sfa-search-popup__status {
  color: #71717a;
  font-size: calc(14px * var(--sfa-desktop-font-scale));
  line-height: 22px;
  margin-bottom: 8px;
  min-height: 22px;
}

[data-global-search-results] {
  display: grid;
  gap: 8px;
}

[data-global-search-load-more] {
  display: block;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  margin-top: 16px;
  background-color: var(--primary-color); /* Primary brand color */
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
[data-global-search-load-more][hidden] {
  display: none;
}
[data-global-search-load-more]:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  opacity: 0.8;
}

[data-global-search-empty] {
  margin-top: 8px;
  text-align: center;
}
[data-global-search-empty][hidden] {
  display: none;
}
[data-global-search-empty] .ds-empty_state {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
}

.sfa-search-popup__skeleton-list {
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.sfa-search-popup__skeleton-item {
  align-items: center;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 64px;
}

.sfa-search-popup__skeleton-thumb {
  background: #d4d4d8;
  border-radius: 8px;
  height: 64px;
  overflow: hidden;
  position: relative;
  width: 64px;
}
.sfa-search-popup__skeleton-thumb::after {
  animation: sfa-search-popup-skeleton-shimmer 1.2s infinite;
  background: linear-gradient(-90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  content: "";
  height: 100%;
  right: -150%;
  position: absolute;
  top: 0;
  width: 150%;
}

.sfa-search-popup__skeleton-body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.sfa-search-popup__skeleton-line {
  background: #c4c4c8;
  border-radius: 4px;
  height: 14px;
  overflow: hidden;
  position: relative;
}
.sfa-search-popup__skeleton-line::after {
  animation: sfa-search-popup-skeleton-shimmer 1.2s infinite;
  background: linear-gradient(-90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  content: "";
  height: 100%;
  right: -150%;
  position: absolute;
  top: 0;
  width: 150%;
}

.sfa-search-popup__skeleton-line--title {
  width: 72%;
}

.sfa-search-popup__skeleton-line--desc {
  opacity: 0.9;
  width: 92%;
}

@keyframes sfa-search-popup-skeleton-shimmer {
  100% {
    right: 100%;
  }
}
@media (max-width: 768px) {
  .sfa-search-popup__dialog {
    border-radius: 12px;
    max-height: calc(100vh - 120px - 24px);
    top: 120px;
  }
  .sfa-search-popup__controls fieldset {
    flex-wrap: wrap;
  }
}
.sfa-search-result-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
  display: grid;
  gap: 12px;
  grid-template-columns: 64px minmax(0, 1fr);
  text-decoration: none;
}
.sfa-search-result-item:hover {
  border-color: rgba(249, 115, 22, 0.65);
}
.sfa-search-result-item:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.sfa-search-result-item__thumb {
  border-radius: 8px;
  display: block;
  height: 64px;
  overflow: hidden;
  position: relative;
  width: 64px;
  background: #e4e4e7;
}
.sfa-search-result-item__thumb::before, .sfa-search-result-item__thumb::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.sfa-search-result-item__thumb::before {
  background: #d4d4d8;
  inset: 0;
}
.sfa-search-result-item__thumb::after {
  animation: sfa-search-result-thumb-spinner 0.8s linear infinite;
  border: 2px solid rgba(24, 24, 27, 0.2);
  border-radius: 50%;
  border-top-color: #f97316;
  height: 20px;
  right: calc(50% - 10px);
  top: calc(50% - 10px);
  width: 20px;
}
.sfa-search-result-item__thumb.is-loading::before, .sfa-search-result-item__thumb.is-loading::after {
  opacity: 1;
}
.sfa-search-result-item__thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}
.sfa-search-result-item__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.sfa-search-result-item__title {
  color: #18181B;
  font-family: var(--tusker-5500-font-family);
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  line-height: 24px;
}
.sfa-search-result-item__description {
  color: #71717A;
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  line-height: 20px;
  font-weight: 350;
}
.sfa-search-result-item__meta {
  color: #71717a;
  font-size: calc(12px * var(--sfa-desktop-font-scale));
  line-height: 18px;
  font-weight: 400;
}

@keyframes sfa-search-result-thumb-spinner {
  to {
    transform: rotate(-360deg);
  }
}
.sfa-share-links {
  position: relative;
  flex-shrink: 0;
}
.sfa-share-links__button {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 9999px;
  color: #18181b;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sfa-share-links__button:hover, .sfa-share-links__button:focus {
  color: #18181b;
  background-color: transparent;
}
.sfa-share-links__button:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
}
.sfa-share-links__button span {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  font-family: var(--tusker-7600-font-family);
  text-transform: uppercase;
  padding: 2px 0;
}
.sfa-share-links__button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .sfa-share-links__button {
    padding: 8px 12px;
  }
  .sfa-share-links__button span {
    font-size: 14px;
    line-height: 20px;
  }
  .sfa-share-links__button img {
    width: 20px;
    height: 20px;
  }
}
.sfa-share-links.is-open .sfa-share-links__button {
  border-color: #18181b;
  box-shadow: 0 4px 16px rgba(24, 24, 27, 0.12);
}
.sfa-share-links__panel {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  z-index: 20;
  min-width: 220px;
  padding: 14px 12px 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 12px 32px rgba(24, 24, 27, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.28s;
}
.sfa-share-links__panel[hidden] {
  display: block;
}
@media (max-width: 768px) {
  .sfa-share-links__panel {
    right: 0;
  }
}
.sfa-share-links.is-open .sfa-share-links__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.sfa-share-links__panel-label {
  margin: 0 4px 10px;
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  line-height: 1.35;
  font-weight: 600;
  color: #18181b;
  text-transform: none;
}
.sfa-share-links__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sfa-share-links__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #18181b;
  text-decoration: none;
  font-size: calc(14px * var(--sfa-desktop-font-scale));
  line-height: 1.3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.24s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.15s ease, color 0.15s ease;
}
.sfa-share-links__link:hover, .sfa-share-links__link:focus-visible {
  background-color: rgba(24, 24, 27, 0.06);
  color: #18181b;
}
.sfa-share-links__link:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 1px;
}
.sfa-share-links.is-open .sfa-share-links__item:nth-child(1) .sfa-share-links__link {
  transition-delay: 0.04s;
}
.sfa-share-links.is-open .sfa-share-links__item:nth-child(2) .sfa-share-links__link {
  transition-delay: 0.08s;
}
.sfa-share-links.is-open .sfa-share-links__item:nth-child(3) .sfa-share-links__link {
  transition-delay: 0.12s;
}
.sfa-share-links.is-open .sfa-share-links__item:nth-child(4) .sfa-share-links__link {
  transition-delay: 0.16s;
}
.sfa-share-links.is-open .sfa-share-links__item:nth-child(5) .sfa-share-links__link {
  transition-delay: 0.2s;
}
.sfa-share-links.is-open .sfa-share-links__link {
  opacity: 1;
  transform: translateY(0);
}
.sfa-share-links__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.sfa-share-links__link-label {
  font-weight: 500;
}

.sfa-download-app-modal {
  inset: 0;
  position: fixed;
  z-index: 2000;
}
.sfa-download-app-modal[hidden] {
  display: none;
}
.sfa-download-app-modal__backdrop {
  background: rgba(0, 0, 0, 0.4);
  inset: 0;
  position: absolute;
}
.sfa-download-app-modal__dialog {
  background: #f4f4f5;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  color: #18181b;
  inset-inline-start: 50%;
  max-width: 520px;
  padding: 24px;
  position: absolute;
  top: 50%;
  transform: translate(50%, -50%);
  width: calc(100% - 48px);
  z-index: 1;
}
.sfa-download-app-modal__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.sfa-download-app-modal__title {
  font-family: var(--tusker-5500-font-family);
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}
[dir=rtl] .sfa-download-app-modal__title {
  font-weight: 600;
}
.sfa-download-app-modal__close {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  height: 24px;
  justify-content: center;
  padding: 0;
  width: 24px;
}
.sfa-download-app-modal__close:hover, .sfa-download-app-modal__close:focus {
  background-color: transparent;
  outline: none;
}
.sfa-download-app-modal__close:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.sfa-download-app-modal__description {
  font-family: var(--montserrat-font-family);
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  line-height: 1.5;
  margin: 0 0 24px;
}
.sfa-download-app-modal__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sfa-download-app-modal__store {
  margin: 0;
}
.sfa-download-app-modal__store a {
  display: block;
}
.sfa-download-app-modal__store img {
  display: block;
  height: auto;
  max-height: 44px;
  width: auto;
}

.home_hero_section {
  background-color: var(--secondary-color);
  position: relative;
  padding-bottom: 182px;
}
@media (max-width: 1200px) {
  .home_hero_section {
    padding-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .home_hero_section {
    padding-bottom: 80px;
  }
}
.home_hero_section p {
  margin: unset;
}
.home_hero_section .hero_container {
  padding: 115px 46px 0 46px;
  max-width: 1728px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .home_hero_section .hero_container {
    padding: 48px 0 0 0;
  }
}
.home_hero_section .society_and_movement {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  overflow-x: clip;
}
.home_hero_section .society_and_movement .society {
  max-width: 805px;
  position: relative;
  padding-top: 15.5px;
}
.home_hero_section .society_and_movement .society .society_title {
  font-size: calc(50px * var(--sfa-desktop-font-scale));
  line-height: 100%;
  text-transform: uppercase;
  font-family: var(--tusker-5700-font-family);
  font-weight: 800;
  color: #070724;
  margin-bottom: 27px;
  padding-right: 2px;
  margin-right: 6px;
}
.home_hero_section .society_and_movement .society .society_description {
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  font-family: var(--montserrat-font-family);
  font-weight: 500;
  color: #1e1919;
  margin-bottom: 30px;
  padding-right: 2px;
  margin-right: 6px;
}
.home_hero_section .society_and_movement .society .society_explore {
  overflow: hidden;
  padding: 16px;
  border-top: 1px solid rgba(var(--black-color), 0.1);
  border-bottom: 1px solid rgba(var(--black-color), 0.1);
  position: absolute;
  bottom: -80px;
}
.home_hero_section .society_and_movement .society .society_explore .society_explore_scroll {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
  width: max-content;
}
.home_hero_section .society_and_movement .society .society_explore .society_explore_scroll .society_explore_item {
  font-family: var(--inter-font-family);
  font-weight: 900;
  font-style: italic;
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  text-transform: uppercase;
  color: var(--primary-color);
  text-wrap: nowrap;
  flex-shrink: 0;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(33.333%);
  }
}
@media (max-width: 1650px) {
  .home_hero_section .society_and_movement .society .society_title {
    font-size: 40px;
  }
  .home_hero_section .society_and_movement .society .society_description {
    font-size: 16px;
  }
  .home_hero_section .society_and_movement .society .society_explore .society_explore_item {
    font-size: 16px;
  }
}
@media (max-width: 1400px) {
  .home_hero_section .society_and_movement .society {
    max-width: 650px;
  }
}
@media (max-width: 1200px) {
  .home_hero_section .society_and_movement .society {
    max-width: 400px;
  }
  .home_hero_section .society_and_movement .society .society_title {
    font-size: 30px;
  }
}
@media (max-width: 980px) {
  .home_hero_section .society_and_movement .society {
    padding-top: 0;
  }
  .home_hero_section .society_and_movement .society .society_title {
    font-size: 50px;
    line-height: 64px;
    padding: 0 24px;
    margin-bottom: 10px;
    margin-right: 0px;
  }
  .home_hero_section .society_and_movement .society .society_description {
    font-size: 18px;
    margin-bottom: 16px;
    padding: 0 24px;
    margin-right: 0px;
  }
  .home_hero_section .society_and_movement .society .society_explore {
    padding: 16px 11px;
  }
  .home_hero_section .society_and_movement .society .society_explore .society_explore_scroll .society_explore_item {
    font-size: 12px;
    font-family: var(--montserrat-font-family);
  }
}
.home_hero_section .society_and_movement .movement_wrapper {
  transform: scale(0.9);
  align-self: flex-start;
}
@media (max-width: 980px) {
  .home_hero_section .society_and_movement .movement_wrapper {
    align-self: center;
  }
}
.home_hero_section .society_and_movement .movement {
  position: relative;
  background-color: var(--white-color);
  padding: 28px 24px;
  display: flex;
  border-radius: 16px;
  width: 474px;
}
.home_hero_section .society_and_movement .movement .movement_content {
  flex: 1;
  z-index: 1;
  position: relative;
}
.home_hero_section .society_and_movement .movement .movement_content .movement_title {
  font-family: var(--tusker-6700-font-family);
  font-weight: 800;
  font-size: calc(24px * var(--sfa-desktop-font-scale));
  line-height: 100%;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #18181b;
  margin-bottom: 14px;
}
.home_hero_section .society_and_movement .movement .movement_content .movement_description {
  font-family: var(--montserrat-font-family);
  font-weight: 500;
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  letter-spacing: 0%;
  color: #6e6c6c;
  max-width: 263px;
  margin-bottom: 16px;
}
.home_hero_section .society_and_movement .movement .movement_content a {
  font-family: var(--inter-font-family);
  font-weight: 900;
  font-style: italic;
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--primary-color);
}
.home_hero_section .society_and_movement .movement .movement_image {
  margin-top: -68px;
  width: 96px;
  height: 198px;
  z-index: 1;
  position: relative;
}
.home_hero_section .society_and_movement .movement .movement_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home_hero_section .society_and_movement .movement .movement_pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: 16px;
}
html[dir=rtl] .home_hero_section .society_and_movement .movement .movement_pattern {
  transform: scaleX(-1);
}
@media (max-width: 1650px) {
  .home_hero_section .society_and_movement .movement {
    margin-left: 0;
  }
}
@media (max-width: 1200px) {
  .home_hero_section .society_and_movement .movement {
    width: 440px;
    padding: 20px;
    gap: 40px;
  }
  .home_hero_section .society_and_movement .movement .movement_content .movement_title {
    font-size: 20px;
  }
  .home_hero_section .society_and_movement .movement .movement_content .movement_description {
    font-size: 14px;
  }
  .home_hero_section .society_and_movement .movement .movement_image {
    width: 80px;
    height: 160px;
  }
  .home_hero_section .society_and_movement .movement .movement_pattern {
    width: 185px;
    height: 144px;
  }
}
@media (max-width: 980px) {
  .home_hero_section .society_and_movement .movement {
    padding: 24px;
    margin: 0 24px;
    gap: 10px;
    max-width: 342px;
  }
  .home_hero_section .society_and_movement .movement .movement_content .movement_title {
    font-size: 20px;
    margin-bottom: 9px;
  }
  .home_hero_section .society_and_movement .movement .movement_content .movement_description {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .home_hero_section .society_and_movement .movement .movement_content a {
    font-size: 16px;
  }
  .home_hero_section .society_and_movement .movement .movement_image {
    margin-top: -40px;
    width: 68px;
    height: 139px;
  }
  .home_hero_section .society_and_movement .movement .movement_pattern {
    width: 140px;
  }
}
.home_hero_section .society_and_movement .line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1800px;
  background-color: rgba(var(--black-color), 0.1);
  z-index: 0;
}
.home_hero_section .society_and_movement .line.line-1 {
  right: 0;
  top: -100%;
}
.home_hero_section .society_and_movement .line.line-2 {
  left: 0;
  top: -100%;
}
@media (max-width: 980px) {
  .home_hero_section .society_and_movement .line {
    display: none;
  }
}
@media (max-width: 980px) {
  .home_hero_section .society_and_movement {
    flex-direction: column;
    gap: 70px;
  }
  .home_hero_section .society_and_movement .society {
    max-width: 100%;
  }
  .home_hero_section .society_and_movement .society .society_explore {
    bottom: -50px;
  }
  .home_hero_section .society_and_movement .movement {
    width: 100%;
  }
}
.home_hero_section .player_section {
  position: relative;
  margin-top: 80px;
}
html[dir=rtl] .home_hero_section .player_section {
  margin-top: 26.5px;
}
.home_hero_section .player_section .writing_text {
  position: absolute;
  top: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 21px 0;
}
.home_hero_section .player_section .writing_text .writing_text_item {
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  color: #150909;
  line-height: 150%;
  font-style: italic;
  text-transform: uppercase;
  font-family: var(--montserrat-font-family);
  font-weight: 700;
}
.home_hero_section .player_section .writing_text .writing_text_item .char {
  display: inline-block;
  transform-style: preserve-3d;
}
.home_hero_section .player_section .writing_text .writing_text_item .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background-color: var(--primary-color);
  margin-right: 2px;
  animation: blink 0.8s ease-in-out infinite alternate;
  vertical-align: text-bottom;
  border-radius: 1px;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.home_hero_section .player_section .player_img,
.home_hero_section .player_section .player_img_sm {
  max-width: 1313px;
  width: 100%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  position: relative;
  display: block;
  margin: 0 229px;
}
html[dir=rtl] .home_hero_section .player_section .player_img,
html[dir=rtl] .home_hero_section .player_section .player_img_sm {
  margin: 0 112px;
}
.home_hero_section .player_section .player_img_sm {
  display: none;
}
.home_hero_section .player_section .move_together_img {
  max-width: 1322px;
  width: 100%;
  object-fit: contain;
  position: absolute;
  top: 151px;
  right: 50%;
  transform: translateX(50%);
  z-index: 0;
}
html[dir=rtl] .home_hero_section .player_section .move_together_img {
  max-width: 1387px;
  top: 204px;
}
@media (max-width: 1650px) {
  .home_hero_section .player_section .player_img {
    margin: 0 auto;
  }
  html[dir=rtl] .home_hero_section .player_section .player_img {
    margin: 0 auto;
  }
}
@media (max-width: 980px) {
  .home_hero_section .player_section {
    margin-top: 87px;
  }
  html[dir=rtl] .home_hero_section .player_section {
    margin-top: 87px;
  }
  .home_hero_section .player_section .move_together_img {
    padding: 0 24px;
    top: 48px;
  }
  html[dir=rtl] .home_hero_section .player_section .move_together_img {
    top: 48px;
  }
  .home_hero_section .player_section .writing_text {
    top: -75px;
    padding-right: 24px;
  }
  .home_hero_section .player_section .writing_text .writing_text_item {
    white-space: nowrap;
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .home_hero_section .player_section .player_img {
    display: none;
  }
  .home_hero_section .player_section .player_img_sm {
    display: block;
    margin: 0;
  }
  html[dir=rtl] .home_hero_section .player_section .player_img_sm {
    margin: 0;
  }
}
.home_hero_section .bottom_pattern .bottom_pattern_img,
.home_hero_section .bottom_pattern .bottom_pattern_img_sm {
  position: absolute;
  width: 100%;
  z-index: 2;
  overflow: hidden;
  bottom: -2px;
}
.home_hero_section .bottom_pattern .bottom_pattern_img_sm {
  display: none;
}
@media (max-width: 480px) {
  .home_hero_section .bottom_pattern .bottom_pattern_img {
    display: none;
  }
  .home_hero_section .bottom_pattern .bottom_pattern_img_sm {
    display: block;
  }
}

.leaders-in-sports {
  color: var(--content-primary-color);
  background-color: var(--background-secondary-color);
  padding: 130px 0;
}
@media (max-width: 768px) {
  .leaders-in-sports {
    padding-top: 0px;
    padding-bottom: 80px;
  }
}
.leaders-in-sports .leaders-content .leaders-heading .flicker-text {
  font-family: var(--tusker-6700-font-family);
  font-size: calc(96px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  line-height: 1.26;
  text-transform: uppercase;
}
@media (max-width: 1728px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text {
    font-size: clamp(46px, 46px + 34 * (100vw - 640px) / 1088, 80px);
  }
}
@media (max-width: 389px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text {
    font-size: 40px;
  }
}
.leaders-in-sports .leaders-content .leaders-heading .flicker-text .flicker-line-group {
  display: flex;
  align-items: end;
  gap: 13px;
  flex-wrap: wrap;
}
.leaders-in-sports .leaders-content .leaders-heading .flicker-text .flicker-line-group-item {
  display: flex;
  align-items: end;
  gap: 13px;
}
@media (max-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .flicker-line-group-item {
    gap: 4px;
  }
  [dir=rtl] .leaders-in-sports .leaders-content .leaders-heading .flicker-text .flicker-line-group-item {
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .flicker-line-group {
    align-items: start;
    gap: 4px;
  }
}
.leaders-in-sports .leaders-content .leaders-heading .flicker-text .subtitle {
  color: #555557;
  font-family: var(--tusker-6500-font-family);
  font-size: clamp(34px, 34px + 10 * (100vw - 640px) / 1088, 44px);
  align-self: center;
}
@media (min-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .subtitle {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .subtitle {
    display: block;
  }
  [dir=rtl] .leaders-in-sports .leaders-content .leaders-heading .flicker-text .subtitle {
    margin-bottom: 24px;
  }
}
.leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-1 {
  width: 91px;
  height: 91px;
}
@media (max-width: 1728px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-1 {
    width: clamp(40px, 40px + 40 * (100vw - 640px) / 1088, 80px);
    height: clamp(40px, 40px + 40 * (100vw - 640px) / 1088, 80px);
  }
}
.leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-2,
.leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-3 {
  width: 112px;
  height: 90px;
}
@media (max-width: 1728px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-2,
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-3 {
    width: clamp(44px, 44px + 36 * (100vw - 390px) / 1338, 80px);
    height: clamp(40px, 40px + 40 * (100vw - 390px) / 1338, 70px);
  }
}
.leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-2.mobile,
.leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-3.mobile {
  display: none;
}
@media (max-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-2.mobile,
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-3.mobile {
    display: inline;
  }
}
[lang=ar] .leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-2,
[lang=ar] .leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-3 {
  transform: rotate(-180deg);
}
@media (max-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-heading .flicker-text .decorative-3 {
    display: none;
  }
}
.leaders-in-sports .leaders-content .leaders-description {
  margin-top: 68px;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-description {
    margin-top: 40px;
    margin-bottom: 48px;
  }
}
.leaders-in-sports .leaders-content .leaders-description .reveal-text {
  font-family: var(--montserrat-font-family);
  font-size: calc(36px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 1728px) {
  .leaders-in-sports .leaders-content .leaders-description .reveal-text {
    font-size: clamp(20px, 20px + 16 * (100vw - 640px) / 1088, 30px);
  }
}
.leaders-in-sports .leaders-content .leaders-author {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-author {
    flex-direction: column;
  }
}
.leaders-in-sports .leaders-content .leaders-author .author-name {
  font-family: var(--montserrat-font-family);
  font-size: calc(32px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 1.5;
  margin-top: clamp(0px, 0px + 54 * (100vw - 768px) / 960, 54px);
}
@media (max-width: 1728px) {
  .leaders-in-sports .leaders-content .leaders-author .author-name {
    font-size: clamp(20px, 20px + 12 * (100vw - 640px) / 1088, 32px);
  }
}
@media (max-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-author .author-name {
    margin-bottom: 32px;
  }
}
.leaders-in-sports .leaders-content .leaders-author .prince-card-container {
  max-width: 400px;
}
@media (min-width: 768px) {
  .leaders-in-sports .leaders-content .leaders-author .prince-card-container {
    margin-inline-end: clamp(0px, 0px + 164 * (100vw - 768px) / 960, 164px);
  }
}
.leaders-in-sports .leaders-content .leaders-author .prince-card-container .prince-card {
  position: relative;
}
[lang=ar] .leaders-in-sports .leaders-content .leaders-author .prince-card-container .prince-card img {
  transform: scaleX(-1);
}
.leaders-in-sports .leaders-content .leaders-author .prince-card-container .prince-card .prince-title {
  position: absolute;
  bottom: 14px;
  right: 10px;
  display: flex;
  flex-direction: column;
  cursor: default;
  user-select: none;
  pointer-events: none;
}
.leaders-in-sports .leaders-content .leaders-author .prince-card-container .prince-card .prince-title .title-line {
  display: block;
  font-family: var(--montserrat-font-family);
  font-size: calc(24px * var(--sfa-desktop-font-scale));
  font-weight: 900;
  font-style: italic;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0px 8px;
}
.leaders-in-sports .leaders-content .leaders-author .prince-card-container .prince-card .prince-title .title-line:nth-child(1) {
  background: #140a06;
  color: var(--white-color);
}
.leaders-in-sports .leaders-content .leaders-author .prince-card-container .prince-card .prince-title .title-line:nth-child(2) {
  background: var(--black-color);
  color: var(--white-color);
  width: calc(100% + 34px);
}
.leaders-in-sports .leaders-content .leaders-author .prince-card-container .prince-card .prince-title .title-line:nth-child(3) {
  background: #f0efec;
  color: var(--black-color);
}
.leaders-in-sports .leaders-content .leaders-author .prince-card-container .prince-card.tilted {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.sfa-challenges-activities {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #090802;
  color: var(--white-color);
  padding-top: clamp(94px, 94px + 36 * (100vw - 390px) / 910, 130px);
  padding-bottom: 94px;
  position: relative;
  gap: clamp(40px, 40px + 32 * (100vw - 390px) / 910, 72px);
}
.sfa-challenges-activities__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  max-width: 1300px;
  padding-inline: 24px;
}
.sfa-challenges-activities__header h2 {
  font-size: calc(clamp(46px, 46px + 50 * (100vw - 375px) / 925, 96px) * var(--sfa-desktop-font-scale));
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.sfa-challenges-activities__header p {
  font-family: var(--montserrat-font-family);
  font-size: calc(clamp(20px, 20px + 4 * (100vw - 375px) / 925, 24px) * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  padding-inline: 56px;
}
@media screen and (max-width: 768px) {
  .sfa-challenges-activities__header p {
    padding-inline: 0;
  }
}
.sfa-challenges-activities__image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 750px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-inline: 20px;
}
.sfa-challenges-activities__image img {
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: contain;
  object-position: center;
}
.sfa-challenges-activities__pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  margin-bottom: 0;
  max-height: clamp(208.57px, 208.57px + 107.76 * (100vw - 390px) / 910, 316.33px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.sfa-challenges-activities__pattern img {
  width: 100%;
  height: 100%;
  max-height: inherit;
  object-fit: cover;
  object-position: 50%;
}
@media screen and (max-width: 992px) {
  .sfa-challenges-activities__pattern img {
    object-position: 60%;
  }
}
@media screen and (max-width: 390px) {
  .sfa-challenges-activities__pattern img {
    object-position: 70%;
  }
}

.home_upcoming_events_section {
  background-color: #09090b;
  padding-top: 32px;
  padding-bottom: 0px;
  overflow: hidden;
}
.home_upcoming_events_section .pin-spacer {
  overflow: visible !important;
}
@media (max-width: 980px) {
  .home_upcoming_events_section {
    padding-bottom: 0px;
  }
}
.home_upcoming_events_section p,
.home_upcoming_events_section h2,
.home_upcoming_events_section a {
  margin: unset;
}
.home_upcoming_events_section .section_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 200px;
}
.home_upcoming_events_section .section_header .section_title {
  max-width: 720px;
  color: var(--white-color);
  font-family: var(--tusker-6700-font-family);
  font-weight: 800;
  line-height: 116px;
  font-size: calc(96px * var(--sfa-desktop-font-scale));
  text-transform: uppercase;
}
@media (max-width: 980px) {
  .home_upcoming_events_section .section_header {
    margin-bottom: 150px;
  }
  .home_upcoming_events_section .section_header .section_title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (max-width: 768px) {
  .home_upcoming_events_section .section_header {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 100px;
  }
}
.home_upcoming_events_section .events_list {
  display: flex;
  flex-direction: row;
  gap: 44px;
  padding-left: 0;
}
@media (max-width: 980px) {
  .home_upcoming_events_section .events_list {
    padding-left: 0;
    gap: 24px;
  }
}
.home_upcoming_events_section .events_list {
  /* Hide scrollbar completely */
}
.home_upcoming_events_section .events_list::-webkit-scrollbar {
  display: none;
}
.home_upcoming_events_section .events_list {
  /* Firefox - hide scrollbar */
  scrollbar-width: none;
  /* IE and Edge - hide scrollbar */
  -ms-overflow-style: none;
}

.upcoming-events-pin-spacer {
  background-color: var(--background-secondary-color);
  display: none;
}
@media (max-width: 980px) {
  .upcoming-events-pin-spacer {
    display: block;
  }
}

.groups {
  position: relative;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 198px 0;
}
@media (max-width: 840px) {
  .groups {
    padding: 90px 0;
    padding-bottom: 0;
  }
}
.groups .groups-wrapper {
  display: flex;
  gap: 5%;
  align-items: center;
}
@media (max-width: 840px) {
  .groups .groups-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
.groups .groups-wrapper .groups-content__title {
  position: relative;
  font-family: var(--tusker-6700-font-family);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white-color);
  width: clamp(342px, 342px + 372 * (100vw - 640px) / 660, 714px);
  font-size: clamp(46px, 46px + 50 * (100vw - 640px) / 660, 96px);
  max-width: 20ch;
  line-height: clamp(52px, 52px + 52 * (100vw - 640px) / 660, 104px);
}
@media (max-width: 389px) {
  .groups .groups-wrapper .groups-content__title {
    width: clamp(300px, 70vw, 342px);
    font-size: clamp(40px, 9vw, 46px);
    line-height: 52px;
  }
}
.groups .groups-wrapper .groups-content__description {
  font-family: var(--montserrat-font-family);
  width: clamp(340px, 55vw, 626px);
  font-size: calc(clamp(20px, 2.5vw, 24px) * var(--sfa-desktop-font-scale));
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 24px;
  line-height: 1.5;
}
@media (max-width: 840px) {
  .groups .groups-wrapper .groups-content__description {
    margin-top: 20px;
    margin-bottom: 16px;
  }
}
@media (max-width: 389px) {
  .groups .groups-wrapper .groups-content__description {
    width: clamp(300px, 70vw, 342px);
    font-size: 16px;
  }
}
.groups .groups-wrapper .groups-content .discover_button {
  position: relative;
  z-index: 50;
}
.groups .groups-wrapper .groups-images {
  display: flex;
  z-index: 3;
  align-self: center;
}
@media (min-width: 1280px) {
  .groups .groups-wrapper .groups-images {
    align-self: flex-end;
  }
}
.groups .groups-wrapper .groups-images__item {
  position: relative;
}
.groups .groups-wrapper .groups-images__item:empty {
  display: none;
}
.groups .groups-wrapper .groups-images__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.groups .groups-wrapper .groups-images__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(-180deg, rgba(var(--black-color), 0) 50.09%, rgba(var(--black-color), 0.71) 100%);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}
.groups .groups-wrapper .groups-images__item:nth-child(1) {
  width: clamp(145px, 145px + 117 * (100vw - 1024px) / 704, 262px);
  height: clamp(183px, 183px + 149 * (100vw - 1024px) / 704, 332px);
  border-radius: 16px;
  rotate: -18.12deg;
  align-self: flex-end;
  margin-left: -104px;
  overflow: hidden;
}
@media (max-width: 840px) {
  .groups .groups-wrapper .groups-images__item:nth-child(1) {
    margin-left: -67px;
  }
}
.groups .groups-wrapper .groups-images__item:nth-child(2) {
  width: clamp(247px, 247px + 201 * (100vw - 1024px) / 704, 448px);
  height: clamp(313px, 313px + 254 * (100vw - 1024px) / 704, 567px);
  border-radius: 16px;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 840px) {
  .groups .groups-wrapper .groups-images__item:nth-child(2) {
    rotate: -9deg;
  }
}
.groups .groups-wrapper .groups-images__item:nth-child(3) {
  width: clamp(145px, 145px + 117 * (100vw - 1024px) / 704, 262px);
  height: clamp(201px, 201px + 163 * (100vw - 1024px) / 704, 364px);
  border-radius: 16px;
  rotate: 10.11deg;
  top: -99px;
  margin-right: -193px;
  overflow: hidden;
}
@media (max-width: 840px) {
  .groups .groups-wrapper .groups-images__item:nth-child(3) {
    margin-right: -134px;
  }
}
.groups .white-star {
  position: absolute;
  top: -71px;
  left: -125px;
}
@media (max-width: 840px) {
  .groups .white-star {
    top: -39px;
    left: -40px;
    width: 82px;
    height: 82px;
  }
  [dir=rtl] .groups .white-star {
    top: -80px;
  }
}
@media (max-width: 420px) {
  .groups .white-star {
    left: 0px;
  }
}
.groups .wave-pattern-wrapper {
  position: absolute;
  bottom: -20%;
  right: 0;
  width: 100%;
  z-index: 3;
  overflow: hidden;
  display: block;
}
@media (max-width: 840px) {
  .groups .wave-pattern-wrapper {
    display: none;
  }
}
@media (max-width: 1669px) {
  .groups .wave-pattern-wrapper {
    bottom: -18%;
  }
}
.groups .wave-pattern-wrapper .wave-pattern {
  position: relative;
  width: 100%;
  object-fit: cover;
  display: block;
  z-index: 4;
}
@media (max-width: 1124px) {
  .groups .wave-pattern-wrapper::before {
    content: "";
    position: absolute;
    top: 0%;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--primary-color);
    z-index: 2;
    pointer-events: none;
  }
}
.groups .wave-pattern-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: var(--black-color);
  z-index: 2;
  pointer-events: none;
}
.groups .wave-pattern-mobile-wrapper {
  position: absolute;
  bottom: -5%;
  right: 0;
  width: 100%;
  z-index: 4;
  display: none;
}
@media (max-width: 840px) {
  .groups .wave-pattern-mobile-wrapper {
    display: block;
  }
}
.groups .wave-pattern-mobile-wrapper .wave-pattern-mobile {
  position: relative;
  width: 100%;
  object-fit: cover;
  display: block;
  z-index: 4;
}
html[dir=rtl] .groups .groups-content__title {
  line-height: clamp(52px, 52px + 70 * (100vw - 640px) / 660, 122px);
}
html[dir=rtl] .groups .groups-images__item {
  transform: scaleX(-1);
}
html[dir=rtl] .groups .groups-images__item:nth-child(1) {
  rotate: 18.12deg;
}
@media (max-width: 840px) {
  html[dir=rtl] .groups .groups-images__item:nth-child(2) {
    rotate: 9deg;
  }
}
html[dir=rtl] .groups .groups-images__item:nth-child(3) {
  rotate: -18deg;
  margin-right: -156;
}
html[dir=rtl] .groups .wave-pattern-wrapper .wave-pattern {
  transform: scaleX(-1);
}
html[dir=rtl] .groups .wave-pattern-mobile-wrapper .wave-pattern-mobile {
  transform: scaleX(-1);
}

.sfa-domes {
  background-color: var(--black-color);
  padding-top: 250px;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .sfa-domes {
    padding-top: 193px;
  }
}
.sfa-domes {
  padding-bottom: clamp(94px, 94px + 36 * (100vw - 390px) / 974, 130px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(48px, 48px + 32 * (100vw - 390px) / 974, 80px);
  overflow: hidden;
  /**
     * Content
     */
}
.sfa-domes__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: 1364px;
}
@media screen and (max-width: 1440px) {
  .sfa-domes__content {
    padding: 0 24px;
  }
}
@media screen and (max-width: 880px) {
  .sfa-domes__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.sfa-domes__content-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  color: var(--white-color);
}
.sfa-domes__title {
  font-size: clamp(46px, 46px + 50 * (100vw - 390px) / 974, 96px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-transform: uppercase;
}
.sfa-domes__description {
  font-family: var(--montserrat-font-family);
  font-size: clamp(20px, 20px + 4 * (100vw - 390px) / 974, 24px);
  font-weight: 400;
  letter-spacing: 0;
  max-width: 622px;
}
.sfa-domes {
  /**
     * Sports Facilities 
     */
}
.sfa-domes__sports-facilities {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  user-select: none;
}
.sfa-domes__sports-facilities-viewport {
  width: 100%;
  overflow: hidden;
}
.sfa-domes__sports-facilities-track {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  transition-timing-function: linear !important;
}
.sfa-domes__sports-facility {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 8px + 11 * (100vw - 390px) / 974, 19px);
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  padding: 24px;
  width: clamp(220px, 220px + 258 * (100vw - 390px) / 974, 478px);
  height: clamp(143px, 143px + 66 * (100vw - 390px) / 974, 209px);
  flex: 0 0 auto;
}
.sfa-domes__sports-facility-image {
  width: clamp(48px, 48px + 36 * (100vw - 390px) / 974, 84px);
  max-width: clamp(48px, 48px + 36 * (100vw - 390px) / 974, 84px);
  aspect-ratio: 1/1;
  height: clamp(48px, 48px + 36 * (100vw - 390px) / 974, 84px);
  border-radius: 100%;
  padding: clamp(4px, 4px + 3 * (100vw - 390px) / 974, 7px);
}
.sfa-domes__sports-facility-image img {
  border-radius: 100%;
  box-shadow: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sfa-domes__sports-facility-title {
  font-size: clamp(20px, 20px + 20 * (100vw - 390px) / 974, 40px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white-color);
  text-align: center;
}
.sfa-domes {
  /**
     * Video
     */
}
.sfa-domes__video {
  width: 100%;
  padding-inline: 0px;
  border-radius: 16px;
  margin-inline: auto;
  max-height: 792px;
  overflow: hidden;
  aspect-ratio: 16/9;
  transform: translateZ(0);
  will-change: transform, width, margin-top;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout style paint;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1360px) {
  .sfa-domes__video {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 480px) {
  .sfa-domes__video {
    padding-inline: 0px;
  }
}
.sfa-domes__video iframe {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

.trusted-by {
  min-height: 100vh;
  width: 100%;
  background-color: var(--white-color);
  position: relative;
  padding-block: clamp(168px, 168px + 35 * (100vw - 390px) / 974, 203px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(48px, 48px + 32 * (100vw - 390px) / 974, 80px);
}
.trusted-by__bg-container {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.trusted-by__bg-lg {
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .trusted-by__bg-lg {
    display: none;
  }
}
.trusted-by__bg-sm {
  width: 100%;
  object-fit: cover;
  display: none;
}
@media screen and (max-width: 768px) {
  .trusted-by__bg-sm {
    display: block;
  }
}
.trusted-by__watermark {
  position: absolute;
  top: 67px;
  inset-inline: 0;
  width: 100%;
  height: clamp(186px, 186px + 160 * (100vw - 390px) / 974, 346px);
  max-height: 346px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
  z-index: 0;
}
@media screen and (max-width: 1040px) {
  .trusted-by__watermark {
    top: 133.5px;
  }
}
@media screen and (max-width: 768px) {
  .trusted-by__watermark {
    top: 200px;
  }
}
.trusted-by__watermark-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.trusted-by__watermark-track {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  transition-timing-function: linear !important;
  will-change: transform;
  height: 100%;
}
.trusted-by__watermark-title-container {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.trusted-by__watermark-title-container.swiper-slide {
  width: auto !important;
}
.trusted-by__watermark-title {
  font-size: clamp(186px, 186px + 160 * (100vw - 390px) / 974, 346px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  color: #f2f2f2;
  text-transform: uppercase;
  line-height: clamp(176px, 176px + 151 * (100vw - 390px) / 974, 327px);
  text-wrap: nowrap;
  white-space: nowrap;
  padding-inline: 120px;
  position: relative;
  width: fit-content;
  user-select: none;
  transform: translateY(clamp(-20px, -20px + -22 * (100vw - 390px) / 974, -42px));
}
html[dir=rtl] .trusted-by__watermark-title {
  line-height: unset;
}
.trusted-by__article {
  width: clamp(230px, 230px + 594 * (100vw - 390px) / 974, 824px);
  justify-content: flex-start;
  align-items: flex-start;
}
.trusted-by__title {
  width: 100%;
  font-size: clamp(46px, 46px + 50 * (100vw - 390px) / 974, 96px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  color: var(--black-color);
  line-height: clamp(62px, 62px + 61 * (100vw - 390px) / 974, 123px);
  text-transform: uppercase;
  text-align: center;
}
.trusted-by__title .marked-letter {
  position: relative;
}
.trusted-by__title .marked-letter::before {
  content: "";
  background-color: var(--primary-color);
  position: absolute;
  bottom: clamp(-6px, -6px + -6 * (100vw - 390px) / 974, -12px);
  inset-inline: 0;
  width: 100%;
  height: clamp(7px, 7px + 7 * (100vw - 390px) / 974, 14px);
  border-radius: clamp(7px, 14px + 14 * (100vw - 390px) / 974, 12px);
}
html[dir=rtl] .trusted-by__title .marked-letter::before {
  bottom: clamp(8px, 8px + 10 * (100vw - 390px) / 974, 18px);
}
.trusted-by__items-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  position: relative;
  z-index: 2;
  background-color: var(--white-color);
}
@media screen and (max-width: 1080px) {
  .trusted-by__items-grid {
    flex-direction: column;
  }
}
.trusted-by__item {
  width: 25%;
  max-width: 317px;
  min-width: 259px;
  min-height: clamp(109px, 109px + 82 * (100vw - 390px) / 974, 191px);
  height: fit-content;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-inline-start: 1px solid rgba(0, 0, 0, 0.1);
}
.trusted-by__item img {
  max-width: calc(100% - 24px);
  object-fit: contain;
}
.trusted-by__item:first-of-type {
  border-inline-start: none;
}
@media screen and (max-width: 1080px) {
  .trusted-by__item:first-of-type {
    border-block-start: none;
  }
}
@media screen and (max-width: 1080px) {
  .trusted-by__item {
    border-inline-start: none;
    border-block-start: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.pin-spacer {
  width: 100% !important;
  overflow: hidden !important;
}

.section__unlock-potential {
  padding: 190px 0 420.5px 0;
  position: relative;
  overflow: hidden;
  color: var(--white-color);
  min-height: 100vh;
  background-color: #ff8718;
}
.section__unlock-potential .unlock-potential__video-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.section__unlock-potential .unlock-potential__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section__unlock-potential .container {
  z-index: 1;
}
.section__unlock-potential .unlock__title {
  text-align: center;
  font-family: var(--tusker-6700-font-family);
  font-size: calc(96px * var(--sfa-desktop-font-scale));
  line-height: 104px;
  margin-bottom: 120px;
  margin-inline: auto;
  max-width: 824px;
  transform-origin: center;
  will-change: transform, opacity;
}
.section__unlock-potential .unlock__content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  z-index: 1;
  width: 100%;
  max-width: 1364px;
  margin: 0 auto;
}
.section__unlock-potential .players__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}
.section__unlock-potential .players__decor .player {
  position: absolute;
  will-change: transform, opacity;
}
.section__unlock-potential .players__decor .player--tl {
  right: 48px;
  top: 76px;
  width: 239px;
  border-radius: 16px;
}
.section__unlock-potential .players__decor .player--bl {
  right: 0px;
  bottom: 0px;
  width: 303px;
  border-radius: 16px 0 0 0;
}
.section__unlock-potential .players__decor .player--tr {
  left: 42px;
  top: 158px;
  width: 392px;
  border-radius: 16px;
}
.section__unlock-potential .players__decor .player--floating {
  right: 304px;
  top: 809px;
  width: auto;
  max-width: 400px;
  z-index: 5;
}
.section__unlock-potential .cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 71.5px;
  padding: 0;
  list-style: none;
  z-index: 2;
  align-items: start;
}
.section__unlock-potential .card {
  background: #E6E5DC;
  color: #18181B;
  padding: 24px;
  border-radius: 16px;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 0.28s;
  will-change: transform, box-shadow, opacity;
  display: flex;
  flex-direction: column;
  min-height: 354px;
}
.section__unlock-potential .card:nth-child(1) {
  margin-top: 0px;
}
.section__unlock-potential .card:nth-child(2) {
  margin-top: 80.5px;
}
.section__unlock-potential .card:nth-child(3) {
  margin-top: 180.5px;
}
.section__unlock-potential .card .card__title {
  font-family: var(--tusker-6700-font-family);
  font-weight: 400;
  font-size: calc(30px * var(--sfa-desktop-font-scale));
  line-height: 144%;
}
.section__unlock-potential .card .card__body {
  color: #6E6C6C;
  font-family: var(--montserrat-font-family);
  font-size: calc(20px * var(--sfa-desktop-font-scale));
  margin-bottom: auto;
  line-height: 150%;
  flex-grow: 1;
}
.section__unlock-potential .card .card__icon {
  display: flex;
  margin-top: 40px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--primary-color);
  padding: 22px;
}
.section__unlock-potential .card .card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section__unlock-potential .apppromo {
  position: absolute;
  right: 50%;
  bottom: 10%;
  transform: translateX(50%);
  width: 100%;
  text-align: center;
  z-index: 10;
}
.section__unlock-potential .apppromo .apppromo__device img {
  width: 306px;
  max-width: 40vw;
  will-change: transform;
  transform-origin: center;
}
.section__unlock-potential .apppromo .apppromo__title {
  font-family: var(--tusker-6700-font-family);
  font-weight: 800;
  font-size: calc(116px * var(--sfa-desktop-font-scale));
  line-height: 104%;
  margin-top: 40px;
  color: #fff;
}
.section__unlock-potential .apppromo .store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 52px;
}
@media (max-width: 1550px) {
  .section__unlock-potential .unlock__title {
    font-size: 84px;
    line-height: 92px;
    margin-bottom: 100px;
    max-width: 720px;
  }
  .section__unlock-potential .cards__grid {
    margin: 0 60px;
    gap: 22px;
  }
  .section__unlock-potential .card {
    min-height: 340px;
    padding: 22px;
  }
  .section__unlock-potential .card .card__title {
    font-size: 28px;
  }
  .section__unlock-potential .card .card__body {
    font-size: 19px;
  }
  .section__unlock-potential .card .card__icon {
    width: 82px;
    height: 82px;
    padding: 20px;
  }
  .section__unlock-potential .players__decor .player--tl {
    right: 40px;
    top: 70px;
    width: 220px;
  }
  .section__unlock-potential .players__decor .player--bl {
    width: 280px;
  }
  .section__unlock-potential .players__decor .player--tr {
    left: 35px;
    top: 145px;
    width: 360px;
  }
  .section__unlock-potential .players__decor .player--floating {
    right: 280px;
    top: 750px;
    max-width: 370px;
  }
  .section__unlock-potential .apppromo .apppromo__device img {
    width: 280px;
  }
  .section__unlock-potential .apppromo .apppromo__title {
    font-size: 100px;
    line-height: 108%;
    margin-top: 36px;
  }
  .section__unlock-potential .apppromo .store-buttons {
    gap: 14px;
    margin-top: 48px;
  }
}
@media (max-width: 1200px) {
  .section__unlock-potential {
    padding: 220px 0 420.5px 0;
  }
  .section__unlock-potential .unlock__content {
    max-width: 100%;
    padding: 0 20px;
  }
  .section__unlock-potential .cards__grid {
    margin: 0 40px;
    gap: 20px;
  }
  .section__unlock-potential .unlock__title {
    font-size: 72px;
    line-height: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
    padding-top: 20px;
  }
  .section__unlock-potential .players__decor .player--tl {
    top: 120px;
  }
  .section__unlock-potential .players__decor .player--tr {
    top: 200px;
  }
  .section__unlock-potential .card {
    min-height: 320px;
    padding: 20px;
  }
  .section__unlock-potential .card .card__title {
    font-size: 26px;
  }
  .section__unlock-potential .card .card__body {
    font-size: 18px;
  }
  .section__unlock-potential .card .card__icon {
    width: 76px;
    height: 76px;
    padding: 18px;
    margin-top: 32px;
  }
  .section__unlock-potential .apppromo {
    top: 50%;
    transform: translate(50%, -50%);
    margin-top: 0;
  }
  .section__unlock-potential .apppromo .apppromo__title {
    font-size: 88px;
  }
  .section__unlock-potential .apppromo .apppromo__device img {
    width: 260px;
  }
}
@media (max-width: 1024px) {
  .section__unlock-potential .cards__grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 30px;
    gap: 20px;
    position: relative;
    z-index: 3;
  }
  .section__unlock-potential .players__decor .player--tl {
    top: 140px;
    width: 200px;
    z-index: 2;
  }
  .section__unlock-potential .players__decor .player--bl {
    width: 260px;
    z-index: 2;
  }
  .section__unlock-potential .players__decor .player--tr {
    top: 220px;
    width: 330px;
    z-index: 2;
  }
  .section__unlock-potential .players__decor .player--floating {
    right: 250px;
    top: 680px;
    max-width: 320px;
  }
  .section__unlock-potential .card {
    position: relative;
    z-index: 3;
  }
  .section__unlock-potential .card:nth-child(1) {
    margin-top: 0;
  }
  .section__unlock-potential .card:nth-child(2) {
    margin-top: 60px;
  }
  .section__unlock-potential .card:nth-child(3) {
    margin-top: 0;
  }
  .section__unlock-potential .apppromo {
    top: 60%;
    transform: translate(50%, -50%);
    margin-top: 0;
    z-index: 10;
  }
  .section__unlock-potential .apppromo .apppromo__title {
    font-size: 80px;
  }
  .section__unlock-potential .apppromo .apppromo__device img {
    width: 240px;
  }
}
@media (max-width: 900px) {
  .section__unlock-potential {
    padding: 120px 0 280px 0;
  }
  .section__unlock-potential .unlock__title {
    font-size: 56px;
    line-height: 64px;
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .section__unlock-potential .cards__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 0 20px;
  }
  .section__unlock-potential .players__decor .player {
    display: none;
  }
  .section__unlock-potential .card {
    min-height: auto;
    padding: 24px;
  }
  .section__unlock-potential .card:nth-child(1), .section__unlock-potential .card:nth-child(2), .section__unlock-potential .card:nth-child(3) {
    margin-top: 0;
  }
  .section__unlock-potential .card .card__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .section__unlock-potential .card .card__body {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .section__unlock-potential .card .card__icon {
    width: 64px;
    height: 64px;
    padding: 16px;
    margin-top: 20px;
  }
  .section__unlock-potential .apppromo {
    top: 52%;
    transform: translate(50%, -50%);
    margin-top: 0;
    padding: 0 20px;
  }
  .section__unlock-potential .apppromo .apppromo__device img {
    width: 220px;
  }
  .section__unlock-potential .apppromo .apppromo__title {
    font-size: 64px;
    line-height: 72px;
    margin-top: 32px;
  }
  .section__unlock-potential .apppromo .store-buttons {
    margin-top: 32px;
  }
}
@media (max-width: 600px) {
  .section__unlock-potential {
    padding: 80px 0 200px 0;
  }
  .section__unlock-potential .unlock__title {
    font-size: 42px;
    line-height: 48px;
    margin-bottom: 40px;
    padding: 0 16px;
  }
  .section__unlock-potential .cards__grid {
    margin: 0 16px;
    gap: 20px;
  }
  .section__unlock-potential .card {
    padding: 20px;
    border-radius: 12px;
  }
  .section__unlock-potential .card .card__title {
    font-size: 20px;
    line-height: 1.3;
  }
  .section__unlock-potential .card .card__body {
    font-size: 14px;
    line-height: 1.5;
  }
  .section__unlock-potential .card .card__icon {
    width: 56px;
    height: 56px;
    padding: 14px;
    margin-top: 16px;
  }
  .section__unlock-potential .apppromo {
    top: 45%;
    transform: translate(50%, -50%);
    margin-top: 0;
    padding: 0 16px;
  }
  .section__unlock-potential .apppromo .apppromo__device img {
    width: 180px;
  }
  .section__unlock-potential .apppromo .apppromo__title {
    font-size: 48px;
    line-height: 56px;
    margin-top: 24px;
  }
  .section__unlock-potential .apppromo .store-buttons {
    margin-top: 17.43px;
  }
}
@media (max-width: 400px) {
  .section__unlock-potential {
    padding: 60px 0 160px 0;
  }
  .section__unlock-potential .unlock__title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 32px;
  }
  .section__unlock-potential .apppromo {
    top: 50%;
    transform: translate(50%, -50%);
    margin-top: 0;
  }
  .section__unlock-potential .apppromo .apppromo__title {
    font-size: 40px;
    line-height: 48px;
  }
  .section__unlock-potential .apppromo .store-buttons {
    flex-direction: row;
    align-items: center;
  }
  .section__unlock-potential .apppromo .store-buttons .store-btn img {
    height: 29px;
    width: 100%;
    max-width: none;
  }
}

.page-template-page-brand-guidelines .brand-guidelines {
  background-color: var(--black-color);
  padding-block: 120px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-template-page-brand-guidelines .brand-guidelines {
    padding-block: 94px;
  }
}
.page-template-page-brand-guidelines .brand-guidelines::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-pattern) no-repeat;
  background-position-x: 50%;
  background-position-y: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .page-template-page-brand-guidelines .brand-guidelines::before {
    background-position-x: 70% !important;
    top: -20%;
  }
}
.page-template-page-brand-guidelines .brand-guidelines .ds-container {
  position: relative;
  z-index: 1;
}
.page-template-page-brand-guidelines .brand-guidelines__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: fit-content;
}
.page-template-page-brand-guidelines .brand-guidelines__header svg {
  position: absolute;
  top: 50%;
  right: -48px;
  left: auto;
  --spin-tx: 0;
  --spin-ty: -50%;
}
@media screen and (max-width: 1400px) {
  .page-template-page-brand-guidelines .brand-guidelines__header svg {
    right: 0;
  }
}
@media screen and (max-width: 912px) {
  .page-template-page-brand-guidelines .brand-guidelines__header svg {
    width: calc(var(--mobile-width) * 1.5);
    height: calc(var(--mobile-height) * 1.5);
    top: 0;
    --spin-tx: 0;
    --spin-ty: -100%;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-brand-guidelines .brand-guidelines__header svg {
    width: var(--mobile-width);
    height: var(--mobile-height);
  }
}
.page-template-page-brand-guidelines .brand-guidelines__title {
  font-size: calc(96px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  max-width: 824px;
  text-align: center;
  text-wrap: wrap;
  color: var(--white-color);
  font-family: var(--tusker-6700-font-family);
}
@media screen and (max-width: 768px) {
  .page-template-page-brand-guidelines .brand-guidelines__title {
    font-size: 50px;
  }
}
.page-template-page-brand-guidelines .brand-guidelines__cards {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .page-template-page-brand-guidelines .brand-guidelines__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
}
.page-template-page-brand-guidelines .brand-guidelines__card:nth-child(1) {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .page-template-page-brand-guidelines .brand-guidelines__card:nth-child(1) {
    margin-top: 0;
  }
}
.page-template-page-brand-guidelines .brand-guidelines__card .download-card {
  height: fit-content;
}
.page-template-page-brand-guidelines .brand-guidelines__card .download-card > div {
  gap: 48px;
  min-height: unset;
}

.entry-header {
  margin-top: 32px;
  margin-bottom: 24px;
}
.entry-header h1 {
  font-family: var(--tusker-6700-font-family);
  font-size: calc(40px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  line-height: 200%;
  letter-spacing: 0px;
}

.entry-content {
  margin-bottom: 32px;
}
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: var(--tusker-5500-font-family);
  font-weight: 800;
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  line-height: 40px;
  letter-spacing: 0px;
  margin-top: 24px;
  margin-bottom: 16px;
}
html[dir=rtl] .entry-content h2,
html[dir=rtl] .entry-content h3,
html[dir=rtl] .entry-content h4,
html[dir=rtl] .entry-content h5,
html[dir=rtl] .entry-content h6 {
  margin-bottom: 4px;
}
.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content span,
.entry-content a,
.entry-content div {
  font-family: var(--montserrat-font-family);
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 24px;
  color: var(--black-color);
  margin-top: 4px;
  margin-bottom: 24px;
}
.entry-content > *:last-child {
  margin-bottom: 0;
}
.entry-content a {
  color: var(--primary-color);
  text-decoration: none;
}
.entry-content a:hover {
  text-decoration: underline;
}
.entry-content ul,
.entry-content ol {
  margin-top: 16px;
  padding-inline-start: 24px;
}
html[dir=rtl] .entry-content ul,
html[dir=rtl] .entry-content ol {
  margin-top: 8px;
}
.entry-content ul li,
.entry-content ol li {
  margin-bottom: 16px;
  margin-top: 0;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content iframe {
  max-width: 100%;
}

.page-template-page-who-we-are .who_we_are_hero_section {
  background-image: var(--bg-pattern), var(--bg-pattern2), var(--bg-pattern3);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto;
  background-position: right bottom, left bottom, left top;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_hero_section {
    background-image: var(--bg-pattern-sm), var(--bg-pattern2-sm), var(--bg-pattern3-sm);
    background-position: right bottom, left bottom, left center;
  }
}
.page-template-page-who-we-are .who_we_are_hero_section {
  padding-top: clamp(24px, 24px + 106 * (100vw - 390px) / 910, 130px);
}
.page-template-page-who-we-are .who_we_are_hero_section .ds-container {
  position: relative;
}
.page-template-page-who-we-are .who_we_are_hero_section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-template-page-who-we-are .who_we_are_hero_section__title {
  font-size: clamp(35px, 35px + 31 * (100vw - 390px) / 910, 66px);
  line-height: clamp(51px, 51px + 53 * (100vw - 390px) / 910, 104px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--black-color);
}
.page-template-page-who-we-are .who_we_are_hero_section__subtitle {
  font-size: clamp(16px, 16px + 7 * (100vw - 390px) / 910, 23px);
  line-height: 150%;
  font-weight: 500;
  font-family: var(--montserrat-font-family);
  color: rgb(30, 25, 25);
  max-width: 805px;
  text-align: center;
  margin: 0 auto;
}
.page-template-page-who-we-are .who_we_are_hero_section__media {
  margin-top: 0px;
}
.page-template-page-who-we-are .who_we_are_hero_section__media .hero-media__text-image {
  top: clamp(-70px, -70px + (1728px - 100vw) * 0.09375, -30px);
}
html[dir=rtl] .page-template-page-who-we-are .who_we_are_hero_section__media .hero-media__text-image {
  top: clamp(-20px, -20px + (1728px - 100vw) * 0.09375, -40px);
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_hero_section__media {
    margin-top: 42px;
  }
}
.page-template-page-who-we-are .who_we_are_hero_section__brand-logo {
  position: absolute;
  bottom: 22.2%;
  right: 3.9%;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_hero_section__brand-logo {
    right: 5.8%;
  }
}

.page-template-page-who-we-are .who_we_are_our_ambition_section {
  background-color: var(--black-color);
  background-image: var(--bg-pattern), var(--bg-pattern2);
  background-repeat: no-repeat, no-repeat;
  background-size: auto;
  background-position: left bottom, right top;
  padding-block: clamp(94px, 94px + 26 * (100vw - 390px) / 910, 120px);
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_our_ambition_section {
    background-image: unset;
  }
}
.page-template-page-who-we-are .who_we_are_our_ambition_section__header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(48px, 48px + 72 * (100vw - 390px) / 910, 120px);
}
.page-template-page-who-we-are .who_we_are_our_ambition_section__title {
  font-size: clamp(50px, 50px + 46 * (100vw - 390px) / 910, 66px);
  line-height: clamp(62px, 62px + 42 * (100vw - 390px) / 910, 104px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
}

.page-template-page-who-we-are .who_we_are_major_milestones_section__pin_spacer,
.page-template-page-who-we-are .pin-spacer:has(> [data-milestones-pin]) {
  width: 100% !important;
  background-color: var(--black-color);
}
.page-template-page-who-we-are .who_we_are_major_milestones_section {
  position: relative;
  z-index: 1;
  isolation: isolate;
  height: 100dvh;
  max-height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section.is-scroll-pinned {
  z-index: 5;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__zoom, .page-template-page-who-we-are .who_we_are_major_milestones_section__intro {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__bg-layer.is-visible {
  opacity: 1;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__pattern_container {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  width: 100%;
  z-index: 2;
  user-select: none;
  pointer-events: none;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__pattern__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__pattern__img {
    display: none;
  }
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__pattern__img__sm {
  width: 100%;
  height: 50px;
  object-fit: cover;
  object-position: center;
  display: none;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__pattern__img__sm {
    display: block;
  }
}
.page-template-page-who-we-are .who_we_are_major_milestones_section .ds-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  padding-block: clamp(48px, 8vh, 94px);
}
@media screen and (max-width: 1040px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section .ds-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__header {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 714px;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__title {
  font-size: clamp(50px, 50px + 46 * (100vw - 390px) / 910, 96px);
  line-height: clamp(62px, 62px + 42 * (100vw - 390px) / 910, 104px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__brand-logo {
  position: absolute;
  top: -63px;
  transform-origin: 50% 50%;
  right: 198px;
}
@media screen and (max-width: 1040px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__brand-logo {
    top: -32px;
    width: calc(var(--mobile-width) * 1.5);
    height: calc(var(--mobile-height) * 1.5);
    right: clamp(98px, 98px + 292 * (100vw - 390px) / 650, 390px);
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__brand-logo {
    top: 0;
    width: var(--mobile-width);
    height: var(--mobile-height);
  }
}
@media screen and (max-width: 380px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__brand-logo {
    right: 74px;
  }
}
@media screen and (max-width: 360px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__brand-logo {
    display: none;
  }
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestones_container {
  height: 501px;
  max-height: 501px;
  max-width: 341px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__milestones_container {
    height: 330px;
    max-height: 330px;
  }
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestones {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 88px;
  width: 100%;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__milestones {
    gap: 48px;
  }
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestone {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestone__title {
  margin: 0;
  padding-block-start: 2px;
  font-size: clamp(24px, 24px + 16 * (100vw - 390px) / 910, 40px);
  line-height: 1.1;
  font-weight: 800;
  font-family: var(--tusker-5700-font-family);
  color: var(--white-color);
  text-transform: uppercase;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestone__content {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition: grid-template-rows 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestone__content-inner {
  overflow: hidden;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestone__content-text {
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  font-weight: 500;
  font-family: var(--montserrat-font-family);
  color: var(--white-color);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_major_milestones_section__milestone__content-text {
    font-size: 16px;
  }
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestone.is-active {
  opacity: 1;
}
.page-template-page-who-we-are .who_we_are_major_milestones_section__milestone.is-active .who_we_are_major_milestones_section__milestone__content {
  grid-template-rows: 1fr;
  margin-top: 7px;
  opacity: 1;
}

.page-template-page-who-we-are .who_we_are_message_from_leaders_section__pin_spacer,
.page-template-page-who-we-are .pin-spacer:has(> [data-leaders-pin]),
.page-template-page-who-we-are .pin-spacer:has(> .who_we_are_message_from_leaders_section) {
  width: 100% !important;
  background-color: var(--black-color);
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section.is-scroll-pinned {
  z-index: 5;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section {
  padding-block: clamp(94px, 94px + 26 * (100vw - 390px) / 910, 120px);
  background-color: var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section .ds-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  gap: 24px;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__title {
  font-size: clamp(46px, 46px + 50 * (100vw - 390px) / 910, 96px);
  line-height: clamp(62px, 62px + 42 * (100vw - 390px) / 910, 104px);
  font-weight: 800;
  max-width: 824px;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leaders_messages_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leaders_layers {
  position: relative;
  width: 100%;
  max-width: 1336px;
  margin-inline: auto;
}
@media (prefers-reduced-motion: no-preference) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leaders_layers {
    min-height: 457px;
    height: 457px;
    overflow: hidden;
  }
}
@media screen and (prefers-reduced-motion: no-preference) and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leaders_layers {
    min-height: 80dvh;
    height: 80dvh;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leaders_layers {
    display: flex;
    flex-direction: column;
    gap: 48px;
    overflow: unset;
    height: auto;
    min-height: fit-content;
  }
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  flex: 0 0 auto;
  height: 100%;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_item--stacked {
    position: absolute;
    inset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_item {
    position: relative;
    inset: auto;
    flex: unset;
    height: auto;
  }
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  width: 100%;
  flex: 1;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_content {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}
@media screen and (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_content {
    min-height: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_content {
    flex: unset;
    height: auto;
  }
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
  position: relative;
  width: 42.5%;
  max-width: 569px;
  min-width: 342px;
  padding: 0 10px 0 16px;
  flex-shrink: 0;
  aspect-ratio: 569/457;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader--tilt {
  transform-style: preserve-3d;
}
@media (prefers-reduced-motion: reduce) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader {
    align-self: flex-start;
    position: sticky;
    top: 140px;
    aspect-ratio: 569/375;
    align-items: flex-end;
  }
}
@media screen and (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader {
    position: relative;
    top: unset;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader {
    width: 100%;
    aspect-ratio: 342/410;
    min-width: unset;
    padding: 0;
    margin-inline: auto;
    align-items: flex-end;
    max-width: 342px;
  }
}
@media screen and (max-width: 768px) and (max-height: 892px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader {
    width: 75%;
  }
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_inner--tilt {
  transform-style: preserve-3d;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_frame {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  aspect-ratio: 569/290;
  width: 100%;
  max-width: 569px;
  bottom: 0;
  border-radius: 16px;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_frame {
    justify-content: flex-start;
    aspect-ratio: 296/393;
    max-width: unset;
    width: 86.5497076023%;
  }
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_info {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_info > img {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  width: 50.0878734622%;
  aspect-ratio: 285/410;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_info > img {
    width: 83.3333333333%;
  }
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name {
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  font-style: italic;
  z-index: 1;
  font-size: calc(24px * var(--sfa-desktop-font-scale));
  font-weight: 900;
  font-family: var(--montserrat-font-family);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white-color);
}
html[dir=rtl] .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name {
  font-family: var(--tusker-6700-font-family);
  font-weight: 800;
  font-style: normal;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
  padding-inline: 8px;
  line-height: 1.5;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part .name-text {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part .name-word {
  display: inline !important;
  white-space: normal;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part .name-hl {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right center;
}
html[dir=rtl] .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part .name-hl {
  transform-origin: left center;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part--dark {
  color: var(--white-color);
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part--dark .name-hl {
  background-color: #140a06;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part--black {
  color: var(--white-color);
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part--black .name-hl {
  background-color: #000000;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part--light {
  color: var(--black-color);
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_leader_name_part--light .name-hl {
  background-color: #f0efec;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_message {
  overflow: hidden;
  font-size: calc(20px * var(--sfa-desktop-font-scale));
  flex: 1;
  min-width: 280px;
  font-weight: 400;
  font-family: var(--montserrat-font-family);
  letter-spacing: 0;
  line-height: 150%;
  color: var(--white-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_message {
    height: 360px;
    flex: unset;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_message {
    overflow: unset;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_message {
    width: 100%;
  }
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_message_content {
  width: 100%;
  margin-top: auto;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_message_content p + p {
  margin-top: 1rem;
}
.page-template-page-who-we-are .who_we_are_message_from_leaders_section__leader_message_message_content .reveal-line {
  overflow: hidden;
}

.page-template-page-who-we-are .who_we_are_members_board_section {
  padding-block: clamp(94px, 94px + 26 * (100vw - 390px) / 910, 120px);
  background-color: var(--black-color);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
}
.page-template-page-who-we-are .who_we_are_members_board_section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_members_board_section__header {
    margin-bottom: 48px;
  }
}
.page-template-page-who-we-are .who_we_are_members_board_section__title {
  font-size: clamp(46px, 46px + 50 * (100vw - 390px) / 910, 96px);
  line-height: clamp(62px, 62px + 42 * (100vw - 390px) / 910, 104px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
}
.page-template-page-who-we-are .who_we_are_members_board_section__members_board_list {
  padding: 0;
  max-width: 1605px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  list-style: none;
}
@media screen and (max-width: 1606px) {
  .page-template-page-who-we-are .who_we_are_members_board_section__members_board_list {
    padding-inline: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_members_board_section__members_board_list {
    gap: 24px;
  }
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_item {
  max-width: 282px;
  width: 100%;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_info {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_frame {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  width: 100%;
  aspect-ratio: 282/240;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_frame img {
  width: 100%;
  height: 100%;
  object-fit: containe;
  object-position: center;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_image {
  width: 98.5815602837%;
  margin-inline: auto;
  aspect-ratio: 278/382;
  z-index: 1;
  position: relative;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_name {
  position: absolute;
  inset-inline: 6px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  font-style: italic;
  font-size: calc(24px * var(--sfa-desktop-font-scale));
  font-weight: 900;
  font-family: var(--montserrat-font-family);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white-color);
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_name span {
  width: fit-content;
  background-color: var(--black-color);
  color: var(--white-color);
  padding-inline: 8px;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_name span:last-child {
  background-color: var(--white-color);
  color: var(--black-color);
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_members_board_section__member_name {
    font-size: 20px;
  }
}
@media screen and (max-width: 370px) {
  .page-template-page-who-we-are .who_we_are_members_board_section__member_name {
    font-size: 18px;
  }
}
html[dir=rtl] .page-template-page-who-we-are .who_we_are_members_board_section__member_name {
  font-family: var(--tusker-6700-font-family);
  font-weight: 800;
  font-style: normal;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_role {
  width: 100%;
}
.page-template-page-who-we-are .who_we_are_members_board_section__member_role_content {
  width: 100%;
  margin: 0;
  padding-inline: 6px;
  font-family: var(--montserrat-font-family);
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white-color);
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_members_board_section__member_role_content {
    font-size: 16px;
  }
}

.page-template-page-who-we-are .who_we_are_our_strategy_section {
  padding-block: 120px;
  background-image: var(--bg-pattern);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--black-color);
  background-position: left bottom;
}
.page-template-page-who-we-are .who_we_are_our_strategy_section__header {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: clamp(48px, 48px + 72 * (100vw - 390px) / 910, 120px);
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_our_strategy_section__header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.page-template-page-who-we-are .who_we_are_our_strategy_section__title {
  font-size: clamp(50px, 50px + 46 * (100vw - 390px) / 910, 96px);
  line-height: clamp(51px, 51px + 53 * (100vw - 390px) / 910, 104px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  color: var(--white-color);
  text-transform: uppercase;
  text-align: center;
}
.page-template-page-who-we-are .who_we_are_our_strategy_section__content {
  opacity: 0;
  font-size: clamp(16px, 16px + 14 * (100vw - 390px) / 910, 30px);
  line-height: 150%;
  font-weight: 400;
  font-family: var(--montserrat-font-family);
  color: var(--white-color);
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .page-template-page-who-we-are .who_we_are_our_strategy_section__content {
    opacity: 1;
  }
}
.page-template-page-who-we-are .who_we_are_our_strategy_section__content .strategy-reveal-line {
  overflow: hidden;
}
.page-template-page-who-we-are .who_we_are_our_strategy_section__brand-logo {
  position: absolute;
  bottom: 0;
  right: 0;
  --spin-tx: 50px;
}
@media screen and (max-width: 1450px) {
  .page-template-page-who-we-are .who_we_are_our_strategy_section__brand-logo {
    --spin-tx: 0;
  }
}
@media screen and (max-width: 992px) {
  .page-template-page-who-we-are .who_we_are_our_strategy_section__brand-logo {
    width: calc(var(--mobile-width) * 1.5);
    height: calc(var(--mobile-height) * 1.5);
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-who-we-are .who_we_are_our_strategy_section__brand-logo {
    position: static;
    align-self: self-end;
  }
  html[dir=rtl] .page-template-page-who-we-are .who_we_are_our_strategy_section__brand-logo {
    align-self: self-start;
  }
}

#brand-spinner-logo {
  transition: all 0.3s ease;
  transform-origin: center center;
  transform-box: fill-box;
  transform: translate(var(--spin-tx, 0), var(--spin-ty, 0)) rotate(0deg);
}
#brand-spinner-logo:hover {
  cursor: pointer;
  animation: spin 1s linear infinite;
}
@media (max-width: 768px) {
  #brand-spinner-logo {
    width: var(--mobile-width);
    height: var(--mobile-height);
  }
}

@keyframes spin {
  0% {
    transform: translate(var(--spin-tx, 0), var(--spin-ty, 0)) rotate(0deg);
  }
  100% {
    transform: translate(var(--spin-tx, 0), var(--spin-ty, 0)) rotate(-360deg);
  }
}
.page-template-page-vendor-gate .vendor-gate_hero_section {
  background: var(--bg-pattern) no-repeat;
  background-position: bottom;
  background-size: 100% 70%;
  padding-top: 120px;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .page-template-page-vendor-gate .vendor-gate_hero_section {
    padding-top: 24px;
    background: var(--bg-pattern-sm) no-repeat;
    background-position-x: center;
    background-position-y: 90%;
    background-size: contain;
  }
}
.page-template-page-vendor-gate .vendor-gate_hero_section .ds-container {
  position: relative;
}
.page-template-page-vendor-gate .vendor-gate_hero_section__brand-logo {
  position: absolute;
  top: 0;
  right: -100px;
}
@media screen and (max-width: 1536px) and (min-width: 1201px) {
  .page-template-page-vendor-gate .vendor-gate_hero_section__brand-logo {
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .page-template-page-vendor-gate .vendor-gate_hero_section__brand-logo {
    bottom: 15px;
    top: unset;
    right: 10%;
  }
}
.page-template-page-vendor-gate .vendor-gate_hero_section__header {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-template-page-vendor-gate .vendor-gate_hero_section__title {
  font-size: calc(66px * var(--sfa-desktop-font-scale));
  line-height: 104px;
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  color: var(--black-color);
}
@media screen and (max-width: 768px) {
  .page-template-page-vendor-gate .vendor-gate_hero_section__title {
    font-size: 35px;
    line-height: 48px;
    margin-bottom: 8px;
  }
}
.page-template-page-vendor-gate .vendor-gate_hero_section__subtitle, .page-template-page-vendor-gate .vendor-gate_hero_section__note {
  max-width: 1048px;
  font-size: calc(23px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  font-weight: 500;
  font-family: var(--montserrat-font-family);
  color: var(--black-color);
}
@media screen and (max-width: 768px) {
  .page-template-page-vendor-gate .vendor-gate_hero_section__subtitle, .page-template-page-vendor-gate .vendor-gate_hero_section__note {
    font-size: 16px;
  }
}
.page-template-page-vendor-gate .vendor-gate_hero_section__note {
  margin-top: 16px;
}
.page-template-page-vendor-gate .vendor-gate_hero_section__media .hero-media__text-image {
  top: clamp(-90px, -90px + (1728px - 100vw) * 0.09375, 0px);
}
html[dir=rtl] .page-template-page-vendor-gate .vendor-gate_hero_section__media .hero-media__text-image {
  top: 0px;
}
.page-template-page-vendor-gate .vendor-gate_hero_section__media .hero-media__person-image {
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .page-template-page-vendor-gate .vendor-gate_hero_section__media .hero-media__person-image {
    max-width: 218px;
  }
}

.page-template-page-vendor-gate .vendor-gate_work_with_us_section {
  background-color: var(--black-color);
  background-image: var(--pattern-1), var(--pattern-2);
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: auto, auto;
  color: var(--white-color);
  padding-block: 120px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-template-page-vendor-gate .vendor-gate_work_with_us_section {
    padding-block: 96px;
    background-image: none;
  }
}
.page-template-page-vendor-gate .vendor-gate_work_with_us_section > header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.page-template-page-vendor-gate .vendor-gate_work_with_us_section__title {
  font-size: calc(96px * var(--sfa-desktop-font-scale));
  line-height: 104px;
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  color: var(--white-color);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .page-template-page-vendor-gate .vendor-gate_work_with_us_section__title {
    font-size: 50px;
    line-height: 51px;
  }
}
.page-template-page-vendor-gate .vendor-gate_work_with_us_section__subtitle {
  font-size: calc(23px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  font-weight: 500;
  font-family: var(--montserrat-font-family);
  color: var(--white-color);
}
@media screen and (max-width: 768px) {
  .page-template-page-vendor-gate .vendor-gate_work_with_us_section__subtitle {
    font-size: 16px;
  }
}
.page-template-page-vendor-gate .vendor-gate_work_with_us_section__button {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 800;
  font-family: var(--tusker-5500-font-family);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
  margin-top: 24px;
  padding: 16px;
  border-radius: 100px;
  background-color: var(--primary-color);
  width: fit-content;
  text-transform: uppercase;
}

.ds-listing-page__title {
  font-size: calc(66px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-6700-font-family);
  font-weight: 800;
  color: #000;
  line-height: 104px;
  text-transform: uppercase;
  margin-block: 48px;
}
@media (max-width: 1024px) {
  .ds-listing-page__title {
    margin-block: 32px;
    font-size: 35px;
    line-height: 100%;
  }
}
.ds-listing-page__layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-top: 32px;
}
.ds-listing-page__layout .ds-listing-page__filters-bar {
  display: none;
}
.ds-listing-page__layout .ds-listing-page__filters {
  width: 317px;
  position: sticky;
  top: 60px;
  z-index: 99;
  align-self: flex-start;
}
.ds-listing-page__layout .ds-listing-page__listing-cards-wrapper {
  flex: 1;
  position: sticky;
  top: -228px;
}
@media (max-width: 1024px) {
  .ds-listing-page__layout {
    flex-direction: column;
  }
  .ds-listing-page__layout .ds-listing-page__filters-bar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .ds-listing-page__layout .ds-listing-page__filters-bar .ds-listing-page__filters-locations {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .ds-listing-page__layout .ds-listing-page__filters-bar--open-button {
    appearance: none;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    width: 56px;
    height: 60px;
  }
  .ds-listing-page__layout .ds-listing-page__filters-bar--open-button:hover, .ds-listing-page__layout .ds-listing-page__filters-bar--open-button:focus {
    background-color: transparent;
  }
  .ds-listing-page__layout .ds-listing-page__filters-bar--open-button:focus-visible {
    outline: 2px solid #18181b;
    outline-offset: 2px;
  }
  .ds-listing-page__layout .ds-listing-page__filters-bar--open-button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  .ds-listing-page__layout .ds-listing-page__filters {
    width: 100%;
    position: unset;
    top: unset;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }
  .ds-listing-page__layout .ds-listing-page__filters.active {
    transform: translateY(0);
  }
  .ds-listing-page__layout .ds-listing-page__listing-cards {
    width: 100%;
    position: unset;
    top: unset;
  }
}

.admin-bar .ds-listing-page__filters.active {
  transform: translateY(44px);
}

.ds-listing-page [hidden] {
  display: none !important;
}
.ds-listing-page__listing-cards-wrapper {
  width: 100%;
  padding-bottom: 16px;
}
.ds-listing-page__listing-cards-wrapper__sorting {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}
.ds-listing-page__listing-cards-wrapper__sorting__text {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 24px;
  font-family: var(--montserrat-font-family);
  color: #18181b;
}
.ds-listing-page__listing-cards-wrapper__sorting__select {
  position: relative;
}
.ds-listing-page__listing-cards-wrapper__sorting__select button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ds-listing-page__listing-cards-wrapper__sorting__select button:hover, .ds-listing-page__listing-cards-wrapper__sorting__select button:focus {
  background-color: transparent;
  color: #18181b;
}
.ds-listing-page__listing-cards-wrapper__sorting__select__button:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
  border-radius: 4px;
}
.ds-listing-page__listing-cards-wrapper__sorting__select__button {
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 600;
  font-family: var(--montserrat-font-family);
  color: #18181b;
}
.ds-listing-page__listing-cards-wrapper__sorting__select__button img {
  transition: transform 0.3s ease-in-out;
}
.ds-listing-page__listing-cards-wrapper__sorting__select__button img.rotate {
  transform: rotate(-180deg);
}
.ds-listing-page__listing-cards-wrapper__sorting__select__options {
  position: absolute;
  top: 100%;
  right: 0;
  width: fit-content;
  padding: 8px;
  background-color: var(--secondary-color);
  border: 1px solid var(--content-primary-color);
  border-radius: 8px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1019607843);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.ds-listing-page__listing-cards-wrapper__sorting__select__options.active {
  opacity: 1;
  visibility: visible;
}
.ds-listing-page__listing-cards-wrapper__sorting__select__option {
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  font-family: var(--montserrat-font-family);
  color: #18181b;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ds-listing-page__listing-cards-wrapper__sorting__select__option:hover, .ds-listing-page__listing-cards-wrapper__sorting__select__option:focus {
  background-color: transparent;
  color: #18181b;
}
.ds-listing-page__listing-cards-wrapper__sorting__select__option:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
  border-radius: 4px;
}
.ds-listing-page__listing-cards.events-cards {
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .ds-listing-page__listing-cards.events-cards {
    margin-bottom: 32px;
  }
}
.ds-listing-page__listing-cards.cols-3 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}
.ds-listing-page__listing-cards.cols-3 > * {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
}
@media (max-width: 1280px) {
  .ds-listing-page__listing-cards.cols-3 {
    gap: 24px;
  }
  .ds-listing-page__listing-cards.cols-3 > * {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 600px) {
  .ds-listing-page__listing-cards.cols-3 {
    gap: 24px;
  }
  .ds-listing-page__listing-cards.cols-3 > * {
    flex: 0 0 calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
}
.ds-listing-page__listing-cards.cols-4 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}
.ds-listing-page__listing-cards.cols-4 > * {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
}
@media (max-width: 1440px) {
  .ds-listing-page__listing-cards.cols-4 {
    gap: 24px;
  }
  .ds-listing-page__listing-cards.cols-4 > * {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 1280px) {
  .ds-listing-page__listing-cards.cols-4 {
    gap: 24px;
  }
  .ds-listing-page__listing-cards.cols-4 > * {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 600px) {
  .ds-listing-page__listing-cards.cols-4 {
    gap: 24px;
  }
  .ds-listing-page__listing-cards.cols-4 > * {
    flex: 0 0 calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
}
.ds-listing-page__listing-cards--skeleton .card-wrapper {
  pointer-events: none;
}
.ds-listing-page__card-skeleton {
  height: 358px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(54, 54, 54, 0.4901960784);
  position: relative;
}
.ds-listing-page__card-skeleton.skeleton-light {
  background: rgba(255, 255, 255, 0.1019607843);
}
.ds-listing-page__card-skeleton.skeleton-light .ds-listing-page__card-skeleton-title,
.ds-listing-page__card-skeleton.skeleton-light .ds-listing-page__card-skeleton-text {
  background: #9c9c9a;
}
@media (max-width: 600px) {
  .ds-listing-page__card-skeleton {
    height: 388px;
  }
}
.ds-listing-page__card-skeleton-image {
  height: 68%;
  background: rgba(125, 125, 125, 0.7019607843);
}
.ds-listing-page__card-skeleton-content {
  padding: 16px;
}
.ds-listing-page__card-skeleton-title, .ds-listing-page__card-skeleton-text {
  height: 14px;
  border-radius: 4px;
  background: #616161;
  position: relative;
  overflow: hidden;
}
.ds-listing-page__card-skeleton-title::after, .ds-listing-page__card-skeleton-text::after {
  content: "";
  position: absolute;
  top: 0;
  right: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(-90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: listing-card-skeleton-shimmer 1.2s infinite;
}
.ds-listing-page__card-skeleton-title {
  width: 85%;
  margin-bottom: 10px;
}
.ds-listing-page__card-skeleton-text {
  width: 45%;
}

@keyframes listing-card-skeleton-shimmer {
  100% {
    right: 100%;
  }
}
.ds-listing-page__filters-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.ds-listing-page__filters-header {
  display: none;
}
.ds-listing-page__filters-header__title {
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  font-family: var(--tusker-5500-font-family);
  line-height: 40px;
  color: #18181b;
  text-transform: uppercase;
}
[dir=rtl] .ds-listing-page__filters-header__title {
  font-weight: 800;
}
.ds-listing-page__filters-header__close-button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ds-listing-page__filters-header__close-button:hover, .ds-listing-page__filters-header__close-button:focus {
  background-color: transparent;
  outline: none;
  border: none;
}
.ds-listing-page__filters-header__close-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.ds-listing-page__filters-header__close-button:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
  border-radius: 4px;
}
.ds-listing-page__filters-title-text {
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 28px;
  color: #18181b;
  text-transform: uppercase;
}
[dir=rtl] .ds-listing-page__filters-title-text {
  font-weight: 800;
}
.ds-listing-page__filters-clear-button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  line-height: 24px;
  color: #18181b;
  text-transform: uppercase;
  text-decoration: underline;
}
.ds-listing-page__filters-clear-button:hover, .ds-listing-page__filters-clear-button:focus {
  background-color: transparent;
  outline: none;
  border: none;
  color: #18181b;
  text-decoration: underline;
}
.ds-listing-page__filters-clear-button:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 3px;
  border-radius: 4px;
}
[dir=rtl] .ds-listing-page__filters-clear-button {
  font-weight: 600;
}
@media (max-width: 1024px) {
  .ds-listing-page__filters-clear-button {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .ds-listing-page__filters {
    position: fixed !important;
    top: unset !important;
    bottom: 0;
    right: 0;
    left: 0;
    height: calc(100vh - 80px);
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
    background-color: var(--secondary-color);
    z-index: 99;
    padding: 24px;
    overflow-y: auto;
  }
  .ds-listing-page__filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }
}

body.location-popup-open .ds-header {
  z-index: 0;
}

.ds-listing-page__filters-locations {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
  padding-bottom: 24px;
}
@media (max-width: 1024px) {
  .ds-listing-page__filters-locations {
    flex: 1;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.ds-listing-page__location-button {
  appearance: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  max-height: 64px;
  width: 100%;
  cursor: pointer;
  transition: none;
}
.ds-listing-page__location-button:hover {
  background-color: var(--secondary-color);
}
.ds-listing-page__location-button:focus {
  background-color: var(--secondary-color);
}
.ds-listing-page__location-button:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
  background-color: var(--secondary-color);
}
.ds-listing-page__location-button-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.ds-listing-page__location-button-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.ds-listing-page__location-button-content-title {
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  font-weight: 350;
  font-family: var(--montserrat-font-family);
  line-height: 20px;
  color: #18181b;
}
.ds-listing-page__location-button-content-value {
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  line-height: 24px;
  color: #18181b;
}
[dir=rtl] .ds-listing-page__location-button-content-value {
  font-weight: 600;
}
.ds-listing-page__location-popup {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
.ds-listing-page__location-popup.active {
  opacity: 1;
  visibility: visible;
}
.ds-listing-page__location-popup-body {
  background-color: #f4f4f5;
  border-radius: 12px;
  padding: 24px;
  width: 655px;
  height: 688px;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .ds-listing-page__location-popup-body {
    width: clamp(342px, 87%, 655px);
  }
}
.ds-listing-page__location-popup.active .ds-listing-page__location-popup-body {
  opacity: 1;
  visibility: visible;
}
.ds-listing-page__location-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.ds-listing-page__location-popup-header-title {
  font-family: var(--tusker-5500-font-family);
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 40px;
  color: #18181b;
  text-transform: uppercase;
}
[dir=rtl] .ds-listing-page__location-popup-header-title {
  font-weight: 600;
}
.ds-listing-page__location-popup-header-icon {
  background: transparent;
  border: none;
  padding: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
  cursor: pointer;
}
.ds-listing-page__location-popup-header-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ds-listing-page__location-popup-header-icon:hover {
  background-color: var(--secondary-color);
}
.ds-listing-page__location-popup-header-icon:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
  border-radius: 4px;
  background-color: var(--secondary-color);
}
.ds-listing-page__location-popup-search {
  margin-block: 16px;
  width: 100%;
}
.ds-listing-page__location-popup-search input {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: 8px;
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  line-height: 24px;
  color: #18181b;
}
.ds-listing-page__location-popup-search input::placeholder {
  color: #a1a1aa;
}
[dir=rtl] .ds-listing-page__location-popup-search input {
  font-weight: 600;
}
.ds-listing-page__location-popup-locations-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding-right: 0;
  padding-top: 16px;
  overflow-y: auto;
  flex: 1;
}
.ds-listing-page__location-popup-locations-list-item {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ds-listing-page__location-popup-locations-list-item:not(:first-child) {
  padding-top: 8px;
}
.ds-listing-page__location-popup-locations-list-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 8px;
}
.ds-listing-page__location-popup-locations-list-item-button {
  appearance: none;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: right;
  padding: 0;
  cursor: pointer;
  transition: none;
}
.ds-listing-page__location-popup-locations-list-item-button:hover {
  background-color: transparent;
}
.ds-listing-page__location-popup-locations-list-item-button:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
  border-radius: 4px;
  background-color: transparent;
}
.ds-listing-page__location-popup-locations-list-item-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.ds-listing-page__location-popup-locations-list-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ds-listing-page__location-popup-locations-list-item-title {
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  font-family: var(--tusker-5500-font-family);
  font-weight: 400;
  line-height: 24px;
  color: #18181b;
}
[dir=rtl] .ds-listing-page__location-popup-locations-list-item-title {
  font-weight: 600;
}
.ds-listing-page__location-popup-locations-list-item-country {
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  font-weight: 350;
  font-family: var(--montserrat-font-family);
  line-height: 20px;
  color: #71717a;
}

.ds-news-page__listing-cards {
  background-color: #09090B;
  padding: 32px 0;
}
.ds-news-page__listing-cards__wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}
.ds-news-page__listing-cards__wrapper > * {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
}
@media (max-width: 1440px) {
  .ds-news-page__listing-cards__wrapper {
    gap: 24px;
  }
  .ds-news-page__listing-cards__wrapper > * {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 1280px) {
  .ds-news-page__listing-cards__wrapper {
    gap: 24px;
  }
  .ds-news-page__listing-cards__wrapper > * {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 600px) {
  .ds-news-page__listing-cards__wrapper {
    gap: 32px;
  }
  .ds-news-page__listing-cards__wrapper > * {
    flex: 0 0 calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
}
.ds-news-page__listing-cards__skeleton-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: start;
}
.ds-news-page__listing-cards__skeleton-grid > * {
  flex: 0 0 calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
}
@media (max-width: 1440px) {
  .ds-news-page__listing-cards__skeleton-grid {
    gap: 24px;
  }
  .ds-news-page__listing-cards__skeleton-grid > * {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }
}
@media (max-width: 1280px) {
  .ds-news-page__listing-cards__skeleton-grid {
    gap: 24px;
  }
  .ds-news-page__listing-cards__skeleton-grid > * {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 600px) {
  .ds-news-page__listing-cards__skeleton-grid {
    gap: 32px;
  }
  .ds-news-page__listing-cards__skeleton-grid > * {
    flex: 0 0 calc((100% - 0px) / 1);
    max-width: calc((100% - 0px) / 1);
  }
}
.ds-news-page__listing-cards__skeleton-grid .card-wrapper {
  pointer-events: none;
}
.ds-news-page__listing-cards__skeleton-grid {
  /* `hidden` must win over `display: flex` from the grid mixin (equal specificity, later rule). */
}
.ds-news-page__listing-cards__skeleton-grid[hidden] {
  display: none !important;
}

.auth-page .auth-hero {
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .auth-page .auth-hero {
    padding: 96px 0;
    background-image: var(--background-image-sm);
  }
}
.auth-page .auth-hero .ds-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .auth-page .auth-hero .ds-container {
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
}
.auth-page .auth-hero__header {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.auth-page .auth-hero__title {
  font-size: calc(clamp(50px, 36.59px + 3.44vw, 96px) * var(--sfa-desktop-font-scale));
  font-weight: 800;
  color: var(--black-color);
  font-family: var(--tusker-6700-font-family);
  line-height: clamp(80px, 80px + 43 * (100vw - 768px) / 672, 123px);
  text-transform: uppercase;
}
.auth-page .auth-hero__subtitle {
  font-family: var(--montserrat-font-family);
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  color: var(--black-color);
}

.auth-page .auth-form {
  --border-color: rgba(0, 0, 0, 0.2);
  background-color: var(--white-color);
  padding: 24px;
  border-radius: 12px;
  position: relative;
  width: 100%;
  min-width: 462px;
  max-width: 462px;
  margin-right: auto;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 992px) {
  .auth-page .auth-form {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .auth-page .auth-form {
    padding: 16px;
    min-width: 100%;
  }
}
.auth-page .auth-form__error-message {
  font-size: calc(14px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  color: crimson;
  text-align: center;
  font-family: var(--tusker-6700-font-family);
  text-transform: capitalize;
}
.auth-page .auth-form__title {
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  color: var(--black-color);
  font-family: var(--tusker-6700-font-family);
  text-transform: uppercase;
}
.auth-page .auth-form__group-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-page .auth-form__group-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .auth-page .auth-form__group-row {
    flex-direction: column;
    gap: 24px;
  }
}
.auth-page .auth-form__separator {
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
}
.auth-page .auth-form__input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.auth-page .auth-form__radio-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.auth-page .auth-form__radio-label {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  width: 115px;
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  color: var(--black-color);
  text-align: center;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
}
.auth-page .auth-form__radio-label:has(.auth-form__radio-input:checked) {
  border-color: var(--primary-color);
  box-shadow: inset 0 0 3px var(--primary-color);
  font-weight: 500;
}
.auth-page .auth-form__radio-input {
  position: absolute;
  opacity: 0;
}
.auth-page .auth-form__checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid var(--primary-color);
  border-radius: 100%;
  cursor: pointer;
  appearance: none;
}
.auth-page .auth-form__checkbox:checked {
  box-shadow: inset 0 0 0 5px var(--primary-color);
}
.auth-page .auth-form__checkbox {
  transition: 0.3s ease-in-out;
}
.auth-page .auth-form input::placeholder {
  font-size: calc(14px * var(--sfa-desktop-font-scale)) !important;
}
.auth-page .auth-form__input, .auth-page .auth-form__select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  font-weight: 500;
  color: var(--black-color);
  font-family: var(--montserrat-font-family);
}
.auth-page .auth-form__input::placeholder, .auth-page .auth-form__select::placeholder {
  text-align: right;
}
.auth-page .auth-form__label {
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  font-weight: 500;
  color: var(--black-color);
  text-transform: capitalize;
  font-family: var(--montserrat-font-family);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.auth-page .auth-form__label > input[type=checkbox], .auth-page .auth-form__label > input[type=radio] {
  margin-left: 8px;
}
.auth-page .auth-form__label > a {
  text-decoration: none;
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 6px;
}
.auth-page .auth-form__select {
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 16px 16px;
  cursor: pointer;
}
.auth-page .auth-form__select > option {
  color: var(--black-color);
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  font-weight: 500;
  font-family: var(--montserrat-font-family);
}
.auth-page .auth-form__btn-primary, .auth-page .auth-form__btn-secondary, .auth-page .auth-form__forgot-password {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  font-family: var(--tusker-5500-font-family);
  text-transform: uppercase;
  color: var(--black-color);
  transition: all 0.3s ease;
}
.auth-page .auth-form__btn-primary {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  outline: none;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
}
.auth-page .auth-form__btn-primary:disabled {
  background-color: rgba(255, 90, 25, 0.5);
  cursor: not-allowed;
}
.auth-page .auth-form__btn-primary:hover:not(:disabled) {
  background-color: var(--white-color);
  color: var(--primary-color);
}
.auth-page .auth-form__forgot-password {
  text-decoration: underline;
  font-weight: 700;
}
.auth-page .auth-form__btn-secondary {
  width: 100%;
  text-align: center;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.auth-page .auth-form__btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
}
.auth-page .auth-form__brand-logo {
  position: absolute;
  top: 0;
  left: 0;
  --spin-tx: 50%;
  --spin-ty: -50%;
}
html[dir=rtl] .auth-page .auth-form__brand-logo {
  --spin-tx: -50%;
  --spin-ty: -50%;
}
@media screen and (max-width: 1450px) and (min-width: 992px) {
  .auth-page .auth-form__brand-logo {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .auth-page .auth-form__brand-logo {
    display: none;
  }
}

/* -----------------------------------------------------------
 * Auth form: inline errors, real-time hints, password rules,
 * password visibility toggle, and the post-register notice.
 * --------------------------------------------------------- */
.auth-page .auth-form__field-error {
  margin-top: 6px;
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  font-weight: 500;
  color: crimson;
  line-height: 1.4;
}

.auth-page .auth-form__field-hint {
  margin-top: 6px;
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  font-weight: 500;
  line-height: 1.4;
  color: var(--black-color);
}

.auth-page .auth-form__field-hint--success {
  color: #1f9d55;
}

.auth-page .auth-form__field-hint--success::before {
  content: "✓ ";
  font-weight: 700;
}

.auth-page .auth-form__field-hint--error {
  color: crimson;
}

.auth-page .auth-form__field-hint--error::before {
  content: "✕ ";
  font-weight: 700;
}

.auth-page .auth-form__input[aria-invalid=true],
.auth-page .auth-form__select[aria-invalid=true] {
  border-color: crimson;
  box-shadow: 0 0 0 1px rgba(220, 20, 60, 0.25);
}

.auth-page .auth-form__notice-message {
  margin: 0 0 12px;
  padding: 10px 14px;
  font-size: calc(14px * var(--sfa-desktop-font-scale));
  font-weight: 600;
  color: #115e1f;
  background-color: rgba(31, 157, 85, 0.12);
  border: 1px solid rgba(31, 157, 85, 0.35);
  border-radius: 8px;
  text-align: center;
  font-family: var(--montserrat-font-family);
}

.auth-page .auth-form__input-with-button {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}

.auth-page .auth-form__input-with-button > .auth-form__input {
  flex: 1;
}

.auth-page .auth-form__password-toggle {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  color: var(--black-color);
  opacity: 0.7;
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  line-height: 1;
  padding: 0;
}

.auth-page .auth-form__password-toggle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.auth-page .auth-form__password-toggle span img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

.auth-page .auth-form__password-toggle:hover,
.auth-page .auth-form__password-toggle:focus-visible {
  opacity: 1;
  outline: 2px solid rgba(0, 0, 0, 0.15);
}

.auth-page .auth-form__password-rules {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  font-size: calc(12px * var(--sfa-desktop-font-scale));
  font-family: var(--montserrat-font-family);
}

@media screen and (max-width: 540px) {
  .auth-page .auth-form__password-rules {
    grid-template-columns: 1fr;
  }
}
.auth-page .auth-form__password-rules > li {
  position: relative;
  padding-right: 18px;
  color: rgba(0, 0, 0, 0.55);
}

.auth-page .auth-form__password-rules > li::before {
  content: "•";
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 700;
}

.auth-page .auth-form__password-rules > li.is-met {
  color: #1f9d55;
}

.auth-page .auth-form__password-rules > li.is-met::before {
  content: "✓";
}

.auth-page .auth-form__password-rules > li.is-unmet {
  color: rgba(0, 0, 0, 0.55);
}

/* -----------------------------------------------------------
 * OTP / MFA verify page.
 * --------------------------------------------------------- */
.auth-page--otp .auth-form__title {
  text-align: center;
}

.auth-page .auth-form__desc {
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--montserrat-font-family);
}

.auth-page .auth-form__desc > strong {
  color: var(--black-color);
}

.auth-page .auth-form__otp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: 100%;
}

.auth-page .auth-form__otp-cell {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-align: center;
  font-size: calc(28px * var(--sfa-desktop-font-scale));
  font-weight: 700;
  color: var(--black-color);
  font-family: var(--montserrat-font-family);
  background-color: #fff;
  transition: border-color 0.15s ease;
}

.auth-page .auth-form__otp-cell:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(255, 90, 25, 0.25);
}

.auth-page .auth-form__otp-cell:disabled {
  background-color: #f4f4f4;
  cursor: not-allowed;
}

@media screen and (max-width: 540px) {
  .auth-page .auth-form__otp-grid {
    gap: 6px;
  }
  .auth-page .auth-form__otp-cell {
    font-size: 22px;
  }
}
.auth-page .auth-form__btn-secondary[disabled],
.auth-page .auth-form__btn-secondary:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.auth-page .auth-form__btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 4px;
  padding: 6px 12px;
  background: transparent;
  border: 0;
  color: var(--black-color);
  text-decoration: underline;
  font-size: calc(14px * var(--sfa-desktop-font-scale));
  font-family: var(--montserrat-font-family);
}

.auth-page .auth-form__btn-tertiary:hover {
  color: var(--primary-color);
}

.auth-page .auth-form__fieldset--otp {
  border: none;
  margin: 0 0 16px;
  padding: 0;
  min-width: 0;
}

.auth-page .auth-form__fieldset--otp .auth-form__legend {
  margin: 0 0 8px;
  padding: 0;
  float: none;
  width: 100%;
}

/* Shortcode: [sfa_user_menu] guest links (standalone login + register pages). */
.sfa-user-menu__login {
  padding: 16px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-family: var(--tusker-7600-font-family);
  font-weight: 400;
  font-size: calc(20px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  text-transform: uppercase;
  border-radius: 40px;
}

[dir=rtl] .sfa-user-menu__login {
  font-weight: 800;
}

.sfa-user-menu__login:hover {
  color: var(--white-color);
}

/* Logged-in user menu: button trigger + flyout submenu. */
.sfa-user-menu:not(.sfa-user-menu--guest) {
  position: relative;
  display: inline-block;
}

.sfa-user-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  max-width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  color: var(--black-color);
  font-family: var(--montserrat-font-family);
  cursor: pointer;
}

.sfa-user-menu__trigger:hover, .sfa-user-menu__trigger:focus {
  background-color: transparent;
  color: var(--black-color);
  outline: none;
}

.sfa-user-menu__trigger img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.sfa-user-menu__trigger:focus-visible {
  outline: 2px solid var(--primary-color, #ff5a19);
  outline-offset: 2px;
  border-radius: 4px;
}

.sfa-user-menu__greeting {
  font-weight: 600;
}

.sfa-user-menu__submenu {
  position: absolute;
  inset-inline-end: 0;
  top: 100%;
  z-index: 999;
  min-width: 154px;
  width: max-content;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background-color: var(--secondary-color);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
}

.sfa-user-menu__submenu[hidden] {
  display: none !important;
}

.sfa-user-menu__item {
  margin: 0;
}

.sfa-user-menu__anchor {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-family: var(--tusker-5500-font-family);
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  color: var(--black-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

[dir=rtl] .sfa-user-menu__anchor {
  font-weight: 800;
}

.sfa-user-menu__anchor:hover,
.sfa-user-menu__anchor:focus-visible {
  background-color: rgba(0, 0, 0, 0.1019607843);
  color: var(--black-color);
  outline: none;
}

.sfa-user-menu--mobile {
  width: 100%;
}

.sfa-user-menu__mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.sfa-user-menu__profile {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sfa-user-menu__profile .sfa-user-menu__avatar {
  flex-shrink: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.sfa-user-menu__profile .sfa-user-menu__greeting {
  font-family: var(--montserrat-font-family);
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 600;
  color: var(--black-color);
}

.sfa-user-menu__logout {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--primary-color);
  border-radius: 9999px;
  padding: 10px 30px;
  font-family: var(--tusker-5500-font-family);
  font-size: calc(15px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  color: var(--black-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

[dir=rtl] .sfa-user-menu__logout {
  font-weight: 800;
}

.sfa-user-menu__logout:focus-visible {
  background-color: rgba(0, 0, 0, 0.1019607843);
  color: var(--black-color);
  outline: none;
}

.sfa-user-menu__logout-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sfa-user-menu__logout-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.page-template-page-register .auth-hero__header {
  align-self: self-start;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .page-template-page-register .auth-hero__header {
    margin-top: 0;
  }
}

.page-template-page-domes .domes_hero_section {
  background: var(--bg-pattern) no-repeat;
  background-position: bottom;
  background-size: contain;
  padding-top: 120px;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .page-template-page-domes .domes_hero_section {
    padding-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_hero_section {
    background: var(--bg-pattern-sm) no-repeat;
    background-position-x: center;
    background-position-y: bottom;
    background-size: contain;
    padding-top: 24px;
  }
}
.page-template-page-domes .domes_hero_section .ds-container {
  position: relative;
}
.page-template-page-domes .domes_hero_section__brand-logo {
  position: absolute;
  bottom: 200px;
  left: -45px;
}
@media screen and (max-width: 1400px) {
  .page-template-page-domes .domes_hero_section__brand-logo {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_hero_section__brand-logo {
    display: none;
  }
}
.page-template-page-domes .domes_hero_section__header {
  position: relative;
  z-index: 2;
}
.page-template-page-domes .domes_hero_section__title {
  font-size: calc(66px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  text-align: center;
  line-height: 104px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_hero_section__title {
    font-size: 35px;
    line-height: 48px;
  }
}
.page-template-page-domes .domes_hero_section__subtitle {
  font-size: calc(23px * var(--sfa-desktop-font-scale));
  line-height: 150%;
  font-weight: 400;
  max-width: 805px;
  font-family: var(--montserrat-font-family);
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_hero_section__subtitle {
    font-size: 16px;
  }
}
.page-template-page-domes .domes_hero_section__media .hero-media__text-image {
  top: clamp(-125px, -125px + (1728px - 100vw) * 0.09375, 0px);
}

.page-template-page-domes .domes_sports_section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--black-color);
  background-image: var(--bg-pattern-1), var(--bg-pattern-2), var(--bg-pattern-3);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: bottom left, top right, center left;
  background-size: auto, auto, cover;
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_sports_section {
    padding-top: 94px;
    padding-bottom: 94px;
    background-position: bottom left, top right, center left;
    background-size: 0, 15% 32%, 0;
  }
}
.page-template-page-domes .domes_sports_section .ds-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(48px, 48px + 72 * (100vw - 390px) / 974, 120px);
}
.page-template-page-domes .domes_sports_section__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: clamp(16px, 16px + 8 * (100vw - 390px) / 974, 24px);
}
.page-template-page-domes .domes_sports_section__title {
  font-size: clamp(50px, 50px + 46 * (100vw - 390px) / 974, 96px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  text-align: center;
  line-height: 104px;
  text-transform: uppercase;
  color: var(--white-color);
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_sports_section__title {
    line-height: 62px;
  }
}
.page-template-page-domes .domes_sports_section__subtitle {
  font-size: clamp(16px, 16px + 7 * (100vw - 390px) / 974, 23px);
  font-weight: 500;
  font-family: var(--montserrat-font-family);
  text-align: center;
  line-height: 150%;
  color: var(--white-color);
}
.page-template-page-domes .domes_sports_section__button {
  font-size: clamp(17px, 17px + 3 * (100vw - 390px) / 974, 20px);
  font-weight: 800;
  font-family: var(--tusker-7600-font-family);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 40px;
  background-color: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease;
}
.page-template-page-domes .domes_sports_section__button:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_sports_section__button {
    font-family: var(--TuskerGrotesk5500-font-family);
  }
}
.page-template-page-domes .domes_sports_section__facilities {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  row-gap: 48px;
  column-gap: clamp(20px, 20px + 27 * (100vw - 390px) / 974, 47px);
}
.page-template-page-domes .domes_sports_section__facility {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.page-template-page-domes .domes_sports_section__facility__logo {
  width: clamp(93px, 93px + 72 * (100vw - 390px) / 974, 165px);
  border-radius: 100%;
  background: rgb(24, 24, 27);
  aspect-ratio: 1/1;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-domes .domes_sports_section__facility__logo img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.page-template-page-domes .domes_sports_section__facility__name {
  font-size: clamp(15px, 15px + 3 * (100vw - 390px) / 974, 18px);
  font-weight: 800;
  font-family: var(--tusker-5500-font-family);
  text-align: center;
  line-height: 150%;
  color: var(--white-color);
  text-transform: uppercase;
}
.page-template-page-domes .domes_sports_section__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(424px, 1fr));
  gap: 24px;
  justify-content: start;
  justify-items: start;
  align-content: start;
  align-items: start;
  list-style: none;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .page-template-page-domes .domes_sports_section__cards {
    grid-template-columns: repeat(2, minmax(424px, 1fr));
  }
}
@media screen and (max-width: 992px) {
  .page-template-page-domes .domes_sports_section__cards {
    grid-template-columns: 1fr;
  }
}
.page-template-page-domes .domes_sports_section__card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-template-page-domes .domes_sports_section__card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-template-page-domes .domes_sports_section__card__content .ds-info_card {
  gap: 48px;
}
@media screen and (max-width: 992px) {
  .page-template-page-domes .domes_sports_section__card {
    max-width: 424px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .page-template-page-domes .domes_sports_section__card:nth-child(2) {
    margin-top: 80px;
  }
  .page-template-page-domes .domes_sports_section__card:nth-child(1) {
    margin-top: 180px;
  }
}

.page-template-page-domes .domes_gallery_section {
  position: relative;
  width: 100%;
  height: 100dvh;
  display: flex;
  isolation: isolate;
}
.page-template-page-domes .domes_gallery_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}
.page-template-page-domes .domes_gallery_section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-pattern);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .page-template-page-domes .domes_gallery_section::after {
    background-image: var(--bg-pattern-sm);
    background-position: bottom center;
    background-size: contain;
  }
}
.page-template-page-domes .domes_gallery_section__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex: 1 1 auto;
}
.page-template-page-domes .domes_gallery_section__image:focus-visible {
  outline: 3px solid var(--white-color);
  outline-offset: -3px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.35);
}
.page-template-page-domes .domes_gallery_section__slider {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
}
.page-template-page-domes .domes_gallery_section__slider__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-template-page-domes .domes_gallery_section__slider__container {
  display: flex;
  width: 100%;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  touch-action: pan-y pinch-zoom;
}
.page-template-page-domes .domes_gallery_section__slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.page-template-page-domes .domes_gallery_section__slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  position: absolute;
  bottom: 18%;
  inset-inline: 0;
  z-index: 3;
}
@media (max-width: 768px) {
  .page-template-page-domes .domes_gallery_section__slider__pagination {
    display: none;
  }
}
.page-template-page-domes .domes_gallery_section__slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.page-template-page-domes .domes_gallery_section__slider__dot:hover {
  transform: scale(1.05);
}
.page-template-page-domes .domes_gallery_section__slider__dot.is-active {
  background: #fff;
}
.page-template-page-domes .domes_gallery_section__slider__dot:focus-visible {
  outline: 2px solid var(--white-color);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.35);
}
.page-template-page-domes .domes_gallery_section__slider__dot:focus-visible:not(.is-active) {
  background: rgba(255, 255, 255, 0.8);
}
@media (hover: hover) {
  .page-template-page-domes .domes_gallery_section__slider__slide .domes_gallery_section__image {
    transition: transform 0.4s ease;
  }
  .page-template-page-domes .domes_gallery_section__slider__slide:hover .domes_gallery_section__image {
    transform: scale(1.04);
  }
}

.page-template-page-domes .domes_location_section {
  --domes-location-card-height: 209px;
  --domes-location-slide-width-coming-soon: 161px;
  --domes-location-slide-min-width-active: 220px;
  padding-block: clamp(94px, 94px + 26 * (100vw - 390px) / 974, 120px);
  background-color: var(--black-color);
}
.page-template-page-domes .domes_location_section .ds-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_location_section .ds-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-template-page-domes .domes_location_section__header {
  display: flex;
  gap: 16px;
  max-width: clamp(342px, 342px + 258 * (100vw - 390px) / 974, 600px);
  min-width: 500px;
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_location_section__header {
    min-width: unset;
  }
}
.page-template-page-domes .domes_location_section__title {
  font-family: var(--tusker-6700-font-family);
  color: var(--white-color);
  font-size: clamp(50px, 50px + 46 * (100vw - 390px) / 974, 96px);
  font-weight: 800;
  line-height: clamp(62px, 62px + 42 * (100vw - 390px) / 974, 104px);
  text-transform: uppercase;
}
.page-template-page-domes .domes_location_section__brand-logo {
  position: absolute;
  top: 0;
  width: clamp(82px, 82px + 62 * (100vw - 390px) / 974, 144px) !important;
  height: clamp(82px, 82px + 62 * (100vw - 390px) / 974, 144px) !important;
  --spin-ty: -50%;
  left: clamp(172px, 172px + 110 * (100vw - 390px) / 974, 282px);
  right: unset;
}
html[dir=rtl] .page-template-page-domes .domes_location_section__brand-logo {
  left: unset;
  right: clamp(200px, 200px + 93 * (100vw - 390px) / 974, 293px);
}
.page-template-page-domes .domes_location_section__brand-logo {
}
.page-template-page-domes .domes_location_section__slider {
  position: relative;
  max-width: 653px;
  width: 100%;
}
.page-template-page-domes .domes_location_section__slider__viewport {
  overflow: hidden;
  max-width: 617px;
  width: 100%;
  margin-inline: auto;
}
.page-template-page-domes .domes_location_section__slider__container {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  touch-action: pan-y pinch-zoom;
}
.page-template-page-domes .domes_location_section__slider__slide {
  display: flex;
  flex-direction: column;
  height: var(--domes-location-card-height);
}
.page-template-page-domes .domes_location_section__slider__slide.domes_location_section__location--coming-soon {
  flex: 0 0 var(--domes-location-slide-width-coming-soon);
  width: var(--domes-location-slide-width-coming-soon);
  min-width: var(--domes-location-slide-width-coming-soon);
}
.page-template-page-domes .domes_location_section__slider__slide.domes_location_section__location--active {
  flex: 1 1 var(--domes-location-slide-min-width-active);
  min-width: var(--domes-location-slide-min-width-active);
}
.page-template-page-domes .domes_location_section__location-card {
  position: relative;
  display: block;
  width: 100%;
  height: var(--domes-location-card-height);
  border-radius: 12px;
  overflow: hidden;
}
.page-template-page-domes .domes_location_section__location-card--coming-soon .domes_location_section__location-image::after {
  background-color: rgba(0, 0, 0, 0.6);
}
.page-template-page-domes .domes_location_section__location-image-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.page-template-page-domes .domes_location_section__location-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.page-template-page-domes .domes_location_section__location-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.page-template-page-domes .domes_location_section__location-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.page-template-page-domes .domes_location_section__location-content {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
}
.page-template-page-domes .domes_location_section__location-title {
  font-family: var(--tusker-5600-font-family);
  font-size: calc(16px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  line-height: 17px;
  color: var(--white-color);
  margin: 0;
  text-transform: uppercase;
}
.page-template-page-domes .domes_location_section__location-description {
  font-family: var(--montserrat-font-family);
  font-size: calc(10px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 20px;
  color: rgb(228, 228, 231);
  margin: 0;
}
.page-template-page-domes .domes_location_section__location-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  pointer-events: auto;
}
.page-template-page-domes .domes_location_section__location-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--montserrat-font-family);
  font-size: calc(10px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 20px;
  color: rgb(228, 228, 231);
  text-decoration: none;
}
.page-template-page-domes .domes_location_section__location-contact-link:hover, .page-template-page-domes .domes_location_section__location-contact-link:focus-visible {
  color: var(--white-color);
}
.page-template-page-domes .domes_location_section__location-contact-icon {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-template-page-domes .domes_faq_section {
  background-image: var(--bg-pattern);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: clamp(32px, 32px + 88 * (100vw - 390px) / 974, 120px);
  padding-top: 32px;
  background-color: var(--black-color);
}
.page-template-page-domes .domes_faq_section__title {
  color: var(--white-color);
  font-size: calc(36px * var(--sfa-desktop-font-scale));
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--tusker-6700-font-family);
  margin-bottom: 24px;
}
.page-template-page-domes .domes_faq_section .domes_download_app_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: clamp(32px, 32px + 88 * (100vw - 390px) / 974, 120px);
}
@media screen and (max-width: 768px) {
  .page-template-page-domes .domes_faq_section .domes_download_app_section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.page-template-page-domes .domes_faq_section .domes_download_app_section__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-template-page-domes .domes_faq_section .domes_download_app_section__title {
  color: var(--white-color);
  font-size: calc(36px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--tusker-5700-font-family);
}
html[dir=rtl] .page-template-page-domes .domes_faq_section .domes_download_app_section__title {
  font-weight: 800;
}
.page-template-page-domes .domes_faq_section .domes_download_app_section__description {
  color: var(--white-color);
  font-size: calc(18px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  font-family: var(--montserrat-font-family);
  line-height: 150%;
}
.page-template-page-domes .domes_faq_section .domes_download_app_section__stores_links {
  display: grid;
  gap: 24px;
  max-width: 707px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 380px) {
  .page-template-page-domes .domes_faq_section .domes_download_app_section__stores_links {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-template-page-domes .domes_faq_section .domes_download_app_section__stores_links__item {
  width: 100%;
}
.page-template-page-domes .domes_faq_section .domes_download_app_section__stores_links__item a {
  display: block;
  width: 100%;
  text-decoration: none;
}
.page-template-page-domes .domes_faq_section .domes_download_app_section__stores_links__item a img {
  width: 100%;
  object-fit: contain;
}

.nested_accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
}
.nested_accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgb(24, 24, 27);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 12px;
  min-height: 72px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.nested_accordion__item__ln, .nested_accordion__item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  aspect-ratio: 1/1;
}
.nested_accordion__item__ln {
  color: var(--white-color);
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 700;
  font-family: var(--tusker-5500-font-family);
  line-height: 24px;
}
.nested_accordion__item__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-height: 100%;
  padding-block: 24px;
  transition: all 0.3s ease-in-out;
}
.nested_accordion__item__icon {
  position: relative;
}
.nested_accordion__item__icon::before, .nested_accordion__item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform-origin: center;
  width: 18px;
  height: 2px;
  background-color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.nested_accordion__item__icon::before {
  transform: translate(50%, -50%);
}
.nested_accordion__item__icon::after {
  transform: translate(50%, -50%) rotate(-90deg);
}
.nested_accordion__item.is-open {
  background-color: var(--black-color);
}
.nested_accordion__item.is-open .nested_accordion__item__icon::after {
  transform: translate(50%, -50%) rotate(0deg);
}
.nested_accordion__item.is-open .nested_accordion__item__content {
  gap: 8px;
}
.nested_accordion__item.is-open .nested_accordion__item__description {
  height: 100%;
  visibility: visible;
}
.nested_accordion__item__title {
  color: var(--white-color);
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  font-family: var(--tusker-5500-font-family);
  line-height: 24px;
  text-transform: uppercase;
}
html[dir=rtl] .nested_accordion__item__title {
  font-weight: 800;
}
.nested_accordion__item__description {
  color: rgb(161, 161, 170);
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  font-family: var(--montserrat-font-family);
  line-height: 24px;
  height: 0;
  max-height: fit-content;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.page-template-page-groups-page .groups_hero_section {
  background: var(--bg-pattern) no-repeat;
  background-position: bottom;
  background-size: 100% 87%;
  padding-top: 130px;
  overflow: hidden;
  min-height: 1135px;
}
@media screen and (max-width: 768px) {
  .page-template-page-groups-page .groups_hero_section {
    padding-top: 24px;
    background: var(--bg-pattern-sm) no-repeat;
    background-position: bottom;
    background-size: 100%;
    min-height: unset;
  }
}
.page-template-page-groups-page .groups_hero_section .ds-container {
  position: relative;
}
.page-template-page-groups-page .groups_hero_section__header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-template-page-groups-page .groups_hero_section__title {
  font-size: clamp(35px, 35px + 31 * (100vw - 390px) / 910, 66px);
  line-height: clamp(48px, 48px + 56 * (100vw - 390px) / 910, 104px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--black-color);
}
.page-template-page-groups-page .groups_hero_section__subtitle {
  font-family: var(--montserrat-font-family);
  font-size: clamp(16px, 16px + 7 * (100vw - 390px) / 910, 23px);
  line-height: clamp(24px, 24px + 10 * (100vw - 390px) / 910, 34px);
  font-weight: 500;
  color: var(--black-color);
  max-width: 805px;
  margin-top: 16px;
}
.page-template-page-groups-page .groups_hero_section__brand-logo {
  display: none;
  position: absolute;
  bottom: 28.1124497992%;
  left: 48px;
}
@media screen and (max-width: 768px) {
  .page-template-page-groups-page .groups_hero_section__brand-logo {
    display: block;
    width: calc(var(--mobile-width) * 1.5);
    height: calc(var(--mobile-height) * 1.5);
  }
}
@media screen and (max-width: 400px) {
  .page-template-page-groups-page .groups_hero_section__brand-logo {
    width: var(--mobile-width);
    height: var(--mobile-height);
  }
}
.page-template-page-groups-page .groups_hero_section__header__brand-logo {
  position: absolute;
  top: 0;
  --spin-ty: -50%;
  left: 88px;
}
@media screen and (max-width: 1100px) {
  .page-template-page-groups-page .groups_hero_section__header__brand-logo {
    left: 0;
  }
}
@media screen and (max-width: 992px) {
  .page-template-page-groups-page .groups_hero_section__header__brand-logo {
    --spin-ty: -100%;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-groups-page .groups_hero_section__header__brand-logo {
    display: none;
  }
}

.page-template-page-groups-page .groups_advantages_section {
  background-color: var(--primary-color);
  padding-block: clamp(94px, 94px + 26 * (100vw - 390px) / 910, 120px);
}
.page-template-page-groups-page .groups_advantages_section__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: clamp(48px, 48px + 72 * (100vw - 390px) / 910, 120px);
}
.page-template-page-groups-page .groups_advantages_section__title {
  font-size: clamp(50px, 50px + 35 * (100vw - 390px) / 910, 85px);
  line-height: clamp(62px, 62px + 42 * (100vw - 390px) / 910, 104px);
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white-color);
}
.page-template-page-groups-page .groups_advantages_section__cards .ds-card-slider__card .ds-info_card:has(.ds-info_card__footer a[download]) {
  color: white;
  border: solid 1px white;
  background-color: var(--primary-color);
}
.page-template-page-groups-page .groups_advantages_section__cards .ds-card-slider__card .ds-info_card:has(.ds-info_card__footer a[download]) .ds-info_card__content {
  color: white;
}
.page-template-page-groups-page .groups_advantages_section__cards .ds-card-slider__card .ds-info_card:has(.ds-info_card__footer a[download]) .ds-info_card__content .ds-info_card__content__title {
  color: white;
}
.page-template-page-groups-page .groups_advantages_section__cards .ds-card-slider__card .ds-info_card:has(.ds-info_card__footer a[download]) .ds-info_card__content .ds-info_card__content__text {
  color: white;
}
.page-template-page-groups-page .groups_advantages_section__cards .ds-card-slider__card .ds-info_card:has(.ds-info_card__footer a[download]) .ds-info_card__footer a[download] {
  color: white;
  background-color: var(--primary-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-template-page-groups-page .groups_advantages_section__cards .ds-card-slider__card .ds-info_card:has(.ds-info_card__footer a[download]) .ds-info_card__footer a[download]:hover {
  color: var(--primary-color);
  background-color: white;
}

.page-template-page-groups-page .groups_gif_section {
  height: 100dvh;
  overflow: hidden;
}
.page-template-page-groups-page .groups_gif_section__media {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.page-template-page-groups-page .groups_gif_section__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.page-template-page-groups-page .groups_gif_section__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: unset;
  object-position: center;
}

.page-template-page-groups-page .groups_popular_groups_section {
  background-color: var(--black-color);
  color: var(--white-color);
  padding-block: clamp(32px, 32px + 88 * (100vw - 390px) / 910, 120px);
}
.page-template-page-groups-page .groups_popular_groups_section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(24px, 24px + 8 * (100vw - 390px) / 910, 32px);
}
.page-template-page-groups-page .groups_popular_groups_section__title {
  margin: 0;
  font-size: clamp(20px, 20px + 6 * (100vw - 390px) / 910, 26px);
  line-height: 40px;
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  text-transform: uppercase;
  color: var(--white-color);
}
.page-template-page-groups-page .groups_popular_groups_section__view-all {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  font-family: var(--tusker-5500-font-family);
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--white-color);
  white-space: nowrap;
}
.page-template-page-groups-page .groups_popular_groups_section__view-all:hover, .page-template-page-groups-page .groups_popular_groups_section__view-all:focus-visible {
  text-decoration: underline;
  opacity: 0.85;
}
.page-template-page-groups-page .groups_popular_groups_section__view-all:focus-visible {
  outline: 2px solid var(--white-color);
  outline-offset: 2px;
}
.page-template-page-groups-page .groups_popular_groups_section__slider {
  width: 100%;
}
.page-template-page-groups-page .groups_popular_groups_section__viewport {
  width: 100%;
  outline: none;
}
.page-template-page-groups-page .groups_popular_groups_section__viewport:focus-visible {
  outline: 2px solid var(--white-color);
  outline-offset: 4px;
}
.page-template-page-groups-page .groups_popular_groups_section__viewport.is-embla-active {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}
.page-template-page-groups-page .groups_popular_groups_section__viewport.is-embla-active.is-grabbing {
  cursor: grabbing;
}
.page-template-page-groups-page .groups_popular_groups_section__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .page-template-page-groups-page .groups_popular_groups_section__track {
    display: flex;
    gap: 16px;
  }
}
.page-template-page-groups-page .groups_popular_groups_section__slide {
  min-width: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .page-template-page-groups-page .groups_popular_groups_section__slide {
    flex: 0 0 314px;
    width: 314px;
    max-width: 314px;
  }
}
@media screen and (max-width: 390px) {
  .page-template-page-groups-page .groups_popular_groups_section__slide {
    flex-basis: min(314px, 100vw - 48px);
    width: min(314px, 100vw - 48px);
    max-width: min(314px, 100vw - 48px);
  }
}
.page-template-page-groups-page .groups_popular_groups_section__slider.is-embla-active .page-template-page-groups-page .groups_popular_groups_section__track {
  display: flex;
}
.page-template-page-groups-page .groups_popular_groups_section__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .page-template-page-groups-page .groups_popular_groups_section__empty {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .page-template-page-groups-page .groups_popular_groups_section__empty-message .ds-empty_state--spaced {
    padding-top: 0;
    margin-inline: 0;
    max-width: none;
  }
}
.page-template-page-groups-page .groups_popular_groups_section__empty-actions {
  margin: 0;
  flex-shrink: 0;
}
.page-template-page-groups-page .groups_popular_groups_section__refresh {
  background-color: var(--black-color);
  border: 1px solid var(--white-color);
  border-radius: 8px;
  color: var(--white-color);
  cursor: pointer;
  font-family: var(--tusker-5500-font-family);
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 24px;
  padding: 12px 24px;
  text-transform: uppercase;
}
.page-template-page-groups-page .groups_popular_groups_section__refresh:hover, .page-template-page-groups-page .groups_popular_groups_section__refresh:focus-visible {
  opacity: 0.85;
}
.page-template-page-groups-page .groups_popular_groups_section__refresh:focus-visible {
  outline: 2px solid var(--white-color);
  outline-offset: 2px;
}

.sfa-single .section-separator {
  position: relative;
  padding: 32px 0;
}
.sfa-single .section-separator::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
}
.sfa-single .section-separator.section-separator__about {
  padding: 16px 0;
}
@media (max-width: 980px) {
  .sfa-single .section-separator {
    padding: 16px 0;
  }
  .sfa-single .section-separator.section-separator__layout {
    display: none;
  }
}
.sfa-single .section-title {
  font-size: calc(30px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  font-family: var(--tusker-5500-font-family);
  line-height: 44px;
  color: var(--black-color);
  margin-bottom: 24px;
}
[dir=rtl] .sfa-single .section-title {
  font-weight: 600;
}
@media (max-width: 980px) {
  .sfa-single .section-title {
    margin-bottom: 16px;
  }
}
.sfa-single-section__content {
  display: flex;
  gap: 24px;
  padding: 32px 0;
}
.sfa-single-section__content .content-left {
  max-width: 1065px;
  flex: 1;
}
.sfa-single-section__content .content-right {
  width: 447px;
}
@media (max-width: 980px) {
  .sfa-single-section__content .content-right {
    padding-top: 24px;
    width: 100%;
  }
}
@media (max-width: 980px) {
  .sfa-single-section__content {
    flex-direction: column;
    padding: 24px 0 32px 0;
    gap: 0;
  }
  .sfa-single-section__content .content-left {
    max-width: 100%;
  }
  .sfa-single-section__content .content-right {
    max-width: 100%;
    min-width: 100%;
  }
}

.sfa-single-section__hero {
  padding: 32px 0;
}
.sfa-single-section__hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  overflow: visible;
  margin-bottom: 24px;
}
.sfa-single-section__hero-title {
  font-size: calc(40px * var(--sfa-desktop-font-scale));
  font-weight: 600;
  font-family: var(--tusker-6700-font-family);
  line-height: 145%;
  color: var(--black-color);
}
.sfa-single-section__hero-media {
  width: 100%;
  aspect-ratio: 1634/589;
  overflow: hidden;
  border-radius: 12px;
}
.sfa-single-section__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 980px) {
  .sfa-single-section__hero-media {
    aspect-ratio: 342/226;
  }
}
@media (max-width: 768px) {
  .sfa-single-section__hero-header {
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .sfa-single-section__hero-title {
    font-size: 24px;
  }
}

.sfa-single-section__about {
  margin-bottom: 24px;
}
.sfa-single-section__about-description {
  font-family: var(--montserrat-font-family);
}

.sfa-single-section__leaders {
  padding-top: 24px;
}
@media (max-width: 980px) {
  .sfa-single-section__leaders {
    padding-bottom: 32px;
  }
}
.sfa-single-section__leaders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
.sfa-single-section__leaders-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.sfa-single-section__leaders-item .leader-item__image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}
.sfa-single-section__leaders-item .leader-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sfa-single-section__leaders-item .leader-item__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sfa-single-section__leaders-item .leader-item__content-name {
  font-family: var(--tusker-6500-font-family);
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  line-height: 24px;
  color: var(--black-color);
}
[dir=rtl] .sfa-single-section__leaders-item .leader-item__content-name {
  font-weight: 600;
}
.sfa-single-section__leaders-item .leader-item__content-role {
  font-family: var(--montserrat-font-family);
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  font-weight: 350;
  color: #71717A;
}

.sfa-single-section__info {
  position: relative;
}
.sfa-single-section__info .screen-reader-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.sfa-single-section__info {
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
.sfa-single-section__info-item {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sfa-single-section__info-item:not(.button-container) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.sfa-single-section__info-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1019607843);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sfa-single-section__info-item-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.sfa-single-section__info-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.sfa-single-section__info-item-title {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  font-family: var(--tusker-6500-font-family);
  line-height: 24px;
  color: #18181b;
}
[dir=rtl] .sfa-single-section__info-item-title {
  font-weight: 600;
}
.sfa-single-section__info-item-text {
  font-size: calc(13px * var(--sfa-desktop-font-scale));
  font-weight: 350;
  font-family: var(--montserrat-font-family);
  line-height: 20px;
  color: #71717a;
}
.sfa-single-section__info-item-button {
  width: 100%;
  padding: 14px;
  border-radius: 9999px;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  font-family: var(--tusker-7600-font-family);
  line-height: 24px;
}
.sfa-single-section__info-item-button:hover, .sfa-single-section__info-item-button:focus, .sfa-single-section__info-item-button:active {
  background-color: var(--primary-color);
}
.sfa-single-section__info-item-button:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
}
.sfa-single-section__info-item-button:focus:not(:focus-visible) {
  outline: none;
}
.sfa-single-section__info-item-button[disabled] {
  background-color: rgba(255, 90, 25, 0.3803921569);
  color: #fff;
  cursor: not-allowed;
}
[dir=rtl] .sfa-single-section__info-item-button {
  font-weight: 600;
}

.sfa-single-section__similar-groups {
  padding: 48px 0 51px 0;
}
@media (max-width: 980px) {
  .sfa-single-section__similar-groups {
    padding: 24px 0 32px 0;
  }
}
.sfa-single-section__similar-groups-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sfa-single-section__similar-groups-header .section-title {
  font-size: calc(26px * var(--sfa-desktop-font-scale));
  line-height: 40px;
}
.sfa-single-section__similar-groups-header .view-all-link {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  line-height: 24px;
  font-weight: 400;
  font-family: var(--tusker-5500-font-family);
  text-decoration: underline;
  text-transform: uppercase;
  color: #18181B;
}
.sfa-single-section__similar-groups-header .view-all-link:hover, .sfa-single-section__similar-groups-header .view-all-link:focus-visible {
  text-decoration: underline;
}
.sfa-single-section__similar-groups-header .view-all-link:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
}
.sfa-single-section__similar-groups-slider {
  width: 100%;
}
.sfa-single-section__similar-groups-viewport {
  overflow: hidden;
  width: 100%;
}
.sfa-single-section__similar-groups-track {
  display: flex;
  gap: 16px;
}
.sfa-single-section__similar-groups-slide {
  flex: 0 0 314px;
  width: 314px;
  max-width: 314px;
  min-width: 0;
}

body.single.single-post {
  background-color: var(--secondary-color) !important;
}

.sfa_single_news_page {
  padding-top: 32px;
}
.sfa_single_news_page-title {
  font-size: calc(40px * var(--sfa-desktop-font-scale));
  font-weight: 400;
  font-family: var(--tusker-6700-font-family);
  line-height: 145%;
  margin-bottom: 10px;
  color: var(--black-color);
}
[dir=rtl] .sfa_single_news_page-title {
  font-weight: 800;
}
@media (max-width: 980px) {
  .sfa_single_news_page-title {
    font-size: 28px;
  }
}
.sfa_single_news_page-date {
  font-size: calc(17px * var(--sfa-desktop-font-scale));
  font-weight: 350;
  font-family: var(--montserrat-font-family);
  line-height: 24px;
  margin-bottom: 24px;
  color: #18181B;
  display: inline-block;
}
.sfa_single_news_page-poster {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 64px;
}
@media (max-width: 980px) {
  .sfa_single_news_page-poster {
    margin-bottom: 56px;
  }
}
.sfa_single_news_page-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 980px) {
  .sfa-single--news .sfa-single-section__similar-groups-viewport {
    overflow: visible;
  }
}
@media (min-width: 980px) {
  .sfa-single--news .sfa-single-section__similar-groups-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    transform: none !important;
  }
}
@media (min-width: 980px) {
  .sfa-single--news .sfa-single-section__similar-groups-slide {
    flex: none;
    width: auto;
    max-width: none;
    min-width: 0;
  }
}

.sfa-404-page__content {
  padding-top: 80px;
  max-width: 640px;
  margin-inline: auto;
}
@media (max-width: 980px) {
  .sfa-404-page__content {
    padding: 50px 0;
  }
}
.sfa-404-page__actions {
  margin: 32px 0 0;
}
.sfa-404-page__actions .ds-button {
  color: var(--primary-color);
  background-color: transparent;
}
.sfa-404-page__actions .ds-button:hover {
  color: var(--primary-color);
}
.sfa-404-page .ds-empty_state__title {
  font-size: calc(40px * var(--sfa-desktop-font-scale));
  line-height: 1.2;
}
@media (max-width: 980px) {
  .sfa-404-page .ds-empty_state__title {
    font-size: 28px;
  }
}

:root {
  scroll-behavior: auto !important;
}

html,
body {
  color: var(--black-color);
  background-color: var(--secondary-color);
}
