@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");
.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: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 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;
  left: 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-right-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 {
  --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-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-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;
}

/* rtl:begin:ignore */
.footer_section {
  background-color: var(--background-secondary-color);
  padding: 130px 0;
  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: 0;
}
@media (max-width: 1399px) {
  .footer_section .footer_links_container {
    padding: 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: 26px;
  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: 18px;
  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;
}

/* rtl:end:ignore */
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: 30px;
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  line-height: 147%;
}
.ds-info_card__content__text {
  font-weight: 500;
  font-size: 20px;
  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%;
}
.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: 17px;
  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: 17px;
  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;
  left: 0;
  right: 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;
  left: 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;
  right: 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: clamp(12px, 0.9259259259vw, 16px);
  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;
    right: 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: clamp(24px, 1.9675925926vw, 34px);
  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: clamp(19px, 1.4467592593vw, 25px);
  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: clamp(28px, 2.4305555556vw, 42px);
  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: clamp(12px, 1.1574074074vw, 20px);
  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;
  left: 0;
  right: 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: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;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.ds-feature_card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ds-feature_card__content {
  position: relative;
  z-index: 1;
  padding: 24px 16px;
}
.ds-feature_card__content__title {
  font-size: 18px;
  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: 12px;
  font-family: var(--montserrat-font-family);
  font-weight: 500;
  line-height: 20px;
  color: #CCCCCC;
}
.ds-feature_card .progressive-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 101%;
  pointer-events: none;
}
.ds-feature_card .progressive-blur > div {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
}
.ds-feature_card .progressive-blur > div:nth-child(1) {
  display: block;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.1);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 52%, rgb(0, 0, 0) 68%, rgb(0, 0, 0) 100%);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 52%, rgb(0, 0, 0) 68%, rgb(0, 0, 0) 100%);
}
.ds-feature_card .progressive-blur > div:nth-child(2) {
  display: block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.22);
  mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 62%, rgb(0, 0, 0) 78%, rgb(0, 0, 0) 100%);
  -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 62%, rgb(0, 0, 0) 78%, rgb(0, 0, 0) 100%);
}

.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%;
  left: 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%;
  left: 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-left: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding-left: 24px;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  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: 15px;
  line-height: 24px;
  font-family: var(--montserrat-font-family);
  text-transform: capitalize;
}
html[dir=rtl] .breadcrumbs__current, html[dir=rtl] .breadcrumbs__link {
  font-size: 13px;
}
@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: 4px;
  position: relative;
  transition: border-color 0.2s ease;
}
.ds-checkbox-group__box::after {
  content: "";
  position: absolute;
  display: none;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background-color: #18181b;
  border-radius: 3px;
}
.ds-checkbox-group__label {
  font-size: 15px;
  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: 17px;
  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: 13px;
  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 8.11px 0 11.88px;
  width: 35.89px;
  height: 46.59px;
  margin: 0 62.23px 0 66px;
  animation: logoMarginAnimation 8s ease-in-out 1;
}
.animated-logo .animated-logo_text_ar {
  width: 54.12px;
  height: 24.87px;
  position: absolute;
  left: 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;
  right: 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 42px 0 44px;
  }
  .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 8.11px 0 11.88px;
  }
  70% {
    margin: 0 8.11px 0 11.88px;
  }
  100% {
    margin: 0 62.23px 0 66px;
  }
}
@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%;
  right: 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;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-media__person-image {
  position: relative;
  z-index: 1;
}

.trusted-by-section {
  min-height: 100vh;
  width: 100%;
  background-color: var(--white-color);
  position: relative;
  padding-block: clamp(94px, 94px + 109 * (100vw - 390px) / 974, 203px);
  background-image: var(--bg-image-lg);
  background-position: center;
  background-size: 100%;
  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 .ds-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.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: 19px;
  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%;
}
.trusted-by-section__partners__item:nth-child(2) {
  animation-range: entry 25% entry 100%;
}
.trusted-by-section__partners__item:nth-child(3) {
  animation-range: entry 50% entry 150%;
}
.trusted-by-section__partners__item:nth-child(4) {
  animation-range: entry 75% 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);
  }
}
.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: 50px;
  line-height: 100%;
  text-transform: uppercase;
  font-family: var(--tusker-5700-font-family);
  font-weight: 800;
  color: #070724;
  margin-bottom: 27px;
  padding-left: 2px;
  margin-left: 6px;
}
.home_hero_section .society_and_movement .society .society_description {
  font-size: 18px;
  line-height: 150%;
  font-family: var(--montserrat-font-family);
  font-weight: 500;
  color: #1e1919;
  margin-bottom: 30px;
  padding-left: 2px;
  margin-left: 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: 18px;
  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-left: 0px;
  }
  .home_hero_section .society_and_movement .society .society_description {
    font-size: 18px;
    margin-bottom: 16px;
    padding: 0 24px;
    margin-left: 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: 24px;
  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: 16px;
  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: 18px;
  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;
  right: 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-right: 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 {
  left: 0;
  top: -100%;
}
.home_hero_section .society_and_movement .line.line-2 {
  right: 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: 16px;
  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-left: 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;
  left: 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-left: 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: 96px;
  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: 36px;
  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: 32px;
  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;
  left: 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: 24px;
  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: clamp(46px, 46px + 50 * (100vw - 375px) / 925, 96px);
  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: clamp(20px, 20px + 4 * (100vw - 375px) / 925, 24px);
  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: 40%;
  }
}
@media screen and (max-width: 390px) {
  .sfa-challenges-activities__pattern img {
    object-position: 30%;
  }
}

