@charset "UTF-8";
/**
 * Mixin do responsywności oparty na mobile-first.
 * Użycie: @include respond-to(tablet) { ... }
 * 
 * @param {String} $breakpoint - Nazwa breakpointu (mobile-sm, mobile, tablet, desktop, desktop-lg, desktop-xl)
 */
/**
 * Bazowe rozmiary fontów z fluid typography (clamp) dla responsywności
 * Dostosowane do designu esenzia
 */
/* === RESET & BASE STYLES === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #3E3E3E;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
a:hover {
  color: black;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
}

h2 {
  font-size: clamp(32px, 4.5vw, 40px);
}

h3 {
  font-size: clamp(32px, 3vw, 32px);
}

h4 {
  font-size: clamp(24px, 3vw, 24px);
}

h5 {
  font-size: clamp(20px, 3vw, 20px);
}

p {
  font-family: "Poppins", sans-serif;
}

button {
  cursor: pointer;
}

/**
 * Komponenty przycisków zgodne z designem esenzia
 * Wykorzystuje BEM: .button, .button--primary, .button--outline, .button--icon-right
 */
.button {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 36px;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}
.button--primary {
  background-color: #252525;
  color: #FFFFFF;
}
.button--primary:hover {
  background-color: transparent;
  border: 1px solid #252525;
  color: #252525;
}
.button--outline {
  padding: 12px 36px;
  border: 1px solid #939393;
  color: #252525;
}
.button--outline:hover {
  color: #FFFFFF;
  background-color: #252525;
}

.tagline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 3vw, 16px);
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: #939393;
}

/**
 * Główny kontener strony i flexbox utilities
 * 
 * Kontener główny o maksymalnej szerokości 1260px
 * z responsywnymi paddingami dla różnych szerokości ekranu
 */
.container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

*:focus-visible {
  outline: none;
}

/* Globalne nadpisanie wysokości Swipera - dodaj na końcu głównego CSS */
.swiper,
.swiper-wrapper,
.swiper-container,
.swiper-initialized,
.swiper-horizontal,
[class*=swiper-] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

button[class*=swiper-] {
  height: 52px !important;
}

/* Dodatkowe zabezpieczenie dla konkretnych klas */
.hero-slider__slider,
.featured-products__slider,
.swiper-backface-hidden {
  height: auto !important;
}

/* Usunięcie podkreśleń z cen */
.woocommerce-Price-amount.amount {
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.07);
}
.header__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.header__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 20px 24px;
}
@media (min-width: 768px) {
  .header__inner-wrapper {
    padding: 20px 80px;
  }
}
.header__desktop {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .header__desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .header__mobile {
    display: none;
  }
}
.header__logo img {
  max-height: 36px;
  width: auto;
  height: auto;
}
.header__site-name {
  font-size: clamp(24px, 3vw, 24px);
  font-weight: 500;
  color: #252525;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 44px;
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-item {
  margin: 0;
}
.header__nav-link {
  color: #252525;
  font-weight: 400;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #939393;
}
.header__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__button--mobile {
  display: block;
  text-align: center;
  margin: 44px auto 0;
}
.header__hamburger {
  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;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #252525;
  position: relative;
}
.header__hamburger-box {
  width: 32px;
  height: 20px;
  display: block;
  position: relative;
}
.header__hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.header__hamburger-inner, .header__hamburger-inner::before, .header__hamburger-inner::after {
  width: 32px;
  height: 2px;
  background-color: #252525;
  border-radius: 2px;
  position: absolute;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.header__hamburger-inner::before, .header__hamburger-inner::after {
  content: "";
  display: block;
}
.header__hamburger-inner::before {
  top: -8px;
}
.header__hamburger-inner::after {
  bottom: -8px;
}
.header__hamburger[aria-expanded=true] .header__hamburger-inner {
  background-color: transparent;
  -webkit-transition: background-color 0.1s 0.25s;
  transition: background-color 0.1s 0.25s;
}
.header__hamburger[aria-expanded=true] .header__hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 0.3s, -webkit-transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: top 0.3s, -webkit-transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: top 0.3s, transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: top 0.3s, transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.header__hamburger[aria-expanded=true] .header__hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: bottom 0.3s, -webkit-transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: bottom 0.3s, -webkit-transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: bottom 0.3s, transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: bottom 0.3s, transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.3s 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 9999;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  transition: -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.2s, -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.2s;
  overflow-y: auto;
}
.header__mobile-overlay.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  transition: -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.3s, -webkit-transform 0.7s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.header__mobile-content {
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header__mobile-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(37, 37, 37, 0.1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__close {
  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;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #252525;
  position: relative;
}
.header__close-box {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}
.header__close-inner, .header__close-inner::before {
  width: 32px;
  height: 2px;
  background-color: #252525;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.header__close-inner {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__close-inner::before {
  content: "";
  display: block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header__close:hover .header__close-inner {
  -webkit-transform: rotate(45deg) scale(1.1);
          transform: rotate(45deg) scale(1.1);
}
.header__close:hover .header__close-inner::before {
  -webkit-transform: rotate(90deg) scale(1.1);
          transform: rotate(90deg) scale(1.1);
}
.header__close:active .header__close-inner {
  -webkit-transform: rotate(45deg) scale(0.85);
          transform: rotate(45deg) scale(0.85);
  background-color: #939393;
}
.header__close:active .header__close-inner::before {
  -webkit-transform: rotate(90deg) scale(0);
          transform: rotate(90deg) scale(0);
  opacity: 0;
}
.header__mobile-menu-wrapper {
  padding: 32px 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.header__mobile-nav-item {
  margin: 0;
}
.header__mobile-nav-link {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 3vw, 16px);
  font-weight: 400;
  color: #252525;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__mobile-nav-link:hover {
  color: #939393;
}
.header__mobile-graphic {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__mobile-graphic img {
  width: 100%;
  max-width: 70%;
  height: auto;
  aspect-ratio: 1/1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body:has(.header__mobile-overlay.is-active) {
  overflow: hidden;
}

.hero-slider {
  width: 100%;
}
.hero-slider__slider {
  position: relative;
  width: 100%;
  height: 700px !important;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-slider__slider {
    height: 560px !important;
  }
}
.hero-slider__slide {
  position: relative;
  width: 100%;
  height: 700px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .hero-slider__slide {
    height: 560px !important;
  }
}
.hero-slider__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero-slider__background--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .hero-slider__background--desktop {
    display: block;
  }
}
.hero-slider__background--mobile {
  display: block;
}
@media (min-width: 1024px) {
  .hero-slider__background--mobile {
    display: none;
  }
}
.hero-slider__content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 1024px) {
  .hero-slider__content-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.hero-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 700px;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .hero-slider__content {
    padding: 64px 64px;
  }
}
.hero-slider__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.hero-slider__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.hero-slider__title--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .hero-slider__title--desktop {
    display: block;
  }
}
.hero-slider__title--mobile {
  display: block;
}
@media (min-width: 1024px) {
  .hero-slider__title--mobile {
    display: none;
  }
}
.hero-slider__description {
  margin-top: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.hero-slider__description--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .hero-slider__description--desktop {
    display: block;
  }
}
.hero-slider__description--mobile {
  display: block;
}
@media (min-width: 1024px) {
  .hero-slider__description--mobile {
    display: none;
  }
}
.hero-slider .button {
  margin-top: 32px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.hero-slider__nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  pointer-events: none;
  z-index: 10;
}
.hero-slider__nav-container {
  position: absolute;
  bottom: 40px;
  right: 80px;
  display: none;
  gap: 16px;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .hero-slider__nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero-slider__nav {
  width: 52px;
  height: 52px;
  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;
  background-color: transparent;
  border: 1px solid #939393;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #252525;
}
.hero-slider__nav:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.hero-slider__nav:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.hero-slider__nav:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.hero-slider__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.hero-slider__nav.swiper-button-disabled:hover {
  background-color: #FFFFFF;
  border-color: #939393;
  color: #252525;
}
.hero-slider__nav svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.hero-slider .swiper-wrapper {
  height: 700px !important;
}
@media (min-width: 1024px) {
  .hero-slider .swiper-wrapper {
    height: 560px !important;
  }
}

.features-grid {
  background-color: #FBFBFB;
}
.features-grid__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.features-grid__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 20px;
}
@media (min-width: 768px) {
  .features-grid__inner-wrapper {
    padding: 70px 160px;
  }
}
.features-grid__container {
  display: none;
}
@media (min-width: 768px) {
  .features-grid__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.features-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .features-grid__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    gap: 24px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (min-width: 768px) {
  .features-grid__item:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1024px) {
  .features-grid__item:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.features-grid__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.features-grid__icon img,
.features-grid__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.features-grid__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.features-grid__content h4 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  font-weight: 400;
}
.features-grid__content h4 em,
.features-grid__content h4 i {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.features-grid__content h4 p {
  margin: 0;
  padding: 0;
  display: inline;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  font-weight: inherit;
}
.features-grid__swiper {
  display: block !important;
  overflow: hidden !important;
  height: auto !important;
  width: 100% !important;
}
@media (min-width: 768px) {
  .features-grid__swiper {
    display: none !important;
  }
}
.features-grid__swiper .swiper-wrapper {
  height: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.features-grid__swiper .swiper-slide {
  height: auto !important;
  width: 100% !important;
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.mission-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mission-slider__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.mission-slider__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
}
@media (min-width: 768px) {
  .mission-slider__inner-wrapper {
    padding: 250px 80px;
  }
}
.mission-slider__slider {
  position: relative;
  overflow: visible;
}
.mission-slider__slide {
  position: relative;
  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;
  width: 100%;
}
.mission-slider__background {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  aspect-ratio: 1/1;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .mission-slider__background {
    max-width: 800px;
    width: 60%;
  }
}
.mission-slider__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mission-slider__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .mission-slider__content {
    text-align: center;
    max-width: 600px;
  }
}
@media (min-width: 1366px) {
  .mission-slider__content {
    max-width: 800px;
  }
}
.mission-slider__tag {
  margin-bottom: 16px;
}
.mission-slider__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 64px;
}
.mission-slider__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.mission-slider__title p {
  margin: 0;
}
.mission-slider__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.mission-slider__description p {
  margin: 0;
}
.mission-slider__description p:not(:last-child) {
  margin-bottom: 16px;
}
.mission-slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 64px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .mission-slider__navigation {
    position: absolute;
    top: 50%;
    left: 80px;
    right: 80px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0;
    gap: 0;
  }
}
.mission-slider__nav {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #252525;
}
.mission-slider__nav:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.mission-slider__nav:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.mission-slider__nav:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.mission-slider__nav svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.technology .mission-slider {
  background-color: #FBFBFB;
}

.become-distributor__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.become-distributor__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .become-distributor__inner-wrapper {
    padding: 150px 80px;
  }
}
@media (min-width: 1024px) {
  .become-distributor__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 100px;
  }
}
@media (min-width: 1024px) {
  .become-distributor__text-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 600px;
            flex: 0 1 600px;
    max-width: 600px;
  }
}
.become-distributor__tag {
  margin-bottom: 16px;
}
.become-distributor__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .become-distributor__title {
    margin-bottom: 64px;
  }
}
.become-distributor__title h2, .become-distributor__title p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}
.become-distributor__title em, .become-distributor__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.become-distributor__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .become-distributor__description {
    margin-bottom: 36px;
  }
}
.become-distributor__description p {
  margin-bottom: 1em;
}
.become-distributor__description p:last-child {
  margin-bottom: 0;
}
.become-distributor__image-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .become-distributor__image-wrapper {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 650px;
            flex: 0 1 650px;
    max-width: 650px;
  }
}
.become-distributor__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.why-work-with-us {
  background-color: #FBFBFB;
}
.why-work-with-us__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.why-work-with-us__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .why-work-with-us__inner-wrapper {
    padding: 100px 80px;
  }
}
.why-work-with-us__header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .why-work-with-us__header {
    margin-bottom: 80px;
  }
}
.why-work-with-us__tag {
  margin-bottom: 16px;
}
.why-work-with-us__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.why-work-with-us__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .why-work-with-us__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.why-work-with-us__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .why-work-with-us__box {
    gap: 24px;
    max-width: 400px;
  }
}
.why-work-with-us__box-line {
  width: 36px;
  height: 1px;
  background-color: #939393;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 16px;
}
.why-work-with-us__box-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.why-work-with-us__box-title {
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.why-work-with-us__box-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.why-work-with-us__box-description {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.why-work-with-us__box-description p:not(:last-child) {
  margin-bottom: 16px;
}

.innovative-solutions__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.innovative-solutions__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .innovative-solutions__inner-wrapper {
    padding: 50px 80px 150px 80px;
  }
}
.innovative-solutions__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .innovative-solutions__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;
  }
}
.innovative-solutions__video-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 1024px) {
  .innovative-solutions__video-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    aspect-ratio: auto;
  }
}
@media (min-width: 1600px) {
  .innovative-solutions__video-container {
    aspect-ratio: 1/1;
  }
}
.innovative-solutions__video {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.innovative-solutions__text-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .innovative-solutions__text-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}
.innovative-solutions__tag-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
.innovative-solutions__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.innovative-solutions__title em {
  font-family: "Playfair Display", serif;
  font-style: normal;
  font-style: italic;
}
.innovative-solutions__title p {
  margin: 0;
}
.innovative-solutions__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 36px;
}
.innovative-solutions__description p {
  margin: 0;
}
.innovative-solutions__description p:not(:last-child) {
  margin-bottom: 16px;
}
.innovative-solutions__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.faq {
  width: 100%;
}
.faq__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.faq__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .faq__inner-wrapper {
    padding: 100px 80px;
  }
}
.faq__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .faq__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}
.faq__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .faq__intro {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.faq__tag {
  display: block;
}
.faq__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-top: 16px;
}
.faq__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.faq__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-top: 32px;
}
.faq__description p {
  margin: 0;
}
@media (min-width: 1024px) {
  .faq__questions {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.faq__accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .faq__accordion {
    gap: 64px;
  }
}
.faq__item {
  width: 100%;
}
.faq__question-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 32px;
}
@media (min-width: 1024px) {
  .faq__question-button {
    gap: 64px;
  }
}
.faq__question-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 4px;
}
.faq__question-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  color: #252525;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faq__icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  color: #252525;
}
.faq__icon-minus, .faq__icon-plus {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__icon-minus {
  opacity: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__icon-plus {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq__item.is-open .faq__icon-minus {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq__item.is-open .faq__icon-plus {
  opacity: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__answer {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .faq__answer {
    margin-top: 40px;
  }
}
.faq__answer[hidden] {
  display: none;
}
.faq__answer-content {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.faq__answer-content p {
  margin: 0;
}
.faq__answer-content p + p {
  margin-top: 16px;
}

.product-banner {
  width: 100%;
}
.product-banner__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.product-banner__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .product-banner__inner-wrapper {
    padding: 150px 80px;
  }
}
.product-banner__banner {
  position: relative;
  width: 100%;
  height: 900px;
  border-radius: 24px;
  overflow: hidden;
  background-image: var(--bg-mobile);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 768px) {
  .product-banner__banner {
    padding: 64px;
  }
}
@media (min-width: 1024px) {
  .product-banner__banner {
    height: auto;
    min-height: 400px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-image: var(--bg-desktop);
  }
}
.product-banner__content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .product-banner__content {
    max-width: 480px;
  }
}
.product-banner__tag {
  margin-bottom: 16px;
}
.product-banner__title {
  margin-bottom: 32px;
}
.product-banner__title h2,
.product-banner__title p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.product-banner__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.product-banner__button {
  display: inline-block;
}

.social-media__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.social-media__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .social-media__inner-wrapper {
    padding: 100px 0;
  }
}
.social-media__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .social-media__header {
    padding: 0 80px;
  }
}
.social-media__title {
  font-family: "Poppins", sans-serif;
}
.social-media__title em,
.social-media__title i {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.social-media__grid {
  display: none;
}
@media (min-width: 1024px) {
  .social-media__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.social-media__mobile {
  display: block;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .social-media__mobile {
    display: none;
  }
}
.social-media__swiper {
  overflow: visible;
}
.social-media__swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-media__swiper .swiper-slide {
  width: 300px;
  height: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.social-media__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.social-media__grid .social-media__item {
  aspect-ratio: 1/1;
}
.social-media__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.social-media__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  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;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
@media (min-width: 1024px) {
  .social-media__item:hover .social-media__overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
  }
}
.social-media__icon {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}

.collections-slider__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.collections-slider__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .collections-slider__inner-wrapper {
    padding: 50px 80px;
  }
}
.collections-slider__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .collections-slider__header {
    margin-bottom: 80px;
  }
}
.collections-slider__heading-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.collections-slider__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.collections-slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.collections-slider__navigation--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .collections-slider__navigation--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.collections-slider__navigation--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .collections-slider__navigation--mobile {
    display: none;
  }
}
.collections-slider__nav-button {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  color: #252525;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.collections-slider__nav-button:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.collections-slider__nav-button:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
  -webkit-transform: none;
          transform: none;
}
.collections-slider__nav-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.collections-slider__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.collections-slider__nav-button:disabled:hover {
  background-color: transparent;
  border-color: #939393;
  color: #252525;
}
.collections-slider__nav-button svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  pointer-events: none;
}
.collections-slider__swiper-container {
  overflow: hidden !important;
  height: auto !important;
  min-height: auto !important;
}
.collections-slider__swiper-wrapper {
  height: auto !important;
}
.collections-slider__slide {
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.collections-slider__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
}
.collections-slider__image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.collections-slider__stretched-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.collections-slider__image {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 24px;
}
.collections-slider__image--placeholder {
  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;
  background-color: #FBFBFB;
}
.collections-slider__image--placeholder svg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}
.collections-slider__image-link:hover .collections-slider__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.collections-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 24px;
  padding-bottom: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.collections-slider__text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.collections-slider__collection-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 12px;
}
.collections-slider__description {
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 24px;
}
.collections-slider__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.product-slider__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.product-slider__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .product-slider__inner-wrapper {
    padding: 100px 80px 0;
  }
}
.product-slider__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .product-slider__header {
    margin-bottom: 80px;
  }
}
.product-slider__header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.product-slider__title h2, .product-slider__title p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.product-slider__title h2 em, .product-slider__title p em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.product-slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.product-slider__navigation--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .product-slider__navigation--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product-slider__navigation--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .product-slider__navigation--mobile {
    display: none;
  }
}
.product-slider__nav-button {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  color: #252525;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.product-slider__nav-button:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.product-slider__nav-button:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
  -webkit-transform: none;
          transform: none;
}
.product-slider__nav-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.product-slider__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.product-slider__nav-button:disabled:hover {
  background-color: transparent;
  border-color: #939393;
  color: #252525;
}
.product-slider__nav-button svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  pointer-events: none;
}
.product-slider__swiper-container {
  overflow: hidden !important;
  height: auto !important;
  min-height: auto !important;
}
.product-slider__swiper-wrapper {
  height: auto !important;
}
.product-slider__slide {
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-slider__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
}
.product-slider__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.product-slider__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-slider__image {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .product-slider__image {
    height: 240px;
  }
}
.product-slider__image--placeholder {
  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;
  background-color: #FBFBFB;
}
.product-slider__image--placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.3;
}
.product-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-slider__text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.product-slider__name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 4px;
}
.product-slider__category {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}
.product-slider__category-label {
  color: #939393;
}
.product-slider__category-value {
  color: #939393;
}
.product-slider__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.product-slider__price {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.product-slider__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.product-slider__empty {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #939393;
  text-align: center;
  padding: 40px 0;
}

.learn-more__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.learn-more__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .learn-more__inner-wrapper {
    padding: 50px 80px 100px 80px;
  }
}
@media (min-width: 1024px) {
  .learn-more__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 100px;
  }
}
@media (min-width: 1024px) {
  .learn-more__text-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 600px;
            flex: 0 1 600px;
    max-width: 600px;
  }
}
.learn-more__breadcrumbs {
  margin-bottom: 16px;
}
.learn-more__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.learn-more__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #939393;
}
.learn-more__breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #939393;
}
.learn-more__breadcrumb-link {
  color: #939393;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.learn-more__breadcrumb-link:hover {
  color: #252525;
}
.learn-more__breadcrumb-text {
  color: #939393;
}
.learn-more__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .learn-more__title {
    margin-bottom: 64px;
  }
}
.learn-more__title h2, .learn-more__title p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}
.learn-more__title em, .learn-more__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.learn-more__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .learn-more__description {
    margin-bottom: 36px;
  }
}
.learn-more__description p {
  margin-bottom: 1em;
}
.learn-more__description p:last-child {
  margin-bottom: 0;
}
.learn-more__image-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .learn-more__image-wrapper {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 650px;
            flex: 0 1 650px;
    max-width: 650px;
  }
}
.learn-more__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.company-history__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.company-history__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .company-history__inner-wrapper {
    padding: 0 80px 100px 80px;
  }
}
.company-history__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .company-history__header {
    margin-bottom: 120px;
  }
}
.company-history__tag-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  max-width: 650px;
}
.company-history__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.company-history__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.company-history__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #3E3E3E;
  max-width: 650px;
}
.company-history__description p {
  margin: 0;
}
.company-history__timeline {
  position: relative;
  width: 100%;
}
.company-history__timeline-line {
  display: none;
}
@media (min-width: 1024px) {
  .company-history__timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #E0E0E0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
  }
}
.company-history__timeline-indicator {
  display: none;
}
@media (min-width: 1024px) {
  .company-history__timeline-indicator {
    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;
    position: absolute;
    left: 50%;
    top: 0;
    width: 52px;
    height: 52px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
    background-color: #FFFFFF;
    border-radius: 50%;
    -webkit-transition: top 0.1s ease-out;
    transition: top 0.1s ease-out;
  }
}
.company-history__timeline-icon {
  width: 52px;
  height: 52px;
  -o-object-fit: contain;
     object-fit: contain;
}
.company-history__timeline-icon-placeholder {
  width: 52px;
  height: 52px;
  background-color: #252525;
  border-radius: 50%;
}
.company-history__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  width: 100%;
}
@media (min-width: 1024px) {
  .company-history__blocks {
    gap: clamp(80px, 8vw, 100px);
  }
}
.company-history__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .company-history__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(72px, 7vw, 90px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .company-history__block--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.company-history__block-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .company-history__block-content {
    max-width: clamp(350px, 35vw, 520px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.company-history__year {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  color: #252525;
  margin: 0 0 12px 0;
}
@media (min-width: 1024px) {
  .company-history__year {
    font-size: 64px;
  }
}
.company-history__block-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0 0 32px 0;
}
.company-history__block-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.company-history__block-title p {
  margin: 0;
}
.company-history__block-description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #3E3E3E;
}
.company-history__block-description p {
  margin: 0;
}
.company-history__block-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (min-width: 1024px) {
  .company-history__block-image {
    width: clamp(350px, 35vw, 500px);
    height: clamp(350px, 35vw, 500px);
    aspect-ratio: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.company-history__block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-usp {
  background-color: #FBFBFB;
}
.about-usp__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.about-usp__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .about-usp__inner-wrapper {
    padding: 100px 80px;
  }
}
.about-usp__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .about-usp__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.about-usp__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .about-usp__box {
    gap: 24px;
    max-width: 400px;
  }
}
.about-usp__box-line {
  width: 36px;
  height: 1px;
  background-color: #939393;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 16px;
}
.about-usp__box-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.about-usp__box-title {
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.about-usp__box-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.about-usp__box-description {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.about-usp__box-description p:not(:last-child) {
  margin-bottom: 16px;
}

.contact-form__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.contact-form__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px 64px 24px;
}
@media (min-width: 768px) {
  .contact-form__inner-wrapper {
    padding: 50px 80px 0 80px;
  }
}
.contact-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .contact-form__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}
.contact-form__info {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form__info {
    width: 50%;
  }
}
.contact-form__breadcrumbs {
  margin-bottom: 16px;
}
.contact-form__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-form__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form__breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 3vw, 16px);
  color: #939393;
}
.contact-form__breadcrumb-link, .contact-form__breadcrumb-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 3vw, 16px);
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: #939393;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.contact-form__breadcrumb-link:hover {
  color: #252525;
}
.contact-form__header {
  margin-bottom: 32px;
}
.contact-form__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.contact-form__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.contact-form__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .contact-form__description {
    margin-bottom: 64px;
  }
}
.contact-form__description p {
  margin: 0;
}
.contact-form__info-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.contact-form__info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FBFBFB;
  padding: 20px;
  border-radius: 8px;
  gap: 16px;
}
@media (min-width: 1024px) {
  .contact-form__info-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 24px;
  }
}
.contact-form__info-box-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.contact-form__info-box-line {
  width: 24px;
  height: 1px;
  background-color: #939393;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form__info-box-label {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(16px, 3vw, 16px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #252525;
}
.contact-form__info-box-value {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 3vw, 16px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #252525;
  text-align: left;
}
@media (min-width: 1024px) {
  .contact-form__info-box-value {
    text-align: right;
  }
}
.contact-form__form-wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form__form-wrapper {
    width: 50%;
  }
}
.contact-form__form-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .contact-form__form-title {
    display: none;
  }
}
.contact-form__form-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
@media (min-width: 1024px) {
  .contact-form__form-container {
    background-color: #FBFBFB;
    padding: 44px;
    border-radius: 12px;
  }
}
.contact-form__field {
  margin-bottom: 32px;
}
.contact-form__field-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 1366px) {
  .contact-form__field-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0;
  }
}
.contact-form__field-row .contact-form__field {
  margin-bottom: 0;
}
.contact-form__field-row .contact-form__field:not(:last-child) {
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .contact-form__field-row .contact-form__field {
    margin-bottom: 0;
  }
}
.contact-form__field-row {
  margin-bottom: 32px;
}
.contact-form__field--half {
  width: 100%;
}
@media (min-width: 1366px) {
  .contact-form__field--half {
    width: 50%;
  }
}
.contact-form__label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 12px;
}
.contact-form__input {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-form__input::-webkit-input-placeholder {
  color: #939393;
}
.contact-form__input::-moz-placeholder {
  color: #939393;
}
.contact-form__input:-ms-input-placeholder {
  color: #939393;
}
.contact-form__input::-ms-input-placeholder {
  color: #939393;
}
.contact-form__input::placeholder {
  color: #939393;
}
.contact-form__input:focus {
  border-color: #252525;
  outline: none;
}
.contact-form__textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  resize: vertical;
  max-height: 200px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-form__textarea::-webkit-input-placeholder {
  color: #939393;
}
.contact-form__textarea::-moz-placeholder {
  color: #939393;
}
.contact-form__textarea:-ms-input-placeholder {
  color: #939393;
}
.contact-form__textarea::-ms-input-placeholder {
  color: #939393;
}
.contact-form__textarea::placeholder {
  color: #939393;
}
.contact-form__textarea:focus {
  border-color: #252525;
  outline: none;
}
.contact-form__consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-form .wpcf7-acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.contact-form .wpcf7-acceptance input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.contact-form .wpcf7-acceptance input:checked {
  background-color: #252525;
  border-color: #252525;
  position: relative;
}
.contact-form .wpcf7-acceptance input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact-form .wpcf7-acceptance input:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.contact-form__consent-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #252525;
  cursor: pointer;
}
.contact-form__submit {
  width: auto;
}
.contact-form__message {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.contact-form__message--success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #4caf50;
}
.contact-form__message--error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #f44336;
}
.contact-form__message--error p {
  margin: 0 0 8px 0;
}
.contact-form__message--error p:last-child {
  margin-bottom: 0;
}
.contact-form .wpcf7 {
  margin: 0;
  padding: 0;
}
.contact-form .wpcf7-form {
  margin: 0;
  padding: 0;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
}
.contact-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.contact-form__field label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 12px;
}
.contact-form__field input.wpcf7-text, .contact-form__field input.wpcf7-email, .contact-form__field input.wpcf7-tel {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-form__field input.wpcf7-text::-webkit-input-placeholder, .contact-form__field input.wpcf7-email::-webkit-input-placeholder, .contact-form__field input.wpcf7-tel::-webkit-input-placeholder {
  color: #939393;
}
.contact-form__field input.wpcf7-text::-moz-placeholder, .contact-form__field input.wpcf7-email::-moz-placeholder, .contact-form__field input.wpcf7-tel::-moz-placeholder {
  color: #939393;
}
.contact-form__field input.wpcf7-text:-ms-input-placeholder, .contact-form__field input.wpcf7-email:-ms-input-placeholder, .contact-form__field input.wpcf7-tel:-ms-input-placeholder {
  color: #939393;
}
.contact-form__field input.wpcf7-text::-ms-input-placeholder, .contact-form__field input.wpcf7-email::-ms-input-placeholder, .contact-form__field input.wpcf7-tel::-ms-input-placeholder {
  color: #939393;
}
.contact-form__field input.wpcf7-text::placeholder, .contact-form__field input.wpcf7-email::placeholder, .contact-form__field input.wpcf7-tel::placeholder {
  color: #939393;
}
.contact-form__field input.wpcf7-text:focus, .contact-form__field input.wpcf7-email:focus, .contact-form__field input.wpcf7-tel:focus {
  border-color: #252525;
  outline: none;
}
.contact-form__field input.wpcf7-text.wpcf7-not-valid, .contact-form__field input.wpcf7-email.wpcf7-not-valid, .contact-form__field input.wpcf7-tel.wpcf7-not-valid {
  border-color: #f44336;
}
.contact-form__field textarea.wpcf7-textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  resize: vertical;
  min-height: 120px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-form__field textarea.wpcf7-textarea::-webkit-input-placeholder {
  color: #939393;
}
.contact-form__field textarea.wpcf7-textarea::-moz-placeholder {
  color: #939393;
}
.contact-form__field textarea.wpcf7-textarea:-ms-input-placeholder {
  color: #939393;
}
.contact-form__field textarea.wpcf7-textarea::-ms-input-placeholder {
  color: #939393;
}
.contact-form__field textarea.wpcf7-textarea::placeholder {
  color: #939393;
}
.contact-form__field textarea.wpcf7-textarea:focus {
  border-color: #252525;
  outline: none;
}
.contact-form__field textarea.wpcf7-textarea.wpcf7-not-valid {
  border-color: #f44336;
}
.contact-form__consent .wpcf7-list-item {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.contact-form__consent input[type=checkbox].wpcf7-acceptance {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.contact-form__consent input[type=checkbox].wpcf7-acceptance:checked {
  background-color: #252525;
  border-color: #252525;
  position: relative;
}
.contact-form__consent input[type=checkbox].wpcf7-acceptance:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact-form__consent input[type=checkbox].wpcf7-acceptance:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.contact-form__consent .wpcf7-list-item-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #252525;
  cursor: pointer;
  margin: 0;
}
.contact-form__captcha {
  margin-bottom: 32px;
}
.contact-form__submit input[type=submit].wpcf7-submit {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 36px;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #252525;
  color: #FFFFFF;
}
.contact-form__submit input[type=submit].wpcf7-submit:hover {
  background-color: transparent;
  border: 1px solid #252525;
  color: #252525;
}
.contact-form .wpcf7-form br {
  display: none !important;
}
.contact-form .wpcf7-response-output {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid;
}
.contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-color: #4caf50;
}
.contact-form .wpcf7-response-output.wpcf7-validation-errors, .contact-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #ffebee;
  color: #c62828;
  border-color: #f44336;
}
.contact-form .wpcf7-spinner {
  margin-left: 12px;
}

