:root {
  --font-family: "RF Rufo";
  --second-family: "Inter";
  --third-family: "Roboto";
  --light-green: #008d5a;
  --beige-20: #f0deba;
  --beige-10: #f4e6cb;
  --text-secondary: #737373;
  --text-primary: #031f00;
  --text-title: #105640;
  --primary-main: #105640;
  --primary-white: #fff;
  --green-10: rgb(0, 85, 62);
  --green-20: #033e26;
  --background-papper: #fff;
  --background-yellow: #fcf7ed;
  --secondary-main: #008d5a;
  --grey-300: #d9d9d9;
  --grey-400: #b9b9b9;
  --grey-600: #475467;
  --success-300: #6ce9a6;
  --error-500: #f04438;
  --error-300: #fda29b;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a, .link {
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--light-green);
  transition: 0.3s;
}
a:hover, .link:hover {
  color: var(--green-10);
}

body {
  font-size: 16px;
  font-family: var(--font-family), sans-serif;
  color: var(--text-primary);
}

.container {
  padding: 0 16px;
  max-width: 1332px;
  margin: 0 auto;
  width: 100%;
}
.container--sm {
  max-width: 832px;
}

.icon {
  width: 24px;
  height: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  border: 0;
  outline: none;
}
.icon svg {
  max-width: 24px;
  max-height: 24px;
  width: auto;
  height: auto;
}

.btn {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.11;
  letter-spacing: 0.01em;
  outline: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.btn--main {
  border-radius: 32px;
  padding: 18px 32px;
  display: inline-flex;
  color: var(--primary-white);
  background: var(--primary-main);
}
.btn--main:hover {
  color: var(--primary-white);
  background: var(--light-green);
}
.btn--bordered {
  border: 1px solid currentColor;
  border-radius: 32px;
  padding: clamp(12px, 2vw, 18px) clamp(24px, 2.25vw, 32px);
  color: var(--text-title);
}
.btn--bordered:hover {
  background: var(--text-title);
  border-color: var(--text-title);
  color: #fff;
}
.btn--sm {
  padding: 10px 24px;
}
.btn--xs {
  font-size: 14px;
  padding: 10px 12px;
}
.btn--out:hover {
  text-decoration: none !important;
  background: var(--light-green);
  border-color: var(--light-green);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-36 {
  margin-bottom: 36px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-24 {
  margin-top: 24px;
}

.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-50 {
  padding-top: clamp(32px, 4vw, 50px);
  padding-bottom: clamp(32px, 4vw, 50px);
}

.pb-50 {
  padding-bottom: 50px;
}

.pt-24 {
  padding-top: 24px;
}

.text-transform-initial {
  text-transform: initial;
}

.color-white {
  color: #fff;
}

.color-text-primary {
  color: var(--text-title) !important;
}

.top-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.44;
  letter-spacing: 0.01em;
  color: var(--light-green);
}
@media screen and (max-width: 992px) {
  .top-title {
    font-weight: 600;
  }
}

.snippet {
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--text-title);
}

.snippet-md {
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.67;
  letter-spacing: 0.01em;
  color: var(--text-title);
}

.snippet-xl {
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1, .h1 {
  font-weight: 700;
  font-size: clamp(32px, 5vw, 65px);
  line-height: 1.17;
  text-transform: uppercase;
  color: var(--text-title);
}
@media screen and (max-width: 768px) {
  h1, .h1 {
    line-height: 1.375;
  }
}

h2, .h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-title);
}
@media screen and (max-width: 768px) {
  h2, .h2 {
    letter-spacing: -0.02em;
    line-height: 1.375;
  }
}

h3, .h3 {
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 36px);
  line-height: 1.22222;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-title);
}
@media screen and (max-width: 768px) {
  h3, .h3 {
    line-height: 1.44444;
    letter-spacing: -0.03em;
  }
}

h4, .h4 {
  font-weight: 700;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.33333;
  letter-spacing: 0em;
  color: var(--text-title);
}

h5, .h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.33333;
  color: var(--text-title);
}

h6, .h6 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.33333;
  color: var(--text-title);
}

.bbadge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid var(--text-title);
  border-radius: 32px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.11111;
  letter-spacing: 0.01em;
  color: var(--text-title);
}

.cbreadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.cbreadcrumbs .breadcrumb_last {
  opacity: 0.75;
}

.fw-600 {
  font-weight: 600;
}

.bg-yellow {
  background-color: var(--background-yellow) !important;
}

.wp-block-image img {
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .mb-sm-8 {
    margin-bottom: 8px;
  }
  .mb-sm-16 {
    margin-bottom: 16px;
  }
  .mb-sm-20 {
    margin-bottom: 20px;
  }
  .mb-sm-24 {
    margin-bottom: 24px;
  }
  .pb-sm-32 {
    padding-bottom: 32px;
  }
}
.swiper-button-next, .swiper-button-prev {
  color: var(--light-green) !important;
}

.swiper-pagination-bullet {
  background: transparent !important;
  border: 1px solid #40b451;
  border-radius: 8px !important;
  opacity: 1 !important;
  transition: 0.2s !important;
}

