/*!************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./css/src/main.scss ***!
  \************************************************************************************************************/
/*! Author: FOXX Valentin Topolovec */
/**************************************************
    MAIN STYLES
    **********************************************/
.text-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}
@supports (-webkit-line-clamp: 2) {
  .text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

/**************************************************
    GRID & LAYOUT SETTINGS
    **********************************************/
/**************************************************
    FONTS
    **********************************************/
/**************************************************
    COLORS
    **********************************************/
/**************************************************
        MODULES
        **********************************************/
html {
  font-size: 16px;
  margin-top: 0 !important;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  z-index: 1;
  background: #F1EEE4;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .container {
    padding: 0 40px;
  }
}
.container--post {
  max-width: 952px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container--post {
    margin: 8.5rem auto 0 auto;
  }
}
.container--fullwidth {
  max-width: 100%;
}
.container--numbers {
  position: relative;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 100px 0;
}
@media (max-width: 991px) {
  .container--numbers {
    padding: 80px 0;
    margin-top: 55px;
    margin-bottom: -55px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .container--numbers {
    padding: 100px 0;
    margin-bottom: -100px;
  }
}
.container--numbers .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: auto;
  background-position: top left;
}
@media (max-width: 767px) {
  .container--numbers .bg-image {
    background-repeat: repeat;
  }
}

p {
  font-family: "Quicksand";
}

a {
  color: #CEA100;
}

body.locked {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  body.locked {
    overflow: hidden;
    height: 100%;
    width: 100%;
  }
}