.location-map__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.location-map__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) {
  .location-map__inner-wrapper {
    padding: 100px 80px 0 80px;
  }
}
.location-map__map-container {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  padding-top: 64px;
  border-radius: 24px;
}
@media (min-width: 1024px) {
  .location-map__map-container {
    height: 650px;
    padding: 0 100px;
  }
}
.location-map__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.location-map__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.location-map__background--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .location-map__background--desktop {
    display: block;
  }
}
.location-map__background--mobile {
  display: block;
}
@media (min-width: 1024px) {
  .location-map__background--mobile {
    display: none;
  }
}
.location-map__content-box {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  padding: 32px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .location-map__content-box {
    padding: 64px;
    margin: 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-left: 0;
    margin-right: auto;
    position: absolute;
    top: 50%;
    left: 100px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.location-map__title {
  margin-top: 12px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.location-map__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.location-map__title p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.location-map__title p em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.location-map__description {
  margin-top: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #3E3E3E;
}
.location-map__description p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.location-map__button {
  margin-top: 32px;
}

.our-technology__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.our-technology__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .our-technology__inner-wrapper {
    padding: 50px 80px 100px 80px;
  }
}
@media (min-width: 1024px) {
  .our-technology__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 100px;
  }
}
@media (min-width: 1024px) {
  .our-technology__text-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 600px;
            flex: 0 1 600px;
    max-width: 600px;
  }
}
.our-technology__breadcrumbs {
  margin-bottom: 16px;
}
.our-technology__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.our-technology__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #939393;
}
.our-technology__breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #939393;
}
.our-technology__breadcrumb-link {
  color: #939393;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.our-technology__breadcrumb-link:hover {
  color: #252525;
}
.our-technology__breadcrumb-text {
  color: #939393;
}
.our-technology__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .our-technology__title {
    margin-bottom: 64px;
  }
}
.our-technology__title h2, .our-technology__title p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}
.our-technology__title em, .our-technology__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.our-technology__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .our-technology__description {
    margin-bottom: 36px;
  }
}
.our-technology__description p {
  margin-bottom: 1em;
}
.our-technology__description p:last-child {
  margin-bottom: 0;
}
.our-technology__image-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .our-technology__image-wrapper {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 650px;
            flex: 0 1 650px;
    max-width: 650px;
  }
}
.our-technology__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.scientific-research__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.scientific-research__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .scientific-research__inner-wrapper {
    padding: 100px 80px;
  }
}
.scientific-research__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .scientific-research__header {
    margin-bottom: 80px;
  }
}
.scientific-research__heading-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.scientific-research__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.scientific-research__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.scientific-research__navigation--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .scientific-research__navigation--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.scientific-research__navigation--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .scientific-research__navigation--mobile {
    display: none;
  }
}
.scientific-research__nav-button {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  color: #252525;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.scientific-research__nav-button:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.scientific-research__nav-button:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
  -webkit-transform: none;
          transform: none;
}
.scientific-research__nav-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.scientific-research__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.scientific-research__nav-button:disabled:hover {
  background-color: transparent;
  border-color: #939393;
  color: #252525;
}
.scientific-research__nav-button svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  pointer-events: none;
}
.scientific-research__swiper-container {
  overflow: hidden !important;
  height: auto !important;
  min-height: auto !important;
}
.scientific-research__swiper-wrapper {
  height: auto !important;
}
.scientific-research__slide {
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.scientific-research__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
}
.scientific-research__image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.scientific-research__image-wrapper--placeholder {
  background-color: #FBFBFB;
}
.scientific-research__image {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
.scientific-research__placeholder {
  width: 100%;
  height: 210px;
  background-color: #FBFBFB;
  border-radius: 16px;
}
.scientific-research__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.scientific-research__item-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 12px;
}
.scientific-research__description {
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 24px;
}
.scientific-research__description p {
  margin: 0;
}
.scientific-research__description p:not(:last-child) {
  margin-bottom: 1em;
}
.scientific-research__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #252525;
  text-decoration: none;
  margin-top: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.scientific-research__link:hover {
  opacity: 0.7;
}
.scientific-research__link:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.scientific-research__link-icon {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.start-cooperation__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.start-cooperation__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .start-cooperation__inner-wrapper {
    padding: 50px 80px 100px 80px;
  }
}
@media (min-width: 1024px) {
  .start-cooperation__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 100px;
  }
}
@media (min-width: 1024px) {
  .start-cooperation__text-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 600px;
            flex: 0 1 600px;
    max-width: 600px;
  }
}
.start-cooperation__breadcrumbs {
  margin-bottom: 16px;
}
.start-cooperation__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.start-cooperation__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #939393;
}
.start-cooperation__breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #939393;
}
.start-cooperation__breadcrumb-link {
  color: #939393;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.start-cooperation__breadcrumb-link:hover {
  color: #252525;
}
.start-cooperation__breadcrumb-text {
  color: #939393;
}
.start-cooperation__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .start-cooperation__title {
    margin-bottom: 64px;
  }
}
.start-cooperation__title h2, .start-cooperation__title p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}
.start-cooperation__title em, .start-cooperation__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.start-cooperation__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .start-cooperation__description {
    margin-bottom: 36px;
  }
}
.start-cooperation__description p {
  margin-bottom: 1em;
}
.start-cooperation__description p:last-child {
  margin-bottom: 0;
}
.start-cooperation__image-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .start-cooperation__image-wrapper {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 650px;
            flex: 0 1 650px;
    max-width: 650px;
  }
}
.start-cooperation__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits-list {
  background-color: #FFFFFF;
}
.benefits-list .container {
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .benefits-list .container {
    padding: 100px 80px;
  }
}
.benefits-list__header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .benefits-list__header {
    margin-bottom: 80px;
  }
}
.benefits-list__tag {
  margin-bottom: 16px;
}
.benefits-list__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.benefits-list__slider-wrapper {
  position: relative;
}
.benefits-list__slider {
  overflow: visible;
}
.benefits-list__slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.benefits-list__slider .swiper-slide {
  height: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .benefits-list__slider .swiper-slide {
    width: calc((100% - 32px) / 1.5);
  }
}
@media (min-width: 1024px) {
  .benefits-list__slider .swiper-slide {
    width: 520px;
  }
}
.benefits-list__box {
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .benefits-list__box {
    padding: 44px;
  }
}
.benefits-list__box-title {
  margin-bottom: 44px;
  font-size: clamp(32px, 3vw, 32px);
  color: #252525;
}
.benefits-list__box-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.benefits-list__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
}
.benefits-list__feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.benefits-list__feature-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.benefits-list__feature-line {
  width: 36px;
  height: 1px;
  background-color: #939393;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.benefits-list__feature-title {
  font-size: 18px;
  color: #252525;
  font-weight: 400;
  line-height: 1.5;
}
.benefits-list__feature-description p:not(:last-child) {
  margin-bottom: 16px;
}
.benefits-list__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 64px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .benefits-list__navigation {
    display: none;
  }
}
.benefits-list__nav {
  width: 52px !important;
  height: 52px !important;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #252525;
}
.benefits-list__nav:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.benefits-list__nav:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.benefits-list__nav:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.benefits-list__nav svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.cooperation-form {
  position: relative;
  background-color: #FBFBFB;
}
.cooperation-form__outer-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cooperation-form__background-shape {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  z-index: 1;
  pointer-events: none;
}
.cooperation-form__background-shape img {
  width: 100%;
  height: auto;
  display: block;
}
.cooperation-form__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .cooperation-form__inner-wrapper {
    padding: 100px 80px;
  }
}
.cooperation-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .cooperation-form__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}
.cooperation-form__info {
  width: 100%;
}
@media (min-width: 1024px) {
  .cooperation-form__info {
    width: 50%;
  }
}
.cooperation-form__tag {
  display: block;
  margin-bottom: 24px;
}
.cooperation-form__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 32px;
}
.cooperation-form__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
@media (min-width: 1024px) {
  .cooperation-form__title {
    margin-bottom: 64px;
  }
}
.cooperation-form__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.cooperation-form__description p {
  margin: 0 0 16px 0;
}
.cooperation-form__description p:last-child {
  margin-bottom: 0;
}
.cooperation-form__form-wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .cooperation-form__form-wrapper {
    width: 50%;
  }
}
.cooperation-form__form-container {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  padding: 32px 24px;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .cooperation-form__form-container {
    padding: 44px;
  }
}
.cooperation-form__field {
  margin-bottom: 32px;
}
.cooperation-form__field-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1366px) {
  .cooperation-form__field-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0;
  }
}
.cooperation-form__field-row .cooperation-form__field {
  margin-bottom: 0;
}
.cooperation-form__field-row .cooperation-form__field:not(:last-child) {
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .cooperation-form__field-row .cooperation-form__field {
    margin-bottom: 0;
  }
  .cooperation-form__field-row .cooperation-form__field:not(:last-child) {
    margin-right: 24px;
  }
}
.cooperation-form__field-row {
  margin-bottom: 32px;
}
.cooperation-form__field--half {
  width: 100%;
}
@media (min-width: 1366px) {
  .cooperation-form__field--half {
    width: 50%;
  }
}
.cooperation-form__label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 12px;
}
.cooperation-form__input {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.cooperation-form__input::-webkit-input-placeholder {
  color: #939393;
}
.cooperation-form__input::-moz-placeholder {
  color: #939393;
}
.cooperation-form__input:-ms-input-placeholder {
  color: #939393;
}
.cooperation-form__input::-ms-input-placeholder {
  color: #939393;
}
.cooperation-form__input::placeholder {
  color: #939393;
}
.cooperation-form__input:focus {
  border-color: #252525;
  outline: none;
}
.cooperation-form__textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  resize: vertical;
  min-height: 120px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.cooperation-form__textarea::-webkit-input-placeholder {
  color: #939393;
}
.cooperation-form__textarea::-moz-placeholder {
  color: #939393;
}
.cooperation-form__textarea:-ms-input-placeholder {
  color: #939393;
}
.cooperation-form__textarea::-ms-input-placeholder {
  color: #939393;
}
.cooperation-form__textarea::placeholder {
  color: #939393;
}
.cooperation-form__textarea:focus {
  border-color: #252525;
  outline: none;
}
.cooperation-form__consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.cooperation-form .wpcf7-acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.cooperation-form .wpcf7-acceptance input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.cooperation-form .wpcf7-acceptance input:checked {
  background-color: #252525;
  border-color: #252525;
  position: relative;
}
.cooperation-form .wpcf7-acceptance input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cooperation-form .wpcf7-acceptance input:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.cooperation-form__consent-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #252525;
  cursor: pointer;
}
.cooperation-form__submit {
  width: auto;
}
.cooperation-form__message {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.cooperation-form__message--success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #4caf50;
}
.cooperation-form__message--error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #f44336;
}
.cooperation-form__message--error p {
  margin: 0 0 8px 0;
}
.cooperation-form__message--error p:last-child {
  margin-bottom: 0;
}
.cooperation-form .wpcf7 {
  margin: 0;
  padding: 0;
}
.cooperation-form .wpcf7-form {
  margin: 0;
  padding: 0;
}
.cooperation-form .wpcf7-form-control-wrap {
  display: block;
}
.cooperation-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.cooperation-form__field label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 12px;
}
.cooperation-form__field input.wpcf7-text, .cooperation-form__field input.wpcf7-email, .cooperation-form__field input.wpcf7-tel {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.cooperation-form__field input.wpcf7-text::-webkit-input-placeholder, .cooperation-form__field input.wpcf7-email::-webkit-input-placeholder, .cooperation-form__field input.wpcf7-tel::-webkit-input-placeholder {
  color: #939393;
}
.cooperation-form__field input.wpcf7-text::-moz-placeholder, .cooperation-form__field input.wpcf7-email::-moz-placeholder, .cooperation-form__field input.wpcf7-tel::-moz-placeholder {
  color: #939393;
}
.cooperation-form__field input.wpcf7-text:-ms-input-placeholder, .cooperation-form__field input.wpcf7-email:-ms-input-placeholder, .cooperation-form__field input.wpcf7-tel:-ms-input-placeholder {
  color: #939393;
}
.cooperation-form__field input.wpcf7-text::-ms-input-placeholder, .cooperation-form__field input.wpcf7-email::-ms-input-placeholder, .cooperation-form__field input.wpcf7-tel::-ms-input-placeholder {
  color: #939393;
}
.cooperation-form__field input.wpcf7-text::placeholder, .cooperation-form__field input.wpcf7-email::placeholder, .cooperation-form__field input.wpcf7-tel::placeholder {
  color: #939393;
}
.cooperation-form__field input.wpcf7-text:focus, .cooperation-form__field input.wpcf7-email:focus, .cooperation-form__field input.wpcf7-tel:focus {
  border-color: #252525;
  outline: none;
}
.cooperation-form__field input.wpcf7-text.wpcf7-not-valid, .cooperation-form__field input.wpcf7-email.wpcf7-not-valid, .cooperation-form__field input.wpcf7-tel.wpcf7-not-valid {
  border-color: #f44336;
}
.cooperation-form__field textarea.wpcf7-textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  resize: vertical;
  min-height: 120px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.cooperation-form__field textarea.wpcf7-textarea::-webkit-input-placeholder {
  color: #939393;
}
.cooperation-form__field textarea.wpcf7-textarea::-moz-placeholder {
  color: #939393;
}
.cooperation-form__field textarea.wpcf7-textarea:-ms-input-placeholder {
  color: #939393;
}
.cooperation-form__field textarea.wpcf7-textarea::-ms-input-placeholder {
  color: #939393;
}
.cooperation-form__field textarea.wpcf7-textarea::placeholder {
  color: #939393;
}
.cooperation-form__field textarea.wpcf7-textarea:focus {
  border-color: #252525;
  outline: none;
}
.cooperation-form__field textarea.wpcf7-textarea.wpcf7-not-valid {
  border-color: #f44336;
}
.cooperation-form__consent .wpcf7-list-item {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.cooperation-form__consent input[type=checkbox].wpcf7-acceptance {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.cooperation-form__consent input[type=checkbox].wpcf7-acceptance:checked {
  background-color: #252525;
  border-color: #252525;
  position: relative;
}
.cooperation-form__consent input[type=checkbox].wpcf7-acceptance:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cooperation-form__consent input[type=checkbox].wpcf7-acceptance:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.cooperation-form__consent .wpcf7-list-item-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #252525;
  cursor: pointer;
  margin: 0;
}
.cooperation-form__captcha {
  margin-bottom: 32px;
}
.cooperation-form__submit input[type=submit].wpcf7-submit {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 36px;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #252525;
  color: #FFFFFF;
}
.cooperation-form__submit input[type=submit].wpcf7-submit:hover {
  background-color: transparent;
  border: 1px solid #252525;
  color: #252525;
}
.cooperation-form .wpcf7-form br {
  display: none !important;
}
.cooperation-form .wpcf7-response-output {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid;
}
.cooperation-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-color: #4caf50;
}
.cooperation-form .wpcf7-response-output.wpcf7-validation-errors, .cooperation-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #ffebee;
  color: #c62828;
  border-color: #f44336;
}
.cooperation-form .wpcf7-spinner {
  margin-left: 12px;
}