.swiper-pagination-bullet-active {
  width: 32px !important;
  background: #40b451 !important;
}

#sb_instagram #sbi_images,
#sb_instagram {
  padding: 0 !important;
}

.aligncenter {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
}

.pbanner--recipe {
  min-height: clamp(250px, 25vw, 400px);
}

.srecipe {
  background: var(--background-yellow);
}
.srecipe__header {
  max-width: 660px;
  margin: 0 auto;
}
.srecipe__title {
  text-align: center;
}
.srecipe__snippet {
  text-align: center;
}
.srecipe__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.srecipe__media {
  max-width: 960px;
  margin: 0 auto;
}
.srecipe__wrapper {
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.srecipe__wrapper iframe,
.srecipe__wrapper img,
.srecipe__wrapper source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.srecipe__content {
  max-width: 800px;
  margin: 0 auto;
}
.srecipe__list {
  padding: clamp(24px, 2.5vw, 32px);
  background: #fff;
  border-radius: 24px;
}
.srecipe__instuctions {
  padding: clamp(24px, 2.5vw, 32px);
  background: #fff;
  border-radius: 24px;
}
.srecipe__instuctions ol {
  list-style: none;
  counter-reset: recipe-steps;
}
.srecipe__instuctions ol li {
  position: relative;
  padding-left: 46px;
  font-weight: 600;
  font-size: clamp(16px, 2v2, 18px);
  line-height: 1.66667;
  letter-spacing: 0.01em;
  color: var(--text-title);
}
.srecipe__instuctions ol li + li {
  margin-top: 24px;
}
.srecipe__instuctions ol li::before {
  counter-increment: recipe-steps;
  content: counter(recipe-steps);
  position: absolute;
  left: 0;
  background: white;
  border: 1px solid #006838;
  color: #006838;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.srecipe__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .srecipe__title {
    font-size: 24px;
  }
  .srecipe__wrapper {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    border-radius: 0;
  }
  .srecipe__footer {
    flex-direction: column;
  }
}

.rbadge {
  background: var(--beige-10);
  padding: 10px 16px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: 0.01em;
  color: var(--light-green);
  white-space: nowrap;
}

.rlevels {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rlevels__points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.rlevels__item {
  border: 2px solid var(--light-green);
  height: 16px;
  width: 16px;
  flex: 0 0 16px;
  background: transparent;
  border-radius: 100%;
}
.rlevels__item--filled {
  background: var(--light-green);
}

.ingredients {
  list-style: none;
}
.ingredients__row {
  padding: 8px 0 8px 24px;
  position: relative;
  font-weight: 600;
  font-size: clamp(16px, 2v2, 18px);
  line-height: 1.66667;
  letter-spacing: 0.01em;
  color: var(--text-title);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  cursor: pointer;
}
.ingredients__row + .ingredients__row {
  border-top: 1px solid var(--grey-300);
}
.ingredients__row:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--light-green);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.ingredients__row:hover:before {
  background: var(--green-10);
}
.ingredients__row--checked {
  color: var(--grey-400);
  text-decoration: line-through;
}
.ingredients__row--checked:before {
  background: var(--grey-400) !important;
}
@media screen and (max-width: 768px) {
  .ingredients {
    line-height: 1.5;
  }
}

.related {
  background: #fff;
}

.rcard {
  border: 1px solid var(--grey-300);
  border-radius: 24px;
  overflow: hidden;
  max-width: 420px;
}
.rcard__image {
  position: relative;
  padding-bottom: 75%;
  display: block;
  overflow: hidden;
}
.rcard__image img, .rcard__image source {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.8s;
}
@media (prefers-reduced-motion: no-preference) {
  .rcard:hover .rcard__image img, .rcard:hover .rcard__image source {
    transform: scale(1.075);
  }
}
.rcard__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: clamp(8px, 2vw, 16px) clamp(14px, 2.5vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
}
.rcard__item {
  font-weight: 500;
  font-size: 16px;
  color: var(--light-green);
  display: flex;
  align-items: center;
  gap: clamp(4px, 1.5vw, 10px);
}
.rcard__main {
  padding: 24px;
}
.rcard__title {
  text-transform: uppercase;
}