.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: 96px;
  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-right: 0;
}
@media (max-width: 980px) {
  .home_upcoming_events_section .events_list {
    padding-right: 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: clamp(20px, 2.5vw, 24px);
  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;
  left: 0;
  right: 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-right: -104px;
  overflow: hidden;
}
@media (max-width: 840px) {
  .groups .groups-wrapper .groups-images__item:nth-child(1) {
    margin-right: -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-left: -193px;
  overflow: hidden;
}
@media (max-width: 840px) {
  .groups .groups-wrapper .groups-images__item:nth-child(3) {
    margin-left: -134px;
  }
}
.groups .white-star {
  position: absolute;
  top: -71px;
  right: -125px;
}
@media (max-width: 840px) {
  .groups .white-star {
    top: -39px;
    right: -40px;
    width: 82px;
    height: 82px;
  }
  [dir=rtl] .groups .white-star {
    top: -80px;
  }
}
@media (max-width: 420px) {
  .groups .white-star {
    right: 0px;
  }
}
.groups .wave-pattern-wrapper {
  position: absolute;
  bottom: -20%;
  left: 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%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    z-index: 2;
    pointer-events: none;
  }
}
.groups .wave-pattern-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--black-color);
  z-index: 2;
  pointer-events: none;
}
.groups .wave-pattern-mobile-wrapper {
  position: absolute;
  bottom: -5%;
  left: 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-left: -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;
  left: 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: 96px;
  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 {
  left: 48px;
  top: 76px;
  width: 239px;
  border-radius: 16px;
}
.section__unlock-potential .players__decor .player--bl {
  left: 0px;
  bottom: 0px;
  width: 303px;
  border-radius: 0 16px 0 0;
}
.section__unlock-potential .players__decor .player--tr {
  right: 42px;
  top: 158px;
  width: 392px;
  border-radius: 16px;
}
.section__unlock-potential .players__decor .player--floating {
  left: 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;
  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: 30px;
  line-height: 144%;
}
.section__unlock-potential .card .card__body {
  color: #6E6C6C;
  font-family: var(--montserrat-font-family);
  font-size: 20px;
  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(--sfa-primary-color);
  padding: 22px;
}
.section__unlock-potential .card .card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section__unlock-potential .apppromo {
  position: absolute;
  left: 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: 116px;
  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 {
    left: 40px;
    top: 70px;
    width: 220px;
  }
  .section__unlock-potential .players__decor .player--bl {
    width: 280px;
  }
  .section__unlock-potential .players__decor .player--tr {
    right: 35px;
    top: 145px;
    width: 360px;
  }
  .section__unlock-potential .players__decor .player--floating {
    left: 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 {
    left: 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;
  left: 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 {
    /*rtl:begin:ignore*/
    background-position-x: 70% !important;
    /*rtl:end:ignore*/
    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%;
  /*rtl:begin:ignore*/
  right: 0;
  left: auto;
  /*rtl:end:ignore*/
  --spin-tx: 0;
  --spin-ty: -50%;
}
@media screen and (max-width: 768px) {
  .page-template-page-brand-guidelines .brand-guidelines__header svg {
    top: 0;
    --spin-tx: 0;
    --spin-ty: -100%;
  }
}
.page-template-page-brand-guidelines .brand-guidelines__title {
  font-size: 96px;
  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;
}

.page-template-page-privacy-and-policy .entry-header {
  margin-top: 32px;
  margin-bottom: 24px;
}
.page-template-page-privacy-and-policy .entry-header h1 {
  font-family: var(--tusker-6700-font-family);
  font-size: 40px;
  font-weight: 800;
  line-height: 200%;
  letter-spacing: 0px;
}
.page-template-page-privacy-and-policy .entry-content {
  margin-bottom: 32px;
}
.page-template-page-privacy-and-policy .entry-content h2,
.page-template-page-privacy-and-policy .entry-content h3,
.page-template-page-privacy-and-policy .entry-content h4,
.page-template-page-privacy-and-policy .entry-content h5,
.page-template-page-privacy-and-policy .entry-content h6 {
  font-family: var(--tusker-5500-font-family);
  font-weight: 800;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0px;
  margin-top: 24px;
  margin-bottom: 16px;
}
html[dir=rtl] .page-template-page-privacy-and-policy .entry-content h2,
html[dir=rtl] .page-template-page-privacy-and-policy .entry-content h3,
html[dir=rtl] .page-template-page-privacy-and-policy .entry-content h4,
html[dir=rtl] .page-template-page-privacy-and-policy .entry-content h5,
html[dir=rtl] .page-template-page-privacy-and-policy .entry-content h6 {
  margin-bottom: 4px;
}
.page-template-page-privacy-and-policy .entry-content p,
.page-template-page-privacy-and-policy .entry-content ul,
.page-template-page-privacy-and-policy .entry-content ol,
.page-template-page-privacy-and-policy .entry-content span,
.page-template-page-privacy-and-policy .entry-content a,
.page-template-page-privacy-and-policy .entry-content div {
  font-family: var(--montserrat-font-family);
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  color: var(--black-color);
  margin-top: 4px;
  margin-bottom: 24px;
}
.page-template-page-privacy-and-policy .entry-content > *:last-child {
  margin-bottom: 0;
}
.page-template-page-privacy-and-policy .entry-content a {
  color: var(--primary-color);
  text-decoration: none;
}
.page-template-page-privacy-and-policy .entry-content a:hover {
  text-decoration: underline;
}
.page-template-page-privacy-and-policy .entry-content ul,
.page-template-page-privacy-and-policy .entry-content ol {
  margin-top: 16px;
  padding-inline-start: 24px;
}
html[dir=rtl] .page-template-page-privacy-and-policy .entry-content ul,
html[dir=rtl] .page-template-page-privacy-and-policy .entry-content ol {
  margin-top: 8px;
}
.page-template-page-privacy-and-policy .entry-content ul li,
.page-template-page-privacy-and-policy .entry-content ol li {
  margin-bottom: 16px;
  margin-top: 0;
}
.page-template-page-privacy-and-policy .entry-content ul {
  list-style: disc;
}
.page-template-page-privacy-and-policy .entry-content ol {
  list-style: decimal;
}
.page-template-page-privacy-and-policy .entry-content img {
  max-width: 100%;
  height: auto;
}

#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: cover;
  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;
  /*rtl:begin:ignore*/
  right: -100px;
  /*rtl:end:ignore*/
}
@media screen and (max-width: 1536px) and (min-width: 1201px) {
  .page-template-page-vendor-gate .vendor-gate_hero_section__brand-logo {
    /*rtl:begin:ignore*/
    right: 0;
    /*rtl:end:ignore*/
  }
}
@media screen and (max-width: 1200px) {
  .page-template-page-vendor-gate .vendor-gate_hero_section__brand-logo {
    bottom: 15px;
    top: unset;
    /*rtl:begin:ignore*/
    right: 10%;
    /*rtl:end:ignore*/
  }
}
.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: 66px;
  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;
  }
}
.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: 20px;
  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;
  /*rtl:begin:ignore*/
  background-position: left top, right bottom;
  /*rtl:end:ignore*/
  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: 96px;
  line-height: 104px;
  font-weight: 800;
  font-family: var(--tusker-6700-font-family);
  color: var(--white-color);
}
@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: 23px;
  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: 20px;
  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;
}