.references {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.references__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.references__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
}
@media (min-width: 768px) {
  .references__inner-wrapper {
    padding: 120px 80px;
  }
}
.references__header {
  text-align: left;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .references__header {
    text-align: center;
  }
}
.references__tag {
  margin-bottom: 16px;
}
.references__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.references__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.references__title p {
  margin: 0;
}
.references__slider {
  position: relative;
  overflow: visible;
}
.references__slide {
  position: relative;
  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;
  width: 100%;
}
.references__content {
  position: relative;
  width: 100%;
  text-align: left;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .references__content {
    text-align: center;
    max-width: 600px;
  }
}
@media (min-width: 1366px) {
  .references__content {
    max-width: 800px;
  }
}
.references__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 32px;
}
.references__description p {
  margin: 0;
}
.references__description p:not(:last-child) {
  margin-bottom: 16px;
}
.references__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 1024px) {
  .references__image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.references__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.references__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  margin-top: 64px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .references__navigation {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.references__nav {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #252525;
}
.references__nav:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.references__nav:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.references__nav:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.references__nav svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.our-products__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.our-products__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px 64px;
}
@media (min-width: 768px) {
  .our-products__inner-wrapper {
    padding: 50px 80px;
  }
}
.our-products__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .our-products__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 80px;
    gap: 24px;
  }
}
.our-products__header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.our-products__header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  width: 100%;
}
@media (min-width: 1024px) {
  .our-products__header-right {
    width: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.our-products__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.our-products__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.our-products__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #939393;
}
.our-products__breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #939393;
}
.our-products__breadcrumb-link {
  color: #939393;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.our-products__breadcrumb-link:hover {
  color: #252525;
}
.our-products__breadcrumb-text {
  color: #939393;
}
.our-products__title h2, .our-products__title p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.our-products__title h2 em, .our-products__title p em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.our-products__search {
  position: relative;
  width: 100%;
  max-width: 280px;
}
.our-products__search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #939393;
  pointer-events: none;
}
.our-products__search-input {
  width: 100%;
  padding: 10px 56px 10px 50px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #3E3E3E;
  background-color: #FFFFFF;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.our-products__search-input::-webkit-search-cancel-button, .our-products__search-input::-webkit-search-decoration, .our-products__search-input::-webkit-search-results-button, .our-products__search-input::-webkit-search-results-decoration {
  display: none;
  -webkit-appearance: none;
}
.our-products__search-input::-ms-clear, .our-products__search-input::-ms-reveal {
  display: none;
}
.our-products__search-input::-webkit-input-placeholder {
  color: #939393;
  font-size: 14px;
}
.our-products__search-input::-moz-placeholder {
  color: #939393;
  font-size: 14px;
}
.our-products__search-input:-ms-input-placeholder {
  color: #939393;
  font-size: 14px;
}
.our-products__search-input::-ms-input-placeholder {
  color: #939393;
  font-size: 14px;
}
.our-products__search-input::placeholder {
  color: #939393;
  font-size: 14px;
}
.our-products__search-input:focus {
  border-color: #252525;
}
.our-products__search-clear {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  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;
  border: none;
  background: none;
  color: #939393;
  cursor: pointer;
  padding: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.our-products__search-clear:hover {
  color: #252525;
}
.our-products__search-clear:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.our-products__search-clear svg {
  width: 14px;
  height: 14px;
}
.our-products__view-toggles {
  display: none;
  gap: 10px;
}
@media (min-width: 1024px) {
  .our-products__view-toggles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.our-products__view-toggles--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1024px) {
  .our-products__view-toggles--mobile {
    display: none;
  }
}
.our-products__view-toggle {
  width: 40px;
  height: 40px;
  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;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  background-color: #FFFFFF;
  color: #252525;
  cursor: pointer;
}
.our-products__view-toggle:hover {
  border-color: #252525;
}
.our-products__view-toggle:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.our-products__view-toggle--active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.our-products__view-toggle--active:hover {
  background-color: #252525;
  border-color: #252525;
}
.our-products__view-toggle svg {
  width: 19px;
  height: 19px;
}
.our-products__mobile-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .our-products__mobile-controls {
    display: none;
  }
}
.our-products__filter-toggle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.our-products__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  position: relative;
}
.our-products__sidebar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border-radius: 16px 16px 0 0;
  max-height: 80vh;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .our-products__sidebar {
    position: static;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: auto;
    -webkit-transform: none;
            transform: none;
    background-color: transparent;
    overflow-y: visible;
    border-radius: 0;
    max-height: none;
  }
}
.our-products__sidebar--active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.our-products__sidebar-inner {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .our-products__sidebar-inner {
    padding: 0;
  }
}
.our-products__sidebar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .our-products__sidebar-header {
    display: none;
  }
}
.our-products__sidebar-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.our-products__filter-close {
  width: 40px;
  height: 40px;
  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;
  border: none;
  background: none;
  color: #252525;
  cursor: pointer;
  padding: 0;
}
.our-products__filter-close:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.our-products__filter-close svg {
  width: 24px;
  height: 24px;
}
.our-products__filters-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .our-products__filters-content {
    margin-bottom: 0;
  }
}
.our-products__filter:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #E0E0E0;
}
.our-products__filter-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 3vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0 0 20px 0;
}
.our-products__filter-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.our-products__filter-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.our-products__filter-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #939393;
  border-radius: 2px;
  margin: 0;
  cursor: pointer;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.our-products__filter-checkbox:checked {
  background-color: #252525;
  border-color: #252525;
}
.our-products__filter-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
}
.our-products__filter-checkbox:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.our-products__filter-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.our-products__filter-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #252525;
}
.our-products__filter-count {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #939393;
}
.our-products__apply-filters {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
@media (min-width: 1024px) {
  .our-products__apply-filters {
    display: none;
  }
}
.our-products__products {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.our-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px 24px;
}
.our-products__grid, .our-products__grid * {
  -webkit-transition: none !important;
  transition: none !important;
}
@media (min-width: 480px) {
  .our-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .our-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .our-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1366px) {
  .our-products__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}
.our-products__grid--list {
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1366px) {
  .our-products__grid--list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.our-products__grid--list .our-products__name {
  margin: 0;
}
@media (min-width: 1024px) {
  .our-products__grid--list .our-products__name {
    margin: 0 0 4px 0;
  }
}
.our-products__grid--list .our-products__card {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.our-products__grid--list .our-products__card-link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .our-products__grid--list .our-products__card-link {
    gap: 32px;
  }
}
.our-products__grid--list .our-products__image-wrapper {
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  .our-products__grid--list .our-products__image-wrapper {
    width: 180px;
  }
}
.our-products__grid--list .our-products__image {
  width: 100px;
  height: 100px;
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .our-products__grid--list .our-products__image {
    width: 180px;
    height: 180px;
    border-radius: 24px;
  }
}
.our-products__grid--list .our-products__card-content {
  padding-top: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.our-products__grid--list .our-products__category {
  display: none;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .our-products__grid--list .our-products__category {
    display: block;
  }
}
.our-products__grid--list .our-products__button {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 16px;
}
.our-products__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.our-products__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.our-products__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.our-products__image {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .our-products__image {
    height: 240px;
  }
}
.our-products__image--placeholder {
  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;
  background-color: #FBFBFB;
  border-radius: 16px;
}
.our-products__image--placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.3;
}
.our-products__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 32px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: none;
  transition: none;
}
.our-products__name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #3E3E3E;
  margin: 0 0 4px 0;
}
.our-products__category {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
.our-products__category-label {
  color: #939393;
}
.our-products__category-value {
  color: #939393;
}
.our-products__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
}
.our-products__empty, .our-products__no-results {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #939393;
  text-align: center;
  padding: 40px 0;
}
.our-products__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(37, 37, 37, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 1024px) {
  .our-products__overlay {
    display: none;
  }
}
.our-products__overlay--active {
  opacity: 1;
  visibility: visible;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.product__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.product__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .product__inner-wrapper {
    padding: 50px 80px 0 80px;
  }
}
@media (min-width: 1024px) {
  .product__inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.product__mobile-header {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .product__mobile-header {
    display: none;
  }
}
.product__desktop-header {
  display: none;
}
@media (min-width: 1024px) {
  .product__desktop-header {
    display: block;
  }
}
.product__gallery {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .product__gallery {
    margin-bottom: 0;
  }
}
.product__main-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.product__main-image-wrapper:hover .product__main-image {
  opacity: 0.9;
}
.product__main-image {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.product__main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product__gallery-nav {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  z-index: 2;
}
.product__gallery-nav-button {
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E0E0E0;
  background: #FBFBFB;
  color: #252525;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product__gallery-nav-button:hover {
  background: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.product__gallery-nav-button:active, .product__gallery-nav-button--pressed {
  background: rgb(11.5, 11.5, 11.5);
  border-color: rgb(11.5, 11.5, 11.5);
  color: #FFFFFF;
  -webkit-transition: all 0.05s ease;
  transition: all 0.05s ease;
}
.product__gallery-nav-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 3px;
}
.product__gallery-nav-button svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product__thumbnails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow: hidden;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.product__thumbnail {
  width: 75px;
  height: 75px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  overflow: hidden;
  border-radius: 8px;
  scroll-snap-align: start;
}
.product__thumbnail:hover {
  border-color: #E0E0E0;
}
.product__thumbnail--active {
  border-color: #E0E0E0;
}
.product__thumbnail:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 3px;
}
.product__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__info {
  width: 100%;
}
.product__breadcrumbs {
  font-size: clamp(16px, 3vw, 16px);
  color: #939393;
  margin-bottom: 24px;
}
.product__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product__breadcrumb-item::after {
  content: "/";
  margin: 0 8px;
  color: #939393;
}
.product__breadcrumb-item:last-child::after {
  display: none;
}
.product__breadcrumb-link {
  color: #939393;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.product__breadcrumb-link:hover {
  color: #252525;
}
.product__breadcrumb-text, .product__breadcrumb-current {
  color: #939393;
}
.product__breadcrumb-separator {
  margin: 0 8px;
}
.product__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 48px !important;
}
.product__title-decorative {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.product__title-regular {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.product__category {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
}
.product__category-label {
  color: #252525;
}
.product__category-value {
  color: #939393;
}
.product__description {
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .product__description {
    margin-bottom: 48px;
  }
}
.product__description p {
  margin-bottom: 16px;
}
.product__description p:last-child {
  margin-bottom: 0;
}
.product__features {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .product__features {
    margin-bottom: 48px;
  }
}
.product__features-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #252525;
  margin-bottom: 24px;
}
.product__features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 1024px) {
  .product__features-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.product__feature-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
  background-color: #FBFBFB;
  border-radius: 100px;
  width: 100%;
}
@media (min-width: 1024px) {
  .product__feature-tag {
    width: auto;
  }
}
.product__feature-icon {
  width: auto;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 12px;
}
.product__feature-title {
  font-size: 14px;
  font-weight: 400;
  color: #3E3E3E;
  white-space: nowrap;
}
.product__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 64px;
}
@media (min-width: 480px) {
  .product__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.product__action-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
@media (min-width: 1024px) {
  .product__action-btn {
    width: auto;
  }
}

.product-gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-gallery-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(37, 37, 37, 0.95);
  cursor: pointer;
}
.product-gallery-modal__content {
  position: relative;
  z-index: 10000;
  width: 100%;
  height: 100%;
  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;
  padding: 60px 10px 50px 10px;
}
@media (min-width: 768px) {
  .product-gallery-modal__content {
    padding: 70px 15px 60px 15px;
  }
}
@media (min-width: 1024px) {
  .product-gallery-modal__content {
    padding: 70px 80px 60px 80px;
  }
}
.product-gallery-modal__close {
  position: fixed;
  top: 10px;
  right: 10px;
  background: rgba(37, 37, 37, 0.5);
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10002;
  border-radius: 50%;
}
.product-gallery-modal__close:hover {
  background: rgba(37, 37, 37, 0.7);
}
.product-gallery-modal__close:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
}
@media (min-width: 768px) {
  .product-gallery-modal__close {
    top: 15px;
    right: 15px;
    font-size: 36px;
    width: 44px;
    height: 44px;
  }
}
@media (min-width: 1024px) {
  .product-gallery-modal__close {
    top: 15px;
    right: 15px;
    font-size: 40px;
    width: 48px;
    height: 48px;
  }
}
.product-gallery-modal__nav {
  position: fixed;
  bottom: 8px;
  background: rgba(37, 37, 37, 0.5);
  border: none;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10002;
}
.product-gallery-modal__nav:hover {
  background: rgba(37, 37, 37, 0.7);
}
.product-gallery-modal__nav:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 4px;
}
.product-gallery-modal__nav--prev {
  left: 10px;
}
@media (min-width: 768px) {
  .product-gallery-modal__nav--prev {
    left: 15px;
  }
}
.product-gallery-modal__nav--next {
  right: 10px;
}
@media (min-width: 768px) {
  .product-gallery-modal__nav--next {
    right: 15px;
  }
}
@media (min-width: 768px) {
  .product-gallery-modal__nav {
    bottom: 12px;
    font-size: 32px;
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1024px) {
  .product-gallery-modal__nav {
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 36px;
    width: 56px;
    height: 56px;
  }
  .product-gallery-modal__nav--prev {
    left: 15px;
  }
  .product-gallery-modal__nav--next {
    right: 15px;
  }
}
.product-gallery-modal__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  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;
}
.product-gallery-modal__image {
  display: none;
  width: 100%;
  min-width: 85%;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .product-gallery-modal__image {
    min-width: 80%;
  }
}
@media (min-width: 1024px) {
  .product-gallery-modal__image {
    min-width: 70%;
  }
}
.product-gallery-modal__image[data-active=true] {
  display: block;
}
.product-gallery-modal__counter {
  position: fixed;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #FFFFFF;
  font-size: 14px;
  background: rgba(37, 37, 37, 0.5);
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 10002;
}
@media (min-width: 768px) {
  .product-gallery-modal__counter {
    bottom: 20px;
    font-size: 15px;
    padding: 8px 16px;
  }
}
@media (min-width: 1024px) {
  .product-gallery-modal__counter {
    bottom: 18px;
  }
}