.rarchive {
  margin: clamp(32px, 3vw, 50px) 0;
}
.rarchive__grid {
  display: grid;
  grid-gap: 58px 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.rarchive__head {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .rarchive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
@media screen and (max-width: 840px) {
  .rarchive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media screen and (max-width: 540px) {
  .rarchive__grid {
    grid-template-columns: 1fr;
  }
}

.parchive__head {
  background: var(--background-yellow);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  overflow: auto;
}
.parchive__categories {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--grey-300);
  border-radius: 86px;
}
.parchive__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .parchive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .parchive__head {
    padding: 4px;
  }
  .parchive__categories {
    border-radius: 24px;
  }
}
@media screen and (max-width: 840px) {
  .parchive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .parchive__head {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    border-radius: 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 540px) {
  .parchive__grid {
    grid-template-columns: 1fr;
  }
}

.pcard {
  border: 1px solid var(--grey-300);
  border-radius: clamp(16px, 2vw, 24px);
  background: #fff;
  max-width: 420px;
}
.pcard__image {
  display: block;
  padding: clamp(10px, 2vw, 24px);
  overflow: hidden;
}
.pcard__image img {
  transition: 0.6s;
}
.pcard__image:hover img {
  transform: scale(1.075);
}
.pcard__main {
  border-top: 1px solid var(--grey-300);
  padding: clamp(16px, 2vw, 24px);
}

.catlink {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: 0.01em;
  color: var(--text-title);
  border-radius: 86px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.catlink--link {
  background: var(--light-green);
  color: var(--text-title);
}
.catlink:hover {
  background: var(--light-green);
  color: #fff;
}
.catlink--active {
  background: var(--light-green);
  color: #fff !important;
}
@media screen and (max-width: 1160px) {
  .catlink {
    white-space: nowrap;
  }
}

.single-product__wrapper {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 20px;
}
.single-product__image {
  display: grid;
  overflow: hidden;
  max-width: 100%;
}
.single-product .swiper {
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  min-height: 0;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .single-product__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 840px) {
  .single-product__wrapper {
    grid-template-columns: 1fr;
  }
}

.gallery__main {
  display: grid;
  overflow: hidden;
  max-width: 100%;
}

.tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  padding: 4px;
  border-radius: 86px;
  background: var(--background-yellow);
}

.tab-button {
  padding: 10px clamp(10px, 2vw, 16px);
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.42857;
  letter-spacing: 0.01em;
  color: var(--text-title);
}
.tab-button:hover {
  background: var(--light-green);
  color: #fff;
}
.tab-button.active {
  background: var(--light-green);
  color: white;
}
@media screen and (max-width: 768px) {
  .tab-button {
    border-radius: 20px;
  }
}

.tab-content {
  display: none;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--text-title);
  border-radius: 16px;
  padding: 16px 20px;
  background: var(--background-yellow);
}

.tab-content.active {
  display: block;
}

.tab-content p:not(:last-of-type) {
  margin-bottom: 16px;
}

.related .swiper {
  overflow: visible;
}

.header {
  position: relative;
  z-index: 222;
}
.header__top {
  background: var(--green-10);
  color: #fff;
  padding: 8px 0;
}
.header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__action {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
}
.header__bottom {
  background: var(--beige-10);
}
.header__action * {
  color: #fff;
}
@media screen and (max-width: 992px) {
  .header__top {
    display: none;
  }
  .header__bottom {
    z-index: 2;
  }
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  gap: 16px;
}
@media screen and (min-width: 993px) {
  .topnav__left, .topnav__right {
    flex: 0 0 calc(50% - 78px);
  }
  .topnav__left .menu {
    justify-content: flex-end !important;
  }
  .topnav__right .menu {
    justify-content: flex-start !important;
  }
}
.topnav .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  width: 100%;
}
.topnav .menu .menu-item {
  position: relative;
}
.topnav .menu .menu-item a {
  padding: 12px clamp(24px, 2.25vw, 30px);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text-title);
  text-decoration: none;
  display: flex;
  align-items: center;
  border-radius: 20px;
}
.topnav .menu .menu-item a:hover {
  background: var(--beige-10);
  color: var(--light-green);
}
.topnav .menu .sub-menu {
  position: absolute;
  list-style-type: none;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  z-index: 22;
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.15);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.topnav .menu .sub-menu .menu-item a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 8px 12px;
}
.topnav .menu .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.topnav .menu .menu-item-has-children > a {
  cursor: default;
}
.topnav .menu .menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik04LjgyNSAwLjkxMjU5OEw1IDQuNzI5MjZMMS4xNzUgMC45MTI1OThMMCAyLjA4NzZMNSA3LjA4NzZMMTAgMi4wODc2TDguODI1IDAuOTEyNTk4WiIgZmlsbD0iIzEwNTY0MCIvPgo8L3N2Zz4=") no-repeat center/12px 7px;
  transform: translateY(2px);
}
.topnav__mob {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .topnav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    flex-direction: column;
    background: var(--beige-10);
    z-index: 222;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 375px;
    width: 100%;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: 0.3s;
    overflow: scroll;
  }
  .topnav__center {
    display: none;
  }
  .topnav__left, .topnav__right {
    width: 100%;
  }
  .topnav .menu {
    flex-direction: column;
  }
  .topnav .menu li {
    width: 100%;
  }
  .topnav .menu li {
    margin-bottom: 16px;
  }
  .topnav .menu .sub-menu li {
    margin-bottom: 0;
  }
  .topnav .menu a {
    width: 100%;
    background: #fff !important;
    justify-content: space-between;
    white-space: initial;
    transition: 0.1s;
    padding: 8px 12px !important;
  }
  .topnav .menu a.state-expanded {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .topnav__mob {
    display: flex;
  }
  .show-menu .topnav {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .topnav .header__social {
    margin-top: auto;
    justify-content: center;
    width: 100%;
  }
  .topnav .header__social svg,
  .topnav .header__social svg * {
    fill: currentColor;
  }
  .topnav .sub-menu {
    width: 100%;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: unset !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    max-height: 0;
    padding: 0 !important;
    overflow: hidden;
  }
  .topnav .state-expanded + .sub-menu {
    padding: 0 16px 12px !important;
  }
  .topnav .menu li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .topnav .menu-item a {
    white-space: initial !important;
  }
}

.paranja {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 44;
}

.show-menu {
  overflow: hidden;
}

.show-menu .paranja {
  display: block;
}

.mobnav {
  background: var(--beige-10);
  border-radius: 0 0 24px 24px;
  display: none;
  z-index: 44;
  position: sticky;
  top: 0;
  box-shadow: 0 0 7px 0px rgba(0, 0, 0, 0.3);
}
.mobnav__wrapper {
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  display: flex;
}
.mobnav__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.mobnav__logo img {
  max-height: 48px;
  width: auto;
}
@media screen and (max-width: 992px) {
  .mobnav {
    display: block;
  }
}

.hbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
}

