/**
 * Swiper 14.0.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 29, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.page--xeJRwKsJ {
  width: 100%;
  overflow-x: hidden;
}
.sectionInner--IUziBNFA {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 22px;
}
.heroInner--RbcdpsgI {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px;
}
.whiteSection--ofwmiIPp {
  padding: 72px 0 80px;
  background: #ffffff;
}
.sectionTitle--fdntsySf {
  margin: 0 0 44px;
  font-family: 'enbold', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
.heroSection--iy2rld4o {
  padding: 120px 0 140px;
  background-color: #fde134;
  background-image: url(/assets/d1e731dca4a3214c93ff.jpg);
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.heroTitleBlock--qPr5P79u {
  margin-top: 18px;
  margin-bottom: 28px;
  text-align: center;
}
.heroTitle--nYr0mxGG {
  margin: 0;
  font-family: 'enbold', sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 64px;
  color: #000000;
}
.heroSubtitle--ypIFw0tS {
  margin: 18px 0 0;
  font-family: 'enlight', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #000000;
}
.heroImage--iDJv310G {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1320px;
  aspect-ratio: 1320 / 533;
  margin: 62px auto 0;
  border-radius: 0;
  object-fit: cover;
}
.formSection--wQAY4bwW {
  padding: 0 0 52px;
  background: #fde134;
}
.form--NVqT9gvn {
  width: 100%;
}
.formRow--Vis8I1WI {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -11px;
}
.formLabel--kpc3T7Nd {
  display: block;
  margin-bottom: 12px;
  font-family: 'en', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
}
.formControl--fpJjT2lI {
  display: block;
  width: 100%;
  height: 54px;
  padding: 14px 18px;
  font-family: 'en', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #2d2d2d;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-sizing: border-box;
  appearance: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.formControl--fpJjT2lI:disabled {
  background: #f7f7f7;
  color: #65666c;
}
select.formControl--fpJjT2lI {
  padding-right: 28px;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 20px) 24px, calc(100% - 14px) 24px;
  background-size: 6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}
.formFieldHalf--Y5B00cR1,
.formFieldQuarter--wYqjda08 {
  box-sizing: border-box;
  padding: 0 11px 16px;
}
.formFieldHalf--Y5B00cR1 {
  width: 50%;
}
.formFieldQuarter--wYqjda08 {
  width: 25%;
}
.phoneGroup--mt0s069V {
  display: flex;
  gap: 8px;
  width: 100%;
}
.callingCodeSelect--LA5xmhzE {
  flex: 0 0 160px;
  width: 160px;
  min-width: 120px;
  max-width: 45%;
  padding-right: 24px;
}
.phoneInput--aCbDtBow {
  flex: 1 1 auto;
  min-width: 0;
}
.formSubmit--dhkkgzYr {
  display: inline-flex;
  width: 100%;
  height: auto;
  min-height: 54px;
  margin-top: 0;
  padding: 14px 16px;
  align-items: center;
  justify-content: center;
  font-family: 'en', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #fde134 !important;
  text-align: center;
  background: #000000;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.formSubmit--dhkkgzYr:hover:not(:disabled) {
  color: #ffffff !important;
}
.formSubmit--dhkkgzYr:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.formSubmitInner--uuk9aMaa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.formSubmitInner--uuk9aMaa .ant-spin-dot-item {
  background-color: #fde134;
}
.whyGrid--SCTMor6u {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 24px;
}
.whyCard--Byj1lwoR {
  text-align: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.whyCard--Byj1lwoR:hover {
  transform: translateY(-6px);
}
.whyIconWrap--UYHes60D {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  margin-bottom: 20px;
}
.whyIcon--RXgkgAmP {
  display: block;
  width: 56px;
  height: auto;
}
.whyCardTitle--YynVUGIz {
  margin: 0 0 10px;
  font-family: 'enbold', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: #000000;
}
.whyCardDesc--R2evjBcm {
  margin: 0;
  font-family: 'enlight', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: #656b6f;
}
.posDesc--KK5bWv8P {
  max-width: 880px;
  margin: -20px auto 44px;
  font-family: 'enlight', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  color: #656b6f;
  text-align: center;
}
.posGrid--nIYEedDh {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}
.posCard--ZxGBD63O {
  background: #f7f7f7;
  border: none;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}
.posCardLogo--VdIscuHh {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: cover;
  object-position: center;
}
.posCardMeta--N82mPJ_Q {
  display: none;
}
.posCardTitle--wIEVnszE {
  margin: 0 0 10px;
  font-family: 'enbold', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #000000;
}
.posCardLabel--sPAgpaqM {
  margin: 0 0 8px;
  font-family: 'en', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #65666c;
}
.posCardDesc--PPHXtSr7 {
  margin: 0;
  font-family: 'enlight', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 22px;
  color: #656b6f;
}
.storiesSection--RZbcH6Z_ {
  background: #fde134;
}
.storiesMain--dcoPluKu {
  padding: 64px 0 24px;
}
.storiesSwiper--z9k_api0 {
  width: 100%;
  overflow: hidden;
}
.storiesSwiper--z9k_api0 .swiper-slide {
  width: 100%;
}
.storiesSwiper--z9k_api0 .swiper-wrapper {
  align-items: stretch;
}
.storiesTop--pRr5UWfM {
  display: grid;
  grid-template-columns: minmax(0, 474px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-height: 420px;
}
.storyText--c_2t1JNQ {
  padding-right: 12px;
}
.storyName--q6xWaI4q {
  margin: 0;
  font-family: 'enbold', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #000000;
}
.storyPosition--jYwtnb1P {
  margin: 10px 0 18px;
  font-family: 'en', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: #000000;
  white-space: pre-line;
}
.storyDesc--uwyB8o0x {
  max-width: 474px;
  margin: 0;
  font-family: 'enlight', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  color: #656b6f;
}
.storyImageWrap--lHnRiyC7 {
  display: flex;
  justify-content: flex-end;
}
.storyImage--h_NkOGaZ {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}
.storiesThumbsBar--nouNvFAw {
  margin-top: 16px;
  padding: 24px 0 36px;
  background: #fde134;
}
.storiesThumbs--bNc2GMiW {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 22px;
  overflow-x: auto;
}
.storyThumbBtn--1TDHvKeM {
  flex: 0 0 auto;
  width: 125px;
  height: 77px;
  padding: 0;
  overflow: hidden;
  background: none;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  opacity: 0.72;
  transform: scale(0.92);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.storyThumbBtn--1TDHvKeM img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.storyThumbBtn--1TDHvKeM:hover {
  opacity: 0.9;
  transform: scale(0.98);
}
.storyThumbBtnActive--GEFJqSZu {
  opacity: 1;
  transform: scale(1);
}
.restaurantGrid--G4XVYHuE {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.restaurantItem--z8qpl8Zq {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 198 / 130;
  width: 100%;
  padding: 0;
}
.restaurantItem--z8qpl8Zq img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
@media (max-width: 767px) {
  .heroInner--RbcdpsgI {
    padding: 0;
  }
  .heroSection--iy2rld4o {
    padding: 76px 0 0;
    min-height: auto;
  }
  .heroTitle--nYr0mxGG {
    font-size: 44px;
    line-height: 50px;
  }
  .heroSubtitle--ypIFw0tS {
    font-size: 14px;
    line-height: 20px;
  }
  .heroTitleBlock--qPr5P79u {
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 0 22px;
  }
  .heroImage--iDJv310G {
    width: 100vw;
    max-width: 100vw;
    margin: 22px 0 0;
    margin-left: calc(50% - 50vw);
    height: calc(100vw * 533 / 1320);
    aspect-ratio: auto;
  }
  .whiteSection--ofwmiIPp {
    padding: 52px 0 58px;
  }
  .sectionTitle--fdntsySf {
    margin-bottom: 32px;
    font-size: 28px;
    line-height: 34px;
  }
  .formSection--wQAY4bwW {
    padding-top: 28px;
    padding-bottom: 36px;
  }
  .formFieldHalf--Y5B00cR1,
  .formFieldQuarter--wYqjda08 {
    width: 100%;
  }
  .formSubmit--dhkkgzYr {
    border-radius: 10px;
  }
  .whyGrid--SCTMor6u {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .posGrid--nIYEedDh {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }
  .posCard--ZxGBD63O {
    background: #f7f7f7;
    border: 1px solid #efefef;
    padding: 0;
  }
  .posCardLogo--VdIscuHh {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .posCardDesc--PPHXtSr7 {
    line-height: 20px;
  }
  .storiesMain--dcoPluKu {
    padding-top: 40px;
  }
  .storiesTop--pRr5UWfM {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }
  .storyText--c_2t1JNQ {
    padding-right: 0;
    text-align: center;
  }
  .storyName--q6xWaI4q {
    font-size: 40px;
    line-height: 46px;
  }
  .storyPosition--jYwtnb1P {
    font-size: 20px;
    line-height: 28px;
  }
  .storyDesc--uwyB8o0x {
    max-width: none;
    margin: 0 auto;
    font-size: 15px;
    line-height: 24px;
  }
  .storyImageWrap--lHnRiyC7 {
    justify-content: center;
  }
  .storyImage--h_NkOGaZ {
    max-width: 100%;
  }
  .storiesThumbsBar--nouNvFAw {
    padding: 14px 0 20px;
  }
  .storiesThumbs--bNc2GMiW {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 10px;
    justify-content: normal;
    overflow: visible;
    padding-bottom: 0;
  }
  .storyThumbBtn--1TDHvKeM {
    width: 100%;
    height: auto;
    aspect-ratio: 125 / 77;
    border-radius: 12px;
  }
  .storyThumbBtn--1TDHvKeM img {
    border-radius: 12px;
  }
  .restaurantGrid--G4XVYHuE {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }
  .restaurantItem--z8qpl8Zq {
    min-height: auto;
    padding: 0;
  }
  .restaurantItem--z8qpl8Zq img {
    width: 100%;
    height: 100%;
  }
}
/*# sourceMappingURL=style.module.css.map */