.product-description__outer-wrapper {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.product-description__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .product-description__inner-wrapper {
    padding: 100px 80px;
  }
}
.product-description__content-wrapper {
  max-width: 860px;
  width: 100%;
}
.product-description__side-object {
  display: none;
}
@media (min-width: 1024px) {
  .product-description__side-object {
    display: block;
    position: sticky;
    top: 0;
    float: right;
    width: auto;
    max-width: 500px;
    z-index: -1;
    pointer-events: none;
  }
  .product-description__side-object img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.product-description__section:not(:first-child) {
  margin-top: 64px;
}
.product-description__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.product-description__title em,
.product-description__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.product-description__title--decorative {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.product-description__content {
  margin-top: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.product-description__content p {
  margin-bottom: 16px;
}
.product-description__content p:last-child {
  margin-bottom: 0;
}
.product-description__content strong {
  font-weight: 700;
}
.product-description__content ul,
.product-description__content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.product-description__content ul li,
.product-description__content ol li {
  margin-bottom: 8px;
}
.product-description__content ul li:last-child,
.product-description__content ol li:last-child {
  margin-bottom: 0;
}
.product-description__content ul {
  list-style: disc;
}
.product-description__content ol {
  list-style: decimal;
}
.product-description__banner {
  margin-top: 64px;
  padding: 32px;
  background-color: #FBFBFB;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .product-description__banner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
    padding: 32px;
  }
}
.product-description__banner-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 1024px) {
  .product-description__banner-content {
    max-width: 100%;
  }
}
.product-description__banner-tag {
  display: block;
  margin-bottom: 16px;
}
.product-description__banner-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.product-description__banner-title em,
.product-description__banner-title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.product-description__banner-description {
  margin-top: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.product-description__banner-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .product-description__banner-image {
    margin: 0;
  }
}
.product-description__banner-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-description__fixed-banner {
  margin-top: 64px;
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .product-description__fixed-banner {
    height: 340px;
  }
}
.product-description__fixed-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.product-description__fixed-banner-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}
@media (min-width: 768px) {
  .product-description__fixed-banner-content {
    padding: 64px 44px;
    max-width: 400px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.product-description__fixed-banner-tag {
  display: block;
  margin-bottom: 16px;
}
.product-description__fixed-banner-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.product-description__fixed-banner-title em,
.product-description__fixed-banner-title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.product-description__fixed-banner-description {
  margin-top: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.product-description__composition-table-wrapper {
  margin-top: 32px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 375px) {
  .product-description__composition-table-wrapper {
    overflow-x: visible;
  }
}
.product-description__composition-table {
  width: 100%;
  min-width: 480px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 375px) {
  .product-description__composition-table {
    min-width: 0;
  }
}
.product-description__composition-table th,
.product-description__composition-table td {
  padding: 20px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #252525;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}
.product-description__composition-table th {
  font-weight: 500;
}
.product-description__composition-table td {
  font-weight: 400;
}
.product-description__composition-table-ingredient {
  width: 70%;
  border-right: 1px solid #E0E0E0;
}
.product-description__composition-table-amount {
  width: 30%;
}
.product-description__composition-table tbody tr:last-child td {
  border-bottom: none;
}
.product-description__composition-table-note {
  margin-top: 16px;
  font-size: 14px;
  color: #3E3E3E;
}

.before-after__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.before-after__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .before-after__inner-wrapper {
    padding: 50px 80px;
  }
}
.before-after__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .before-after__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 24px;
  }
}
.before-after__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.before-after__heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.before-after__heading em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.before-after__heading p {
  margin: 0;
}
.before-after__nav {
  display: none;
}
@media (min-width: 1024px) {
  .before-after__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.before-after__nav-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .before-after__nav-mobile {
    display: none;
  }
}
.before-after__nav-button {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  color: #252525;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.before-after__nav-button:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.before-after__nav-button:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.before-after__nav-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.before-after__nav-button svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.before-after__slider-wrapper {
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .before-after__slider-wrapper {
    margin-top: 80px;
  }
}
.before-after__slider {
  overflow: visible;
}
.before-after__slide {
  height: auto;
}
.before-after__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.before-after__image-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.before-after__image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.before-after__content {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.before-after__card-tagline {
  margin-bottom: 16px;
}
.before-after__card-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 24px;
}
.before-after__card-description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #3E3E3E;
  margin: 0;
}

.sticky-product-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 -4px 12px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 -4px 12px 0 rgba(0, 0, 0, 0.07);
  z-index: 100;
  border-top: 1px solid #E0E0E0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.sticky-product-bar--visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sticky-product-bar__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.sticky-product-bar__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
}
@media (min-width: 768px) {
  .sticky-product-bar__inner-wrapper {
    padding: 24px 80px;
  }
}
.sticky-product-bar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media (min-width: 1024px) {
  .sticky-product-bar__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}
.sticky-product-bar__product-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.sticky-product-bar__product-title {
  margin: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
@media (min-width: 1024px) {
  .sticky-product-bar__product-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.sticky-product-bar__product-title-decorative {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.sticky-product-bar__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .sticky-product-bar__actions {
    width: auto;
  }
}
.sticky-product-bar__actions .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.sticky-product-bar__buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 16px;
  width: 100%;
}
@media (min-width: 480px) {
  .sticky-product-bar__buttons-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
  }
}

.sales-points {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 1024px) {
  .sales-points {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sales-points[hidden] {
  display: none;
}
.sales-points.is-active {
  opacity: 1;
  visibility: visible;
}
.sales-points.is-active .sales-points__box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 1024px) {
  .sales-points.is-active .sales-points__box {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.sales-points__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 37, 37, 0.5);
  cursor: pointer;
}
.sales-points__container {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1024px) {
  .sales-points__container {
    width: 1024px;
    max-width: calc(100% - 48px);
  }
}
.sales-points__box {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 1024px) {
  .sales-points__box {
    border-radius: 16px;
    height: auto;
    max-height: 1024px;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.sales-points__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  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;
  background: none;
  border: none;
  color: #252525;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .sales-points__close {
    top: 32px;
    right: 32px;
  }
}
@media (min-width: 1024px) {
  .sales-points__close {
    top: 64px;
    right: 64px;
  }
}
.sales-points__close:hover {
  color: #939393;
}
.sales-points__close:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.sales-points__close svg {
  width: 24px;
  height: 24px;
}
.sales-points__content {
  padding: 32px 24px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .sales-points__content {
    padding: 64px;
  }
}
.sales-points__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .sales-points__header {
    margin-bottom: 48px;
  }
}
.sales-points__tag {
  display: block;
}
.sales-points__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-top: 16px;
}
.sales-points__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.sales-points__title[hidden] {
  display: none;
}
.sales-points__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-top: 32px;
}
.sales-points__description p {
  margin: 0;
}
.sales-points__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
}
.sales-points__body[hidden] {
  display: none;
}
.sales-points__voivodeships {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sales-points__voivodeship {
  border-bottom: 1px solid #E0E0E0;
}
.sales-points__voivodeship:last-child {
  border-bottom: none;
}
.sales-points__voivodeship-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}
@media (min-width: 1024px) {
  .sales-points__voivodeship-button {
    padding: 32px 0;
  }
}
.sales-points__voivodeship-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 4px;
}
.sales-points__voivodeship-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sales-points__icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  color: #252525;
}
.sales-points__icon-minus, .sales-points__icon-plus {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sales-points__icon-minus {
  opacity: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sales-points__icon-plus {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.sales-points__voivodeship.is-open .sales-points__icon-minus {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.sales-points__voivodeship.is-open .sales-points__icon-plus {
  opacity: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sales-points__shops {
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  .sales-points__shops {
    padding-bottom: 32px;
  }
}
.sales-points__shops[hidden] {
  display: none;
}
.sales-points__shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
@media (min-width: 768px) {
  .sales-points__shop {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .sales-points__shop {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
  }
}
.sales-points__shop:first-child {
  padding-top: 8px;
}
.sales-points__shop:not(:last-child) {
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
@media (min-width: 1024px) {
  .sales-points__shop:not(:last-child) {
    border-bottom: none;
  }
}
.sales-points__shop-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .sales-points__shop-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
}
.sales-points__shop-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #252525;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  .sales-points__shop-name {
    min-width: 200px;
    max-width: 200px;
  }
}
.sales-points__shop-address {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #3E3E3E;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sales-points__shop-button {
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (min-width: 1024px) {
  .sales-points__shop-button {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
.sales-points__empty {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 48px 24px;
}
@media (min-width: 1024px) {
  .sales-points__empty {
    padding: 64px;
  }
}
.sales-points__empty-icon {
  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;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #FBFBFB;
  margin-bottom: 24px;
  color: #939393;
}
.sales-points__empty-icon svg {
  width: 48px;
  height: 48px;
}
.sales-points__empty-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #939393;
  max-width: 400px;
  margin: 0;
}
.sales-points__empty-text p {
  margin: 0;
}
.sales-points__form-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sales-points__form-wrapper[hidden] {
  display: none;
}
.sales-points__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 32px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #252525;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sales-points__back:hover {
  color: #939393;
}
.sales-points__back:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.sales-points__back svg {
  width: 20px;
  height: 20px;
}
.sales-points__form-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
  padding: 16px;
  background-color: #FBFBFB;
  border-radius: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  .sales-points__form-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    padding: 20px 24px;
  }
}
.sales-points__form-shop-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #939393;
}
.sales-points__form-shop-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #252525;
}
.sales-points__form-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
}
.sales-points .wpcf7 {
  margin: 0;
  padding: 0;
}
.sales-points .wpcf7-form {
  margin: 0;
  padding: 0;
}
.sales-points .wpcf7-form-control-wrap {
  display: block;
}
.sales-points .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.sales-points .contact-form__field {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .sales-points .contact-form__field {
    margin-bottom: 32px;
  }
}
.sales-points .contact-form__field label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 12px;
}
.sales-points .contact-form__field input.wpcf7-text,
.sales-points .contact-form__field input.wpcf7-email,
.sales-points .contact-form__field input.wpcf7-tel {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.sales-points .contact-form__field input.wpcf7-text::-webkit-input-placeholder, .sales-points .contact-form__field input.wpcf7-email::-webkit-input-placeholder, .sales-points .contact-form__field input.wpcf7-tel::-webkit-input-placeholder {
  color: #939393;
}
.sales-points .contact-form__field input.wpcf7-text::-moz-placeholder, .sales-points .contact-form__field input.wpcf7-email::-moz-placeholder, .sales-points .contact-form__field input.wpcf7-tel::-moz-placeholder {
  color: #939393;
}
.sales-points .contact-form__field input.wpcf7-text:-ms-input-placeholder, .sales-points .contact-form__field input.wpcf7-email:-ms-input-placeholder, .sales-points .contact-form__field input.wpcf7-tel:-ms-input-placeholder {
  color: #939393;
}
.sales-points .contact-form__field input.wpcf7-text::-ms-input-placeholder, .sales-points .contact-form__field input.wpcf7-email::-ms-input-placeholder, .sales-points .contact-form__field input.wpcf7-tel::-ms-input-placeholder {
  color: #939393;
}
.sales-points .contact-form__field input.wpcf7-text::placeholder,
.sales-points .contact-form__field input.wpcf7-email::placeholder,
.sales-points .contact-form__field input.wpcf7-tel::placeholder {
  color: #939393;
}
.sales-points .contact-form__field input.wpcf7-text:focus,
.sales-points .contact-form__field input.wpcf7-email:focus,
.sales-points .contact-form__field input.wpcf7-tel:focus {
  border-color: #252525;
  outline: none;
}
.sales-points .contact-form__field input.wpcf7-text.wpcf7-not-valid,
.sales-points .contact-form__field input.wpcf7-email.wpcf7-not-valid,
.sales-points .contact-form__field input.wpcf7-tel.wpcf7-not-valid {
  border-color: #f44336;
}
.sales-points .contact-form__field textarea.wpcf7-textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  resize: vertical;
  min-height: 120px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.sales-points .contact-form__field textarea.wpcf7-textarea::-webkit-input-placeholder {
  color: #939393;
}
.sales-points .contact-form__field textarea.wpcf7-textarea::-moz-placeholder {
  color: #939393;
}
.sales-points .contact-form__field textarea.wpcf7-textarea:-ms-input-placeholder {
  color: #939393;
}
.sales-points .contact-form__field textarea.wpcf7-textarea::-ms-input-placeholder {
  color: #939393;
}
.sales-points .contact-form__field textarea.wpcf7-textarea::placeholder {
  color: #939393;
}
.sales-points .contact-form__field textarea.wpcf7-textarea:focus {
  border-color: #252525;
  outline: none;
}
.sales-points .contact-form__field textarea.wpcf7-textarea.wpcf7-not-valid {
  border-color: #f44336;
}
.sales-points .contact-form__field-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 24px;
  gap: 24px;
}
@media (min-width: 1024px) {
  .sales-points .contact-form__field-row {
    margin-bottom: 32px;
  }
}
@media (min-width: 1366px) {
  .sales-points .contact-form__field-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.sales-points .contact-form__field-row .contact-form__field {
  margin-bottom: 0;
}
.sales-points .contact-form__field-row .contact-form__field:last-child {
  margin-bottom: 0;
}
.sales-points .contact-form__field-row .contact-form__field--half {
  width: 100%;
}
@media (min-width: 1366px) {
  .sales-points .contact-form__field-row .contact-form__field--half {
    width: 50%;
  }
}
.sales-points .contact-form__field--last {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .sales-points .contact-form__field--last {
    margin-bottom: 32px;
  }
}
.sales-points .contact-form__consent {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .sales-points .contact-form__consent {
    margin-bottom: 32px;
  }
}
.sales-points .contact-form__consent .wpcf7-acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.sales-points .contact-form__consent .wpcf7-acceptance input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.sales-points .contact-form__consent .wpcf7-acceptance input:checked {
  background-color: #252525;
  border-color: #252525;
  position: relative;
}
.sales-points .contact-form__consent .wpcf7-acceptance input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sales-points .contact-form__consent .wpcf7-acceptance input:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.sales-points .contact-form__consent .wpcf7-list-item-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #252525;
  cursor: pointer;
  margin: 0;
}
.sales-points .contact-form__captcha {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .sales-points .contact-form__captcha {
    margin-bottom: 32px;
  }
}
.sales-points .contact-form__submit input[type=submit].wpcf7-submit {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 36px;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #252525;
  color: #FFFFFF;
}
.sales-points .contact-form__submit input[type=submit].wpcf7-submit:hover {
  background-color: transparent;
  border: 1px solid #252525;
  color: #252525;
}
.sales-points .contact-form__submit input[type=submit].wpcf7-submit:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.sales-points .wpcf7-form br {
  display: none !important;
}
.sales-points .wpcf7-response-output {
  margin: 0 !important;
  margin-top: 24px !important;
  padding: 16px !important;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid;
}
.sales-points .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-color: #4caf50;
}
.sales-points .wpcf7-response-output.wpcf7-validation-errors, .sales-points .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #ffebee;
  color: #c62828;
  border-color: #f44336;
}
.sales-points .wpcf7-spinner {
  margin-left: 12px;
}