.main {
  overflow: hidden;
}

.langselect {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  position: relative;
}
.langselect__current {
  position: relative;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.langselect__list {
  position: absolute;
  bottom: 0;
  left: 50%;
  padding: 10px 16px;
  min-width: 64px;
  transform: translate(-50%, 101%);
  background-color: #fff;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: #000;
  z-index: 5;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.langselect__list a {
  display: block;
  padding: 0.35rem 0;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1em;
}
.langselect__list a:hover {
  color: var(--light-green);
}
.langselect__list ul {
  list-style-type: none;
}
.langselect:hover .langselect__list {
  opacity: 1;
  visibility: visible;
}

.hbanner {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hbanner:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
  position: absolute;
}
.hbanner__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.hbanner__title {
  color: #fff;
  z-index: 3;
  position: relative;
  max-width: 740px;
}
.hbanner__button {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 992px) {
  .hbanner {
    min-height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .hbanner {
    text-align: center;
  }
}

.ctandi {
  background: var(--beige-10);
  overflow: hidden;
}
.ctandi__title {
  color: var(--text-title);
  text-shadow: 8px 12px 24px 0 rgba(0, 0, 0, 0.05);
}
.ctandi__image img {
  border-radius: 24px;
}
.ctandi__wrapper {
  display: grid;
  gap: clamp(24px, 3vw, 48px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}
.ctandi--left .ctandi__image {
  order: 1;
}
.ctandi--left .ctandi__content {
  order: 2;
}
.ctandi--left .ctandi__top {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33333;
  text-transform: capitalize;
  color: var(--light-green);
  margin-bottom: 16px;
}
.ctandi--left .ctandi__top:before {
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDMyIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHk9IjAuMDAwNDg4MjgxIiB3aWR0aD0iMzIiIGhlaWdodD0iMiIgcng9IjEiIGZpbGw9IiMwMDhENUEiLz4KPC9zdmc+") no-repeat center/cover;
  border-radius: 2px;
  width: 32px;
  height: 2px;
}
.ctandi--left .ctandi__top ~ .ctandi__title, .ctandi--left .ctandi__top ~ .ctandi__snippet {
  padding-left: 46px;
}
@media screen and (max-width: 940px) {
  .ctandi__wrapper {
    display: flex;
    flex-direction: column;
  }
  .ctandi__snippet {
    font-weight: 600;
  }
  .ctandi + .ctandi {
    padding-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .ctandi--left .ctandi__top ~ .ctandi__title, .ctandi--left .ctandi__top ~ .ctandi__snippet {
    padding-left: 0;
  }
  .ctandi__top {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

.nquality {
  background: var(--green-10);
  text-align: center;
  position: relative;
}
.nquality .container {
  position: relative;
}
.nquality__title {
  color: var(--beige-20);
}
.nquality__snippet {
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary-white);
}
.nquality__badge {
  position: absolute;
  top: -24px;
  left: 0;
  pointer-events: none;
  max-width: clamp(100px, 15vw, 194px);
  height: auto;
}
.nquality .swiper {
  padding-bottom: 34px;
  overflow: visible;
}
.nquality .swiper-pagination {
  bottom: 0 !important;
}
.nquality .pagecard .btn--bordered {
  color: #fff;
}
.nquality .pagecard .btn--bordered:hover {
  background: #fff;
  color: var(--text-title);
}
@media screen and (max-width: 1024px) {
  .nquality__badge {
    position: static;
  }
}

.pagecard__title {
  text-align: center;
  color: var(--primary-white);
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}
.pagecard__image {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  height: 360px;
}
.pagecard__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ncategories {
  background: var(--background-yellow);
  text-align: center;
}
.ncategories .swiper {
  overflow: visible;
}
.ncategories__snippet {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.catcard {
  background: var(--primary-white);
  border: 1px solid var(--grey-300);
  border-radius: 24px;
  text-align: left;
  position: relative;
}
.catcard__content {
  padding: 24px;
  border-top: 1px solid var(--grey-300);
}
.catcard__badge {
  position: absolute;
  bottom: 20px;
  right: 22px;
  max-width: clamp(56px, 6vw, 96px);
  height: auto;
}
.catcard__snippet {
  max-width: 250px;
}
@media screen and (min-width: 992px) {
  .catcard__action {
    padding-right: 100px;
  }
}

.einstagram {
  padding: 50px 0 0;
  margin-top: 50px;
}
.einstagram__action {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .einstagram {
    margin-top: 0;
    padding-top: 32px;
  }
}

.footer {
  background: var(--text-title);
  color: #fff;
  position: relative;
  margin-top: 188px;
}
.footer__top {
  position: relative;
}
.footer__bg {
  width: 100%;
  height: auto;
  max-height: 614px;
  object-fit: cover;
  object-position: top right;
  position: absolute;
  bottom: 0;
  right: 0;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 56px 0 48px;
  position: relative;
  z-index: 2;
}
.footer__bottom {
  background: var(--green-20);
  padding: 16px 0;
}
.footer__bwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bwrap .footer__col {
  min-width: 142px;
}
.footer__dev {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  white-space: nowrap;
  min-width: 142px;
}
.footer__dev img {
  max-height: 27px;
  width: auto;
}
.footer__info {
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--primary-white);
}
.footer a {
  text-decoration: none;
  color: inherit;
}
.footer a:hover {
  text-decoration: underline;
}
.footer__mtitle {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.33333;
  color: #4bd35f;
  margin-bottom: 12px;
}
.footer__links {
  list-style: none;
}
.footer__links a {
  padding: 8px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--primary-white);
  display: block;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__gap {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .footer {
    margin-top: 82px;
    background: #04442a;
  }
  .footer:before {
    content: "";
    display: block;
    width: 100%;
    height: 58px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzc1IiBoZWlnaHQ9IjU4IiB2aWV3Qm94PSIwIDAgMzc1IDU4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxwYXRoIGQ9Ik0wIDBDMCAwIDc4Ljg3MjEgNDEuODY1NSAxODguMDIgNDAuNTIzMkMyOTcuMTY3IDM5LjE4MDkgMzc1IDAgMzc1IDBWNThIMFYwWiIgZmlsbD0iIzA0NDQyQSIgLz4KPC9zdmc+) no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    z-index: 11;
    left: 0;
    transform: translateY(-99%);
  }
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }
  .footer__wrapper .footer__col {
    order: 1;
    border-bottom: 1px solid #023621;
  }
  .footer__wrapper .footer__col--1 {
    order: 4;
    border-bottom: 0;
    margin: 24px auto 0;
    min-width: 235px;
    width: 235px;
    text-align: center;
  }
  .footer__wrapper .footer__col--1 .header__social {
    justify-content: center;
  }
  .footer__mtitle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 0;
    padding: 16px 0;
    cursor: pointer;
  }
  .footer__mtitle:after {
    content: "";
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjgyNSA2LjkxMjQ4TDEwIDEwLjcyOTFMNi4xNzUgNi45MTI0OEw1IDguMDg3NDhMMTAgMTMuMDg3NUwxNSA4LjA4NzQ4TDEzLjgyNSA2LjkxMjQ4WiIgZmlsbD0iI0Y2RjZGNiIvPgo8L3N2Zz4=") no-repeat center/contain;
    transition: 0.2s;
  }
  .footer__mtitle.state-expanded:after {
    transform: rotate(180deg);
  }
  .footer__links {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
  }
  .footer__links li:last-child {
    margin-bottom: 16px;
  }
  .footer__bg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer__bwrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer__bwrap .footer__col {
    min-width: unset;
  }
  .footer__gap {
    flex-direction: column;
    gap: 12px;
  }
}

.pbanner {
  background: var(--bg-image);
  position: relative;
  padding: 50px 0 108px;
  color: #fff;
  background-size: cover;
  background-position: center center;
  min-height: 400px;
  background-attachment: fixed;
}
.pbanner::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  top: 0;
  left: 0;
}
.pbanner .container {
  position: relative;
  z-index: 2;
}
.pbanner__title {
  max-width: 650px;
  color: #fff;
}
.pbanner__snippet {
  max-width: 650px;
}

.main:has(.pbanner),
.main:has(.hbanner) {
  margin-top: -24px;
}

.cwysiwyg {
  background: #fff;
}
.cwysiwyg__content {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.36364;
  letter-spacing: 0.01em;
  color: var(--text-title);
}
.cwysiwyg h2 {
  margin-bottom: 16px;
}
.cwysiwyg h3 {
  margin-bottom: 30px;
  color: var(--light-green);
}
.cwysiwyg p, .cwysiwyg ul, .cwysiwyg ol {
  margin: 0 0 30px;
}
.cwysiwyg img {
  margin: 30px 0;
}
.cwysiwyg ul, .cwysiwyg ol {
  padding-left: 1em;
}
.cwysiwyg .wp-block-columns {
  margin-bottom: clamp(24px, 2vw, 32px);
}
.cwysiwyg .wp-block-columns img {
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (max-width: 992px) {
  .cwysiwyg {
    line-height: 1.66;
  }
  .cwysiwyg h3 {
    margin-bottom: 16px;
  }
  .cwysiwyg p, .cwysiwyg ul, .cwysiwyg ol {
    margin: 0 0 16px;
  }
  .cwysiwyg img {
    margin: 16px 0 32px;
  }
}

.cbreadcrumbs > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.cbreadcrumbs > span > span:first-child a {
  font-size: 0;
  position: relative;
}
.cbreadcrumbs > span > span:first-child a:after {
  content: "";
  display: inline-flex;
  width: 14px;
  height: 14px;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNzUgNS4yNTAwOEw3IDEuMTY2NzVMMTIuMjUgNS4yNTAwOFYxMS42NjY3QzEyLjI1IDExLjk3NjIgMTIuMTI3MSAxMi4yNzI5IDExLjkwODMgMTIuNDkxN0MxMS42ODk1IDEyLjcxMDUgMTEuMzkyOCAxMi44MzM0IDExLjA4MzMgMTIuODMzNEgyLjkxNjY3QzIuNjA3MjUgMTIuODMzNCAyLjMxMDUgMTIuNzEwNSAyLjA5MTcxIDEyLjQ5MTdDMS44NzI5MiAxMi4yNzI5IDEuNzUgMTEuOTc2MiAxLjc1IDExLjY2NjdWNS4yNTAwOFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS4xNjY2NyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik01LjI1IDEyLjgzMzNWN0g4Ljc1VjEyLjgzMzMiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS4xNjY2NyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background: currentColor;
  transform: translateY(-1px);
}
.cbreadcrumbs > span > span {
  display: inline-flex;
  position: relative;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.28571;
  letter-spacing: 0.01em;
  color: currentColor;
}
.cbreadcrumbs > span > span + span:before {
  content: "";
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNS4yNSAxMC41TDguNzUgN0w1LjI1IDMuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjE2NjY3IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIC8+Cjwvc3ZnPg==");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background: currentColor;
}

.cslider__title {
  text-align: center;
}
.cslider__thumbs .swiper-slide {
  max-width: 128px;
}
.cslider__thumb {
  padding: 4px;
  border-radius: 8px;
  cursor: pointer;
}
.swiper-slide-thumb-active .cslider__thumb {
  background: var(--beige-10);
}
.cslider__thumb span {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text-primary);
  padding-top: 8px;
  display: block;
}

.share {
  display: flex;
  align-items: center;
  gap: 24px;
}
.share__label {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--text-title);
}
.share__buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}
.share__icon {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light-green);
  padding: 8px;
  transition: 0.3s;
}
.share__icon:hover {
  background: var(--green-10);
}