img[data-dominant-color]:not(.has-transparency) {
  background-color: transparent !important;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .wrapper {
    height: 100vh;
  }
}
@media (min-width: 1200px) {
  .wrapper {
    grid-template-columns: minmax(auto, 25%) 1fr;
    grid-template-columns: minmax(300px, 25%) 1fr;
  }
}
.wrapper .main-content {
  overflow-y: auto;
}
.wrapper .main-content .homepage-holder {
  padding: 0 40px;
}
@media (min-width: 992px) {
  .wrapper .main-content .homepage-holder {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1366px) {
  .wrapper .main-content .homepage-holder {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1600px) {
  .wrapper .main-content .homepage-holder {
    padding: 0 120px;
  }
}
.wrapper .main-content--inner {
  position: relative;
  margin: 0;
  padding: 0 40px;
}
@media (min-width: 992px) {
  .wrapper .main-content--inner {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1366px) {
  .wrapper .main-content--inner {
    margin: 0;
  }
}
@media screen and (min-width: 1600px) {
  .wrapper .main-content--inner {
    padding: 0 120px;
  }
}

@media (min-width: 992px) {
  .homepage-holder {
    padding: 0 60px;
  }
}
@media screen and (min-width: 1366px) {
  .homepage-holder {
    max-width: 1240px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1600px) {
  .homepage-holder {
    padding: 0 120px;
  }
}

.post ul {
  margin: 32px 0 0 0;
}
.post ul li {
  font-size: 1rem;
  line-height: 32px;
  padding-left: 10px;
}
@media (min-width: 768px) {
  .post ul li {
    padding-left: 35px;
    font-size: 1.25rem;
  }
}
.post ul li::marker {
  color: #CEA100;
}
.post p {
  font-size: 1rem;
  font-weight: 400;
  color: #151515;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .post p {
    font-size: 1.25rem;
    line-height: 32px;
  }
}
.post p a {
  font-weight: 700;
  color: #CEA100;
  text-decoration-line: underline;
}

.pagination {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.pagination .page,
.pagination .page-numbers {
  width: auto;
  height: 40px;
  min-width: 40px;
  display: flex;
  background: #ede4c7;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.pagination .page-numbers {
  font-size: 1.5rem;
  font-weight: 700;
  color: #CEA100;
  transition: 0.25s ease-in-out;
}
.pagination .page-numbers:hover {
  color: #ffffff;
  background: #CEA100;
}
.pagination .page-numbers.current {
  color: #151515;
  background: initial;
}
.pagination .page-numbers.current:hover {
  color: initial;
  background: initial;
}
.pagination .page-numbers.next {
  padding: 0 12px;
}
.pagination .page-numbers.prev {
  padding: 0 12px;
}

.section--grid_two .block-editor-inner-blocks .block-editor-block-list__layout {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section--grid_two .block-editor-inner-blocks .block-editor-block-list__layout {
    grid-template-columns: 1fr 1fr;
  }
}

body {
  font-family: "Quicksand";
  color: #151515;
}

a {
  transition: all 0.25s ease;
}

.link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding-bottom: 5px;
  width: fit-content;
}
.link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #CEA100;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s;
}
.link:hover:after {
  transform-origin: bottom left;
  transform: scaleX(1);
}

a:link,
a:active,
a:visited,
a:hover {
  text-decoration: none;
  outline: 0;
}

a:active,
a:visited {
  outline: 0;
}

.heading {
  font-family: "Yeseva One", sans-serif;
}
.heading--section {
  color: #151515;
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  .heading--section {
    font-size: 4rem;
    font-weight: 400;
  }
}
.heading--circle {
  position: relative;
  color: #151515;
  font-size: 2rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .heading--circle {
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -2.56px;
  }
}
@media (min-width: 1200px) {
  .heading--circle {
    font-size: 4rem;
  }
}
.heading--circle:before {
  content: "";
  width: 80px;
  height: 80px;
  background: rgba(230, 213, 155, 0.4);
  position: absolute;
  border-radius: 50%;
  left: -40px;
  top: -40px;
  z-index: -1;
}
@media (max-width: 767px) {
  .heading--circle:before {
    left: -20px;
  }
}
.heading--yellow {
  color: #CEA100;
}
.heading--sm {
  font-size: 1.5rem;
}
.heading--white {
  color: #ffffff;
}
.heading--decoration_down {
  position: relative;
}
.heading--decoration_down:after {
  background: #e30b20;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  top: 120%;
  width: 40px;
  /*       transition-delay: 2s;
        transition: width 1.5s cubic-bezier(1, 0, 0, 1);
        width: 0; */
}
.heading--decoration-center {
  position: relative;
  text-align: center;
}
.heading--decoration-center:after {
  background: #e30b20;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  top: 120%;
  width: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.heading--fold {
  color: #ffffff;
  font-weight: 600;
  font-size: 3rem;
  position: relative;
  z-index: 2;
  line-height: 1.125;
}
@media (min-width: 768px) {
  .heading--fold {
    font-size: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .heading--fold {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  @supports (-webkit-line-clamp: 3) {
    .heading--fold {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: initial;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }
  }
}
@media (min-width: 992px) {
  .heading--fold {
    font-size: 4.5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  @supports (-webkit-line-clamp: 3) {
    .heading--fold {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: initial;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }
  }
}
.heading--card-post {
  color: #151515;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .heading--card-post {
    font-size: 2.25rem;
    font-weight: 400;
    letter-spacing: -1.6px;
    line-height: 48px;
  }
}

.heading-holder {
  position: relative; /* Make the container position relative */
}
.heading-holder .image {
  width: 150px; /* Adjust according to your image size */
  height: auto;
}
.heading-holder .heading {
  position: absolute;
  top: 50%; /* Move the heading 50% from the top */
  left: 50%; /* Move the heading 50% from the left */
  transform: translate(-50%, -50%); /* Center the heading */
  text-align: center; /* Center the text */
  margin: 0;
}

/**
 * Swiper 11.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 13, 2024
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

: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;
  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;
}

.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);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .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-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .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);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.mobile-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 0.5rem;
  right: 0.5rem;
  z-index: 90;
}
@media (min-width: 1200px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav__wrap {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  justify-content: center;
}

.mobile-overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 88;
  background: #151515;
  opacity: 0;
  user-select: none;
  visibility: hidden;
  transition: 0.3s ease all;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}
@media (min-width: 1200px) {
  .mobile-overlay-menu {
    display: none;
  }
}
.mobile-overlay-menu__wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  gap: 36px;
  overflow: auto;
  margin-bottom: 100px;
}
@media screen and (max-height: 667px) {
  .mobile-overlay-menu__wrap {
    margin-bottom: 77px;
  }
}
.mobile-overlay-menu__wrap .sidebar-menu {
  text-align: center;
  width: 100%;
  max-width: 240px;
  width: 240px;
  margin-top: 50px;
}
@media screen and (max-height: 667px) {
  .mobile-overlay-menu__wrap .sidebar-menu {
    margin-top: 10px;
  }
}
.mobile-overlay-menu__wrap .sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  user-select: none;
}
.mobile-overlay-menu__wrap .sidebar-menu ul li {
  border-bottom: 1px solid rgba(206, 161, 0, 0.08);
  transition: 0.25s all;
}
.mobile-overlay-menu__wrap .sidebar-menu ul li:hover {
  cursor: pointer;
  border-bottom: 1px solid rgba(206, 161, 0, 0.3);
}
.mobile-overlay-menu__wrap .sidebar-menu ul li:hover a {
  color: #CEA100;
}
.mobile-overlay-menu__wrap .sidebar-menu ul li.current {
  border-bottom: 1px solid rgba(206, 161, 0, 0.3);
}
.mobile-overlay-menu__wrap .sidebar-menu ul li.current a {
  color: #CEA100;
}
.mobile-overlay-menu__wrap .sidebar-menu ul li a {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  height: 100%;
  width: 100%;
  padding: 1.25rem 0;
  display: block;
  user-select: none;
}
@media screen and (max-height: 667px) {
  .mobile-overlay-menu__wrap .sidebar-menu ul li a {
    font-size: 1rem;
    padding: 1rem 0;
  }
}
.mobile-overlay-menu__wrap .sidebar-menu ul li a:hover {
  background: #151515;
}
.mobile-overlay-menu__wrap .sidebar-menu ul li a:focus-visible {
  outline: 0;
  background: #151515;
}
.mobile-overlay-menu__wrap .sidebar-menu ul li a:focus {
  background: #151515;
}
.mobile-overlay-menu__logo {
  width: 200px;
  height: auto;
}
.mobile-overlay-menu__icons {
  display: flex;
  gap: 1.5rem;
}
.mobile-overlay-menu--visible {
  opacity: 1;
  user-select: all;
  visibility: visible;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #CEA100;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham4 .top {
  stroke-dasharray: 40 121;
}
.ham4 .bottom {
  stroke-dasharray: 40 121;
}
.ham4.active .top {
  stroke-dashoffset: -68px;
}
.ham4.active .bottom {
  stroke-dashoffset: -68px;
}

.btn {
  border-radius: 40px;
  border: 0px solid;
  cursor: pointer;
  font-family: "Quicksand";
  font-size: 16px;
  padding: 0 1.5rem;
  min-height: 48px;
  height: 48px;
  font-weight: 700;
  border-radius: 40px;
  color: #151515;
  min-height: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  user-select: none;
}
.btn--regular:hover, .btn--small:hover, .btn--large:hover {
  transition: all 0.25s ease-out;
  filter: brightness(90%);
}
.btn--yellow {
  border-color: #CEA100;
  border: 1px solid #CEA100;
  background: #CEA100;
}
.btn--black {
  border-color: #151515;
  border: 1px solid #151515;
  background: #151515;
}
.btn--white {
  border-color: rgba(171, 169, 162, 0.4);
  border: 1px solid rgba(171, 169, 162, 0.4);
  background: rgba(171, 169, 162, 0.4);
}
.btn--primary {
  border-color: #e6d59b;
  border: 1px solid #e6d59b;
  background: #e6d59b;
}
.btn--outline {
  background: transparent;
  font-size: 1rem;
  gap: 1rem;
}
.btn--outline--yellow {
  border-color: #CEA100;
  color: #ffffff;
}
.btn--outline--black {
  border-color: #151515;
  color: #ffffff;
}
.btn--outline--white {
  border-color: rgba(171, 169, 162, 0.4);
  color: #ffffff;
}
.btn--outline--primary {
  border-color: #e6d59b;
  color: #ffffff;
}
.btn--small {
  font-family: "Quicksand";
  font-size: 12px;
  padding: 10px;
  min-height: 48px;
  height: 48px;
}
.btn--large {
  font-family: "Quicksand";
  font-size: 24px;
  padding: 10px 20px;
  min-height: 48px;
  height: 48px;
}
.btn--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
}
.btn--icon .icon {
  font-size: 0.875rem;
}
.btn.active {
  background: #151515;
  border-color: #151515;
  color: #ffffff;
}
.btn--black {
  background: #151515;
  color: #ffffff;
}
.btn--social {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: rgba(206, 161, 0, 0.08);
  padding: 0;
  margin: 0;
}
.btn--social .icon {
  stroke: #CEA100;
  width: 24px;
  height: 24px;
  transition: 0.25s ease-in-out;
}
.btn--social:hover {
  background: #CEA100;
  filter: brightness(90%);
}
.btn--social:hover .icon {
  stroke: #151515;
}
.btn--footer {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: #CEA100;
  padding: 0;
  margin: 0;
}
.btn--footer .icon {
  stroke: #ffffff;
  width: 24px;
  height: 24px;
}
.btn--white {
  color: #ffffff;
}
.btn--white:hover {
  background-color: rgba(213, 215, 222, 0.568627451);
  transition: background-color 0.3s ease-in;
}
.btn--rounded {
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.btn--share {
  border: 1px solid #CEA100;
  color: #CEA100;
  background: transparent;
}
.btn--share:hover {
  background: #CEA100;
  color: #151515;
}
.btn--share:hover svg path {
  fill: #151515;
}
@media (max-width: 767px) {
  .btn--special {
    width: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.btn--special:hover {
  background: #e6d59b;
  filter: brightness(100%);
}
@media (max-width: 767px) {
  .btn--special .text {
    display: none;
  }
}

.animated {
  z-index: 1;
}

.scale {
  opacity: 0.0574;
  visibility: inherit;
  transform: translate3d(0px, 0px, 0px) scale(0.9379, 0.9379);
  transition: all 0.6s;
}
.scale.animated {
  visibility: inherit;
  transform: translate(0px, 0px);
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transition: all 0.3s;
}
.fade-in.animated {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transition: all 0.6s;
  transform: translateY(50px);
}
.fade-up.animated {
  opacity: 1;
  transform: translateY(0px);
}

.fade-down {
  opacity: 0;
  transition: all 0.6s;
  transform: translateY(-50px);
}
.fade-down.animated {
  opacity: 1;
  transform: translateY(0px);
}

.fade-right {
  opacity: 0;
  transition: all 0.6s;
}
.fade-right.animated {
  opacity: 1;
}
@media (min-width: 768px) {
  .fade-right {
    opacity: 0;
    transition: all 0.6s;
    transform: translateX(50px);
  }
  .fade-right.animated {
    opacity: 1;
    transform: translateY(0px);
  }
}

.fade-left {
  opacity: 0;
  transition: all 0.6s;
}
.fade-left.animated {
  opacity: 1;
}
@media (min-width: 768px) {
  .fade-left {
    opacity: 0;
    transition: all 0.6s;
    transform: translateX(-50px);
  }
  .fade-left.animated {
    opacity: 1;
    transform: translateY(0px);
  }
}

.is-type-video .wp-block-embed__wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .is-type-video .wp-block-embed__wrapper {
    margin-top: 3rem;
  }
}
.is-type-video .wp-block-embed__wrapper iframe,
.is-type-video .wp-block-embed__wrapper object,
.is-type-video .wp-block-embed__wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.wp-block-video {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .wp-block-video {
    margin-top: 3rem;
  }
}

.weekly-menu {
  text-align: center;
  max-width: 1040px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 80px auto 40px auto;
}
@media (min-width: 768px) {
  .weekly-menu {
    margin: 148px auto 64px auto;
  }
}
.weekly-menu__title .heading {
  width: 100%;
  text-wrap: nowrap;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.weekly-menu__title .active-week {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .weekly-menu__title .active-week {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .weekly-menu__title .active-week p {
    font-weight: 600;
  }
}
.weekly-menu__title .active-week .icon {
  width: 24px;
  height: 24px;
}
.weekly-menu__days {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  max-width: 715px;
  margin: 0 auto 56px auto;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .weekly-menu__days {
    overflow: auto;
    align-items: initial;
    justify-content: unset;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 -40px 0 -40px;
  }
}
@media (max-width: 767px) {
  .weekly-menu__days .btn {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.weekly-menu__dishes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-items: flex-start;
  margin: 40px auto;
  max-width: 1240px;
  width: 100%;
}
@media (min-width: 992px) {
  .weekly-menu__dishes {
    margin: 0 auto 40px auto;
  }
}
.weekly-menu__dishes .dishes-container .custom-message {
  font-family: "Yeseva One", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 3rem;
}

.gallery-block .gallery {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}
.gallery-block .gallery__list {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  max-width: 715px;
  margin: 40px auto;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .gallery-block .gallery__list {
    overflow: auto;
    align-items: initial;
    justify-content: unset;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 40px -40px 0 -40px;
  }
}
@media (max-width: 767px) {
  .gallery-block .gallery__list .btn {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .gallery-block .gallery__holder {
    margin: 40px -33px 0 -35px;
  }
}

.dish-s-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e6d59b;
  padding: 1rem 0;
  gap: 0.5rem;
}
.dish-s-card__info {
  text-align: left;
  flex: 2;
}
.dish-s-card__info span {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}
@media (min-width: 768px) {
  .dish-s-card__info span {
    font-size: 1.25rem;
  }
}
.dish-s-card__price {
  font-size: 1.25rem;
  font-family: "Yeseva One", sans-serif;
  flex: 1;
  text-align: right;
}
@media (min-width: 768px) {
  .dish-s-card__price {
    font-size: 1.5rem;
  }
}

.dish-l-card {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  align-items: center;
}
.dish-l-card__img {
  width: 88px;
  height: 88px;
  border-radius: 5px;
  overflow: hidden;
}
.dish-l-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dish-l-card__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e6d59b;
  padding: 0 0 1rem 0;
}
@media (max-width: 767px) {
  .dish-l-card__content {
    align-items: flex-start;
  }
}
.dish-l-card__content .info {
  text-align: left;
  flex: 2;
  display: flex;
  flex-direction: column;
}
.dish-l-card__content .info .name {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .dish-l-card__content .info .name {
    font-size: 1.25rem;
  }
}
.dish-l-card__content .info .desc {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .dish-l-card__content .info .desc {
    font-size: 1rem;
  }
}
.dish-l-card__content .price {
  font-family: "Yeseva One", sans-serif;
  font-size: 1.25rem;
  flex: 1;
  text-align: right;
}
@media (min-width: 768px) {
  .dish-l-card__content .price {
    font-size: 1.5rem;
  }
}

.scroll-card__holder {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media (min-width: 768px) {
  .scroll-card__holder {
    gap: 5rem;
    flex-direction: row;
    padding: 0 0 0 50px;
  }
}
@media (max-width: 767px) {
  .scroll-card__holder {
    align-items: center;
  }
}
.scroll-card__holder .main-img-holder {
  flex: 1;
  max-width: 480px;
  order: 2;
}
@media (max-width: 767px) {
  .scroll-card__holder .main-img-holder {
    width: calc(100vw - 80px);
  }
}
@media (min-width: 768px) {
  .scroll-card__holder .main-img-holder {
    order: 1;
    max-width: 480px;
  }
}
@media (min-width: 1200px) {
  .scroll-card__holder .main-img-holder {
    order: 1;
    max-width: 480px;
    height: 640px;
  }
}
.scroll-card__holder .main-img-holder .images-holder {
  position: relative;
  aspect-ratio: 3/4;
}
.scroll-card__holder .main-img-holder .images-holder .main-img {
  border-radius: 0px 104px;
  box-shadow: 24px 24px 64px 0px rgba(0, 0, 0, 0.16);
  max-width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.scroll-card__holder .main-img-holder .images-holder .small-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: drop-shadow(24px 24px 64px rgba(0, 0, 0, 0.16));
  box-shadow: 24px 24px 64px 0px rgba(0, 0, 0, 0.16);
  border: 10px solid #F1EEE4;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}
@media screen and (min-width: 1600px) {
  .scroll-card__holder .main-img-holder .images-holder .small-img {
    width: 200px;
    height: 200px;
  }
}
.scroll-card__holder .main-img-holder .images-holder .img-left-top {
  top: 12%;
  transform: translateX(-50%);
  left: 0;
}
@media (max-width: 767px) {
  .scroll-card__holder .main-img-holder .images-holder .img-left-top {
    transform: translateX(-30px);
  }
}
.scroll-card__holder .main-img-holder .images-holder .img-left-down {
  bottom: 12%;
  transform: translateX(-50%);
  left: 0;
}
@media (max-width: 767px) {
  .scroll-card__holder .main-img-holder .images-holder .img-left-down {
    transform: translateX(-30px);
  }
}
.scroll-card__holder .main-img-holder .images-holder .img-right-top {
  top: 12%;
  transform: translateX(50%);
  right: 0;
}
@media (max-width: 767px) {
  .scroll-card__holder .main-img-holder .images-holder .img-right-top {
    transform: translateX(30px);
  }
}
.scroll-card__holder .main-img-holder .images-holder .img-right-down {
  bottom: 12%;
  transform: translateX(50%);
  right: 0;
}
@media (max-width: 767px) {
  .scroll-card__holder .main-img-holder .images-holder .img-right-down {
    transform: translateX(30px);
  }
}
.scroll-card__holder .content-holder {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
  order: 1;
}
@media (min-width: 768px) {
  .scroll-card__holder .content-holder {
    order: 2;
  }
}
@media (min-width: 1200px) {
  .scroll-card__holder .content-holder {
    gap: 3rem;
    padding-left: 40px;
  }
}
.scroll-card__holder .content-holder .title-wrap .heading {
  margin: 0;
  padding: 0;
}
.scroll-card__holder .content-holder p {
  font-size: 1rem;
  color: #151515;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .scroll-card__holder .content-holder p {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
@media (min-width: 768px) {
  .scroll-card--text-first .scroll-card__holder {
    padding: 0 50px 0 0;
  }
}
.scroll-card--text-first .scroll-card__holder .content-holder {
  order: 1;
  padding-left: 0;
}
@media (min-width: 768px) {
  .scroll-card--text-first .scroll-card__holder .content-holder {
    padding-right: 40px;
  }
}
.scroll-card--text-first .scroll-card__holder .main-img-holder {
  order: 2;
}
.scroll-card--text-first .scroll-card__holder .main-img-holder .images-holder .main-img {
  border-radius: 104px 0px;
}

.simple-card__holder {
  display: flex;
  gap: 4rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .simple-card__holder {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .simple-card__holder {
    align-items: center;
  }
}
.simple-card__holder .main-img-holder {
  flex: 1;
  order: 2;
}
@media (min-width: 768px) {
  .simple-card__holder .main-img-holder {
    order: 1;
    max-width: 336px;
    min-width: 336px;
  }
}
.simple-card__holder .main-img-holder .images-holder {
  position: relative;
}
.simple-card__holder .main-img-holder .images-holder .main-img {
  border-radius: 0px 104px;
  box-shadow: 24px 24px 64px 0px rgba(0, 0, 0, 0.16);
  max-width: 100%;
}
.simple-card__holder .content-holder {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
  padding-left: 20px;
  order: 1;
}
@media (min-width: 768px) {
  .simple-card__holder .content-holder {
    order: 2;
    flex: 2;
  }
}
.simple-card__holder .content-holder .title-wrap .heading {
  margin: 0;
  padding: 0;
}
.simple-card__holder .content-holder p {
  font-size: 1rem;
  line-height: 1.5;
  color: #151515;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .simple-card__holder .content-holder p {
    line-height: 1.6;
    font-size: 1.25rem;
  }
}
.simple-card--text-first .simple-card__holder .content-holder {
  order: 1;
}
.simple-card--text-first .simple-card__holder .main-img-holder {
  order: 2;
}
.simple-card--text-first .simple-card__holder .main-img-holder .images-holder .main-img {
  border-radius: 104px 0px;
}

.card-post {
  display: block;
}
.card-post:hover .card-post__image-holder picture,
.card-post:hover .card-post__image-holder img {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}
.card-post__wrap {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .card-post__wrap {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .card-post__wrap {
    gap: 40px;
  }
}
.card-post__image-holder {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 100%;
}
@media (min-width: 768px) {
  .card-post__image-holder {
    flex: 2;
  }
}
.card-post__image-holder .date {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 40px;
  border-radius: 100px;
  z-index: 1;
}
.card-post__image-holder .date .text {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}
.card-post__image-holder .picture {
  width: 100%;
  height: auto;
}
.card-post__image-holder .picture picture,
.card-post__image-holder .picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.card-post__content {
  color: #151515;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-post__content .description {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .card-post__content {
    flex: 3;
  }
}
.card-post--column .card-post__wrap {
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .card-post--column .card-post__wrap {
    flex-direction: column;
  }
}
.card-post--column .card-post__content .heading--card-post {
  font-size: 1.5rem;
  line-height: 1.16;
}
@media (min-width: 1200px) {
  .card-post--column .card-post__image-holder picture img {
    min-height: 240px;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #151515;
  height: 100vh;
}
@media (max-width: 1199px) {
  .sidebar {
    display: none;
  }
}
.sidebar__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 85%;
}
.sidebar__wrap .sidebar-menu {
  text-align: center;
  width: 100%;
  max-width: 240px;
}
.sidebar__wrap .sidebar-menu ul {
  list-style: none;
  padding: 0;
}
.sidebar__wrap .sidebar-menu ul li {
  border-bottom: 1px solid rgba(206, 161, 0, 0.08);
  transition: 0.25s all;
}
.sidebar__wrap .sidebar-menu ul li:hover {
  cursor: pointer;
  border-bottom: 1px solid rgba(206, 161, 0, 0.3);
}
.sidebar__wrap .sidebar-menu ul li:hover a {
  color: #CEA100;
}
.sidebar__wrap .sidebar-menu ul li.current {
  border-bottom: 1px solid rgba(206, 161, 0, 0.3);
}
.sidebar__wrap .sidebar-menu ul li.current a {
  color: #CEA100;
}
.sidebar__wrap .sidebar-menu ul li a {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  height: 100%;
  width: 100%;
  padding: 1.5rem 0;
  display: block;
}
.sidebar__logo {
  width: 200px;
  height: auto;
  visibility: visible; /* Ensure paths are visible */
  opacity: 1; /* Ensure paths are fully opaque */
}
.sidebar__icons {
  display: flex;
  gap: 1.5rem;
}

.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero {
    height: calc(100vh - 56px);
  }
}
.hero .swiper-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .swiper-slide:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(21, 21, 21) 1.64%, rgba(0, 0, 0, 0) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.4) 1.64%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(203, 159, 4, 0.16) 0%, rgba(203, 159, 4, 0.16) 100%);
  background-blend-mode: normal, normal, overlay, normal;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero .swiper-slide-visible .hero__item .hero__content .hero__title {
  opacity: 1;
  transform: translateY(0px);
}
.hero .swiper-slide-visible .hero__item .hero__content .hero__title .high:before {
  width: 100%;
}
.hero .swiper-slide-visible .hero__item .hero__content .hero__title span:before {
  width: 100%;
}
.hero .swiper-slide-visible .hero__item .hero__content .hero__description {
  opacity: 1;
  transform: translateY(0px);
}
.hero__item {
  width: 100%;
  height: 100%;
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .hero__img {
    width: 100vw;
  }
}
.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero__img img {
    width: 100vw;
    height: calc(100vh - 56px);
  }
}
.hero__content {
  position: absolute;
  z-index: 2;
  width: 100%;
  color: #ffffff;
  padding-left: 5vw;
  height: 100%;
}
@media (min-width: 768px) {
  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .hero__content {
    height: 70%;
    top: 50px;
  }
}
.hero__title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Yeseva One", sans-serif;
  max-width: 90%;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0;
  transition: all 0.8s;
  transform: translateX(-100px);
}
@media (min-width: 768px) {
  .hero__title {
    letter-spacing: -3.84px;
    font-size: 6rem;
    line-height: 1;
  }
}
@media (min-width: 1200px) {
  .hero__title {
    max-width: 1060px;
  }
}
.hero__title span, .hero__title strong {
  position: relative;
  display: inline-block;
}
.hero__title span:before, .hero__title strong:before {
  position: absolute;
  content: "";
  background: rgba(206, 161, 0, 0.4);
  height: 35%;
  width: 0;
  bottom: 10%;
  z-index: -1;
  transition: all 1s ease;
  transition-delay: 0.6s;
}
.hero__description {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  max-width: 90%;
  line-height: 1.5;
  opacity: 0;
  transition: all 0.9s;
  transform: translateX(-100px);
}
@media (min-width: 768px) {
  .hero__description {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .hero__description {
    max-width: 800px;
  }
}
.hero__description .link {
  font-weight: 600;
}
.hero__cta {
  position: absolute;
  top: 4rem;
  right: 4rem;
  z-index: 1;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 1199px) {
  .hero__cta {
    display: none;
    top: 4rem;
    left: 4rem;
    flex-direction: column;
  }
}
.hero__cta .phone .order {
  font-weight: 400;
}
.hero .swiper-pagination {
  position: absolute;
  bottom: 20vh !important;
  left: 5vw !important;
  width: initial !important;
}
@media (max-width: 767px) {
  .hero .swiper-pagination {
    bottom: initial !important;
    top: 75% !important;
  }
}

.swiper-pagination-bullet {
  transition: 1s ease all;
  width: 24px !important;
  height: 4px !important;
  opacity: 0.32 !important;
  background: #ffffff !important;
  border-radius: 10px !important;
}
.swiper-pagination-bullet-active {
  width: 64px !important;
  background: #CEA100 !important;
  opacity: 1 !important;
}

.footer {
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
  color: #fff;
}
@media (max-width: 991px) {
  .footer {
    width: 100vw;
  }
}
.footer__wrap {
  max-width: 1240px;
  background: #151515;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .footer__wrap {
    height: 360px;
    border-radius: 104px;
  }
}
.footer__wrap:after {
  content: "";
  background: #151515;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.8;
}
.footer__wrap .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background-blend-mode: overlay;
}
.footer__wrap .content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__wrap .content .holder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .footer__wrap .content .holder {
    padding: 0 5vw;
  }
}
@media (max-width: 767px) {
  .footer__wrap .content .holder {
    flex-direction: column;
    align-items: center;
    padding: 6rem 40px 5rem 40px;
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer__wrap .content .holder {
    padding: 80px 40px;
    align-items: flex-start;
  }
}
.footer__wrap .content .holder .info,
.footer__wrap .content .holder .details {
  flex-basis: 50%;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .info,
  .footer__wrap .content .holder .details {
    text-align: center;
  }
}
.footer__wrap .content .holder .info .heading {
  margin: 0 0 20px 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer__wrap .content .holder .info .heading {
    margin-top: 0;
  }
}
.footer__wrap .content .holder .info .additional {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.footer__wrap .content .holder .info .additional p {
  margin: 0;
}
.footer__wrap .content .holder .info .additional .title {
  font-weight: 700;
}
.footer__wrap .content .holder .info .additional .email {
  color: #ffffff;
}
.footer__wrap .content .holder .info .additional .email:hover {
  color: #CEA100;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .info .additional {
    text-align: center;
    align-items: center;
  }
}
.footer__wrap .content .holder .details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  text-align: left;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .details {
    text-align: center;
    align-items: center;
  }
}
.footer__wrap .content .holder .details .phone {
  color: #ffffff;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}
.footer__wrap .content .holder .details .phone svg {
  color: #CEA100;
}
.footer__wrap .content .holder .details .phone .number {
  font-family: "Yeseva One", sans-serif;
  font-size: 2.25rem;
}
@media (min-width: 1200px) {
  .footer__wrap .content .holder .details .phone .number {
    font-size: 3rem;
  }
}
.footer__wrap .content .holder .details .additional {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .details .additional {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .details .additional {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer__wrap .content .holder .details .additional .social {
  display: flex;
  gap: 10px;
}
.footer__wrap .content .holder .foxx-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .foxx-inner {
    margin-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer__wrap .content .holder .foxx-inner {
    align-items: flex-end;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .footer__wrap .content .holder .foxx-inner {
    margin-top: 60px;
    display: none;
  }
}
.footer__wrap .content .holder .foxx-inner .note {
  color: #ffffff;
  font-family: "Quicksand";
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer__wrap .content .holder .foxx-inner .logo {
  display: flex;
}
.footer__wrap .content .holder .foxx-inner .logo a {
  display: block;
}
.footer__wrap .content .holder .foxx-inner .logo a:hover svg g path {
  fill: #ffffff;
}
.footer__wrap .content .holder .foxx-inner .logo a svg {
  width: 100px;
}
.footer__wrap .content .holder .foxx-inner .logo a svg g path {
  fill: #CEA100;
  transition: 0.3s ease-in-out all;
}
.footer__foxx {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .footer__foxx {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer__foxx {
    margin-bottom: 60px;
  }
}
.footer__foxx .decoration {
  margin: 50px 0;
}
.footer__foxx .note {
  color: #151515;
  font-family: "Quicksand";
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer__foxx .logo {
  display: flex;
}
.footer__foxx .logo a {
  display: block;
}
.footer__foxx .logo a:hover svg g path {
  fill: #151515;
}
.footer__foxx .logo a svg {
  width: 100px;
}
.footer__foxx .logo a svg g path {
  fill: #CEA100;
  transition: 0.3s ease-in-out all;
}

.section {
  margin: 0 auto;
  max-width: 1240px;
}
.section--footer {
  margin: 0 auto;
  padding: 100px 0 50px 0;
  max-width: 100vw;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .section--footer {
    padding: 100px 0 0 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media (max-width: 991px) {
  .section--footer {
    padding: 55px 0 0 0;
  }
}
.section--grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  gap: 8.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section--grid {
    gap: 200px;
  }
}
.section--grid_two {
  display: grid;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .section--grid_two {
    grid-template-columns: 1fr 1fr;
  }
}
.section--last-posts {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section--last-posts {
    padding-bottom: 100px;
  }
}
.section--last-posts .section__holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section--last-posts .section__holder .title-wrap .heading {
  margin: 0;
  padding: 0;
}
.section--last-posts .section__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
  scroll-snap-type: x mandatory;
  /* Track */
  /* Handle */
}
.section--last-posts .section__grid::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.section--last-posts .section__grid::-webkit-scrollbar-track {
  background: #ede4c7;
  box-shadow: inset 0 0 5px #ede4c7;
  border-radius: 8px;
}
.section--last-posts .section__grid::-webkit-scrollbar-thumb {
  background: #CEA100;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .section--last-posts .section__grid {
    max-width: calc(100vw - 40px);
    overflow-x: scroll;
    margin: 0 -40px 0 0;
    padding-right: 40px;
  }
}
@media (min-width: 768px) {
  .section--last-posts .section__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .section--last-posts .section__grid .card-post {
    width: calc(100vw - 120px);
  }
}
.section--cards {
  margin: 0 auto 6.5rem auto;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1240px;
}
.section--cards .section__holder {
  display: flex;
  flex-direction: column;
  gap: 200px;
  gap: 8.5rem;
}
@media (min-width: 768px) {
  .section--cards .section__holder {
    gap: 8.5rem;
  }
}
.section--homepage {
  margin: 0 auto 6.5rem auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .section--homepage {
    margin: 8.5rem auto 6.5rem auto;
  }
}
.section--homepage .section__holder {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
@media (min-width: 768px) {
  .section--homepage .section__holder {
    gap: 8.5rem;
  }
}
.section--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .section--btn {
    padding-bottom: 164px;
    margin-top: -64px;
  }
}
.section--btn .btn--special {
  padding: 0 20px !important;
  width: auto !important;
}
.section--btn .btn--special .text {
  display: block;
}
.section--map .section__map {
  position: relative;
}
@media (min-width: 768px) {
  .section--map .section__map {
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
    box-shadow: 24px 24px 64px 0px rgba(0, 0, 0, 0.16);
  }
}
.section--map .section__map:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Ensure the pseudo-element doesn't interfere with user interactions */
}
@media (min-width: 768px) {
  .section--map .section__map:after {
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
  }
}
.section--map .section__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 100px;
  box-shadow: 24px 24px 64px 0px rgba(0, 0, 0, 0.16);
}
.section--map .section__map iframe:focus {
  outline: none !important;
}
.section--map .section__map .map-img {
  width: 100%;
  height: auto;
  box-shadow: 24px 24px 64px 0px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .section--map .section__map .map-img {
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
  }
}
.section--map .section__map .map-btn {
  position: absolute;
  bottom: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.section--map .section__map .map-btn:hover {
  background: #CEA100;
  border-color: #CEA100;
  color: #151515;
}
.section--map .section__map .map-btn:hover svg path {
  fill: #151515;
}
.section--listing {
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer {
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
  color: #fff;
}
@media (max-width: 991px) {
  .footer {
    width: 100vw;
  }
}
.footer__wrap {
  max-width: 1240px;
  background: #151515;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .footer__wrap {
    height: 360px;
    border-radius: 104px;
  }
}
.footer__wrap:after {
  content: "";
  background: #151515;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.8;
}
.footer__wrap .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background-blend-mode: overlay;
}
.footer__wrap .content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__wrap .content .holder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .footer__wrap .content .holder {
    padding: 0 5vw;
  }
}
@media (max-width: 767px) {
  .footer__wrap .content .holder {
    flex-direction: column;
    align-items: center;
    padding: 6rem 40px 5rem 40px;
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer__wrap .content .holder {
    padding: 80px 40px;
    align-items: flex-start;
  }
}
.footer__wrap .content .holder .info,
.footer__wrap .content .holder .details {
  flex-basis: 50%;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .info,
  .footer__wrap .content .holder .details {
    text-align: center;
  }
}
.footer__wrap .content .holder .info .heading {
  margin: 0 0 20px 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer__wrap .content .holder .info .heading {
    margin-top: 0;
  }
}
.footer__wrap .content .holder .info .additional {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.footer__wrap .content .holder .info .additional p {
  margin: 0;
}
.footer__wrap .content .holder .info .additional .title {
  font-weight: 700;
}
.footer__wrap .content .holder .info .additional .email {
  color: #ffffff;
}
.footer__wrap .content .holder .info .additional .email:hover {
  color: #CEA100;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .info .additional {
    text-align: center;
    align-items: center;
  }
}
.footer__wrap .content .holder .details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  text-align: left;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .details {
    text-align: center;
    align-items: center;
  }
}
.footer__wrap .content .holder .details .phone {
  color: #ffffff;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
}
.footer__wrap .content .holder .details .phone svg {
  color: #CEA100;
}
.footer__wrap .content .holder .details .phone .number {
  font-family: "Yeseva One", sans-serif;
  font-size: 2.25rem;
}
@media (min-width: 1200px) {
  .footer__wrap .content .holder .details .phone .number {
    font-size: 3rem;
  }
}
.footer__wrap .content .holder .details .additional {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .details .additional {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .details .additional {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer__wrap .content .holder .details .additional .social {
  display: flex;
  gap: 10px;
}
.footer__wrap .content .holder .foxx-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .footer__wrap .content .holder .foxx-inner {
    margin-top: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer__wrap .content .holder .foxx-inner {
    align-items: flex-end;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .footer__wrap .content .holder .foxx-inner {
    margin-top: 60px;
    display: none;
  }
}
.footer__wrap .content .holder .foxx-inner .note {
  color: #ffffff;
  font-family: "Quicksand";
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer__wrap .content .holder .foxx-inner .logo {
  display: flex;
}
.footer__wrap .content .holder .foxx-inner .logo a {
  display: block;
}
.footer__wrap .content .holder .foxx-inner .logo a:hover svg g path {
  fill: #ffffff;
}
.footer__wrap .content .holder .foxx-inner .logo a svg {
  width: 100px;
}
.footer__wrap .content .holder .foxx-inner .logo a svg g path {
  fill: #CEA100;
  transition: 0.3s ease-in-out all;
}
.footer__foxx {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .footer__foxx {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer__foxx {
    margin-bottom: 60px;
  }
}
.footer__foxx .decoration {
  margin: 50px 0;
}
.footer__foxx .note {
  color: #151515;
  font-family: "Quicksand";
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer__foxx .logo {
  display: flex;
}
.footer__foxx .logo a {
  display: block;
}
.footer__foxx .logo a:hover svg g path {
  fill: #151515;
}
.footer__foxx .logo a svg {
  width: 100px;
}
.footer__foxx .logo a svg g path {
  fill: #CEA100;
  transition: 0.3s ease-in-out all;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hide-tablet {
    display: none;
  }
}

@media (min-width: 992px) {
  .hide-desktop {
    display: none;
  }
}

.hidden-all {
  display: none !important;
}

.relative {
  position: relative;
}

#week-menu {
  scroll-behavior: smooth;
}

.gslide-description {
  background: transparent !important;
}
.gslide-description .gdesc-inner {
  margin: 0 auto;
  padding: 0.5rem 0 !important;
  text-align: center;
}
.gslide-description .gdesc-inner .gslide-title {
  color: #ffffff !important;
  font-family: "Quicksand" !important;
  font-size: 1rem;
  font-weight: 700;
}

.glightbox-open {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
  height: auto;
}

.glightbox-open {
  height: 100% !important;
}

html.glightbox-open {
  overflow: initial;
}

.numbers {
  margin: 120px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
@media (max-width: 991px) {
  .numbers {
    padding: 0 40px;
  }
}
.numbers__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .numbers__wrap {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .numbers__wrap {
    gap: 5rem;
  }
}

.numbers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
@media (max-width: 767px) {
  .numbers-card {
    flex-direction: row;
    gap: 42px;
  }
}
@media (min-width: 768px) {
  .numbers-card {
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
}
.numbers-card__img {
  background: #ffffff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 24px solid #F1EEE4;
  position: relative;
}
@media (max-width: 991px) {
  .numbers-card__img {
    width: 95px;
    height: 95px;
    border: 12px solid #F1EEE4;
    min-width: 95px;
  }
}
.numbers-card__img:after {
  content: "";
  width: 225px;
  height: 225px;
  border: 1px solid #fff;
  position: absolute;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .numbers-card__img:after {
    width: 125px;
    height: 125px;
  }
}
.numbers-card__img img {
  width: 95px;
  height: 95px;
}
@media (max-width: 991px) {
  .numbers-card__img img {
    width: 45px;
    height: 45px;
  }
}
.numbers-card__text {
  text-align: left;
}
@media (min-width: 768px) {
  .numbers-card__text {
    text-align: center;
  }
}
.numbers-card__text .number {
  font-family: "Yeseva One", sans-serif;
  color: #151515;
  margin: 0;
  padding: 0;
  font-size: 3rem;
}
@media (min-width: 992px) {
  .numbers-card__text .number {
    font-size: 6rem;
    letter-spacing: -3.84px;
  }
}
.numbers-card__text .desc {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  padding: 0 10px;
}
@media (min-width: 992px) {
  .numbers-card__text .desc {
    font-size: 1.25rem;
  }
}

.whole-menu {
  max-width: 1040px;
  margin: 80px auto;
}
@media (min-width: 768px) {
  .whole-menu {
    margin: 56px auto 164px auto;
  }
}
.whole-menu__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.whole-menu__title .heading {
  margin: 0;
}
.whole-menu__categories {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  max-width: 735px;
  margin: 40px auto;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .whole-menu__categories {
    overflow: auto;
    align-items: initial;
    justify-content: unset;
    align-items: center;
    justify-content: center;
    margin: 40px -40px 0 -40px;
  }
}
@media (min-width: 1200px) {
  .whole-menu__categories {
    max-width: 800px;
  }
}
@media (max-width: 767px) {
  .whole-menu__categories .btn {
    font-size: 0.875rem;
    padding: 0 1rem;
    min-height: 40px;
    height: 40px;
  }
}
.whole-menu__wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-items: flex-start;
  margin: 40px 0;
}
.whole-menu__wrap .category__heading {
  font-size: 2rem;
  font-family: "Yeseva One", sans-serif;
  letter-spacing: -1.28px;
  padding-bottom: 1rem;
  border-bottom: 2px solid #CEA100;
}
.whole-menu__wrap .category__dishes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-header {
  height: 56px;
  min-height: 56px;
  background: #151515;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .mobile-header {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media (min-width: 1200px) {
  .mobile-header {
    display: none;
  }
}
.mobile-header__logo {
  width: 219px;
  height: 20px;
}

.social {
  display: flex;
  align-items: center;
  max-width: fit-content;
}
.social__icons {
  display: flex;
  background: #ede4c7;
  border-radius: 50% 0 0 50%;
}
.social__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #151515;
  background: #ede4c7;
  transition: 0.3s ease-in-out;
}
.social__item:hover {
  background: #e6d59b;
  border-color: #e6d59b;
}
.social__item.social__item--facebook {
  border-radius: 50% 0 0 50%;
}
.social__share {
  width: 50px;
  height: 50px;
  background: #ede4c7;
  border-radius: 0 50% 50% 0;
}
.social__share .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151515;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.sharing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  margin-top: 100px;
  border-top: 1px solid #ede4c7;
}
@media (max-width: 767px) {
  .sharing {
    flex-direction: column;
    gap: 2rem;
    margin-top: 50px;
  }
}
.sharing .title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #151515;
}

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 0;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
.masonry {
  width: 100%;
}
@media (min-width: 768px) {
  .masonry {
    padding: 80px 0 0 0;
  }
}
.masonry__holder {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.masonry__holder .heading {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .masonry__holder .heading {
    margin-bottom: 4.5rem;
  }
}
.masonry__grid:before {
  content: "";
  display: table;
  clear: both;
}
.masonry__grid:after {
  content: "";
  display: table;
  clear: both;
}
.masonry__grid .item a picture img {
  max-width: 100%;
  display: block;
  border: 1px solid #f3f5f7;
  transition: 0.25s all ease;
}
.masonry__grid .item:hover {
  cursor: zoom-in;
}
.masonry__grid .item:hover a img {
  transform: scale(1.03);
  z-index: 999;
}

.fold {
  margin: 80px auto;
  max-width: 1240px;
}
@media (min-width: 768px) {
  .fold {
    margin: 6.5rem auto;
  }
}
.fold__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .fold__inner {
    gap: 5rem;
  }
}
.fold__inner .text .heading {
  font-family: "Yeseva One", sans-serif;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .fold__inner .text .heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.fold__inner .text .decoration {
  margin-bottom: 2rem;
}
.fold__inner .text .large-text {
  font-size: 2.25rem;
  font-family: "Yeseva One", sans-serif;
  line-height: 1.08;
  color: #151515;
  font-weight: 400;
}
@media (min-width: 768px) {
  .fold__inner .text .large-text {
    letter-spacing: -3.84px;
    font-size: 6rem;
  }
}
.fold__inner .text .info {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .fold__inner .text .info {
    font-size: 1.5rem;
  }
}
.fold__inner .text .info a {
  color: #CEA100;
  border-bottom: 1px solid #CEA100;
}
.fold__inner .text .info div div {
  font-size: 1.5rem;
}
.fold__inner .text .info div div a {
  color: #CEA100;
  border-bottom: 1px solid #CEA100;
}
.fold__inner .image-holder {
  position: relative;
}
.fold__inner .image-holder picture, .fold__inner .image-holder img {
  width: 100%;
  height: auto;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 100px;
  filter: drop-shadow(24px 24px 64px rgba(0, 0, 0, 0.16));
}
@media (max-width: 767px) {
  .fold__inner .image-holder picture, .fold__inner .image-holder img {
    border-bottom-left-radius: 70px;
    border-top-right-radius: 70px;
  }
}
@media (min-width: 768px) {
  .fold__inner .image-holder.image-holder-aspect picture, .fold__inner .image-holder.image-holder-aspect img {
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}

.icon-card {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-left: 20px;
  margin-top: 10px;
  gap: 2rem;
}
@media screen and (min-width: 1600px) {
  .icon-card {
    margin-left: 40px;
    margin-top: 20px;
  }
}
.icon-card .decoration {
  position: absolute;
  left: -40px;
  top: -20px;
  width: 60px;
  height: 60px;
  background: rgba(230, 213, 155, 0.4);
  border-radius: 50%;
  z-index: 1;
}
@media screen and (min-width: 1600px) {
  .icon-card .decoration {
    left: -40px;
    top: -20px;
    width: 80px;
    height: 80px;
  }
}
.icon-card__icon {
  z-index: 2;
}
.icon-card__icon img {
  max-width: 50px;
  height: auto;
}
@media (min-width: 768px) {
  .icon-card__icon img {
    max-width: 68px;
  }
}
@media screen and (min-width: 1600px) {
  .icon-card__icon img {
    max-width: 88px;
  }
}
.icon-card__content {
  flex: 1;
}
.icon-card__content .icon-card__title {
  font-family: "Yeseva One", sans-serif;
  font-size: 1.5rem;
  margin: 0 0 1.5rem 0;
  max-width: 60vw;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  .icon-card__content .icon-card__title {
    letter-spacing: -1.92px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1600px) {
  .icon-card__content .icon-card__title {
    max-width: 400px;
    font-size: 3rem;
  }
}
.icon-card__content .icon-card__description {
  font-family: "Quicksand";
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}
@media screen and (min-width: 1600px) {
  .icon-card__content .icon-card__description {
    line-height: 1.6;
    font-size: 1.25rem;
  }
}