.distributor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 1024px) {
  .distributor {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.distributor[hidden] {
  display: none;
}
.distributor.is-active {
  opacity: 1;
  visibility: visible;
}
.distributor.is-active .distributor__box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 1024px) {
  .distributor.is-active .distributor__box {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.distributor__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 37, 37, 0.5);
  cursor: pointer;
}
.distributor__container {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1024px) {
  .distributor__container {
    width: 1024px;
    max-width: calc(100% - 48px);
  }
}
.distributor__box {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 1024px) {
  .distributor__box {
    border-radius: 16px;
    height: auto;
    max-height: 1024px;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}
.distributor__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  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;
  background: none;
  border: none;
  color: #252525;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .distributor__close {
    top: 32px;
    right: 32px;
  }
}
@media (min-width: 1024px) {
  .distributor__close {
    top: 64px;
    right: 64px;
  }
}
.distributor__close:hover {
  color: #939393;
}
.distributor__close:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.distributor__close svg {
  width: 24px;
  height: 24px;
}
.distributor__content {
  padding: 32px 24px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .distributor__content {
    padding: 64px;
  }
}
.distributor__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .distributor__header {
    margin-bottom: 48px;
  }
}
.distributor__tag {
  display: block;
}
.distributor__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-top: 16px;
}
.distributor__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.distributor__form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
}
.distributor .wpcf7 {
  margin: 0;
  padding: 0;
}
.distributor .wpcf7-form {
  margin: 0;
  padding: 0;
}
.distributor .wpcf7-form-control-wrap {
  display: block;
}
.distributor .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.distributor .contact-form__field {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .distributor .contact-form__field {
    margin-bottom: 32px;
  }
}
.distributor .contact-form__field label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 12px;
}
.distributor .contact-form__field input.wpcf7-text,
.distributor .contact-form__field input.wpcf7-email,
.distributor .contact-form__field input.wpcf7-tel {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.distributor .contact-form__field input.wpcf7-text::-webkit-input-placeholder, .distributor .contact-form__field input.wpcf7-email::-webkit-input-placeholder, .distributor .contact-form__field input.wpcf7-tel::-webkit-input-placeholder {
  color: #939393;
}
.distributor .contact-form__field input.wpcf7-text::-moz-placeholder, .distributor .contact-form__field input.wpcf7-email::-moz-placeholder, .distributor .contact-form__field input.wpcf7-tel::-moz-placeholder {
  color: #939393;
}
.distributor .contact-form__field input.wpcf7-text:-ms-input-placeholder, .distributor .contact-form__field input.wpcf7-email:-ms-input-placeholder, .distributor .contact-form__field input.wpcf7-tel:-ms-input-placeholder {
  color: #939393;
}
.distributor .contact-form__field input.wpcf7-text::-ms-input-placeholder, .distributor .contact-form__field input.wpcf7-email::-ms-input-placeholder, .distributor .contact-form__field input.wpcf7-tel::-ms-input-placeholder {
  color: #939393;
}
.distributor .contact-form__field input.wpcf7-text::placeholder,
.distributor .contact-form__field input.wpcf7-email::placeholder,
.distributor .contact-form__field input.wpcf7-tel::placeholder {
  color: #939393;
}
.distributor .contact-form__field input.wpcf7-text:focus,
.distributor .contact-form__field input.wpcf7-email:focus,
.distributor .contact-form__field input.wpcf7-tel:focus {
  border-color: #252525;
  outline: none;
}
.distributor .contact-form__field input.wpcf7-text.wpcf7-not-valid,
.distributor .contact-form__field input.wpcf7-email.wpcf7-not-valid,
.distributor .contact-form__field input.wpcf7-tel.wpcf7-not-valid {
  border-color: #f44336;
}
.distributor .contact-form__field textarea.wpcf7-textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  resize: vertical;
  max-height: 200px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.distributor .contact-form__field textarea.wpcf7-textarea::-webkit-input-placeholder {
  color: #939393;
}
.distributor .contact-form__field textarea.wpcf7-textarea::-moz-placeholder {
  color: #939393;
}
.distributor .contact-form__field textarea.wpcf7-textarea:-ms-input-placeholder {
  color: #939393;
}
.distributor .contact-form__field textarea.wpcf7-textarea::-ms-input-placeholder {
  color: #939393;
}
.distributor .contact-form__field textarea.wpcf7-textarea::placeholder {
  color: #939393;
}
.distributor .contact-form__field textarea.wpcf7-textarea:focus {
  border-color: #252525;
  outline: none;
}
.distributor .contact-form__field textarea.wpcf7-textarea.wpcf7-not-valid {
  border-color: #f44336;
}
.distributor .contact-form__field-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .distributor .contact-form__field-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.distributor .contact-form__field-row .contact-form__field {
  margin-bottom: 0;
}
.distributor .contact-form__field-row .contact-form__field--half {
  width: 100%;
}
@media (min-width: 1024px) {
  .distributor .contact-form__field-row .contact-form__field--half {
    width: 50%;
  }
}
.distributor .contact-form__field--last {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .distributor .contact-form__field--last {
    margin-bottom: 32px;
  }
}
.distributor .contact-form__consent {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .distributor .contact-form__consent {
    margin-bottom: 32px;
  }
}
.distributor .contact-form__consent .wpcf7-acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.distributor .contact-form__consent .wpcf7-acceptance input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.distributor .contact-form__consent .wpcf7-acceptance input:checked {
  background-color: #252525;
  border-color: #252525;
  position: relative;
}
.distributor .contact-form__consent .wpcf7-acceptance input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.distributor .contact-form__consent .wpcf7-acceptance input:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.distributor .contact-form__consent .wpcf7-list-item-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #252525;
  cursor: pointer;
  margin: 0;
}
.distributor .contact-form__captcha {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .distributor .contact-form__captcha {
    margin-bottom: 32px;
  }
}
.distributor .contact-form__submit input[type=submit].wpcf7-submit {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 36px;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #252525;
  color: #FFFFFF;
}
.distributor .contact-form__submit input[type=submit].wpcf7-submit:hover {
  background-color: transparent;
  border: 1px solid #252525;
  color: #252525;
}
.distributor .contact-form__submit input[type=submit].wpcf7-submit:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.distributor .wpcf7-form br {
  display: none !important;
}
.distributor .wpcf7-response-output {
  margin: 0 !important;
  margin-top: 24px !important;
  padding: 16px !important;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid;
}
.distributor .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-color: #4caf50;
}
.distributor .wpcf7-response-output.wpcf7-validation-errors, .distributor .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #ffebee;
  color: #c62828;
  border-color: #f44336;
}
.distributor .wpcf7-spinner {
  margin-left: 12px;
}

.generic-content__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.generic-content__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .generic-content__inner-wrapper {
    padding: 50px 80px 100px 80px;
  }
}
.generic-content__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .generic-content__layout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
}
.generic-content__main {
  width: 100%;
}
@media (min-width: 1024px) {
  .generic-content__main {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 900px;
            flex: 0 1 900px;
    max-width: 900px;
    min-width: 0;
  }
}
.generic-content__sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .generic-content__sidebar {
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 280px;
            flex: 1 0 280px;
    min-width: 280px;
  }
}
.generic-content__breadcrumbs {
  margin-bottom: 16px;
}
.generic-content__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.generic-content__breadcrumbs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.generic-content__breadcrumbs-separator {
  margin: 0 8px;
}
.generic-content__breadcrumbs-link {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.generic-content__breadcrumbs-link:hover {
  color: #252525;
}
.generic-content__header {
  margin-bottom: 64px;
}
.generic-content__title {
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  color: #252525;
}
.generic-content__title--decorative {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.generic-content__short-description {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 300;
  color: #3E3E3E;
  line-height: 1.5;
}
.generic-content__short-description p {
  margin: 0;
}
.generic-content__short-description p:not(:last-child) {
  margin-bottom: 16px;
}
.generic-content__toc {
  background-color: #FBFBFB;
  border-radius: 16px;
  padding: 24px;
}
.generic-content__toc--mobile {
  display: block;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .generic-content__toc--mobile {
    display: none;
  }
}
.generic-content__toc--desktop {
  position: sticky;
  top: 120px;
  max-width: 100%;
}
.generic-content__toc-title {
  margin-bottom: 32px;
}
.generic-content__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.generic-content__toc-item:not(:last-child) {
  margin-bottom: 12px;
}
.generic-content__toc-link {
  font-size: 14px;
  font-weight: 300;
  color: #939393;
  line-height: 1.5;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.generic-content__toc-link:hover, .generic-content__toc-link.is-active {
  color: #252525;
}
.generic-content__body {
  max-width: 900px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.generic-content__body h1,
.generic-content__body h2,
.generic-content__body h3,
.generic-content__body h4,
.generic-content__body h5,
.generic-content__body h6 {
  font-weight: 400;
  color: #252525;
  margin-bottom: 32px;
  margin-top: 64px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  scroll-margin-top: 120px;
}
.generic-content__body h1:first-child,
.generic-content__body h2:first-child,
.generic-content__body h3:first-child,
.generic-content__body h4:first-child,
.generic-content__body h5:first-child,
.generic-content__body h6:first-child {
  margin-top: 0;
}
.generic-content__body h2 {
  font-size: clamp(32px, 3vw, 32px);
}
.generic-content__body h3 {
  font-size: clamp(24px, 3vw, 24px);
}
.generic-content__body h4 {
  font-size: clamp(20px, 3vw, 20px);
}
.generic-content__body p {
  margin-bottom: 32px;
  font-weight: 300;
  font-size: 15px;
  color: #3E3E3E;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.generic-content__body p strong,
.generic-content__body p b {
  font-weight: 400;
}
.generic-content__body p:last-child {
  margin-bottom: 0;
}
.generic-content__body img {
  width: 100%;
  height: auto;
  margin: 64px 0;
  border-radius: 12px;
}
.generic-content__body > *:last-child img,
.generic-content__body > p:last-child img,
.generic-content__body > figure:last-child img,
.generic-content__body > div:last-child img,
.generic-content__body > img:last-child {
  margin-bottom: 0;
}
.generic-content__body ul,
.generic-content__body ol {
  margin-bottom: 32px;
  padding-left: 20px;
}
.generic-content__body ul li,
.generic-content__body ol li {
  font-weight: 300;
  margin-bottom: 16px;
  font-size: 15px;
  color: #3E3E3E;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.generic-content__body ul li:last-child,
.generic-content__body ol li:last-child {
  margin-bottom: 0;
}
.generic-content__body ul {
  list-style: disc;
}
.generic-content__body ol {
  list-style: decimal;
}
.generic-content__body blockquote {
  padding-left: 24px;
  border-left: 4px solid #252525;
  margin: 32px 0;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.generic-content__body blockquote p {
  margin-bottom: 24px;
}
.generic-content__body blockquote p:last-child {
  margin-bottom: 0;
}
.generic-content__body a {
  color: #252525;
  text-decoration: underline;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}
.generic-content__body a:hover {
  text-decoration: none;
}

.error-404 {
  width: 100%;
}
.error-404__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.error-404__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .error-404__inner-wrapper {
    padding: 50px 80px 100px 80px;
  }
}
@media (min-width: 1024px) {
  .error-404__inner-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;
  }
}
.error-404__content {
  width: 100%;
}
@media (min-width: 1024px) {
  .error-404__content {
    width: 50%;
  }
}
.error-404__header {
  margin-bottom: 32px;
}
.error-404__header .tagline {
  display: block;
  margin-bottom: 8px;
}
.error-404__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.error-404__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.error-404__title p {
  margin: 0;
}
.error-404__description {
  font-size: 15px;
  color: #3E3E3E;
  line-height: 1.5;
  margin-bottom: 32px;
}
.error-404__description p {
  margin: 0;
}
.error-404__description p:not(:last-child) {
  margin-bottom: 16px;
}
.error-404__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.error-404__illustration {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 1024px) {
  .error-404__illustration {
    width: 50%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.error-404__image-container {
  position: relative;
  width: 280px;
  height: 280px;
}
@media (min-width: 768px) {
  .error-404__image-container {
    width: 320px;
    height: 320px;
  }
}
@media (min-width: 1024px) {
  .error-404__image-container {
    width: 360px;
    height: 360px;
  }
}
.error-404__svg {
  width: 100%;
  height: 100%;
  -webkit-animation: error-404-pulse 4s infinite ease-in-out;
          animation: error-404-pulse 4s infinite ease-in-out;
}
@-webkit-keyframes error-404-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes error-404-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.editor-styles-wrapper {
  /**
   * Mixin do responsywności oparty na mobile-first.
   * Użycie: @include respond-to(tablet) { ... }
   * 
   * @param {String} $breakpoint - Nazwa breakpointu (mobile-sm, mobile, tablet, desktop, desktop-lg, desktop-xl)
   */
  /**
   * Bazowe rozmiary fontów z fluid typography (clamp) dla responsywności
   * Dostosowane do designu esenzia
   */
  /* === RESET & BASE STYLES === */
}
.editor-styles-wrapper *,
.editor-styles-wrapper *::before,
.editor-styles-wrapper *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.editor-styles-wrapper html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
.editor-styles-wrapper body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
  color: #3E3E3E;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.editor-styles-wrapper img, .editor-styles-wrapper picture, .editor-styles-wrapper video, .editor-styles-wrapper canvas, .editor-styles-wrapper svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.editor-styles-wrapper button,
.editor-styles-wrapper input,
.editor-styles-wrapper select,
.editor-styles-wrapper textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
.editor-styles-wrapper a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.editor-styles-wrapper a:hover {
  color: black;
}
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
  list-style: none;
  padding-left: 0;
}
.editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
}
.editor-styles-wrapper h1 {
  font-size: clamp(32px, 5vw, 48px);
}
.editor-styles-wrapper h2 {
  font-size: clamp(32px, 4.5vw, 40px);
}
.editor-styles-wrapper h3 {
  font-size: clamp(32px, 3vw, 32px);
}
.editor-styles-wrapper h4 {
  font-size: clamp(24px, 3vw, 24px);
}
.editor-styles-wrapper h5 {
  font-size: clamp(20px, 3vw, 20px);
}
.editor-styles-wrapper p {
  font-family: "Poppins", sans-serif;
}
.editor-styles-wrapper button {
  cursor: pointer;
}
.editor-styles-wrapper {
  /**
   * Komponenty przycisków zgodne z designem esenzia
   * Wykorzystuje BEM: .button, .button--primary, .button--outline, .button--icon-right
   */
}
.editor-styles-wrapper .button {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 36px;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}
.editor-styles-wrapper .button--primary {
  background-color: #252525;
  color: #FFFFFF;
}
.editor-styles-wrapper .button--primary:hover {
  background-color: transparent;
  border: 1px solid #252525;
  color: #252525;
}
.editor-styles-wrapper .button--outline {
  padding: 12px 36px;
  border: 1px solid #939393;
  color: #252525;
}
.editor-styles-wrapper .button--outline:hover {
  color: #FFFFFF;
  background-color: #252525;
}
.editor-styles-wrapper .tagline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 3vw, 16px);
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: #939393;
}
.editor-styles-wrapper {
  /**
   * Główny kontener strony i flexbox utilities
   * 
   * Kontener główny o maksymalnej szerokości 1260px
   * z responsywnymi paddingami dla różnych szerokości ekranu
   */
}
.editor-styles-wrapper .container {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.editor-styles-wrapper *:focus-visible {
  outline: none;
}
.editor-styles-wrapper {
  /* Globalne nadpisanie wysokości Swipera - dodaj na końcu głównego CSS */
}
.editor-styles-wrapper .swiper,
.editor-styles-wrapper .swiper-wrapper,
.editor-styles-wrapper .swiper-container,
.editor-styles-wrapper .swiper-initialized,
.editor-styles-wrapper .swiper-horizontal,
.editor-styles-wrapper [class*=swiper-] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
.editor-styles-wrapper button[class*=swiper-] {
  height: 52px !important;
}
.editor-styles-wrapper {
  /* Dodatkowe zabezpieczenie dla konkretnych klas */
}
.editor-styles-wrapper .hero-slider__slider,
.editor-styles-wrapper .featured-products__slider,
.editor-styles-wrapper .swiper-backface-hidden {
  height: auto !important;
}
.editor-styles-wrapper {
  /* Usunięcie podkreśleń z cen */
}
.editor-styles-wrapper .woocommerce-Price-amount.amount {
  text-decoration: none;
}

.interface-interface-skeleton__sidebar {
  width: 380px !important;
  min-width: 380px !important;
}

.interface-complementary-area {
  width: 380px !important;
}

.edit-post-sidebar,
.editor-sidebar {
  width: 380px !important;
}

.block-editor-block-inspector {
  width: 100%;
}

.acf-block-component .acf-fields {
  width: 100%;
}

.interface-interface-skeleton__sidebar .acf-input textarea,
.interface-interface-skeleton__sidebar .acf-input input[type=text],
.interface-interface-skeleton__sidebar .acf-input input[type=url],
.interface-interface-skeleton__sidebar .acf-input input[type=number] {
  width: 100%;
}
.interface-interface-skeleton__sidebar .acf-editor-wrap {
  width: 100%;
}

.interface-interface-skeleton__content {
  margin-right: 380px;
}

.interface-interface-skeleton:not(.has-complementary-area) .interface-interface-skeleton__content {
  margin-right: 0;
}

.text-with-image__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-image__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-image__inner-wrapper {
    padding: 100px 80px;
  }
}
.text-with-image__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 64px;
}
@media (min-width: 1024px) {
  .text-with-image__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;
  }
}
.text-with-image__text-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .text-with-image__text-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}
.text-with-image__tag-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
.text-with-image__tag {
  margin: 0;
}
.text-with-image__breadcrumbs {
  margin-bottom: 16px;
}
.text-with-image__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-with-image__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #939393;
}
.text-with-image__breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #939393;
}
.text-with-image__breadcrumb-link {
  color: #939393;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.text-with-image__breadcrumb-link:hover {
  color: #252525;
}
.text-with-image__breadcrumb-text {
  color: #939393;
}
.text-with-image__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.text-with-image__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.text-with-image__title p {
  margin: 0;
}
.text-with-image__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 36px;
}
.text-with-image__description p {
  margin: 0;
}
.text-with-image__description p:not(:last-child) {
  margin-bottom: 16px;
}
.text-with-image__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.text-with-image__image-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 1024px) {
  .text-with-image__image-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}
.text-with-image__image, .text-with-image__placeholder {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .text-with-image--image-right .text-with-image__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .text-with-image--image-left .text-with-image__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.text-with-image--with-breadcrumbs .text-with-image__inner-wrapper {
  padding: 32px 24px 64px 24px;
}
@media (min-width: 768px) {
  .text-with-image--with-breadcrumbs .text-with-image__inner-wrapper {
    padding: 50px 80px 100px 80px;
  }
}

[data-type="acf/text-with-image"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-image"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-image {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-image__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-image__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-image__tag-title {
  margin-bottom: 64px;
}
.editor-styles-wrapper .text-with-image__tag {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-image__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .text-with-image__description {
  margin-top: 0 !important;
  margin-bottom: 36px !important;
}
.editor-styles-wrapper .text-with-image__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-image__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .text-with-image__image-container {
  aspect-ratio: 1/1;
}
.editor-styles-wrapper .text-with-image__image, .editor-styles-wrapper .text-with-image__placeholder {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.editor-styles-wrapper [data-type="acf/text-with-image"][data-align=full] .text-with-image {
  width: 100%;
  max-width: none;
}

.text-with-video__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-video__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-video__inner-wrapper {
    padding: 100px 80px;
  }
}
.text-with-video__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .text-with-video__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;
  }
}
.text-with-video__text-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .text-with-video__text-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}
.text-with-video__tag-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
.text-with-video__tag {
  margin: 0;
}
.text-with-video__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.text-with-video__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.text-with-video__title p {
  margin: 0;
}
.text-with-video__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 36px;
}
.text-with-video__description p {
  margin: 0;
}
.text-with-video__description p:not(:last-child) {
  margin-bottom: 16px;
}
.text-with-video__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.text-with-video__video-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
}
@media (min-width: 1024px) {
  .text-with-video__video-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
  }
}
.text-with-video__video, .text-with-video__placeholder {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

[data-type="acf/text-with-video"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-video"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-video {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-video__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-video__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-video__tag-title {
  margin-bottom: 64px;
}
.editor-styles-wrapper .text-with-video__tag {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-video__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .text-with-video__description {
  margin-top: 0 !important;
  margin-bottom: 36px !important;
}
.editor-styles-wrapper .text-with-video__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-video__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/text-with-video"][data-align=full] .text-with-video {
  width: 100%;
  max-width: none;
}

.centered-text {
  position: relative;
  width: 100%;
}
.centered-text__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.centered-text__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .centered-text__inner-wrapper {
    padding: 100px 80px;
  }
}
.centered-text__content {
  width: 100%;
  text-align: left;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .centered-text__content {
    text-align: center;
    max-width: 600px;
  }
}
@media (min-width: 1366px) {
  .centered-text__content {
    max-width: 800px;
  }
}
.centered-text__tag {
  margin-bottom: 16px;
}
.centered-text__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 64px;
}
.centered-text__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.centered-text__title p {
  margin: 0;
}
.centered-text__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.centered-text__description p {
  margin: 0;
}
.centered-text__description p:not(:last-child) {
  margin-bottom: 16px;
}
.centered-text__button-wrapper {
  margin-top: 48px;
}
.centered-text__button {
  display: inline-block;
}