.career {
  margin: clamp(32px, 4vw, 50px) 0;
}
.career .swiper {
  overflow: visible;
}
.career__top {
  max-width: 661px;
  margin: 0 auto;
}
.career__grid {
  display: grid;
  grid-gap: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.career .swiper-slide {
  height: auto;
}

.ccard {
  border: 1px solid var(--grey-300);
  border-radius: 24px;
  padding: clamp(24px, 2.5vw, 32px);
  height: 100%;
}
.ccard__snippet {
  line-height: 1.5;
}

.cpages {
  background: var(--background-yellow);
  padding: 50px 0;
}

.cpage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(24px, 3vw, 50px) 0;
  align-items: center;
}
.cpage__content {
  padding: 50px 96px;
}
.cpage__snippet {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.66667;
  letter-spacing: 0.01em;
  color: var(--text-title);
}
.cpage__image img {
  border-radius: 24px;
}
@media screen and (max-width: 1024px) {
  .cpage__content {
    padding: 32px;
  }
}
@media screen and (max-width: 768px) {
  .cpage {
    grid-template-columns: 1fr;
  }
  .cpage__content {
    padding: 16px 0 0;
  }
}

.fcontact .cbreadcrumbs span {
  color: var(--text-title);
}
.fcontact__title {
  margin-bottom: clamp(24px, 3.25vw, 48px);
}
.fcontact__wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 3.5vw, 48px);
  align-items: start;
}
.fcontact__right {
  padding: clamp(24px, 3.25vw, 48px);
  background: var(--background-yellow);
  border-radius: 24px;
}
.fcontact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fcontact__item svg {
  margin-bottom: 20px;
}
.fcontact__item h4 {
  margin-bottom: 8px;
}
.fcontact__item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text-title);
}
.fcontact__item p + p {
  margin-top: 16px;
}
.fcontact__item + .fcontact__item {
  margin-top: clamp(24px, 4.25vw, 64px);
}
.fcontact .btn {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fcontact__wrapper {
    grid-template-columns: 1fr;
  }
  .fcontact__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
  }
  .fcontact__item p + p {
    margin-top: 8px;
  }
  .fcontact__cl * {
    text-align: left !important;
  }
}