.ds-listing-page__title {
  font-size: 66px;
  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;
}
.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;
  }
}

.ds-listing-page [hidden] {
  display: none !important;
}
.ds-listing-page__listing-cards-wrapper {
  width: 100%;
}
.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: 17px;
  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: 15px;
  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%;
  left: 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: 15px;
  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.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: 32px;
  }
  .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: 32px;
  }
  .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: var(--secondary-color);
  position: relative;
}
@media (max-width: 600px) {
  .ds-listing-page__card-skeleton {
    height: 388px;
  }
}
.ds-listing-page__card-skeleton-image {
  height: 68%;
  background: #b2b2b2;
}
.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: #b2b2b2;
  position: relative;
  overflow: hidden;
}
.ds-listing-page__card-skeleton-title::after, .ds-listing-page__card-skeleton-text::after {
  content: "";
  position: absolute;
  top: 0;
  left: -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% {
    left: 100%;
  }
}
.ds-listing-page__filters-overlay {
  position: fixed;
  top: 0;
  left: 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: 26px;
  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: 18px;
  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: 17px;
  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;
    left: 0;
    right: 0;
    height: calc(100vh - 80px);
    border-top-left-radius: 12px;
    border-top-right-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;
  }
}

.ds-listing-page__pagination {
  margin-top: 40px;
  background-color: green;
  color: #fff;
  text-align: center;
}

.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;
  }
}
.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: 13px;
  font-weight: 350;
  font-family: var(--montserrat-font-family);
  line-height: 20px;
  color: #18181b;
}
.ds-listing-page__location-button-content-value {
  font-size: 15px;
  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;
  left: 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%;
  left: 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: 26px;
  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: 17px;
  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-left: 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: left;
  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: 15px;
  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: 13px;
  font-weight: 350;
  font-family: var(--montserrat-font-family);
  line-height: 20px;
  color: #71717a;
}

:root {
  scroll-behavior: auto !important;
}

html,
body {
  color: var(--black-color);
  background-color: var(--secondary-color);
}