[data-type="acf/centered-text"] {
  max-width: 100% !important;
}
[data-type="acf/centered-text"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .centered-text {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .centered-text__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .centered-text__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .centered-text__tag {
  margin: 0 0 16px 0 !important;
}
.editor-styles-wrapper .centered-text__title {
  margin: 0 0 64px 0 !important;
}
.editor-styles-wrapper .centered-text__title p {
  margin: 0 !important;
}
.editor-styles-wrapper .centered-text__description {
  margin: 0 !important;
}
.editor-styles-wrapper .centered-text__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .centered-text__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .centered-text__button-wrapper {
  margin-top: 48px !important;
}
.editor-styles-wrapper [data-type="acf/centered-text"][data-align=full] .centered-text {
  width: 100%;
  max-width: none;
}

.text-with-two-images {
  width: 100%;
}
.text-with-two-images__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-two-images__inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-two-images__inner-wrapper {
    padding: 100px 80px;
  }
}
@media (min-width: 1600px) {
  .text-with-two-images__inner-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 100px;
  }
}
.text-with-two-images__content {
  width: 100%;
}
@media (min-width: 1600px) {
  .text-with-two-images__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
.text-with-two-images__tag-title {
  margin-bottom: 64px;
}
.text-with-two-images__tag {
  display: block;
  margin-bottom: 16px;
}
.text-with-two-images__title em, .text-with-two-images__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.text-with-two-images__description p {
  margin: 0;
}
.text-with-two-images__description p:not(:last-child) {
  margin-bottom: 16px;
}
.text-with-two-images__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 32px;
  width: 100%;
}
@media (min-width: 1600px) {
  .text-with-two-images__images {
    -webkit-box-flex: 2.5;
        -ms-flex: 2.5;
            flex: 2.5;
    min-width: 0;
  }
}
.text-with-two-images__image-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 24px;
}
.text-with-two-images__image-wrapper--second {
  display: none;
}
@media (min-width: 1024px) {
  .text-with-two-images__image-wrapper--second {
    display: block;
  }
}
.text-with-two-images__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

[data-type="acf/text-with-two-images"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-two-images"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-two-images {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-two-images__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-two-images__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-two-images__tag-title {
  margin-bottom: 64px;
}
.editor-styles-wrapper .text-with-two-images__tag {
  margin: 0 !important;
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .text-with-two-images__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .text-with-two-images__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.editor-styles-wrapper .text-with-two-images__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-two-images__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .text-with-two-images__image-wrapper--second {
  display: block;
}
.editor-styles-wrapper [data-type="acf/text-with-two-images"][data-align=full] .text-with-two-images {
  width: 100%;
  max-width: none;
}

.text-with-shape__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.text-with-shape__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-shape__inner-wrapper {
    padding: 100px 80px;
  }
}
@media (min-width: 1024px) {
  .text-with-shape__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 100px;
  }
}
@media (min-width: 1024px) {
  .text-with-shape__text-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 600px;
            flex: 0 1 600px;
    max-width: 600px;
  }
}
.text-with-shape__tag {
  margin-bottom: 16px;
}
.text-with-shape__breadcrumbs {
  margin-bottom: 16px;
}
.text-with-shape__breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-with-shape__breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #939393;
}
.text-with-shape__breadcrumb-item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #939393;
}
.text-with-shape__breadcrumb-link {
  color: #939393;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.text-with-shape__breadcrumb-link:hover {
  color: #252525;
}
.text-with-shape__breadcrumb-text {
  color: #939393;
}
.text-with-shape__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .text-with-shape__title {
    margin-bottom: 64px;
  }
}
.text-with-shape__title h2, .text-with-shape__title p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}
.text-with-shape__title em, .text-with-shape__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.text-with-shape__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .text-with-shape__description {
    margin-bottom: 36px;
  }
}
.text-with-shape__description p {
  margin-bottom: 1em;
}
.text-with-shape__description p:last-child {
  margin-bottom: 0;
}
.text-with-shape__button {
  display: inline-block;
}
.text-with-shape__image-wrapper {
  display: none;
}
@media (min-width: 1024px) {
  .text-with-shape__image-wrapper {
    display: block;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 650px;
            flex: 0 1 650px;
    max-width: 650px;
  }
}
.text-with-shape__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 24px;
}
.text-with-shape--with-breadcrumbs .text-with-shape__inner-wrapper {
  padding: 32px 24px 64px 24px;
}
@media (min-width: 768px) {
  .text-with-shape--with-breadcrumbs .text-with-shape__inner-wrapper {
    padding: 50px 80px 100px 80px;
  }
}

[data-type="acf/text-with-shape"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-shape"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-shape {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-shape__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-shape__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-shape__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
.editor-styles-wrapper .text-with-shape__text-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 600px;
          flex: 0 1 600px;
  max-width: 600px;
}
.editor-styles-wrapper .text-with-shape__tag {
  margin: 0 !important;
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .text-with-shape__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 64px !important;
}
.editor-styles-wrapper .text-with-shape__title h2, .editor-styles-wrapper .text-with-shape__title p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-shape__description {
  margin-top: 0 !important;
  margin-bottom: 36px !important;
}
.editor-styles-wrapper .text-with-shape__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-shape__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .text-with-shape__button {
  display: inline-block;
}
.editor-styles-wrapper .text-with-shape__image-wrapper {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 650px;
          flex: 0 1 650px;
  max-width: 650px;
}
.editor-styles-wrapper .text-with-shape__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.editor-styles-wrapper .text-with-shape__image--placeholder {
  border-radius: 24px;
}
.editor-styles-wrapper [data-type="acf/text-with-shape"][data-align=full] .text-with-shape {
  width: 100%;
  max-width: none;
}