.cinput {
  display: block;
  margin-bottom: 24px;
}
.cinput__label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: 0.01em;
  color: var(--text-title);
  padding-left: 14px;
}
.cinput input, .cinput select, .cinput textarea {
  padding: 8px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 86px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--text-title);
  font-family: inherit;
}
.cinput textarea {
  border-radius: 8px;
  padding: 10px 14px;
}
.cinput .wpcf7-form-control-wrap,
.cinput .wpcf7-form-control {
  display: flex;
  flex-direction: column;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--text-title);
}

.wpcf7-list-item input {
  appearance: none;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  padding: 0;
  border: 1px solid var(--light-green);
  border-radius: 6px;
  margin-right: 12px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.3s;
}
.wpcf7-list-item input:checked {
  background: var(--light-green);
}
.wpcf7-list-item input:checked:after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjY2NTQgMy41TDUuMjQ4NyA5LjkxNjY3TDIuMzMyMDMgNyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+") no-repeat center/cover;
}

.wpcf7-list-item:hover input {
  background: rgba(0, 85, 62, 0.8);
}

.submitting .btn,
.state-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
  background: #222 !important;
}

.submitting .btn:before,
.state-loading:before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBzdHlsZT0iIiB3aWR0aD0iMjAwcHgiIGhlaWdodD0iMjAwcHgiIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCI+CjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI0U5QjQzRSIgc3Ryb2tlLXdpZHRoPSIyIj4KICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIgdmFsdWVzPSIwOzQwIiBrZXlUaW1lcz0iMDsxIiBrZXlTcGxpbmVzPSIwIDAuMiAwLjggMSIgY2FsY01vZGU9InNwbGluZSIgYmVnaW49IjBzIi8+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0ib3BhY2l0eSIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIGR1cj0iMXMiIHZhbHVlcz0iMTswIiBrZXlUaW1lcz0iMDsxIiBrZXlTcGxpbmVzPSIwLjIgMCAwLjggMSIgY2FsY01vZGU9InNwbGluZSIgYmVnaW49IjBzIi8+CjwvY2lyY2xlPjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2VlZSIgc3Ryb2tlLXdpZHRoPSIyIj4KICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgZHVyPSIxcyIgdmFsdWVzPSIwOzQwIiBrZXlUaW1lcz0iMDsxIiBrZXlTcGxpbmVzPSIwIDAuMiAwLjggMSIgY2FsY01vZGU9InNwbGluZSIgYmVnaW49Ii0wLjVzIi8+CiAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0ib3BhY2l0eSIgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIGR1cj0iMXMiIHZhbHVlcz0iMTswIiBrZXlUaW1lcz0iMDsxIiBrZXlTcGxpbmVzPSIwLjIgMCAwLjggMSIgY2FsY01vZGU9InNwbGluZSIgYmVnaW49Ii0wLjVzIi8+CjwvY2lyY2xlPgo8L3N2Zz4=) no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 22;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