.alternating-image-with-text {
  width: 100%;
}
.alternating-image-with-text__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.alternating-image-with-text__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .alternating-image-with-text__inner-wrapper {
    padding: 100px 80px;
  }
}
.alternating-image-with-text__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .alternating-image-with-text__header {
    margin-bottom: 100px;
  }
}
.alternating-image-with-text__tag {
  margin-bottom: 8px;
}
.alternating-image-with-text__title em,
.alternating-image-with-text__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.alternating-image-with-text__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .alternating-image-with-text__boxes {
    gap: 32px;
  }
}
.alternating-image-with-text__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .alternating-image-with-text__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 64px;
  }
  .alternating-image-with-text__box:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .alternating-image-with-text__box:nth-child(odd) .alternating-image-with-text__image-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .alternating-image-with-text__box:nth-child(odd) .alternating-image-with-text__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .alternating-image-with-text__box:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .alternating-image-with-text__box:nth-child(even) .alternating-image-with-text__image-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .alternating-image-with-text__box:nth-child(even) .alternating-image-with-text__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.alternating-image-with-text__image-wrapper {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  .alternating-image-with-text__image-wrapper {
    width: 380px;
    max-width: 380px;
  }
}
.alternating-image-with-text__image-element {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.alternating-image-with-text__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.alternating-image-with-text__box-title {
  margin-bottom: 32px;
}
.alternating-image-with-text__box-title em,
.alternating-image-with-text__box-title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.alternating-image-with-text__box-description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.alternating-image-with-text__box-description p {
  margin: 0;
}
.alternating-image-with-text__box-description p:not(:last-child) {
  margin-bottom: 16px;
}

[data-type="acf/alternating-image-with-text"] {
  max-width: 100% !important;
}
[data-type="acf/alternating-image-with-text"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .alternating-image-with-text {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .alternating-image-with-text__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .alternating-image-with-text__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .alternating-image-with-text__header {
  margin-bottom: 100px;
}
.editor-styles-wrapper .alternating-image-with-text__tag {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.editor-styles-wrapper .alternating-image-with-text__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .editor-styles-wrapper .alternating-image-with-text__boxes {
    gap: 32px;
  }
}
.editor-styles-wrapper .alternating-image-with-text__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
.editor-styles-wrapper .alternating-image-with-text__box:nth-child(odd) .alternating-image-with-text__image-wrapper {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.editor-styles-wrapper .alternating-image-with-text__box:nth-child(odd) .alternating-image-with-text__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.editor-styles-wrapper .alternating-image-with-text__box:nth-child(even) .alternating-image-with-text__image-wrapper {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.editor-styles-wrapper .alternating-image-with-text__box:nth-child(even) .alternating-image-with-text__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.editor-styles-wrapper .alternating-image-with-text__image-wrapper {
  width: 380px;
  max-width: 380px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.editor-styles-wrapper .alternating-image-with-text__image-element {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.editor-styles-wrapper .alternating-image-with-text__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.editor-styles-wrapper .alternating-image-with-text__box-title {
  margin-bottom: 32px !important;
}
.editor-styles-wrapper .alternating-image-with-text__box-description p {
  margin: 0 !important;
}
.editor-styles-wrapper .alternating-image-with-text__box-description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/alternating-image-with-text"][data-align=full] .alternating-image-with-text {
  width: 100%;
  max-width: none;
}

.image-with-list {
  width: 100%;
}
.image-with-list__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.image-with-list__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .image-with-list__inner-wrapper {
    padding: 100px 80px;
  }
}
.image-with-list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .image-with-list__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.image-with-list__image-column {
  width: 100%;
}
@media (min-width: 1024px) {
  .image-with-list__image-column {
    width: calc(50% - 50px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.image-with-list__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #FBFBFB;
  border-radius: 24px;
  margin: 0;
}
.image-with-list__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-with-list__content-column {
  width: 100%;
}
@media (min-width: 1024px) {
  .image-with-list__content-column {
    width: calc(50% - 50px);
  }
}
.image-with-list__header {
  margin-bottom: 64px;
}
.image-with-list__tag {
  display: block;
  margin: 0 0 8px 0;
}
.image-with-list__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.image-with-list__title em,
.image-with-list__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.image-with-list__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.image-with-list__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.image-with-list__item-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 16px;
}
.image-with-list__item-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 24px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0 0 16px 0;
}
.image-with-list__item-description p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #3E3E3E;
  margin: 0;
}
.image-with-list__item-description p:not(:last-child) {
  margin-bottom: 16px;
}
.image-with-list__item-description a {
  color: #252525;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.image-with-list__item-description a:hover, .image-with-list__item-description a:focus {
  color: #939393;
}
.image-with-list__item-description strong,
.image-with-list__item-description b {
  font-weight: 500;
}

@media (min-width: 1024px) {
  .image-with-list--image-right .image-with-list__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

[data-type="acf/image-with-list"] {
  max-width: 100% !important;
}
[data-type="acf/image-with-list"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .image-with-list {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .image-with-list__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .image-with-list__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .image-with-list__header {
  margin-bottom: 64px;
}
.editor-styles-wrapper .image-with-list__tag {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.editor-styles-wrapper .image-with-list__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .image-with-list__list {
  margin: 0 !important;
  padding: 0 !important;
}
.editor-styles-wrapper .image-with-list__list-item {
  margin: 0 !important;
}
.editor-styles-wrapper .image-with-list__item-number {
  margin: 0 !important;
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .image-with-list__item-title {
  margin: 0 !important;
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .image-with-list__item-description {
  margin: 0 !important;
}
.editor-styles-wrapper .image-with-list__item-description p {
  margin: 0 !important;
}
.editor-styles-wrapper .image-with-list__item-description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .image-with-list__image-wrapper {
  margin: 0 !important;
}
.editor-styles-wrapper [data-type="acf/image-with-list"][data-align=full] .image-with-list {
  width: 100%;
  max-width: none;
}

.contact-form-with-text__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.contact-form-with-text__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .contact-form-with-text__inner-wrapper {
    padding: 100px 80px;
  }
}
.contact-form-with-text__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .contact-form-with-text__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.contact-form-with-text__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .contact-form-with-text__info {
    width: 50%;
  }
}
.contact-form-with-text__tag-title {
  margin-bottom: 16px;
}
.contact-form-with-text__tag {
  display: block;
  margin-bottom: 8px;
}
.contact-form-with-text__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.contact-form-with-text__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.contact-form-with-text__title p {
  margin: 0;
}
.contact-form-with-text__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .contact-form-with-text__description {
    margin-bottom: 64px;
  }
}
.contact-form-with-text__description p {
  margin: 0;
}
.contact-form-with-text__description p:not(:last-child) {
  margin-bottom: 16px;
}
.contact-form-with-text__image-wrapper {
  width: 100%;
  min-height: 0;
}
@media (min-width: 1024px) {
  .contact-form-with-text__image-wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
}
.contact-form-with-text__image {
  width: 100%;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .contact-form-with-text__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
}
.contact-form-with-text__form-wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form-with-text__form-wrapper {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .contact-form-with-text__form-container {
    background-color: #FBFBFB;
    padding: 44px;
    border-radius: 12px;
  }
}
.contact-form-with-text__form-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0 0 64px 0;
}
@media (min-width: 1024px) {
  .contact-form-with-text__form-title {
    display: none;
  }
}
.contact-form-with-text__form-title p {
  margin: 0;
}
.contact-form-with-text__form-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.contact-form-with-text .wpcf7 {
  margin: 0;
  padding: 0;
}
.contact-form-with-text .wpcf7-form {
  margin: 0;
  padding: 0;
}
.contact-form-with-text .wpcf7-form-control-wrap {
  display: block;
}
.contact-form-with-text .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.contact-form-with-text__field {
  margin-bottom: 32px;
}
.contact-form-with-text__field-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .contact-form-with-text__field-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contact-form-with-text__field-row .contact-form-with-text__field {
  margin-bottom: 0;
}
.contact-form-with-text__field-row .contact-form-with-text__field:not(:last-child) {
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .contact-form-with-text__field-row .contact-form-with-text__field {
    margin-bottom: 0;
  }
  .contact-form-with-text__field-row .contact-form-with-text__field:not(:last-child) {
    margin-bottom: 0;
  }
}
.contact-form-with-text__field--half {
  width: 100%;
}
@media (min-width: 1366px) {
  .contact-form-with-text__field--half {
    width: 50%;
  }
}
.contact-form-with-text__field label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 12px;
}
.contact-form-with-text__field input.wpcf7-text, .contact-form-with-text__field input.wpcf7-email, .contact-form-with-text__field input.wpcf7-tel {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-form-with-text__field input.wpcf7-text::-webkit-input-placeholder, .contact-form-with-text__field input.wpcf7-email::-webkit-input-placeholder, .contact-form-with-text__field input.wpcf7-tel::-webkit-input-placeholder {
  color: #939393;
}
.contact-form-with-text__field input.wpcf7-text::-moz-placeholder, .contact-form-with-text__field input.wpcf7-email::-moz-placeholder, .contact-form-with-text__field input.wpcf7-tel::-moz-placeholder {
  color: #939393;
}
.contact-form-with-text__field input.wpcf7-text:-ms-input-placeholder, .contact-form-with-text__field input.wpcf7-email:-ms-input-placeholder, .contact-form-with-text__field input.wpcf7-tel:-ms-input-placeholder {
  color: #939393;
}
.contact-form-with-text__field input.wpcf7-text::-ms-input-placeholder, .contact-form-with-text__field input.wpcf7-email::-ms-input-placeholder, .contact-form-with-text__field input.wpcf7-tel::-ms-input-placeholder {
  color: #939393;
}
.contact-form-with-text__field input.wpcf7-text::placeholder, .contact-form-with-text__field input.wpcf7-email::placeholder, .contact-form-with-text__field input.wpcf7-tel::placeholder {
  color: #939393;
}
.contact-form-with-text__field input.wpcf7-text:focus, .contact-form-with-text__field input.wpcf7-email:focus, .contact-form-with-text__field input.wpcf7-tel:focus {
  border-color: #252525;
  outline: none;
}
.contact-form-with-text__field input.wpcf7-text.wpcf7-not-valid, .contact-form-with-text__field input.wpcf7-email.wpcf7-not-valid, .contact-form-with-text__field input.wpcf7-tel.wpcf7-not-valid {
  border-color: #f44336;
}
.contact-form-with-text__field textarea.wpcf7-textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  resize: vertical;
  min-height: 120px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-form-with-text__field textarea.wpcf7-textarea::-webkit-input-placeholder {
  color: #939393;
}
.contact-form-with-text__field textarea.wpcf7-textarea::-moz-placeholder {
  color: #939393;
}
.contact-form-with-text__field textarea.wpcf7-textarea:-ms-input-placeholder {
  color: #939393;
}
.contact-form-with-text__field textarea.wpcf7-textarea::-ms-input-placeholder {
  color: #939393;
}
.contact-form-with-text__field textarea.wpcf7-textarea::placeholder {
  color: #939393;
}
.contact-form-with-text__field textarea.wpcf7-textarea:focus {
  border-color: #252525;
  outline: none;
}
.contact-form-with-text__field textarea.wpcf7-textarea.wpcf7-not-valid {
  border-color: #f44336;
}
.contact-form-with-text__consent {
  margin-bottom: 32px;
}
.contact-form-with-text .wpcf7-acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact-form-with-text .wpcf7-acceptance input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.contact-form-with-text .wpcf7-acceptance input:checked {
  background-color: #252525;
  border-color: #252525;
  position: relative;
}
.contact-form-with-text .wpcf7-acceptance input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact-form-with-text .wpcf7-acceptance input:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.contact-form-with-text .wpcf7-acceptance .wpcf7-list-item-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #252525;
  cursor: pointer;
}
.contact-form-with-text__captcha {
  margin-bottom: 32px;
}
.contact-form-with-text__submit input[type=submit].wpcf7-submit {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 36px;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #252525;
  color: #FFFFFF;
}
.contact-form-with-text__submit input[type=submit].wpcf7-submit:hover {
  background-color: transparent;
  border: 1px solid #252525;
  color: #252525;
}
.contact-form-with-text .wpcf7-form br {
  display: none !important;
}
.contact-form-with-text .wpcf7-response-output {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid;
  display: none;
}
.contact-form-with-text .wpcf7-response-output.wpcf7-mail-sent-ok, .contact-form-with-text .wpcf7-response-output.wpcf7-validation-errors, .contact-form-with-text .wpcf7-response-output.wpcf7-mail-sent-ng, .contact-form-with-text .wpcf7-response-output.wpcf7-spam-blocked, .contact-form-with-text .wpcf7-response-output.wpcf7-aborted {
  display: block;
}
.contact-form-with-text .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-color: #4caf50;
}
.contact-form-with-text .wpcf7-response-output.wpcf7-validation-errors, .contact-form-with-text .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #ffebee;
  color: #c62828;
  border-color: #f44336;
}
.contact-form-with-text .wpcf7-spinner {
  margin-left: 12px;
}

[data-type="acf/contact-form-with-text"] {
  max-width: 100% !important;
  overflow: hidden !important;
}
[data-type="acf/contact-form-with-text"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .contact-form-with-text {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  overflow: hidden;
}
.editor-styles-wrapper .contact-form-with-text__outer-wrapper {
  width: 100%;
  overflow: hidden;
}
.editor-styles-wrapper .contact-form-with-text__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.editor-styles-wrapper .contact-form-with-text__content {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}
.editor-styles-wrapper .contact-form-with-text__info {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}
.editor-styles-wrapper .contact-form-with-text__tag-title {
  margin-bottom: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.editor-styles-wrapper .contact-form-with-text__tag {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.editor-styles-wrapper .contact-form-with-text__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .contact-form-with-text__title p {
  margin: 0 !important;
}
.editor-styles-wrapper .contact-form-with-text__description {
  margin-top: 0 !important;
  margin-bottom: 64px !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.editor-styles-wrapper .contact-form-with-text__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .contact-form-with-text__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .contact-form-with-text__image-wrapper {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 !important;
          flex: 1 !important;
  position: relative !important;
  min-height: 200px;
  overflow: hidden;
}
.editor-styles-wrapper .contact-form-with-text__image {
  border-radius: 24px;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.editor-styles-wrapper .contact-form-with-text__form-title {
  margin: 0 0 64px 0 !important;
}
.editor-styles-wrapper .contact-form-with-text__form-title p {
  margin: 0 !important;
}
.editor-styles-wrapper .contact-form-with-text .wpcf7-response-output {
  display: none !important;
}
.editor-styles-wrapper [data-type="acf/contact-form-with-text"][data-align=full] .contact-form-with-text {
  width: 100%;
  max-width: none;
}

.contact-form-with-image__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.contact-form-with-image__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .contact-form-with-image__inner-wrapper {
    padding: 100px 80px;
  }
}
.contact-form-with-image__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .contact-form-with-image__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
    row-gap: 100px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (min-width: 1024px) {
  .contact-form-with-image__tag-title {
    grid-column: 1;
    grid-row: 1;
  }
}
.contact-form-with-image__tag {
  display: block;
  margin-bottom: 8px;
}
.contact-form-with-image__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.contact-form-with-image__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.contact-form-with-image__title p {
  margin: 0;
}
.contact-form-with-image__image-column {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form-with-image__image-column {
    grid-column: 2;
    grid-row: 1/3;
    height: 100%;
  }
}
.contact-form-with-image__image-wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form-with-image__image-wrapper {
    position: relative;
    height: 100%;
  }
}
.contact-form-with-image__image {
  width: 100%;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .contact-form-with-image__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
}
.contact-form-with-image__form-wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .contact-form-with-image__form-wrapper {
    grid-column: 1;
    grid-row: 2;
  }
}
.contact-form-with-image__form-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0 0 32px 0;
}
@media (min-width: 1024px) {
  .contact-form-with-image__form-title {
    display: none;
  }
}
.contact-form-with-image__form-title p {
  margin: 0;
}
.contact-form-with-image__form-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
@media (min-width: 1024px) {
  .contact-form-with-image__form-container {
    background-color: #FBFBFB;
    padding: 44px;
    border-radius: 12px;
  }
}
.contact-form-with-image .wpcf7 {
  margin: 0;
  padding: 0;
}
.contact-form-with-image .wpcf7-form {
  margin: 0;
  padding: 0;
}
.contact-form-with-image .wpcf7-form-control-wrap {
  display: block;
}
.contact-form-with-image .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}
.contact-form-with-image__field {
  margin-bottom: 32px;
}
.contact-form-with-image__field-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .contact-form-with-image__field-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contact-form-with-image__field-row .contact-form-with-image__field {
  margin-bottom: 0;
}
.contact-form-with-image__field-row .contact-form-with-image__field:not(:last-child) {
  margin-bottom: 32px;
}
@media (min-width: 1366px) {
  .contact-form-with-image__field-row .contact-form-with-image__field {
    margin-bottom: 0;
  }
  .contact-form-with-image__field-row .contact-form-with-image__field:not(:last-child) {
    margin-bottom: 0;
  }
}
.contact-form-with-image__field--half {
  width: 100%;
}
@media (min-width: 1366px) {
  .contact-form-with-image__field--half {
    width: 50%;
  }
}
.contact-form-with-image__field label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  margin-bottom: 12px;
}
.contact-form-with-image__field input.wpcf7-text, .contact-form-with-image__field input.wpcf7-email, .contact-form-with-image__field input.wpcf7-tel {
  width: 100%;
  padding: 8px 18px;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-form-with-image__field input.wpcf7-text::-webkit-input-placeholder, .contact-form-with-image__field input.wpcf7-email::-webkit-input-placeholder, .contact-form-with-image__field input.wpcf7-tel::-webkit-input-placeholder {
  color: #939393;
}
.contact-form-with-image__field input.wpcf7-text::-moz-placeholder, .contact-form-with-image__field input.wpcf7-email::-moz-placeholder, .contact-form-with-image__field input.wpcf7-tel::-moz-placeholder {
  color: #939393;
}
.contact-form-with-image__field input.wpcf7-text:-ms-input-placeholder, .contact-form-with-image__field input.wpcf7-email:-ms-input-placeholder, .contact-form-with-image__field input.wpcf7-tel:-ms-input-placeholder {
  color: #939393;
}
.contact-form-with-image__field input.wpcf7-text::-ms-input-placeholder, .contact-form-with-image__field input.wpcf7-email::-ms-input-placeholder, .contact-form-with-image__field input.wpcf7-tel::-ms-input-placeholder {
  color: #939393;
}
.contact-form-with-image__field input.wpcf7-text::placeholder, .contact-form-with-image__field input.wpcf7-email::placeholder, .contact-form-with-image__field input.wpcf7-tel::placeholder {
  color: #939393;
}
.contact-form-with-image__field input.wpcf7-text:focus, .contact-form-with-image__field input.wpcf7-email:focus, .contact-form-with-image__field input.wpcf7-tel:focus {
  border-color: #252525;
  outline: none;
}
.contact-form-with-image__field input.wpcf7-text.wpcf7-not-valid, .contact-form-with-image__field input.wpcf7-email.wpcf7-not-valid, .contact-form-with-image__field input.wpcf7-tel.wpcf7-not-valid {
  border-color: #f44336;
}
.contact-form-with-image__field textarea.wpcf7-textarea {
  width: 100%;
  padding: 18px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  background-color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  resize: vertical;
  min-height: 120px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.contact-form-with-image__field textarea.wpcf7-textarea::-webkit-input-placeholder {
  color: #939393;
}
.contact-form-with-image__field textarea.wpcf7-textarea::-moz-placeholder {
  color: #939393;
}
.contact-form-with-image__field textarea.wpcf7-textarea:-ms-input-placeholder {
  color: #939393;
}
.contact-form-with-image__field textarea.wpcf7-textarea::-ms-input-placeholder {
  color: #939393;
}
.contact-form-with-image__field textarea.wpcf7-textarea::placeholder {
  color: #939393;
}
.contact-form-with-image__field textarea.wpcf7-textarea:focus {
  border-color: #252525;
  outline: none;
}
.contact-form-with-image__field textarea.wpcf7-textarea.wpcf7-not-valid {
  border-color: #f44336;
}
.contact-form-with-image__consent {
  margin-bottom: 32px;
}
.contact-form-with-image .wpcf7-acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact-form-with-image .wpcf7-acceptance input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #E0E0E0;
  border-radius: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.contact-form-with-image .wpcf7-acceptance input:checked {
  background-color: #252525;
  border-color: #252525;
  position: relative;
}
.contact-form-with-image .wpcf7-acceptance input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact-form-with-image .wpcf7-acceptance input:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.contact-form-with-image .wpcf7-acceptance .wpcf7-list-item-label {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #252525;
  cursor: pointer;
}
.contact-form-with-image__captcha {
  margin-bottom: 32px;
}
.contact-form-with-image__submit input[type=submit].wpcf7-submit {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 36px;
  border-radius: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #252525;
  color: #FFFFFF;
}
.contact-form-with-image__submit input[type=submit].wpcf7-submit:hover {
  background-color: transparent;
  border: 1px solid #252525;
  color: #252525;
}
.contact-form-with-image .wpcf7-form br {
  display: none !important;
}
.contact-form-with-image .wpcf7-response-output {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid;
  display: none;
}
.contact-form-with-image .wpcf7-response-output.wpcf7-mail-sent-ok, .contact-form-with-image .wpcf7-response-output.wpcf7-validation-errors, .contact-form-with-image .wpcf7-response-output.wpcf7-mail-sent-ng, .contact-form-with-image .wpcf7-response-output.wpcf7-spam-blocked, .contact-form-with-image .wpcf7-response-output.wpcf7-aborted {
  display: block;
}
.contact-form-with-image .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-color: #4caf50;
}
.contact-form-with-image .wpcf7-response-output.wpcf7-validation-errors, .contact-form-with-image .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #ffebee;
  color: #c62828;
  border-color: #f44336;
}
.contact-form-with-image .wpcf7-spinner {
  margin-left: 12px;
}

[data-type="acf/contact-form-with-image"] {
  max-width: 100% !important;
  overflow: hidden !important;
}
[data-type="acf/contact-form-with-image"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .contact-form-with-image {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  overflow: hidden;
}
.editor-styles-wrapper .contact-form-with-image__outer-wrapper {
  width: 100%;
  overflow: hidden;
}
.editor-styles-wrapper .contact-form-with-image__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.editor-styles-wrapper .contact-form-with-image__content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  grid-template-rows: auto 1fr !important;
  -webkit-column-gap: 100px !important;
     -moz-column-gap: 100px !important;
          column-gap: 100px !important;
  row-gap: 100px !important;
}
.editor-styles-wrapper .contact-form-with-image__tag-title {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
.editor-styles-wrapper .contact-form-with-image__tag {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.editor-styles-wrapper .contact-form-with-image__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .contact-form-with-image__title p {
  margin: 0 !important;
}
.editor-styles-wrapper .contact-form-with-image__form-wrapper {
  grid-column: 1 !important;
  grid-row: 2 !important;
}
.editor-styles-wrapper .contact-form-with-image__form-title {
  margin: 0 0 64px 0 !important;
}
.editor-styles-wrapper .contact-form-with-image__form-title p {
  margin: 0 !important;
}
.editor-styles-wrapper .contact-form-with-image__image-column {
  grid-column: 2 !important;
  grid-row: 1/3 !important;
  position: relative !important;
  height: 100% !important;
}
.editor-styles-wrapper .contact-form-with-image__image-wrapper {
  position: relative !important;
  min-height: 200px;
  height: 100% !important;
  overflow: hidden;
}
.editor-styles-wrapper .contact-form-with-image__image {
  border-radius: 24px;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.editor-styles-wrapper .contact-form-with-image .wpcf7-response-output {
  display: none !important;
}
.editor-styles-wrapper [data-type="acf/contact-form-with-image"][data-align=full] .contact-form-with-image {
  width: 100%;
  max-width: none;
}

.text-with-features {
  background-color: #FBFBFB;
}
.text-with-features__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-features__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-features__inner-wrapper {
    padding: 100px 80px;
  }
}
.text-with-features__header {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .text-with-features__header {
    margin-bottom: 80px;
  }
}
.text-with-features__tag {
  margin-bottom: 8px;
}
.text-with-features__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.text-with-features__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .text-with-features__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.text-with-features__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (min-width: 1024px) {
  .text-with-features__box {
    gap: 24px;
    max-width: 400px;
  }
}
.text-with-features__box-line {
  width: 36px;
  height: 1px;
  background-color: #939393;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 16px;
}
.text-with-features__box-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.text-with-features__box-title {
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.text-with-features__box-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.text-with-features__box-description {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.text-with-features__box-description p:not(:last-child) {
  margin-bottom: 16px;
}

[data-type="acf/text-with-features"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-features"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-features {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-features__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-features__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-features__header {
  margin-bottom: 64px;
}
.editor-styles-wrapper .text-with-features__tag {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.editor-styles-wrapper .text-with-features__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .text-with-features__boxes {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-features__box {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-features__box-title {
  margin: 0 !important;
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .text-with-features__box-title p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-features__box-description {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-features__box-description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-features__box-description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/text-with-features"][data-align=full] .text-with-features {
  width: 100%;
  max-width: none;
}

.text-with-cards {
  width: 100%;
}
.text-with-cards__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-cards__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-cards__inner-wrapper {
    padding: 100px 80px;
  }
}
.text-with-cards__tag-title {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .text-with-cards__tag-title {
    margin-bottom: 100px;
  }
}
.text-with-cards__title {
  margin-top: 8px;
}
.text-with-cards__title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.text-with-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .text-with-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.text-with-cards__box {
  padding: 24px;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .text-with-cards__box {
    padding: 32px;
  }
}
.text-with-cards__box-title {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .text-with-cards__box-title {
    margin-bottom: 24px;
  }
}
.text-with-cards__box-title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.text-with-cards__box-description {
  color: #3E3E3E;
  font-size: 15px;
  line-height: 1.5;
}
.text-with-cards__box-description p {
  margin: 0;
}
.text-with-cards__box-description p:not(:last-child) {
  margin-bottom: 16px;
}

[data-type="acf/text-with-cards"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-cards"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-cards {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-cards__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-cards__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-cards__tag-title {
  margin-bottom: 64px;
}
.editor-styles-wrapper .text-with-cards__title {
  margin: 0 !important;
  margin-top: 8px !important;
}
.editor-styles-wrapper .text-with-cards__title em {
  font-style: italic;
}
.editor-styles-wrapper .text-with-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.editor-styles-wrapper .text-with-cards__box {
  padding: 32px;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
}
.editor-styles-wrapper .text-with-cards__box-title {
  margin: 0 !important;
  margin-bottom: 24px !important;
}
.editor-styles-wrapper .text-with-cards__box-title em {
  font-style: italic;
}
.editor-styles-wrapper .text-with-cards__box-description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-cards__box-description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/text-with-cards"][data-align=full] .text-with-cards {
  width: 100%;
  max-width: none;
}

.text-with-icon-cards {
  width: 100%;
}
.text-with-icon-cards__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-icon-cards__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-icon-cards__inner-wrapper {
    padding: 100px 80px;
  }
}
.text-with-icon-cards__tag-title {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .text-with-icon-cards__tag-title {
    margin-bottom: 100px;
  }
}
.text-with-icon-cards__title {
  margin-top: 8px;
}
.text-with-icon-cards__title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.text-with-icon-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 1024px) {
  .text-with-icon-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.text-with-icon-cards__box {
  padding: 24px;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .text-with-icon-cards__box {
    padding: 32px;
  }
}
.text-with-icon-cards__box-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.text-with-icon-cards__box-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.text-with-icon-cards__box-title {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .text-with-icon-cards__box-title {
    margin-bottom: 24px;
  }
}
.text-with-icon-cards__box-title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.text-with-icon-cards__box-description {
  color: #3E3E3E;
  font-size: 15px;
  line-height: 1.5;
}
.text-with-icon-cards__box-description p {
  margin: 0;
}
.text-with-icon-cards__box-description p:not(:last-child) {
  margin-bottom: 16px;
}

[data-type="acf/text-with-icon-cards"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-icon-cards"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-icon-cards {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-icon-cards__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-icon-cards__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-icon-cards__tag-title {
  margin-bottom: 64px;
}
.editor-styles-wrapper .text-with-icon-cards__title {
  margin: 0 !important;
  margin-top: 8px !important;
}
.editor-styles-wrapper .text-with-icon-cards__title em {
  font-style: italic;
}
.editor-styles-wrapper .text-with-icon-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.editor-styles-wrapper .text-with-icon-cards__box {
  padding: 32px;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
}
.editor-styles-wrapper .text-with-icon-cards__box-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.editor-styles-wrapper .text-with-icon-cards__box-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.editor-styles-wrapper .text-with-icon-cards__box-title {
  margin: 0 !important;
  margin-bottom: 24px !important;
}
.editor-styles-wrapper .text-with-icon-cards__box-title em {
  font-style: italic;
}
.editor-styles-wrapper .text-with-icon-cards__box-description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-icon-cards__box-description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/text-with-icon-cards"][data-align=full] .text-with-icon-cards {
  width: 100%;
  max-width: none;
}

.text-with-icons {
  width: 100%;
}
.text-with-icons__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-icons__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-icons__inner-wrapper {
    padding: 100px 80px;
  }
}
.text-with-icons__tag-title {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .text-with-icons__tag-title {
    margin-bottom: 100px;
  }
}
.text-with-icons__title {
  margin-top: 8px;
}
.text-with-icons__title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.text-with-icons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .text-with-icons__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
  }
}
.text-with-icons__box-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.text-with-icons__box-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.text-with-icons__box-title {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .text-with-icons__box-title {
    margin-bottom: 24px;
  }
}
.text-with-icons__box-title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.text-with-icons__box-description {
  color: #3E3E3E;
  font-size: 15px;
  line-height: 1.5;
}
.text-with-icons__box-description p {
  margin: 0;
}
.text-with-icons__box-description p:not(:last-child) {
  margin-bottom: 16px;
}

[data-type="acf/text-with-icons"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-icons"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-icons {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-icons__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-icons__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-icons__tag-title {
  margin-bottom: 64px;
}
.editor-styles-wrapper .text-with-icons__title {
  margin: 0 !important;
  margin-top: 8px !important;
}
.editor-styles-wrapper .text-with-icons__title em {
  font-style: italic;
}
.editor-styles-wrapper .text-with-icons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
.editor-styles-wrapper .text-with-icons__box-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.editor-styles-wrapper .text-with-icons__box-icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.editor-styles-wrapper .text-with-icons__box-title {
  margin: 0 !important;
  margin-bottom: 24px !important;
}
.editor-styles-wrapper .text-with-icons__box-title em {
  font-style: italic;
}
.editor-styles-wrapper .text-with-icons__box-description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-icons__box-description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/text-with-icons"][data-align=full] .text-with-icons {
  width: 100%;
  max-width: none;
}

.text-with-cards-and-image {
  width: 100%;
}
.text-with-cards-and-image__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-cards-and-image__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-cards-and-image__inner-wrapper {
    padding: 100px 80px;
  }
}
.text-with-cards-and-image__tag-title {
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .text-with-cards-and-image__tag-title {
    margin-bottom: 100px;
  }
}
.text-with-cards-and-image__title {
  margin-top: 8px;
}
.text-with-cards-and-image__title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.text-with-cards-and-image__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 64px;
}
@media (min-width: 1024px) {
  .text-with-cards-and-image__content {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.text-with-cards-and-image__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .text-with-cards-and-image__grid {
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .text-with-cards-and-image__grid {
    width: calc(50% - 16px);
  }
}
@media (min-width: 1366px) {
  .text-with-cards-and-image__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.text-with-cards-and-image__box {
  padding: 24px;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
  background-color: #FFFFFF;
}
@media (min-width: 768px) {
  .text-with-cards-and-image__box {
    padding: 32px;
  }
}
.text-with-cards-and-image__box-title {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .text-with-cards-and-image__box-title {
    margin-bottom: 24px;
  }
}
.text-with-cards-and-image__box-title em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.text-with-cards-and-image__box-description {
  color: #3E3E3E;
  font-size: 15px;
  line-height: 1.5;
}
.text-with-cards-and-image__box-description p {
  margin: 0;
}
.text-with-cards-and-image__box-description p:not(:last-child) {
  margin-bottom: 16px;
}
.text-with-cards-and-image__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .text-with-cards-and-image__image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 16px);
    height: 100%;
    aspect-ratio: unset;
  }
}
.text-with-cards-and-image__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}

[data-type="acf/text-with-cards-and-image"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-cards-and-image"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-cards-and-image {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-cards-and-image__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-cards-and-image__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-cards-and-image__tag-title {
  margin-bottom: 64px;
}
.editor-styles-wrapper .text-with-cards-and-image__title {
  margin: 0 !important;
  margin-top: 8px !important;
}
.editor-styles-wrapper .text-with-cards-and-image__title em {
  font-style: italic;
}
.editor-styles-wrapper .text-with-cards-and-image__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 32px;
}
.editor-styles-wrapper .text-with-cards-and-image__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: calc(50% - 16px);
}
.editor-styles-wrapper .text-with-cards-and-image__box {
  padding: 32px;
  border: 1px solid #E0E0E0;
  border-radius: 16px;
}
.editor-styles-wrapper .text-with-cards-and-image__box-title {
  margin: 0 !important;
  margin-bottom: 24px !important;
}
.editor-styles-wrapper .text-with-cards-and-image__box-title em {
  font-style: italic;
}
.editor-styles-wrapper .text-with-cards-and-image__box-description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-cards-and-image__box-description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .text-with-cards-and-image__image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 16px);
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}
.editor-styles-wrapper .text-with-cards-and-image__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.editor-styles-wrapper [data-type="acf/text-with-cards-and-image"][data-align=full] .text-with-cards-and-image {
  width: 100%;
  max-width: none;
}

.image-with-long-text {
  width: 100%;
}
.image-with-long-text__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.image-with-long-text__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .image-with-long-text__inner-wrapper {
    padding: 100px 80px;
  }
}
.image-with-long-text__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .image-with-long-text__columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 100px;
  }
}
.image-with-long-text__column--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .image-with-long-text__column--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 50px);
    gap: 100px;
    min-height: 0;
  }
}
.image-with-long-text__column--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .image-with-long-text__column--right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 50px);
  }
}
.image-with-long-text__tag-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.image-with-long-text__tag {
  margin: 0;
}
.image-with-long-text__title h1,
.image-with-long-text__title h2,
.image-with-long-text__title h3,
.image-with-long-text__title p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.image-with-long-text__title em,
.image-with-long-text__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.image-with-long-text__image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .image-with-long-text__image-wrapper {
    aspect-ratio: unset;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-height: 0;
  }
}
.image-with-long-text__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.image-with-long-text__description {
  margin-bottom: 32px;
}
.image-with-long-text__description p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #3E3E3E;
  margin: 0;
}
.image-with-long-text__description p:not(:last-child) {
  margin-bottom: 16px;
}
.image-with-long-text__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

[data-type="acf/image-with-long-text"] {
  max-width: 100% !important;
}
[data-type="acf/image-with-long-text"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .image-with-long-text {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .image-with-long-text__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .image-with-long-text__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .image-with-long-text__tag-title {
  margin-bottom: 0;
}
.editor-styles-wrapper .image-with-long-text__tag {
  margin: 0 !important;
}
.editor-styles-wrapper .image-with-long-text__title h1,
.editor-styles-wrapper .image-with-long-text__title h2,
.editor-styles-wrapper .image-with-long-text__title h3,
.editor-styles-wrapper .image-with-long-text__title p {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .image-with-long-text__description {
  margin-top: 0 !important;
}
.editor-styles-wrapper .image-with-long-text__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .image-with-long-text__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/image-with-long-text"][data-align=full] .image-with-long-text {
  width: 100%;
  max-width: none;
}

.text-with-button {
  width: 100%;
}
.text-with-button__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.text-with-button__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .text-with-button__inner-wrapper {
    padding: 100px 80px;
  }
}
.text-with-button__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .text-with-button__columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 100px;
  }
}
.text-with-button__column--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .text-with-button__column--left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 50px);
  }
}
.text-with-button__column--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .text-with-button__column--right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(50% - 50px);
  }
}
.text-with-button__tag-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.text-with-button__tag {
  margin: 0;
}
.text-with-button__title h1,
.text-with-button__title h2,
.text-with-button__title h3,
.text-with-button__title p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.text-with-button__title em,
.text-with-button__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.text-with-button__description {
  margin-bottom: 32px;
}
.text-with-button__description p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #3E3E3E;
  margin: 0;
}
.text-with-button__description p:not(:last-child) {
  margin-bottom: 16px;
}
.text-with-button__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

[data-type="acf/text-with-button"] {
  max-width: 100% !important;
}
[data-type="acf/text-with-button"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .text-with-button {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .text-with-button__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .text-with-button__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .text-with-button__tag-title {
  margin-bottom: 0;
}
.editor-styles-wrapper .text-with-button__tag {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-button__title h1,
.editor-styles-wrapper .text-with-button__title h2,
.editor-styles-wrapper .text-with-button__title h3,
.editor-styles-wrapper .text-with-button__title p {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .text-with-button__description {
  margin-top: 0 !important;
}
.editor-styles-wrapper .text-with-button__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .text-with-button__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/text-with-button"][data-align=full] .text-with-button {
  width: 100%;
  max-width: none;
}

.image-with-text-stack {
  width: 100%;
}
.image-with-text-stack__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.image-with-text-stack__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .image-with-text-stack__inner-wrapper {
    padding: 100px 80px;
  }
}
.image-with-text-stack__header {
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .image-with-text-stack__header {
    margin-bottom: 100px;
  }
}
.image-with-text-stack__tag {
  margin-bottom: 8px;
}
.image-with-text-stack__title em,
.image-with-text-stack__title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.image-with-text-stack__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .image-with-text-stack__boxes {
    gap: 32px;
  }
}
.image-with-text-stack__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .image-with-text-stack__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 64px;
  }
}
.image-with-text-stack__image-wrapper {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1024px) {
  .image-with-text-stack__image-wrapper {
    width: 380px;
    max-width: 380px;
  }
}
.image-with-text-stack__image-element {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.image-with-text-stack__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.image-with-text-stack__box-title {
  margin-bottom: 32px;
}
.image-with-text-stack__box-title em,
.image-with-text-stack__box-title i {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
.image-with-text-stack__box-description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.image-with-text-stack__box-description p {
  margin: 0;
}
.image-with-text-stack__box-description p:not(:last-child) {
  margin-bottom: 16px;
}

[data-type="acf/image-with-text-stack"] {
  max-width: 100% !important;
}
[data-type="acf/image-with-text-stack"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .image-with-text-stack {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .image-with-text-stack__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .image-with-text-stack__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .image-with-text-stack__header {
  margin-bottom: 100px;
}
.editor-styles-wrapper .image-with-text-stack__tag {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.editor-styles-wrapper .image-with-text-stack__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .editor-styles-wrapper .image-with-text-stack__boxes {
    gap: 32px;
  }
}
.editor-styles-wrapper .image-with-text-stack__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
.editor-styles-wrapper .image-with-text-stack__image-wrapper {
  width: 380px;
  max-width: 380px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.editor-styles-wrapper .image-with-text-stack__image-element {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
.editor-styles-wrapper .image-with-text-stack__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.editor-styles-wrapper .image-with-text-stack__box-title {
  margin-bottom: 32px !important;
}
.editor-styles-wrapper .image-with-text-stack__box-description p {
  margin: 0 !important;
}
.editor-styles-wrapper .image-with-text-stack__box-description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/image-with-text-stack"][data-align=full] .image-with-text-stack {
  width: 100%;
  max-width: none;
}

.products-slider__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.products-slider__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .products-slider__inner-wrapper {
    padding: 100px 80px;
  }
}
.products-slider__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .products-slider__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 64px;
  }
}
.products-slider__header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.products-slider__tag {
  margin: 0;
}
.products-slider__title h2,
.products-slider__title p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.products-slider__title h2 em,
.products-slider__title p em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.products-slider__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.products-slider__navigation--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .products-slider__navigation--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.products-slider__navigation--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .products-slider__navigation--mobile {
    display: none;
  }
}
.products-slider__nav-button {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  color: #252525;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.products-slider__nav-button:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.products-slider__nav-button:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
  -webkit-transform: none;
          transform: none;
}
.products-slider__nav-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.products-slider__nav-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.products-slider__nav-button.swiper-button-disabled:hover {
  background-color: transparent;
  border-color: #939393;
  color: #252525;
}
.products-slider__nav-button svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  pointer-events: none;
}
.products-slider__swiper-container {
  overflow: hidden !important;
  height: auto !important;
  min-height: auto !important;
}
.products-slider__swiper-wrapper {
  height: auto !important;
}
.products-slider__slide {
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.products-slider__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
}
.products-slider__card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.products-slider__card-link:hover {
  color: inherit;
}
.products-slider__card-link:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 4px;
  border-radius: 16px;
}
.products-slider__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.products-slider__image {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
@media (min-width: 1024px) {
  .products-slider__image {
    height: 240px;
  }
}
@media (min-width: 1366px) {
  .products-slider__image {
    height: 280px;
  }
}
.products-slider__image--placeholder {
  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;
  background-color: #FBFBFB;
}
.products-slider__image--placeholder svg {
  width: 50%;
  height: 50%;
  opacity: 0.3;
}
.products-slider__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.products-slider__text-wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.products-slider__name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #3E3E3E;
  margin: 0;
}
.products-slider__category {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
}
.products-slider__category-label {
  color: #939393;
}
.products-slider__category-value {
  color: #939393;
}
.products-slider__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: auto;
}
.products-slider__price {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.products-slider__button {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.products-slider__empty {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #939393;
  text-align: center;
  padding: 40px 0;
}

[data-type="acf/products-slider"] {
  max-width: 100% !important;
}
[data-type="acf/products-slider"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .products-slider__tag {
  margin: 0 !important;
}
.editor-styles-wrapper .products-slider__title h2,
.editor-styles-wrapper .products-slider__title p {
  margin: 0 !important;
}
.editor-styles-wrapper .products-slider__swiper-container {
  overflow: hidden !important;
}
.editor-styles-wrapper .products-slider__swiper-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
  gap: 32px !important;
}
.editor-styles-wrapper .products-slider__slide {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: calc((100% - 128px) / 5) !important;
  min-width: 180px !important;
}
.editor-styles-wrapper .products-slider__image {
  height: 240px !important;
}
.editor-styles-wrapper .products-slider__name {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  color: #3E3E3E !important;
  margin: 0 !important;
}
.editor-styles-wrapper .products-slider__category {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}
.editor-styles-wrapper .products-slider__category-label {
  color: #939393 !important;
}
.editor-styles-wrapper .products-slider__category-value {
  color: #939393 !important;
}
.editor-styles-wrapper .products-slider__price {
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(20px, 3vw, 20px) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  color: #252525 !important;
  margin: 0 !important;
}
.editor-styles-wrapper .products-slider__button {
  font-family: "Poppins", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  padding: 12px 36px !important;
  border-radius: 100px !important;
  border: 1px solid #939393 !important;
  color: #252525 !important;
  background-color: transparent !important;
}
.editor-styles-wrapper .products-slider__navigation--mobile {
  display: none !important;
}
.editor-styles-wrapper .products-slider__navigation--desktop {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.references {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.references__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.references__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
}
@media (min-width: 768px) {
  .references__inner-wrapper {
    padding: 100px 80px;
  }
}
.references__header {
  text-align: left;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .references__header {
    text-align: center;
  }
}
.references__tag {
  margin-bottom: 8px;
}
.references__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.references__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.references__title p {
  margin: 0;
}
.references__slider {
  position: relative;
  overflow: visible;
}
.references__slide {
  position: relative;
  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;
  width: 100%;
}
.references__content {
  position: relative;
  width: 100%;
  text-align: left;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .references__content {
    text-align: center;
    max-width: 600px;
  }
}
@media (min-width: 1366px) {
  .references__content {
    max-width: 800px;
  }
}
.references__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 32px;
}
.references__description p {
  margin: 0;
}
.references__description p:not(:last-child) {
  margin-bottom: 16px;
}
.references__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 1024px) {
  .references__image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.references__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.references__avatar--placeholder {
  background-color: #E0E0E0;
}
.references__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  margin-top: 64px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .references__navigation {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.references__nav {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #252525;
}
.references__nav:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.references__nav:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.references__nav:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.references__nav svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

[data-type="acf/references"] {
  max-width: 100% !important;
}
[data-type="acf/references"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .references {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .references__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .references__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .references__header {
  margin-bottom: 64px;
}
.editor-styles-wrapper .references__tag {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.editor-styles-wrapper .references__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .references__title p {
  margin: 0 !important;
}
.editor-styles-wrapper .references__description {
  margin-top: 0 !important;
  margin-bottom: 32px !important;
}
.editor-styles-wrapper .references__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .references__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper .references__avatar--placeholder {
  background-color: #E0E0E0;
}
.editor-styles-wrapper [data-type="acf/references"][data-align=full] .references {
  width: 100%;
  max-width: none;
}

.scientific-research__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.scientific-research__inner-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .scientific-research__inner-wrapper {
    padding: 100px 80px;
  }
}
.scientific-research__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .scientific-research__header {
    margin-bottom: 80px;
  }
}
.scientific-research__heading-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.scientific-research__tag {
  margin: 0;
}
.scientific-research__title {
  margin: 0;
}
.scientific-research__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.scientific-research__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.scientific-research__navigation--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .scientific-research__navigation--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.scientific-research__navigation--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
}
@media (min-width: 1024px) {
  .scientific-research__navigation--mobile {
    display: none;
  }
}
.scientific-research__nav-button {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  color: #252525;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.scientific-research__nav-button:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.scientific-research__nav-button:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
  -webkit-transform: none;
          transform: none;
}
.scientific-research__nav-button:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.scientific-research__nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.scientific-research__nav-button:disabled:hover {
  background-color: transparent;
  border-color: #939393;
  color: #252525;
}
.scientific-research__nav-button svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  pointer-events: none;
}
.scientific-research__swiper-container {
  overflow: hidden !important;
  height: auto !important;
  min-height: auto !important;
}
.scientific-research__swiper-wrapper {
  height: auto !important;
}
.scientific-research__slide {
  height: auto !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.scientific-research__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
}
.scientific-research__image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.scientific-research__image-wrapper--placeholder {
  background-color: #FBFBFB;
}
.scientific-research__image {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
.scientific-research__placeholder {
  width: 100%;
  height: 210px;
  background-color: #FBFBFB;
  border-radius: 16px;
}
.scientific-research__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.scientific-research__item-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin-bottom: 12px;
}
.scientific-research__description {
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
  margin-bottom: 24px;
}
.scientific-research__description p {
  margin: 0;
}
.scientific-research__description p:not(:last-child) {
  margin-bottom: 1em;
}
.scientific-research__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #252525;
  text-decoration: none;
  margin-top: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.scientific-research__link:hover {
  opacity: 0.7;
}
.scientific-research__link:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.scientific-research__link-icon {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

[data-type="acf/scientific-research"] {
  max-width: 100% !important;
}
[data-type="acf/scientific-research"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .scientific-research {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .scientific-research__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .scientific-research__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .scientific-research__tag {
  margin: 0 !important;
}
.editor-styles-wrapper .scientific-research__title {
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.editor-styles-wrapper .scientific-research__item-title {
  margin: 0 !important;
  margin-bottom: 12px !important;
}
.editor-styles-wrapper .scientific-research__description {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.editor-styles-wrapper .scientific-research__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .scientific-research__description p:not(:last-child) {
  margin-bottom: 1em !important;
}
.editor-styles-wrapper .scientific-research__swiper-container {
  overflow: visible !important;
}
.editor-styles-wrapper .scientific-research__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
}
.editor-styles-wrapper .scientific-research__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 16px);
          flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
}
.editor-styles-wrapper .scientific-research__nav-button {
  pointer-events: none;
  opacity: 0.5;
}
.editor-styles-wrapper [data-type="acf/scientific-research"][data-align=full] .scientific-research {
  width: 100%;
  max-width: none;
}

.image-text-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.image-text-carousel__outer-wrapper {
  width: 100%;
  margin: 0 auto;
}
.image-text-carousel__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
}
@media (min-width: 768px) {
  .image-text-carousel__inner-wrapper {
    padding: 100px 80px;
  }
}
.image-text-carousel__header {
  text-align: left;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .image-text-carousel__header {
    text-align: center;
    margin-bottom: 100px;
  }
}
.image-text-carousel__tag {
  margin-bottom: 8px;
}
.image-text-carousel__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0;
}
.image-text-carousel__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.image-text-carousel__title p {
  margin: 0;
}
.image-text-carousel__slider-wrapper {
  position: relative;
}
.image-text-carousel__slider {
  position: relative;
  overflow: visible;
}
.image-text-carousel__slide {
  position: relative;
  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;
  width: 100%;
}
.image-text-carousel__slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  width: 100%;
}
@media (min-width: 1024px) {
  .image-text-carousel__slide-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}
.image-text-carousel__image-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 1024px) {
  .image-text-carousel__image-wrapper {
    max-width: 250px;
  }
}
.image-text-carousel__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-text-carousel__text-content {
  text-align: left;
  max-width: 500px;
}
@media (min-width: 1024px) {
  .image-text-carousel__text-content {
    max-width: 500px;
  }
}
.image-text-carousel__slide-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0 0 32px 0;
}
.image-text-carousel__description {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #3E3E3E;
}
.image-text-carousel__description p {
  margin: 0;
}
.image-text-carousel__description p:not(:last-child) {
  margin-bottom: 16px;
}
.image-text-carousel__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .image-text-carousel__navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0;
    gap: 0;
    pointer-events: none;
  }
}
.image-text-carousel__nav {
  width: 52px;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #939393;
  background-color: transparent;
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #252525;
  pointer-events: auto;
}
.image-text-carousel__nav:hover {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.image-text-carousel__nav:active {
  background-color: #252525;
  border-color: #252525;
  color: #FFFFFF;
}
.image-text-carousel__nav:focus-visible {
  outline: 2px solid #252525;
  outline-offset: 2px;
}
.image-text-carousel__nav svg {
  width: 24px;
  height: 24px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

[data-type="acf/image-with-text-carousel"] {
  max-width: 100% !important;
}
[data-type="acf/image-with-text-carousel"][data-align=full] {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.editor-styles-wrapper .image-text-carousel {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.editor-styles-wrapper .image-text-carousel__outer-wrapper {
  width: 100%;
}
.editor-styles-wrapper .image-text-carousel__inner-wrapper {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.editor-styles-wrapper .image-text-carousel__header {
  margin-bottom: 100px;
}
.editor-styles-wrapper .image-text-carousel__tag {
  margin: 0 !important;
  margin-bottom: 8px !important;
}
.editor-styles-wrapper .image-text-carousel__title {
  margin: 0 !important;
}
.editor-styles-wrapper .image-text-carousel__title p {
  margin: 0 !important;
}
.editor-styles-wrapper .image-text-carousel__slider-wrapper {
  position: relative;
}
.editor-styles-wrapper .image-text-carousel__slide {
  display: none;
}
.editor-styles-wrapper .image-text-carousel__slide:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.editor-styles-wrapper .image-text-carousel__slide-title {
  margin: 0 !important;
  margin-bottom: 32px !important;
}
.editor-styles-wrapper .image-text-carousel__description p {
  margin: 0 !important;
}
.editor-styles-wrapper .image-text-carousel__description p:not(:last-child) {
  margin-bottom: 16px !important;
}
.editor-styles-wrapper [data-type="acf/image-with-text-carousel"][data-align=full] .image-text-carousel {
  width: 100%;
  max-width: none;
}

.footer {
  background-color: #252525;
  color: #FFFFFF;
}
.footer__outer-wrapper {
  margin: 0 auto;
  width: 100%;
}
.footer__inner-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
}
@media (min-width: 768px) {
  .footer__inner-wrapper {
    padding: 64px 80px;
  }
}
.footer__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  .footer__top-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 100px;
  }
}
.footer__left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 1024px) {
  .footer__left-box {
    max-width: 425px;
  }
}
.footer__logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 59px;
  margin-bottom: 24px;
}
.footer__description {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 700px;
}
@media (min-width: 1024px) {
  .footer__description {
    max-width: none;
  }
}
.footer__social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer__social-icon {
  width: 24px;
  height: 24px;
  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;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__social-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__social-icon:hover {
  opacity: 0.7;
}
.footer__social-icon:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.footer__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .footer__columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__column-title {
  color: #FFFFFF;
  margin-bottom: 16px;
}
.footer__column-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer__column-content p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
}
.footer__column-content a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer__column-content a:hover {
  color: #939393;
}
.footer__column-content a:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
  color: #FFFFFF;
}
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: #3E3E3E;
  margin: 64px 0 32px 0;
}
@media (min-width: 1024px) {
  .footer__divider {
    margin: 32px 0;
  }
}
.footer__bottom-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}/*# sourceMappingURL=style.css.map */