.nrecipes .swiper {
  overflow: visible;
}
@media screen and (min-width: 1080px) {
  .nrecipes__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3.5vw, 58px) clamp(24px, 3.25vw, 48px);
  }
  .nrecipes .swiper, .nrecipes .swiper-slide, .nrecipes .swiper-wrapper {
    display: contents !important;
  }
}

#gmap {
  min-height: 480px;
}

#store-list {
  max-height: 480px;
  overflow: auto;
}

.store-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--green-10);
  gap: 8px;
}
.store-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-wrapper__top {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44444;
  letter-spacing: 0.01em;
  color: var(--light-green);
}
.map-wrapper__title {
  max-width: 585px;
  margin-left: auto;
  margin-right: auto;
}
.map-wrapper__snippet {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.66667;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text-title);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.map-wrapper__interact {
  display: grid;
  grid-template-columns: 4.5fr 8fr;
  gap: clamp(16px, 3vw, 48px);
}
.map-wrapper .zoom-action {
  padding: 16px 24px;
  border-left: 2px solid var(--grey-300);
  cursor: pointer;
  transition: 0.2s;
}
.map-wrapper .zoom-action:hover {
  border-color: var(--text-primary);
}
.map-wrapper .zoom-action--active {
  border-color: var(--light-green);
  pointer-events: none;
}
.map-wrapper .zoom-action label {
  cursor: pointer;
}
.map-wrapper .arrow-back {
  display: none;
}
@media (width < 576px) {
  .map-wrapper__interact {
    grid-template-columns: 1fr;
  }
  .map-wrapper #store-list {
    max-height: unset;
  }
  .map-wrapper #gmap {
    min-height: 300px;
  }
}

.infobox {
  background: #fff;
  color: var(--text-title);
  padding: 1em;
  opacity: 1;
  border-radius: 4px;
  font-size: 14px;
}
.infobox__title {
  font-size: 16px;
  color: var(--text-title);
  font-weight: 600;
  margin-bottom: 12px;
}
.infobox p {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}
.infobox a {
  font-size: inherit;
}
.infobox .btn {
  display: flex;
  width: 100%;
}

.infobox span {
  width: 40%;
}

.infobox span:last-child {
  width: 60%;
  text-align: right;
}

.infoBox {
  opacity: 1 !important;
  border-radius: 4px;
  background: #fff !important;
}

.filial-shop ul {
  list-style-type: none;
}

.infobox-wrapper .infobox {
  display: none;
}

.list-mod ul {
  list-style-type: none;
}
.list-mod li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 8px 24px;
  position: relative;
}
.list-mod li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--light-green);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.list-mod li + li {
  border-top: 1px solid var(--grey-300);
}

.nav-links {
  padding-top: 20px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.nav-links .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--text-title);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links .page-numbers.current {
  border: 1px solid var(--grey-300);
}
.nav-links a.page-numbers:hover {
  color: var(--green-10);
  text-decoration: underline;
}
.nav-links .next {
  width: auto;
  height: auto;
  margin-left: auto;
  color: var(--light-green);
  gap: 4px;
}
.nav-links .next span {
  line-height: 1;
}
.nav-links .prev {
  width: auto;
  height: auto;
  margin-right: auto;
  color: var(--light-green);
  gap: 4px;
}
.nav-links .prev span {
  line-height: 1;
}

.ctender {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--grey-300);
  border-radius: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ctender + .ctender {
  margin-top: 24px;
}
.ctender__expander {
  cursor: pointer;
}
.ctender__top {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: 0.01em;
  color: var(--light-green);
}
.ctender__title {
  position: relative;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.ctender__title:after {
  content: "";
  display: block;
  width: clamp(24px, 2.5vw, 32px);
  height: clamp(24px, 2.5vw, 32px);
  flex: 0 0 clamp(24px, 2.5vw, 32px);
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjMyNSA2LjkxMjZMMTAuNSAxMC43MjkzTDYuNjc1IDYuOTEyNkw1LjUgOC4wODc2TDEwLjUgMTMuMDg3NkwxNS41IDguMDg3NkwxNC4zMjUgNi45MTI2WiIgZmlsbD0iIzEwNTY0MCIvPgo8L3N2Zz4=");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: currentColor;
  transition: 0.2s;
}
.ctender__meta {
  display: flex;
  gap: 24px;
}
.ctender__metalabel {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.66667;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 4px;
}
.ctender__metavalue {
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: 0.01em;
  color: var(--text-title);
}
.ctender__body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.ctender__content {
  margin-top: 24px;
}

.accordion--expanded [class*=__title]:after {
  transform: rotate(180deg);
}

.fcta__inner {
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--grey-300);
  border-radius: 24px;
  padding: clamp(24px, 2vw, 32px);
}

.cpopup {
  max-width: 400px;
  border-radius: clamp(16px, 2vw, 24px);
  padding: clamp(16px, 2vw, 24px) !important;
}
.cpopup .btn {
  width: 100%;
}

.cvacancy {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--grey-300);
  border-radius: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cvacancy + .cvacancy {
  margin-top: 24px;
}
.cvacancy__expander {
  cursor: pointer;
}
.cvacancy__top {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: 0.01em;
  color: var(--light-green);
}
.cvacancy__title {
  position: relative;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.cvacancy__title:after {
  content: "";
  display: block;
  width: clamp(24px, 2.5vw, 32px);
  height: clamp(24px, 2.5vw, 32px);
  flex: 0 0 clamp(24px, 2.5vw, 32px);
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMSAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjMyNSA2LjkxMjZMMTAuNSAxMC43MjkzTDYuNjc1IDYuOTEyNkw1LjUgOC4wODc2TDEwLjUgMTMuMDg3NkwxNS41IDguMDg3NkwxNC4zMjUgNi45MTI2WiIgZmlsbD0iIzEwNTY0MCIvPgo8L3N2Zz4=");
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: currentColor;
  transition: 0.2s;
}
.cvacancy--expanded .cvacancy__title:after {
  transform: rotate(180deg);
}
.cvacancy__meta {
  display: flex;
  gap: 24px;
}
.cvacancy__metaitem {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cvacancy__metalabel {
  display: inline-flex;
}
.cvacancy__metavalue {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--text-title);
}
.cvacancy__body {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}
.cvacancy__content {
  margin-top: 24px;
}

.pvacancies__top {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.44444;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--light-green);
}
.pvacancies__snippet, .pvacancies__title {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content {
  font-size: 18px;
  line-height: 1.66667;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  margin-top: 1em;
  margin-bottom: 16px;
}
.entry-content h1 {
  margin-top: 0.75em;
}
.entry-content p, .entry-content ul, .entry-content ol {
  margin-bottom: 1em;
}
.entry-content article {
  max-width: 880px;
}
.entry-content .wp-block-image {
  margin-bottom: 24px;
}

.blog,
body.search {
  background: var(--background-yellow);
}

.hsearch {
  position: relative;
}

.searchform {
  position: absolute;
  background: var(--beige-10);
  bottom: 0;
  transform: translateY(100%);
  right: 0;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(102, 102, 102, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 33;
}
.searchform input {
  border: 0;
  padding: 12px 16px;
  outline: 0;
  color: var(--text-primary);
}

.show-search .searchform {
  opacity: 1;
  visibility: visible;
}

.nquality__slider,
.nquality__slider * {
  cursor: none;
}

.custom-cursor {
  width: 40px;
  height: 40px;
  border: 2px solid #40b451;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  display: none;
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 9999;
}

.custom-cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2340b451' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/*# sourceMappingURL=main.css.map */
