@charset "UTF-8";
/** Colors */
/** Box Model  */
/** Sizing */
/** Media break points */
/** Typography **/
/** Global Sizes */
/**
* Section wrapper mixin.
*/
.grid__container {
  max-width: none;
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .grid__container {
    padding: 0 30px;
  }
}

/**
* Grid mixin.
*/
.section,
.grid {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
}
@media (min-width: 768px) {
  .section,
.grid {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .section,
.grid {
    max-width: 1266px;
  }
}

/**
* Grid column mixin.
*/
/**
* Image Aspect Ratio mixin.
*/
/**
* Swiper pagination mixin.
*/
/**
* Swiper navigation mixin.
*/
/**
* List mixin.
*/
/**
* Utils
*/
.screen-reader,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

/**
* Marquee animation mixin.
*/
@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-o-keyframes marquee {
  from {
    -o-transform: translateX(0);
       transform: translateX(0);
  }
  to {
    -o-transform: translateX(-100%);
       transform: translateX(-100%);
  }
}
@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/**
* Marquee Button animation mixin.
*/
@-webkit-keyframes marquee-button {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(110% + 2.1em));
            transform: translateX(calc(110% + 2.1em));
  }
}
@-o-keyframes marquee-button {
  0% {
    -o-transform: translateX(0);
       transform: translateX(0);
  }
  to {
    -o-transform: translateX(calc(110% + 2.1em));
       transform: translateX(calc(110% + 2.1em));
  }
}
@keyframes marquee-button {
  0% {
    -webkit-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(110% + 2.1em));
         -o-transform: translateX(calc(110% + 2.1em));
            transform: translateX(calc(110% + 2.1em));
  }
}
/**
* Marquee Hero animation mixin.
*/
@-webkit-keyframes marquee-hero {
  0% {
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
            transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
            transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}
@-o-keyframes marquee-hero {
  0% {
    transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}
@keyframes marquee-hero {
  0% {
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
            transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
            transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}
/**
* Rotating animation mixin.
*/
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-o-keyframes rotating {
  from {
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/**
* Left to Right animation mixin.
*/
@-webkit-keyframes left-to-right {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}
@-o-keyframes left-to-right {
  from {
    -o-transform: translateX(-50%);
       transform: translateX(-50%);
    opacity: 0;
  }
  to {
    -o-transform: translateX(0%);
       transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes left-to-right {
  from {
    -webkit-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0%);
         -o-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}
/**
* Opacity 0-1;
*/
@-webkit-keyframes opacity-0-1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes opacity-0-1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacity-0-1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/** Import everything from autoload */
/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/**
 * Swiper 7.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 29, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: -o-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform, -o-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: height, -o-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform, -o-transform;
}

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

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

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

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

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

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

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

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

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

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

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

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

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

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

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

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

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

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

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

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

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

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size)/ 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: -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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

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

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

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

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

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

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

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

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

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

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

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

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

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

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

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

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
       -o-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
       -o-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-o-keyframes swiper-preloader-spin {
  100% {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

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

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

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

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

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

.swiper-cube {
  overflow: visible;
}

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

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

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

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

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

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

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

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

.swiper-flip {
  overflow: visible;
}

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

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

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

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

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

.swiper-cards {
  overflow: visible;
}

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

/** Import theme styles */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  font-size: 10px;
  --scale-menu: 20;
}

*:focus {
  outline: 0;
}

body {
  margin: 0;
  font-family: "BeirutText", sans-serif;
  font-size: 1.9rem;
  line-height: 3.3rem;
  color: #246052;
}
body.body--dark-green {
  background-color: #246052;
  color: #fff;
}
body.body--light-green {
  background-color: #1e9e79;
  color: #fff;
}
body.body--no-scroll, body.body--global-modal, body.js-menu-open {
  overflow: hidden !important;
  width: 100%;
  height: 100%;
}
body.body--no-scroll .wrap.container, body.body--global-modal .wrap.container, body.js-menu-open .wrap.container {
  overflow: hidden !important;
}

.wrap.container {
  height: 100%;
}

body#tinymce {
  margin: 12px !important;
}

p:empty {
  display: none;
}

@font-face {
  font-family: "BeirutDisplay";
  src: url(/wp-content/themes/cristal/dist/fonts/beirutdisplay-black-webfont.woff2) format("woff2"), url(/wp-content/themes/cristal/dist/fonts/beirutdisplay-black-webfont.woff) format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "BeirutDisplay";
  src: url(/wp-content/themes/cristal/dist/fonts/beirutdisplay-semibold-webfont.woff2) format("woff2"), url(/wp-content/themes/cristal/dist/fonts/beirutdisplay-semibold-webfont.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "BeirutText";
  src: url(/wp-content/themes/cristal/dist/fonts/beiruttext-bold-webfont.woff2) format("woff2"), url(/wp-content/themes/cristal/dist/fonts/beiruttext-bold-webfont.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "BeirutText";
  src: url(/wp-content/themes/cristal/dist/fonts/beiruttext-regular-webfont.woff2) format("woff2"), url(/wp-content/themes/cristal/dist/fonts/beiruttext-regular-webfont.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "BeirutText";
  src: url(/wp-content/themes/cristal/dist/fonts/beiruttext-regularitalic-webfont.woff2) format("woff2"), url(/wp-content/themes/cristal/dist/fonts/beiruttext-regularitalic-webfont.woff) format("woff");
  font-weight: 400;
  font-style: italic;
}
/**
* Hyphenation
*/
.hyphenate {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/**
* Ellipsis
*/
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*  WEBFONTS OPTIMIZE   */
*,
*::after,
*::before {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  position: relative;
  color: inherit;
  text-decoration: none;
}
a.link::after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 2px solid;
  width: 100%;
  bottom: -3px;
  left: 0;
}

select {
  font: 400 14px/1.4 "BeirutText", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 3.1rem;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 950px) {
  select {
    font-size: 1.5rem;
  }
}

/** Import components, layouts, blocks and partials auto */
.background {
  margin: 0;
  position: relative;
  overflow: visible !important;
  border: 0.8rem solid transparent;
}
@media (min-width: 768px) {
  .background {
    border: 1.6rem solid transparent;
  }
}
.background--big {
  border: 1.6rem solid transparent;
}
@media (min-width: 768px) {
  .background--big {
    border: 2.6rem solid transparent;
  }
}
.background--small-closed {
  border: 1rem solid transparent;
}
@media (min-width: 768px) {
  .background--small-closed {
    border: 1.8rem solid transparent;
  }
}
.background__top, .background__bottom, .background__left, .background__right {
  position: absolute;
  z-index: 0;
  background-color: #004b3a;
  pointer-events: none;
}
.background--color-light .background__top, .background--color-light .background__bottom, .background--color-light .background__left, .background--color-light .background__right {
  background-color: #1e9e79;
}
.background__top__point, .background__bottom__point, .background__left__point, .background__right__point {
  position: absolute;
  z-index: 1;
  width: 6rem;
  height: 1.1rem;
  overflow: hidden;
}
.background__top__point::before, .background__top__point::after, .background__bottom__point::before, .background__bottom__point::after, .background__left__point::before, .background__left__point::after, .background__right__point::before, .background__right__point::after {
  content: none;
  display: block;
  width: 50%;
  position: absolute;
  height: 100%;
  background-color: #246052;
  top: 0;
}
@media (min-width: 768px) {
  .background__top__point::before, .background__top__point::after, .background__bottom__point::before, .background__bottom__point::after, .background__left__point::before, .background__left__point::after, .background__right__point::before, .background__right__point::after {
    content: "";
  }
}
.background__top__point::before, .background__bottom__point::before, .background__left__point::before, .background__right__point::before {
  left: 0;
  right: 0;
  -webkit-transform: skewY(45deg) translateY(-19px);
       -o-transform: skewY(45deg) translateY(-19px);
          transform: skewY(45deg) translateY(-19px);
  -webkit-transform-origin: left;
       -o-transform-origin: left;
          transform-origin: left;
}
@media (min-width: 768px) {
  .background__top__point::before, .background__bottom__point::before, .background__left__point::before, .background__right__point::before {
    -webkit-transform: skewY(45deg) translateY(-44px);
         -o-transform: skewY(45deg) translateY(-44px);
            transform: skewY(45deg) translateY(-44px);
  }
}
.background__top__point::after, .background__bottom__point::after, .background__left__point::after, .background__right__point::after {
  right: 0;
  -webkit-transform: skewY(-45deg) translateY(-19px);
       -o-transform: skewY(-45deg) translateY(-19px);
          transform: skewY(-45deg) translateY(-19px);
  -webkit-transform-origin: right;
       -o-transform-origin: right;
          transform-origin: right;
}
@media (min-width: 768px) {
  .background__top__point::after, .background__bottom__point::after, .background__left__point::after, .background__right__point::after {
    -webkit-transform: skewY(-45deg) translateY(-44px);
         -o-transform: skewY(-45deg) translateY(-44px);
            transform: skewY(-45deg) translateY(-44px);
  }
}
@media (min-width: 768px) {
  .background__top__point, .background__bottom__point, .background__left__point, .background__right__point {
    width: 14rem;
    height: 2.6rem;
  }
}
.background__top, .background__bottom {
  width: 82%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 0.8rem;
}
@media (min-width: 768px) {
  .background__top, .background__bottom {
    height: 1.6rem;
  }
}
.background--big .background__top, .background--big .background__bottom {
  width: 100%;
  height: 1.6rem;
}
@media (min-width: 768px) {
  .background--big .background__top, .background--big .background__bottom {
    height: 2.6rem;
  }
}
.background--small-closed .background__top, .background--small-closed .background__bottom {
  width: 97%;
  height: 1rem;
}
@media (min-width: 768px) {
  .background--small-closed .background__top, .background--small-closed .background__bottom {
    height: 1.8rem;
  }
}
.background__left, .background__right {
  height: 66%;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8rem;
}
@media (min-width: 768px) {
  .background__left, .background__right {
    width: 1.6rem;
  }
}
.background--big .background__left, .background--big .background__right {
  height: 100%;
  width: 1.6rem;
}
@media (min-width: 768px) {
  .background--big .background__left, .background--big .background__right {
    width: 2.6rem;
  }
}
.background--small-closed .background__left, .background--small-closed .background__right {
  height: 97%;
  width: 1rem;
}
@media (min-width: 768px) {
  .background--small-closed .background__left, .background--small-closed .background__right {
    width: 1.8rem;
  }
}
.background__top {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 0.8rem) 100%, 0.8rem 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 0.8rem) 100%, 0.8rem 100%);
  top: -0.8rem;
}
@media (min-width: 768px) {
  .background__top {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1.6rem) 100%, 1.6rem 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 1.6rem) 100%, 1.6rem 100%);
    top: -1.6rem;
  }
}
.background--big .background__top {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1.6rem) 100%, 1.6rem 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 1.6rem) 100%, 1.6rem 100%);
  top: -1.6rem;
}
@media (min-width: 768px) {
  .background--big .background__top {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 2.6rem) 100%, 2.6rem 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 2.6rem) 100%, 2.6rem 100%);
    top: -2.6rem;
  }
}
.background--small-closed .background__top {
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 1rem 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 1rem) 100%, 1rem 100%);
  top: -1rem;
}
@media (min-width: 768px) {
  .background--small-closed .background__top {
    -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1.8rem) 100%, 1.8rem 100%);
            clip-path: polygon(0 0, 100% 0, calc(100% - 1.8rem) 100%, 1.8rem 100%);
    top: -1.8rem;
  }
}
.background__top__point {
  top: -1.6rem;
  left: 50%;
  -webkit-transform: rotate(180deg) translateX(50%);
       -o-transform: rotate(180deg) translateX(50%);
          transform: rotate(180deg) translateX(50%);
}
@media (min-width: 768px) {
  .background__top__point {
    top: -2.6rem;
  }
}
.background__bottom {
  -webkit-clip-path: polygon(0.8rem 0%, calc(100% - 0.8rem) 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0.8rem 0%, calc(100% - 0.8rem) 0%, 100% 100%, 0% 100%);
  bottom: -0.8rem;
}
@media (min-width: 768px) {
  .background__bottom {
    -webkit-clip-path: polygon(1.6rem 0%, calc(100% - 1.6rem) 0%, 100% 100%, 0% 100%);
            clip-path: polygon(1.6rem 0%, calc(100% - 1.6rem) 0%, 100% 100%, 0% 100%);
    bottom: -1.6rem;
  }
}
.background--big .background__bottom {
  -webkit-clip-path: polygon(1.6rem 0%, calc(100% - 1.6rem) 0%, 100% 100%, 0% 100%);
          clip-path: polygon(1.6rem 0%, calc(100% - 1.6rem) 0%, 100% 100%, 0% 100%);
  bottom: -1.6rem;
}
@media (min-width: 768px) {
  .background--big .background__bottom {
    -webkit-clip-path: polygon(2.6rem 0%, calc(100% - 2.6rem) 0%, 100% 100%, 0% 100%);
            clip-path: polygon(2.6rem 0%, calc(100% - 2.6rem) 0%, 100% 100%, 0% 100%);
    bottom: -2.6rem;
  }
}
.background--small-closed .background__bottom {
  -webkit-clip-path: polygon(1rem 0%, calc(100% - 1rem) 0%, 100% 100%, 0% 100%);
          clip-path: polygon(1rem 0%, calc(100% - 1rem) 0%, 100% 100%, 0% 100%);
  bottom: -1rem;
}
@media (min-width: 768px) {
  .background--small-closed .background__bottom {
    -webkit-clip-path: polygon(1.8rem 0%, calc(100% - 1.8rem) 0%, 100% 100%, 0% 100%);
            clip-path: polygon(1.8rem 0%, calc(100% - 1.8rem) 0%, 100% 100%, 0% 100%);
    bottom: -1.8rem;
  }
}
.background__bottom__point {
  bottom: -1.6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .background__bottom__point {
    bottom: -2.6rem;
  }
}
.background__left {
  -webkit-clip-path: polygon(0 0, 100% 0.8rem, 100% calc(100% - 0.8rem), 0 100%);
          clip-path: polygon(0 0, 100% 0.8rem, 100% calc(100% - 0.8rem), 0 100%);
  left: -0.8rem;
}
@media (min-width: 768px) {
  .background__left {
    -webkit-clip-path: polygon(0 0, 100% 1.6rem, 100% calc(100% - 1.6rem), 0 100%);
            clip-path: polygon(0 0, 100% 1.6rem, 100% calc(100% - 1.6rem), 0 100%);
    left: -1.6rem;
  }
}
.background--big .background__left {
  -webkit-clip-path: polygon(0 0, 100% 1.6rem, 100% calc(100% - 1.6rem), 0 100%);
          clip-path: polygon(0 0, 100% 1.6rem, 100% calc(100% - 1.6rem), 0 100%);
  left: -1.6rem;
}
@media (min-width: 768px) {
  .background--big .background__left {
    -webkit-clip-path: polygon(0 0, 100% 2.6rem, 100% calc(100% - 2.6rem), 0 100%);
            clip-path: polygon(0 0, 100% 2.6rem, 100% calc(100% - 2.6rem), 0 100%);
    left: -2.6rem;
  }
}
.background--small-closed .background__left {
  -webkit-clip-path: polygon(0 0, 100% 1rem, 100% calc(100% - 1rem), 0 100%);
          clip-path: polygon(0 0, 100% 1rem, 100% calc(100% - 1rem), 0 100%);
  left: -1rem;
}
@media (min-width: 768px) {
  .background--small-closed .background__left {
    -webkit-clip-path: polygon(0 0, 100% 1.8rem, 100% calc(100% - 1.8rem), 0 100%);
            clip-path: polygon(0 0, 100% 1.8rem, 100% calc(100% - 1.8rem), 0 100%);
    left: -1.8rem;
  }
}
.background__left__point {
  left: 0;
  top: 50%;
  -webkit-transform: translateX(-60%) rotate(90deg);
       -o-transform: translateX(-60%) rotate(90deg);
          transform: translateX(-60%) rotate(90deg);
}
@media (min-width: 768px) {
  .background__left__point {
    left: 0;
  }
}
.background__right {
  -webkit-clip-path: polygon(0 0.8rem, 100% 0, 100% 100%, 0 calc(100% - 0.8rem));
          clip-path: polygon(0 0.8rem, 100% 0, 100% 100%, 0 calc(100% - 0.8rem));
  right: -0.8rem;
}
@media (min-width: 768px) {
  .background__right {
    -webkit-clip-path: polygon(0 1.6rem, 100% 0, 100% 100%, 0 calc(100% - 1.6rem));
            clip-path: polygon(0 1.6rem, 100% 0, 100% 100%, 0 calc(100% - 1.6rem));
    right: -1.6rem;
  }
}
.background--big .background__right {
  -webkit-clip-path: polygon(0 1.6rem, 100% 0, 100% 100%, 0 calc(100% - 1.6rem));
          clip-path: polygon(0 1.6rem, 100% 0, 100% 100%, 0 calc(100% - 1.6rem));
  right: -1.6rem;
}
@media (min-width: 768px) {
  .background--big .background__right {
    -webkit-clip-path: polygon(0 2.6rem, 100% 0, 100% 100%, 0 calc(100% - 2.6rem));
            clip-path: polygon(0 2.6rem, 100% 0, 100% 100%, 0 calc(100% - 2.6rem));
    right: -2.6rem;
  }
}
.background--small-closed .background__right {
  -webkit-clip-path: polygon(0 1rem, 100% 0, 100% 100%, 0 calc(100% - 1rem));
          clip-path: polygon(0 1rem, 100% 0, 100% 100%, 0 calc(100% - 1rem));
  right: -1rem;
}
@media (min-width: 768px) {
  .background--small-closed .background__right {
    -webkit-clip-path: polygon(0 1.8rem, 100% 0, 100% 100%, 0 calc(100% - 1.8rem));
            clip-path: polygon(0 1.8rem, 100% 0, 100% 100%, 0 calc(100% - 1.8rem));
    right: -1.8rem;
  }
}
.background__right__point {
  right: -1.6rem;
  top: 50%;
  -webkit-transform: translateX(41%) rotate(-90deg);
       -o-transform: translateX(41%) rotate(-90deg);
          transform: translateX(41%) rotate(-90deg);
}
@media (min-width: 768px) {
  .background__right__point {
    right: -2.6rem;
    top: 50%;
    -webkit-transform: translateX(41%) rotate(-90deg);
         -o-transform: translateX(41%) rotate(-90deg);
            transform: translateX(41%) rotate(-90deg);
  }
}
.background img {
  display: block;
}
.background + figcaption {
  margin-top: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  line-height: 1.2;
}

.border {
  position: relative;
  font-family: "BeirutText", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  letter-spacing: 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.border[disabled], .border[disabled=true] {
  opacity: 0.5 !important;
  pointer-events: none !important;
}
.border[disabled=false] {
  opacity: 1 !important;
  pointer-events: initial !important;
}
@media (min-width: 768px) {
  .border {
    font-size: 2.1rem;
  }
}
.border__main {
  position: relative;
  width: 100%;
}
.border button,
.border a,
.border select {
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.border--filter {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.border--light {
  color: #00664f;
}
.border--light:hover, .border--light:active, .border--light.active {
  color: #246052;
}
.border--light:hover .border__horizontal,
.border--light:hover .border__middle, .border--light:active .border__horizontal,
.border--light:active .border__middle, .border--light.active .border__horizontal,
.border--light.active .border__middle {
  background-color: #ecff5f;
}
.border--light:hover .border__corner svg .corner-background-color, .border--light:active .border__corner svg .corner-background-color, .border--light.active .border__corner svg .corner-background-color {
  fill: #ecff5f;
}
.border--light:hover.border--filter, .border--light:active.border--filter, .border--light.active.border--filter {
  color: #b5f6a2;
}
.border--light:hover.border--filter .border__horizontal,
.border--light:hover.border--filter .border__middle, .border--light:active.border--filter .border__horizontal,
.border--light:active.border--filter .border__middle, .border--light.active.border--filter .border__horizontal,
.border--light.active.border--filter .border__middle {
  background-color: #246052;
}
.border--light:hover.border--filter .border__corner svg .corner-background-color,
.border--light:hover.border--filter .border__corner svg .corner-line-color, .border--light:active.border--filter .border__corner svg .corner-background-color,
.border--light:active.border--filter .border__corner svg .corner-line-color, .border--light.active.border--filter .border__corner svg .corner-background-color,
.border--light.active.border--filter .border__corner svg .corner-line-color {
  fill: #246052;
}
.border--light:hover.border--filter .border__middle, .border--light:active.border--filter .border__middle, .border--light.active.border--filter .border__middle {
  border-color: #246052;
}
.border--transparent-light {
  color: #fff;
}
.border--transparent-light:hover, .border--transparent-light:active, .border--transparent-light.active {
  color: #246052;
}
.border--transparent-light:hover .border__horizontal,
.border--transparent-light:hover .border__middle, .border--transparent-light:active .border__horizontal,
.border--transparent-light:active .border__middle, .border--transparent-light.active .border__horizontal,
.border--transparent-light.active .border__middle {
  background-color: #a0f996;
  border-color: #246052;
}
.border--transparent-light:hover .border__corner svg .corner-background-color, .border--transparent-light:active .border__corner svg .corner-background-color, .border--transparent-light.active .border__corner svg .corner-background-color {
  fill: #a0f996;
}
.border--transparent-light:hover .border__corner svg .corner-line-color, .border--transparent-light:active .border__corner svg .corner-line-color, .border--transparent-light.active .border__corner svg .corner-line-color {
  fill: #246052;
}
.border--transparent-light:hover .border__middle, .border--transparent-light:active .border__middle, .border--transparent-light.active .border__middle {
  border-color: #246052;
}
.border--dark {
  color: #b5f6a2;
}
@media (min-width: 768px) {
  .border--dark {
    min-height: 43px;
  }
}
.border--dark.border--filter {
  color: #fff;
}
.border--dark:hover, .border--dark:active, .border--dark.active {
  color: #ecff5f;
}
.border--dark:hover.border--filter, .border--dark:active.border--filter, .border--dark.active.border--filter {
  color: #246052;
}
.border--dark:hover.border--filter .border__horizontal,
.border--dark:hover.border--filter .border__middle, .border--dark:active.border--filter .border__horizontal,
.border--dark:active.border--filter .border__middle, .border--dark.active.border--filter .border__horizontal,
.border--dark.active.border--filter .border__middle {
  background-color: #a0f996;
  border-color: #a0f996;
}
.border--dark:hover.border--filter .border__corner svg .corner-background-color,
.border--dark:hover.border--filter .border__corner svg .corner-line-color, .border--dark:active.border--filter .border__corner svg .corner-background-color,
.border--dark:active.border--filter .border__corner svg .corner-line-color, .border--dark.active.border--filter .border__corner svg .corner-background-color,
.border--dark.active.border--filter .border__corner svg .corner-line-color {
  fill: #a0f996;
}
.border--dark:hover.border--filter .border__middle, .border--dark:active.border--filter .border__middle, .border--dark.active.border--filter .border__middle {
  border-color: #a0f996;
}
.border--transparent-dark:hover, .border--transparent-dark:active, .border--transparent-dark.active {
  color: #b5f6a2;
}
.border--transparent-dark:hover .border__horizontal,
.border--transparent-dark:hover .border__middle, .border--transparent-dark:active .border__horizontal,
.border--transparent-dark:active .border__middle, .border--transparent-dark.active .border__horizontal,
.border--transparent-dark.active .border__middle {
  background-color: #246052;
  border-color: #246052;
}
.border--transparent-dark:hover .border__corner svg .corner-background-color,
.border--transparent-dark:hover .border__corner svg .corner-line-color, .border--transparent-dark:active .border__corner svg .corner-background-color,
.border--transparent-dark:active .border__corner svg .corner-line-color, .border--transparent-dark.active .border__corner svg .corner-background-color,
.border--transparent-dark.active .border__corner svg .corner-line-color {
  fill: #246052;
}
.border--transparent-dark:hover .border__middle, .border--transparent-dark:active .border__middle, .border--transparent-dark.active .border__middle {
  border-color: #246052;
}
.border--white {
  color: #b5f6a2;
}
.border--white:hover, .border--white:active, .border--white.active {
  color: #ecff5f;
}
.border--white:hover.border--filter, .border--white:active.border--filter, .border--white.active.border--filter {
  color: #246052;
}
.border--white:hover.border--filter .border__horizontal,
.border--white:hover.border--filter .border__middle, .border--white:active.border--filter .border__horizontal,
.border--white:active.border--filter .border__middle, .border--white.active.border--filter .border__horizontal,
.border--white.active.border--filter .border__middle {
  background-color: #a0f996;
  border-color: #a0f996;
}
.border--white:hover.border--filter .border__corner svg .corner-background-color,
.border--white:hover.border--filter .border__corner svg .corner-line-color, .border--white:active.border--filter .border__corner svg .corner-background-color,
.border--white:active.border--filter .border__corner svg .corner-line-color, .border--white.active.border--filter .border__corner svg .corner-background-color,
.border--white.active.border--filter .border__corner svg .corner-line-color {
  fill: #a0f996;
}
.border--white:hover.border--filter .border__middle, .border--white:active.border--filter .border__middle, .border--white.active.border--filter .border__middle {
  border-color: #a0f996;
}
.border--accordion {
  color: #00664f;
}
.border--accordion:hover, .border--accordion:active {
  color: #fff;
}
.border--accordion:hover .border__horizontal,
.border--accordion:hover .border__middle, .border--accordion:active .border__horizontal,
.border--accordion:active .border__middle {
  background-color: #ecff5f;
}
.border--accordion:hover .border__corner svg .corner-background-color, .border--accordion:active .border__corner svg .corner-background-color {
  fill: #ecff5f;
}
.border--accordion:hover.border--filter, .border--accordion:active.border--filter {
  color: #b5f6a2;
}
.border--accordion:hover.border--filter .border__horizontal,
.border--accordion:hover.border--filter .border__middle, .border--accordion:active.border--filter .border__horizontal,
.border--accordion:active.border--filter .border__middle {
  background-color: #246052;
}
.border--accordion:hover.border--filter .border__corner svg .corner-background-color,
.border--accordion:hover.border--filter .border__corner svg .corner-line-color, .border--accordion:active.border--filter .border__corner svg .corner-background-color,
.border--accordion:active.border--filter .border__corner svg .corner-line-color {
  fill: #246052;
}
.border--accordion:hover.border--filter .border__middle, .border--accordion:active.border--filter .border__middle {
  border-color: #246052;
}
.border--accordion.active {
  color: #246052;
}
.border--accordion.active:hover, .border--accordion.active:active {
  color: #246052;
}
.border--accordion.active .border__horizontal,
.border--accordion.active .border__middle {
  background-color: #fff;
}
.border--accordion.active .border__corner svg .corner-background-color {
  fill: #fff;
}
.border--accordion.active.border--filter .border__horizontal,
.border--accordion.active.border--filter .border__middle {
  background-color: #fff;
}
.border--accordion.active.border--filter .border__corner svg .corner-background-color {
  fill: #fff;
}
.border--accordion.active.border--filter .border__corner svg .corner-line-color {
  fill: #246052;
}
.border--accordion.active.border--filter .border__middle {
  border-color: #246052;
}
.border--select--single {
  pointer-events: none;
}
.border__container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.border__content {
  width: 100%;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.2rem 2rem;
}
@media (min-width: 768px) {
  .border__content {
    padding: 1.8rem 3.6rem;
  }
}
.border__content select {
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  width: 100%;
  background-color: transparent;
  border: none;
  color: currentColor;
}
.border__content select option {
  color: #246052;
}
.border__content > span {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
}
.border__content > span::before {
  content: attr(data-content);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(calc(-110% - 2.1em));
       -o-transform: translateX(calc(-110% - 2.1em));
          transform: translateX(calc(-110% - 2.1em));
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  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--filter .border__content {
  padding: 1.2rem 2rem;
  z-index: initial;
}
.border--accordion .border__content, .border--select .border__content {
  position: relative;
}
.border--accordion .border__content::after, .border--select .border__content::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-bottom: 2px solid #246052;
  border-left: 2px solid #246052;
  position: absolute;
  right: 2.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
       -o-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  pointer-events: none;
  -webkit-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
  -webkit-transition: border-color 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out, opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}
.border--accordion .border__content:hover::after, .border--accordion .border__content:active::after, .border--select .border__content:hover::after, .border--select .border__content:active::after {
  border-color: #b5f6a2;
}
.border--accordion.active .border__content::after {
  opacity: 0;
  -webkit-transform: translateY(-50%) rotate(135deg);
       -o-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
@media (min-width: 768px) {
  .border--accordion.active .border__content::after {
    opacity: 1;
  }
}
.border--accordion.active .border__content:hover::after, .border--accordion.active .border__content:active::after {
  border-color: #246052;
}
@media (min-width: 768px) {
  .border--accordion.active .border__content {
    padding: 1.2rem 2rem;
  }
}
.border--select .border__content::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
       -o-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.border--select.border--select--single .border__content::after {
  content: none;
}
.border--magnetic .border__content {
  padding: 1.5rem 2rem;
  letter-spacing: 2px;
}
.border--marquee .border__content {
  overflow: hidden;
  display: inline-block;
}
.border__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.border__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.border__middle {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 1px solid;
  border-right: 1px solid;
  margin: -1px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.border--dark .border__middle {
  background-color: #246052;
  border-color: #004b3a;
}
.border--light .border__middle, .border--accordion .border__middle {
  background-color: #a0f996;
  border-color: #004b3a;
}
.border--white .border__middle {
  background-color: #246052;
  border-color: #fff;
}
.border--light.border--filter .border__middle, .border--accordion.border--filter .border__middle {
  background-color: #fff;
  border-color: #004b3a;
}
.border--dark.border--filter .border__middle {
  background-color: #246052;
  border-color: #fff;
}
.border--transparent-dark .border__middle, .border--transparent-light .border__middle {
  margin: 0;
}
.border__horizontal {
  height: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 -1px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .border:not(.border--filter) .border__horizontal {
    height: 20px;
  }
}
.border--filter .border__horizontal {
  height: 15px;
}
.border__horizontal.border--top {
  border-top-width: 1px;
  border-top-style: solid;
}
.border__horizontal.border--bottom {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border--light .border__horizontal, .border--accordion .border__horizontal {
  background-color: #a0f996;
  border-color: #004b3a;
}
.border--dark .border__horizontal {
  background-color: #246052;
  border-color: #004b3a;
}
.border--white .border__horizontal {
  background-color: #246052;
  border-color: #fff;
}
.border--light.border--filter .border__horizontal, .border--accordion.border--filter .border__horizontal {
  background-color: #fff;
  border-color: #246052;
}
.border--dark.border--filter .border__horizontal {
  background-color: #246052;
  border-color: #fff;
}
.border--transparent-dark .border__horizontal, .border--transparent-light .border__horizontal {
  margin: 0;
}
.border__corner {
  width: 15px;
  height: 15px;
}
@media (min-width: 768px) {
  .border:not(.border--filter) .border__corner {
    width: 20px;
    height: 20px;
  }
}
.border--filter .border__corner {
  width: 15px;
  height: 15px;
}
.border__corner svg {
  display: block;
}
.border__corner svg .corner-line-color {
  -webkit-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
.border--light .border__corner svg .corner-line-color, .border--accordion .border__corner svg .corner-line-color {
  fill: #004b3a;
}
.border--dark .border__corner svg .corner-line-color {
  fill: #004b3a;
}
.border--white .border__corner svg .corner-line-color {
  fill: #fff;
}
.border--light.border--filter .border__corner svg .corner-line-color, .border--accordion.border--filter .border__corner svg .corner-line-color {
  fill: #004b3a;
}
.border--dark.border--filter .border__corner svg .corner-line-color {
  fill: #fff;
}
.border--transparent-dark .border__corner svg .corner-line-color {
  fill: #004b3a;
}
.border--transparent-light .border__corner svg .corner-line-color {
  fill: #fff;
}
.border__corner svg .corner-background-color {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.border--light .border__corner svg .corner-background-color, .border--accordion .border__corner svg .corner-background-color {
  fill: #a0f996;
}
.border--dark .border__corner svg .corner-background-color {
  fill: #246052;
}
.border--white .border__corner svg .corner-background-color {
  fill: #246052;
}
.border--light.border--filter .border__corner svg .corner-background-color, .border--accordion.border--filter .border__corner svg .corner-background-color {
  fill: #fff;
}
.border--dark.border--filter .border__corner svg .corner-background-color {
  fill: #246052;
}
.border--transparent-dark .border__corner svg .corner-background-color {
  fill: transparent;
}
.border--transparent-light .border__corner svg .corner-background-color {
  fill: transparent;
}
.border__corner-top-right {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}
.border__corner-bottom-left {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.border__corner-bottom-right {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.border__trail-1, .border__trail-2 {
  opacity: 0.4;
  pointer-events: none;
}

button {
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}

.rotating-button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.rotating-button__rotate {
  display: block;
  width: 100%;
  -webkit-animation: rotating 16s linear infinite;
       -o-animation: rotating 16s linear infinite;
          animation: rotating 16s linear infinite;
  -webkit-animation-play-state: paused;
       -o-animation-play-state: paused;
          animation-play-state: paused;
}
.rotating-button__center {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 31%;
  margin: auto;
  width: 36%;
  height: 36%;
}
.rotating-button__center svg {
  max-height: 36%;
}
.rotating-button:hover .rotating-button__rotate {
  -webkit-animation-play-state: running;
       -o-animation-play-state: running;
          animation-play-state: running;
}
.rotating-button svg {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.rotating-button path {
  fill: #fff;
}

.cursor {
  position: absolute;
  margin: -58px 0 0 -58px;
  pointer-events: none;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.cursor-buy-green .cursor__icon, .cursor-see-yellow .cursor__icon, .cursor-see-green .cursor__icon {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDBweCIgaGVpZ2h0PSI1MHB4IiB2aWV3Qm94PSIwIDAgNDAgNTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbi9oYW5kPC90aXRsZT4KICAgIDxnIGlkPSJTeW1ib2xzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iYnV0dG9uL21vdXNlX2NvbXByYXJfZ3JlZW4iIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zOS4wMDAwMDAsIC0zNC4wMDAwMDApIiBzdHJva2U9IiMwMDRCM0EiIHN0cm9rZS13aWR0aD0iMiI+CiAgICAgICAgICAgIDxnIGlkPSJHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuMDAwMDAwLCAyOS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxnIGlkPSJpY29uL2hhbmQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMwLjAwMDAwMCwgMzAuMDAwMDAwKSBzY2FsZSgtMSwgLTEpIHJvdGF0ZSg5MC4wMDAwMDApIHRyYW5zbGF0ZSgtMzAuMDAwMDAwLCAtMzAuMDAwMDAwKSAiPgogICAgICAgICAgICAgICAgICAgIDxnIGlkPSJHcm91cC01LUNvcHktNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDExLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgICAgICA8cG9seWdvbiBpZD0iRmlsbC0xIiBmaWxsPSIjRkZERDREIiBwb2ludHM9IjEzLjkzNjQzODUgMC43ODEyNSA2LjA0NDEyMDY4IDUuNzc2NDI2NDUgMC43ODEyNSA1Ljc3NjQyNjQ1IDAuNzgxMjUgMzEuNzc3NzYxOCA2LjA0MTEzODMyIDMxLjc3Nzc2MTggMTMuOTM0NDUwMiAzNy43ODEyNSAzMS44NDY1MDIzIDM3Ljc4MTI1IDM3Ljc2NTQ5MjEgMTYuNzYwOTc0OCA0Ny43ODEyNSAxNi43NjA5NzQ4IDQ3Ljc4MTI1IDcuNzc3OTI1MyAzMC4zNzUyMDQ5IDcuNzc3OTI1MyAzMi4zNTE1MTUyIDIuNzgxNzQwNTMgMzIuMzUxNTE1MiAwLjc4MTI1Ij48L3BvbHlnb24+CiAgICAgICAgICAgICAgICAgICAgICAgIDxsaW5lIHgxPSIzNy43ODEyNSIgeTE9IjE2Ljc3IiB4Mj0iMjQuMjgxMjUiIHkyPSIxNi43NyIgaWQ9IkxpbmUtMiIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSI+PC9saW5lPgogICAgICAgICAgICAgICAgICAgICAgICA8bGluZSB4MT0iMzcuNzgxMjUiIHkxPSI3LjgiIHgyPSIyNC4yODEyNSIgeTI9IjcuOCIgaWQ9IkxpbmUtMi1Db3B5LTMiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiPjwvbGluZT4KICAgICAgICAgICAgICAgICAgICAgICAgPGxpbmUgeDE9IjM1LjI4MTI1IiB5MT0iMjQuMjgxMjUiIHgyPSIyNi4yODEyNSIgeTI9IjI0LjI4MTI1IiBpZD0iTGluZS0yLUNvcHkiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiPjwvbGluZT4KICAgICAgICAgICAgICAgICAgICAgICAgPGxpbmUgeDE9IjMyLjc4MTI1IiB5MT0iMzEuMjgxMjUiIHgyPSIyOC4yODEyNSIgeTI9IjMxLjI4MTI1IiBpZD0iTGluZS0yLUNvcHktMiIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSI+PC9saW5lPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==) no-repeat center;
}
.cursor-buy-green {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTE4cHgiIGhlaWdodD0iMTE4cHgiIHZpZXdCb3g9IjAgMCAxMTggMTE4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPmJhc2U8L3RpdGxlPgogICAgPGcgaWQ9IlN5bWJvbHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJidXR0b24vbW91c2VfY29tcHJhcl9ncmVlbiIgZmlsbD0iIzI0NjA1MiI+CiAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJiYXNlIiBwb2ludHM9IjM5LjI4OTYyNzcgMCAxNi40MjU5MTUxIDE2LjQyNTkxNTEgMCAzOS4yODk2Mjc3IDAgNzguNzEwMzcyMyAxNi40MjU5MTUxIDEwMS41NzQwODUgMzkuMjg5NjI3NyAxMTggNzguNzEwMzcyMyAxMTggMTAxLjU3NDA4NSAxMDEuNTc0MDg1IDExOCA3OC43MTAzNzIzIDExOCAzOS4yODk2Mjc3IDEwMS41NzQwODUgMTYuNDI1OTE1MSA3OC43MTAzNzIzIDAiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) no-repeat center;
}
.cursor-buy-green .cursor__text {
  -webkit-mask: url(/wp-content/themes/cristal/dist/images/svg/cursor-buy-text.svg) no-repeat center;
          mask: url(/wp-content/themes/cristal/dist/images/svg/cursor-buy-text.svg) no-repeat center;
  background-color: #ecff5f;
}
.cursor-see-green {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTE4cHgiIGhlaWdodD0iMTE4cHgiIHZpZXdCb3g9IjAgMCAxMTggMTE4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPmJhc2U8L3RpdGxlPgogICAgPGcgaWQ9IlN5bWJvbHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJidXR0b24vbW91c2VfY29tcHJhcl9ncmVlbiIgZmlsbD0iIzI0NjA1MiI+CiAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJiYXNlIiBwb2ludHM9IjM5LjI4OTYyNzcgMCAxNi40MjU5MTUxIDE2LjQyNTkxNTEgMCAzOS4yODk2Mjc3IDAgNzguNzEwMzcyMyAxNi40MjU5MTUxIDEwMS41NzQwODUgMzkuMjg5NjI3NyAxMTggNzguNzEwMzcyMyAxMTggMTAxLjU3NDA4NSAxMDEuNTc0MDg1IDExOCA3OC43MTAzNzIzIDExOCAzOS4yODk2Mjc3IDEwMS41NzQwODUgMTYuNDI1OTE1MSA3OC43MTAzNzIzIDAiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) no-repeat center;
}
.cursor-see-green .cursor__text {
  -webkit-mask: url(/wp-content/themes/cristal/dist/images/svg/cursor-see-text.svg) no-repeat center;
          mask: url(/wp-content/themes/cristal/dist/images/svg/cursor-see-text.svg) no-repeat center;
  background-color: #fff;
}
.cursor-see-yellow {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTE4cHgiIGhlaWdodD0iMTE4cHgiIHZpZXdCb3g9IjAgMCAxMTggMTE4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPHRpdGxlPmJhc2U8L3RpdGxlPgogICAgPGcgaWQ9IlN5bWJvbHMiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIGlkPSJidXR0b24vbW91c2VfdmVyX3llbGxvdyIgZmlsbD0iI0VDRkY1RiI+CiAgICAgICAgICAgIDxwb2x5Z29uIGlkPSJiYXNlIiBwb2ludHM9IjM5LjI4OTYyNzcgMCAxNi40MjU5MTUxIDE2LjQyNTkxNTEgMCAzOS4yODk2Mjc3IDAgNzguNzEwMzcyMyAxNi40MjU5MTUxIDEwMS41NzQwODUgMzkuMjg5NjI3NyAxMTggNzguNzEwMzcyMyAxMTggMTAxLjU3NDA4NSAxMDEuNTc0MDg1IDExOCA3OC43MTAzNzIzIDExOCAzOS4yODk2Mjc3IDEwMS41NzQwODUgMTYuNDI1OTE1MSA3OC43MTAzNzIzIDAiPjwvcG9seWdvbj4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==) no-repeat center;
}
.cursor-see-yellow .cursor__text {
  -webkit-mask: url(/wp-content/themes/cristal/dist/images/svg/cursor-see-text.svg) no-repeat center;
          mask: url(/wp-content/themes/cristal/dist/images/svg/cursor-see-text.svg) no-repeat center;
  background-color: #246052;
}
.cursor__wrapper {
  position: absolute;
  width: 118px;
  height: 118px;
  top: 0;
  left: 0;
}
.cursor__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: rotating 24s linear infinite;
       -o-animation: rotating 24s linear infinite;
          animation: rotating 24s linear infinite;
}
.cursor__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cursor__layer {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
@media (pointer: coarse) {
  .cursor__layer {
    display: none;
  }
}
.cursor__wrapper.js-active .cursor {
  opacity: 1;
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}
.cursor__wrapper.js-active.trail-1, .cursor__wrapper.js-active.trail-2 {
  opacity: 0.4;
}

[data-cursor=buy-green],
[data-cursor=see-yellow] {
  cursor: none;
}
@media (pointer: coarse) {
  [data-cursor=buy-green],
[data-cursor=see-yellow] {
    cursor: pointer;
  }
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.wp-block-contact-form-7-contact-form-selector {
  max-width: none;
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .wp-block-contact-form-7-contact-form-selector {
    padding: 0 30px;
  }
}

.wpcf7 {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
}
@media (min-width: 768px) {
  .wpcf7 {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .wpcf7 {
    max-width: 1266px;
  }
}
.wpcf7 p {
  margin: 0;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.wpcf7 label {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
}
.wpcf7 label.label-file {
  position: relative;
  font-style: italic;
  text-decoration: underline;
  margin-bottom: 2.6rem;
  padding: 2.2rem 2.4rem;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNDRweCIgaGVpZ2h0PSI0NHB4IiB2aWV3Qm94PSIwIDAgNDQgNDQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbjwvdGl0bGU+CiAgICA8ZyBpZD0iTGF5b3V0cyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjA4LUNvbnRhY3RzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzk4LjAwMDAwMCwgLTE0MTEuMDAwMDAwKSI+CiAgICAgICAgICAgIDxnIGlkPSJGT1JNIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzNzQuMDAwMDAwLCA3ODEuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0ic2VhcmNoLWNvcHktMTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMDAwMDAwLCA2MjAuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI0LjAwMDAwMCwgMi40MTc4NzQpIj4KICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9Imljb24iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuMDAwMDAwLCA3Ljk3NDcyNCkiPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgPGVsbGlwc2UgaWQ9Ik92YWwiIGZpbGw9IiNGRkZGRkYiIGN4PSIyMiIgY3k9IjIxLjcyMTk2OTQiIHJ4PSIyMCIgcnk9IjE5Ljc0NzI0NDkiPjwvZWxsaXBzZT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxnIGlkPSJHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNy4wMDAwMDAsIDYuOTExNTM2KSIgZmlsbD0iIzI0NjA1MiI+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGcgaWQ9Imljb24vZmFjZWJvb2siIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE1LjAwMDAwMCwgMTQuODEwNDM0KSByb3RhdGUoNDUuMDAwMDAwKSB0cmFuc2xhdGUoLTE1LjAwMDAwMCwgLTE0LjgxMDQzNCkgIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTEwLjc0NDA3OSw5LjcxMTI2ODc3IEwxMC43ODc2ODk0LDkuNzUwMTIxOTYgTDE1LjIwMzEzNiwxNC4xNjU5OTUgTDE5LjU2NjIwNDUsOS44MDQxMjI3MSBDMTkuNzU4OTk5LDkuNjExMzI4MjQgMjAuMDczNTgxLDkuNjEzMzI4NjkgMjAuMjY4ODQzMiw5LjgwODU5MDgzIEMyMC40NTAxNTgsOS45ODk5MDU2OCAyMC40NjQ4MzQsMTAuMjc0MTAzNSAyMC4zMTE2NDM0LDEwLjQ2ODE0MDIgTDIwLjI3MzMxMTMsMTAuNTExMjI5NSBMMTUuOTEwMTM2LDE0Ljg3Mjk5NSBMMjAuMzMzNjMwOSwxOS4yOTYwNjM1IEMyMC41Mjg4OTMxLDE5LjQ5MTMyNTYgMjAuNTI4ODkzMSwxOS44MDc5MDgxIDIwLjMzMzYzMDksMjAuMDAzMTcwMyBDMjAuMTUyMzE2MSwyMC4xODQ0ODUxIDE5Ljg2NjM5MzQsMjAuMTk3NDM2MiAxOS42NzAxMzQ2LDIwLjA0MjAyMzUgTDE5LjYyNjUyNDIsMjAuMDAzMTcwMyBMMTUuMjAzMTM2LDE1LjU3OTk5NSBMMTAuODQ4MDA5LDE5LjkzNjUzMTggQzEwLjY1NTIxNDYsMjAuMTI5MzI2MiAxMC4zNDA2MzI1LDIwLjEyNzMyNTggMTAuMTQ1MzcwNCwxOS45MzIwNjM3IEM5Ljk2NDA1NTUyLDE5Ljc1MDc0ODggOS45NDkzNzk1OSwxOS40NjY1NTEgMTAuMTAyNTcwMSwxOS4yNzI1MTQzIEwxMC4xNDA5MDIzLDE5LjIyOTQyNSBMMTQuNDk2MTM2LDE0Ljg3Mjk5NSBMMTAuMDgwNTgyNiwxMC40NTcyMjg3IEM5Ljg4NTMyMDQ3LDEwLjI2MTk2NjYgOS44ODUzMjA0Nyw5Ljk0NTM4NDEgMTAuMDgwNTgyNiw5Ljc1MDEyMTk2IEMxMC4yNjE4OTc1LDkuNTY4ODA3MTEgMTAuNTQ3ODIwMiw5LjU1NTg1NjA1IDEwLjc0NDA3OSw5LjcxMTI2ODc3IFoiIGlkPSJjbG9zZSI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+);
  background-repeat: no-repeat;
  background-position: left center;
  background-origin: content-box;
}
.wpcf7 label.label-file::before {
  opacity: 0.5;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='white' stroke-width='2' stroke-dasharray='12' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.wpcf7 label.label-file span {
  margin-left: 5.4rem;
}
.wpcf7 label.label-file .wpcf7-form-control-wrap {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wpcf7 label.label-file:hover::before, .wpcf7 label.label-file:active::before, .wpcf7 label.label-file.focused::before {
  opacity: 1;
}
.wpcf7 label.label-checkbox {
  position: relative;
}
.wpcf7 label.label-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wpcf7 label.label-checkbox input:checked + span {
  opacity: 1;
}
.wpcf7 label.label-checkbox input:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(0.6);
       -o-transform: scale(0.6);
          transform: scale(0.6);
}
.wpcf7 label.label-checkbox input:focus + span {
  opacity: 1;
}
.wpcf7 label.label-checkbox input + span {
  font-size: 1.3rem;
  line-height: 1.25;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.wpcf7 label.label-checkbox input + span::before, .wpcf7 label.label-checkbox input + span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
}
.wpcf7 label.label-checkbox input + span::before {
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.wpcf7 label.label-checkbox input + span::after {
  background-color: #a0f996;
  -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTNweCIgaGVpZ2h0PSIxMXB4IiB2aWV3Qm94PSIwIDAgMTMgMTEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+UGF0aDwvdGl0bGU+CiAgICA8ZyBpZD0iTGF5b3V0cyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjA4LUNvbnRhY3RzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzc4LjAwMDAwMCwgLTE1MDAuMDAwMDAwKSIgZmlsbD0iIzAwMDAwMCIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPGcgaWQ9IkZPUk0iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM3NC4wMDAwMDAsIDc4MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjU2NjA1NzUzLDcyNi45NjQ1NjUgTDUuOTQ2NTg0OTEsNzI0LjQwOTk2IEw1LjgyMTUwOTUxLDcyNC4zMDUyMiBDNS4yODAzMDkyNyw3MjMuOTQxNTU5IDQuNjM0MDExMzMsNzI0LjA1OTgxOSA0LjI2NTAwNzQ3LDcyNC41NDY2NTQgQzMuODcwMzk3MDIsNzI1LjA2NzI3MiAzLjkyMTMxNjQsNzI1LjgzNTc1MiA0LjM4NTQ3MjgsNzI2LjI4ODgwMyBMNy44NjI4NjY5Myw3MjkuNjgzIEw3Ljk5ODc2NTk0LDcyOS43OTUzNTkgQzguNTIxNDUxLDczMC4xMzU1MjcgOS4xMjg5NjkyMiw3MzAuMDM4OTUzIDkuNTAxODIyMTIsNzI5LjU5OTU3OCBMMTYuNjk3NjYyMiw3MjEuMTE5ODk3IEwxNi43OTUyMjIyLDcyMC45ODYxOTIgQzE3LjExMzI1NTEsNzIwLjQ0ODE0OSAxNy4wNTM0MDk2LDcxOS43OTU0NDQgMTYuNjY3Mzc5OSw3MTkuMzczNTk2IEMxNi4xOTkwNjQ5LDcxOC44NjE4MjcgMTUuNDMwNDE1LDcxOC44NzgyNzUgMTQuOTgwOTI2NCw3MTkuNDA3OTU5IEw4LjU2NjA1NzUzLDcyNi45NjQ1NjUgWiIgaWQ9ImNoZWNrIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=);
          mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTNweCIgaGVpZ2h0PSIxMXB4IiB2aWV3Qm94PSIwIDAgMTMgMTEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+UGF0aDwvdGl0bGU+CiAgICA8ZyBpZD0iTGF5b3V0cyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjA4LUNvbnRhY3RzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzc4LjAwMDAwMCwgLTE1MDAuMDAwMDAwKSIgZmlsbD0iIzAwMDAwMCIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPGcgaWQ9IkZPUk0iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM3NC4wMDAwMDAsIDc4MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjU2NjA1NzUzLDcyNi45NjQ1NjUgTDUuOTQ2NTg0OTEsNzI0LjQwOTk2IEw1LjgyMTUwOTUxLDcyNC4zMDUyMiBDNS4yODAzMDkyNyw3MjMuOTQxNTU5IDQuNjM0MDExMzMsNzI0LjA1OTgxOSA0LjI2NTAwNzQ3LDcyNC41NDY2NTQgQzMuODcwMzk3MDIsNzI1LjA2NzI3MiAzLjkyMTMxNjQsNzI1LjgzNTc1MiA0LjM4NTQ3MjgsNzI2LjI4ODgwMyBMNy44NjI4NjY5Myw3MjkuNjgzIEw3Ljk5ODc2NTk0LDcyOS43OTUzNTkgQzguNTIxNDUxLDczMC4xMzU1MjcgOS4xMjg5NjkyMiw3MzAuMDM4OTUzIDkuNTAxODIyMTIsNzI5LjU5OTU3OCBMMTYuNjk3NjYyMiw3MjEuMTE5ODk3IEwxNi43OTUyMjIyLDcyMC45ODYxOTIgQzE3LjExMzI1NTEsNzIwLjQ0ODE0OSAxNy4wNTM0MDk2LDcxOS43OTU0NDQgMTYuNjY3Mzc5OSw3MTkuMzczNTk2IEMxNi4xOTkwNjQ5LDcxOC44NjE4MjcgMTUuNDMwNDE1LDcxOC44NzgyNzUgMTQuOTgwOTI2NCw3MTkuNDA3OTU5IEw4LjU2NjA1NzUzLDcyNi45NjQ1NjUgWiIgaWQ9ImNoZWNrIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-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, -o-transform 0.3s ease-in-out;
}
.wpcf7 label.label-checkbox a {
  display: inline;
  text-decoration: underline;
  color: #b5f6a2;
}
.wpcf7 label:last-child .wpcf7-form-control-wrap {
  margin: 0;
}
@media (min-width: 768px) {
  .wpcf7 label {
    font-size: 2.1rem;
  }
}
.wpcf7 input,
.wpcf7 textarea {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: "BeirutText", sans-serif;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-transition: border-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.wpcf7 input::-webkit-input-placeholder, .wpcf7 textarea::-webkit-input-placeholder {
  opacity: 1;
  color: currentColor;
}
.wpcf7 input::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  opacity: 1;
  color: currentColor;
}
.wpcf7 input:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
  opacity: 1;
  color: currentColor;
}
.wpcf7 input::-ms-input-placeholder, .wpcf7 textarea::-ms-input-placeholder {
  opacity: 1;
  color: currentColor;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  opacity: 1;
  color: currentColor;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #fff;
}
@media (min-width: 768px) {
  .wpcf7 input,
.wpcf7 textarea {
    padding: 1.6rem 0;
    font-size: 2.1rem;
  }
}
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
  border-color: #fc6e6d;
  border-width: 2px;
}
.wpcf7 input.wpcf7-not-valid + .wpcf7-not-valid-tip,
.wpcf7 textarea.wpcf7-not-valid + .wpcf7-not-valid-tip {
  margin-top: 0;
  color: #fc6e6d;
  line-height: 1.2;
  font-size: 0;
}
.wpcf7 textarea {
  line-height: 1.2;
  height: 20rem;
  padding: 2.8rem 2.6rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.wpcf7 form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
  border-color: #fff;
  margin: 0;
  padding: 1em;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .wpcf7 form .wpcf7-response-output {
    margin-top: 3rem;
  }
}
.wpcf7 form.invalid .wpcf7-response-output {
  color: #fc6e6d;
  background-color: #fff;
  border-color: #fff;
}
.wpcf7 form.submitting .border {
  pointer-events: none;
  opacity: 0.5;
}
.wpcf7 form.sent {
  pointer-events: none;
  opacity: 0;
  -webkit-transform: scale(0.5);
       -o-transform: scale(0.5);
          transform: scale(0.5);
}
.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
.wpcf7 .border {
  margin: 3rem auto;
  width: 100%;
  max-width: 50%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.wpcf7 .border input[type=submit] {
  border: none;
  color: inherit;
  cursor: pointer;
  font-style: normal;
  text-transform: uppercase;
  padding: 1.8rem 3.6rem;
}
.wpcf7 .border .ajax-loader {
  display: none;
}
.wpcf7 .border.disabled {
  pointer-events: none;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .wpcf7 .border {
    margin: 4rem auto;
  }
}
.wpcf7 .border .border__content {
  padding: 0;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 2.6rem;
  position: relative;
}
.wpcf7 .wpcf7-list-item {
  margin-left: 3rem;
}

.custom-form-acceptance.hidden {
  display: none;
}

.custom-form-message {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}
.custom-form-message .divider svg path {
  fill: #1e9e79;
}
.custom-form-message .divider:last-child {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.custom-form-message p {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 1.6rem;
}
.custom-form-message p:first-of-type {
  margin-top: 4rem;
}
.custom-form-message p:last-of-type {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .custom-form-message p {
    font-size: 1.9rem;
  }
}
.custom-form-message strong {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .custom-form-message strong {
    font-size: 3.9rem;
  }
}
.custom-form-message.sent {
  opacity: 1;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: initial;
}
.custom-form-message.hidden {
  display: none;
}

/**
  * Woocommerce forms
  */
.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper, .woocommerce-address-fields__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-additional-fields label {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: bold;
  font-style: normal;
  padding-bottom: 1rem;
}
.woocommerce-form__label-for-checkbox {
  position: relative;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2rem;
}
.woocommerce-form__label-for-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.woocommerce-form__label-for-checkbox input:checked + span::before {
  background-color: #246052;
}
.woocommerce-form__label-for-checkbox input:checked + span::after {
  -webkit-transform: scale(0.6);
       -o-transform: scale(0.6);
          transform: scale(0.6);
}
.woocommerce-form__label-for-checkbox span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 3rem;
}
.woocommerce-form__label-for-checkbox span::before {
  content: "";
  display: inline-block;
  background-color: #fff;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #246052;
  margin-right: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.woocommerce-form__label-for-checkbox span::after {
  content: "";
  display: inline;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #a0f996;
  -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTNweCIgaGVpZ2h0PSIxMXB4IiB2aWV3Qm94PSIwIDAgMTMgMTEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+UGF0aDwvdGl0bGU+CiAgICA8ZyBpZD0iTGF5b3V0cyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjA4LUNvbnRhY3RzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzc4LjAwMDAwMCwgLTE1MDAuMDAwMDAwKSIgZmlsbD0iIzAwMDAwMCIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPGcgaWQ9IkZPUk0iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM3NC4wMDAwMDAsIDc4MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjU2NjA1NzUzLDcyNi45NjQ1NjUgTDUuOTQ2NTg0OTEsNzI0LjQwOTk2IEw1LjgyMTUwOTUxLDcyNC4zMDUyMiBDNS4yODAzMDkyNyw3MjMuOTQxNTU5IDQuNjM0MDExMzMsNzI0LjA1OTgxOSA0LjI2NTAwNzQ3LDcyNC41NDY2NTQgQzMuODcwMzk3MDIsNzI1LjA2NzI3MiAzLjkyMTMxNjQsNzI1LjgzNTc1MiA0LjM4NTQ3MjgsNzI2LjI4ODgwMyBMNy44NjI4NjY5Myw3MjkuNjgzIEw3Ljk5ODc2NTk0LDcyOS43OTUzNTkgQzguNTIxNDUxLDczMC4xMzU1MjcgOS4xMjg5NjkyMiw3MzAuMDM4OTUzIDkuNTAxODIyMTIsNzI5LjU5OTU3OCBMMTYuNjk3NjYyMiw3MjEuMTE5ODk3IEwxNi43OTUyMjIyLDcyMC45ODYxOTIgQzE3LjExMzI1NTEsNzIwLjQ0ODE0OSAxNy4wNTM0MDk2LDcxOS43OTU0NDQgMTYuNjY3Mzc5OSw3MTkuMzczNTk2IEMxNi4xOTkwNjQ5LDcxOC44NjE4MjcgMTUuNDMwNDE1LDcxOC44NzgyNzUgMTQuOTgwOTI2NCw3MTkuNDA3OTU5IEw4LjU2NjA1NzUzLDcyNi45NjQ1NjUgWiIgaWQ9ImNoZWNrIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=);
          mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTNweCIgaGVpZ2h0PSIxMXB4IiB2aWV3Qm94PSIwIDAgMTMgMTEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+UGF0aDwvdGl0bGU+CiAgICA8ZyBpZD0iTGF5b3V0cyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjA4LUNvbnRhY3RzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzc4LjAwMDAwMCwgLTE1MDAuMDAwMDAwKSIgZmlsbD0iIzAwMDAwMCIgZmlsbC1ydWxlPSJub256ZXJvIj4KICAgICAgICAgICAgPGcgaWQ9IkZPUk0iIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM3NC4wMDAwMDAsIDc4MS4wMDAwMDApIj4KICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik04LjU2NjA1NzUzLDcyNi45NjQ1NjUgTDUuOTQ2NTg0OTEsNzI0LjQwOTk2IEw1LjgyMTUwOTUxLDcyNC4zMDUyMiBDNS4yODAzMDkyNyw3MjMuOTQxNTU5IDQuNjM0MDExMzMsNzI0LjA1OTgxOSA0LjI2NTAwNzQ3LDcyNC41NDY2NTQgQzMuODcwMzk3MDIsNzI1LjA2NzI3MiAzLjkyMTMxNjQsNzI1LjgzNTc1MiA0LjM4NTQ3MjgsNzI2LjI4ODgwMyBMNy44NjI4NjY5Myw3MjkuNjgzIEw3Ljk5ODc2NTk0LDcyOS43OTUzNTkgQzguNTIxNDUxLDczMC4xMzU1MjcgOS4xMjg5NjkyMiw3MzAuMDM4OTUzIDkuNTAxODIyMTIsNzI5LjU5OTU3OCBMMTYuNjk3NjYyMiw3MjEuMTE5ODk3IEwxNi43OTUyMjIyLDcyMC45ODYxOTIgQzE3LjExMzI1NTEsNzIwLjQ0ODE0OSAxNy4wNTM0MDk2LDcxOS43OTU0NDQgMTYuNjY3Mzc5OSw3MTkuMzczNTk2IEMxNi4xOTkwNjQ5LDcxOC44NjE4MjcgMTUuNDMwNDE1LDcxOC44NzgyNzUgMTQuOTgwOTI2NCw3MTkuNDA3OTU5IEw4LjU2NjA1NzUzLDcyNi45NjQ1NjUgWiIgaWQ9ImNoZWNrIj48L3BhdGg+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  color: transparent;
  -webkit-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-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, -o-transform 0.3s ease-in-out;
}
.woocommerce .form-row {
  color: #246052;
  font-size: 1.6rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 2rem;
}
.woocommerce .form-row label {
  display: block;
}
.woocommerce .form-row label abbr[title] {
  text-decoration: none;
}
.woocommerce .form-row input[type=text],
.woocommerce .form-row input[type=number],
.woocommerce .form-row input[type=email],
.woocommerce .form-row input[type=tel],
.woocommerce .form-row input[type=password],
.woocommerce .form-row textarea {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0.5rem 2rem;
  height: 4rem;
  border: 1px solid currentColor;
  background-color: #fff;
  border-radius: 0;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.woocommerce .form-row input[type=text]:hover, .woocommerce .form-row input[type=text]:active, .woocommerce .form-row input[type=text]:focus,
.woocommerce .form-row input[type=number]:hover,
.woocommerce .form-row input[type=number]:active,
.woocommerce .form-row input[type=number]:focus,
.woocommerce .form-row input[type=email]:hover,
.woocommerce .form-row input[type=email]:active,
.woocommerce .form-row input[type=email]:focus,
.woocommerce .form-row input[type=tel]:hover,
.woocommerce .form-row input[type=tel]:active,
.woocommerce .form-row input[type=tel]:focus,
.woocommerce .form-row input[type=password]:hover,
.woocommerce .form-row input[type=password]:active,
.woocommerce .form-row input[type=password]:focus,
.woocommerce .form-row textarea:hover,
.woocommerce .form-row textarea:active,
.woocommerce .form-row textarea:focus {
  border-color: #1e9e79;
}
.woocommerce .form-row input[type=text]::-webkit-input-placeholder, .woocommerce .form-row input[type=number]::-webkit-input-placeholder, .woocommerce .form-row input[type=email]::-webkit-input-placeholder, .woocommerce .form-row input[type=tel]::-webkit-input-placeholder, .woocommerce .form-row input[type=password]::-webkit-input-placeholder, .woocommerce .form-row textarea::-webkit-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .form-row input[type=text]::-moz-placeholder, .woocommerce .form-row input[type=number]::-moz-placeholder, .woocommerce .form-row input[type=email]::-moz-placeholder, .woocommerce .form-row input[type=tel]::-moz-placeholder, .woocommerce .form-row input[type=password]::-moz-placeholder, .woocommerce .form-row textarea::-moz-placeholder {
  opacity: 0.4;
  color: #246052;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .form-row input[type=text]:-ms-input-placeholder, .woocommerce .form-row input[type=number]:-ms-input-placeholder, .woocommerce .form-row input[type=email]:-ms-input-placeholder, .woocommerce .form-row input[type=tel]:-ms-input-placeholder, .woocommerce .form-row input[type=password]:-ms-input-placeholder, .woocommerce .form-row textarea:-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .form-row input[type=text]::-ms-input-placeholder, .woocommerce .form-row input[type=number]::-ms-input-placeholder, .woocommerce .form-row input[type=email]::-ms-input-placeholder, .woocommerce .form-row input[type=tel]::-ms-input-placeholder, .woocommerce .form-row input[type=password]::-ms-input-placeholder, .woocommerce .form-row textarea::-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .form-row input[type=text]::placeholder,
.woocommerce .form-row input[type=number]::placeholder,
.woocommerce .form-row input[type=email]::placeholder,
.woocommerce .form-row input[type=tel]::placeholder,
.woocommerce .form-row input[type=password]::placeholder,
.woocommerce .form-row textarea::placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .form-row input[type=text] + span,
.woocommerce .form-row input[type=number] + span,
.woocommerce .form-row input[type=email] + span,
.woocommerce .form-row input[type=tel] + span,
.woocommerce .form-row input[type=password] + span,
.woocommerce .form-row textarea + span {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .woocommerce .form-row input[type=text],
.woocommerce .form-row input[type=number],
.woocommerce .form-row input[type=email],
.woocommerce .form-row input[type=tel],
.woocommerce .form-row input[type=password],
.woocommerce .form-row textarea {
    height: 5.6rem;
    padding: 1rem 2rem;
  }
}
.woocommerce .form-row textarea {
  resize: none;
  height: 11rem;
}
.woocommerce .form-row.woocommerce-invalid-required-field {
  color: #fc6e6d;
}
@media (min-width: 768px) {
  .woocommerce .form-row {
    font-size: 1.9rem;
    margin: 0 0 3rem;
  }
}
.woocommerce .form-row-first,
.woocommerce .form-row-last {
  width: 100%;
}
@media (min-width: 768px) {
  .woocommerce .form-row-first,
.woocommerce .form-row-last {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce .form-row-first,
.woocommerce .form-row-last {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.woocommerce .form-row-wide {
  width: 100%;
}
.woocommerce .select2 .select2-selection {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0.5rem 2rem;
  height: 4rem;
  border: 1px solid currentColor;
  background-color: #fff;
  border-radius: 0;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.woocommerce .select2 .select2-selection:hover, .woocommerce .select2 .select2-selection:active, .woocommerce .select2 .select2-selection:focus {
  border-color: #1e9e79;
}
.woocommerce .select2 .select2-selection::-webkit-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .select2 .select2-selection::-moz-placeholder {
  opacity: 0.4;
  color: #246052;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .select2 .select2-selection:-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .select2 .select2-selection::-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .select2 .select2-selection::placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce .select2 .select2-selection + span {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .woocommerce .select2 .select2-selection {
    height: 5.6rem;
    padding: 1rem 2rem;
  }
}
.woocommerce .select2 .select2-selection__arrow {
  display: none;
}
.woocommerce .select2 .select2-selection__rendered {
  color: #246052;
  line-height: 3rem;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .woocommerce .select2 .select2-selection__rendered {
    line-height: 3.4rem;
  }
}
.woocommerce .select2:hover .select2-selection__rendered, .woocommerce .select2:active .select2-selection__rendered {
  color: #fff;
}
.woocommerce #billing_address_1_field,
.woocommerce #shipping_address_1_field {
  margin-bottom: 1rem;
}

/**
  * Select 2
  */
.select2-container .select2-dropdown {
  border-left: 1px solid #246052;
  border-right: 1px solid #246052;
  border-bottom: 1px solid #246052;
  border-radius: 0;
}
.select2-container .select2-search {
  padding: 0;
}
.select2-container .select2-search .select2-search__field {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0.5rem 2rem;
  height: 4rem;
  border: 1px solid currentColor;
  background-color: #fff;
  border-radius: 0;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  border-left: none;
  border-right: none;
  border-color: #246052;
}
.select2-container .select2-search .select2-search__field:hover, .select2-container .select2-search .select2-search__field:active, .select2-container .select2-search .select2-search__field:focus {
  border-color: #1e9e79;
}
.select2-container .select2-search .select2-search__field::-webkit-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-search .select2-search__field::-moz-placeholder {
  opacity: 0.4;
  color: #246052;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-search .select2-search__field:-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-search .select2-search__field::-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-search .select2-search__field::placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-search .select2-search__field + span {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .select2-container .select2-search .select2-search__field {
    height: 5.6rem;
    padding: 1rem 2rem;
  }
}
.select2-container .select2-results__option {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0.5rem 2rem;
  height: 4rem;
  border: 1px solid currentColor;
  background-color: #fff;
  border-radius: 0;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  border: none;
  font-size: 1.6rem;
  font-style: italic;
}
.select2-container .select2-results__option:hover, .select2-container .select2-results__option:active, .select2-container .select2-results__option:focus {
  border-color: #1e9e79;
}
.select2-container .select2-results__option::-webkit-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-results__option::-moz-placeholder {
  opacity: 0.4;
  color: #246052;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-results__option:-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-results__option::-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-results__option::placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.select2-container .select2-results__option + span {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .select2-container .select2-results__option {
    height: 5.6rem;
    padding: 1rem 2rem;
  }
}
@media (min-width: 768px) {
  .select2-container .select2-results__option {
    font-size: 1.9rem;
  }
}
.select2-container .select2-results__option--highlighted[data-selected] {
  background-color: #246052;
}

.marquee {
  width: 100%;
  background-color: #246052;
  position: relative;
  overflow: hidden;
}
.marquee__original {
  color: #fff;
  font-size: 2rem;
  line-height: 4rem;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  overflow: hidden;
  position: absolute;
  left: -1000%;
  height: 0;
}
@media (min-width: 950px) {
  .marquee__original {
    font-size: 4.5rem;
    line-height: 7.1rem;
  }
}
.marquee__container {
  color: #fff;
  font-size: 2rem;
  line-height: 4rem;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}
@media (min-width: 950px) {
  .marquee__container {
    font-size: 4.5rem;
    line-height: 7.1rem;
  }
}
.white .marquee__container {
  color: #fff;
}
.green .marquee__container {
  color: #1e9e79;
}
.marquee__element {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.marquee--animation .marquee__element {
  -webkit-animation: marquee 10s linear infinite;
       -o-animation: marquee 10s linear infinite;
          animation: marquee 10s linear infinite;
}
.marquee__separator {
  width: 4px;
  height: 4px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 10px;
}
@media (min-width: 950px) {
  .marquee__separator {
    width: 8px;
    height: 8px;
    margin: 0 20px;
  }
}
.white .marquee__separator {
  background-color: #fff;
}
.green .marquee__separator {
  background-color: #b5f6a2;
}
.marquee__close {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: #1e9e79;
  width: 71px;
}
.marquee__close svg {
  fill: #246052;
}
.marquee.global {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  height: 71px;
  -webkit-transition: height 250ms ease-in-out, opacity 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  transition: height 250ms ease-in-out, opacity 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  -o-transition: height 250ms ease-in-out, opacity 250ms ease-in-out, -o-transform 250ms ease-in-out;
  transition: height 250ms ease-in-out, opacity 250ms ease-in-out, transform 250ms ease-in-out;
  transition: height 250ms ease-in-out, opacity 250ms ease-in-out, transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out, -o-transform 250ms ease-in-out;
}
.marquee.global .marquee__container {
  color: #1e9e79;
}
.marquee.global .marquee__separator {
  background-color: #a0f996;
}
.marquee.global.hide {
  opacity: 0;
  height: 0;
}
header.headroom--unpinned .marquee.global {
  -webkit-transform: translateY(-4rem);
       -o-transform: translateY(-4rem);
          transform: translateY(-4rem);
  opacity: 0;
}
body.js-menu-open .marquee.global {
  height: 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  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;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(70, 56, 44, 0.79);
}
.modal__container {
  z-index: 1;
  position: relative;
  max-width: calc(100vw - 4rem);
  max-height: calc(100vh - 12rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: scale(0.5);
       -o-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-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, -o-transform 0.3s ease-in-out;
}
@media (min-width: 950px) {
  .modal__container {
    max-width: calc(100vw - 12rem);
    max-height: calc(100vh - 4rem);
  }
}
.modal__scroller {
  width: 100%;
  overflow: auto;
}
.modal__content {
  width: 100%;
  background-color: #fff;
}
.modal__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.modal__desktop-image, .modal__desktop-video, .modal__mobile-image {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.modal__desktop-image.invisible, .modal__desktop-video.invisible, .modal__mobile-image.invisible {
  opacity: 0;
  pointer-events: none;
}
.modal__desktop-image.absolute, .modal__desktop-video.absolute, .modal__mobile-image.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__desktop-image, .modal__mobile-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.modal__desktop-image {
  display: none;
}
@media (min-width: 950px) {
  .modal__desktop-image {
    display: block;
  }
}
@media (min-width: 950px) {
  .modal__mobile-image {
    display: none;
  }
}
.modal__desktop-video {
  display: none;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.modal__desktop-video[disabled] {
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 950px) {
  .modal__desktop-video {
    display: block;
  }
}
.modal__controllers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.modal__close {
  width: 3.3rem;
  height: 3.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  -webkit-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
  top: 0;
  right: 0;
  background-color: #e6e0c1;
}
.modal__close svg {
  fill: #246052;
}
@media (min-width: 950px) {
  .modal__close {
    width: 4rem;
    height: 4rem;
    top: 0;
    -webkit-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.modal.open {
  opacity: 1;
  pointer-events: initial;
}
.modal.open .modal__container {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.social {
  width: 100%;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .social {
    padding: 2rem 0;
  }
}
.social__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media (min-width: 768px) {
  .social__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.social__list:hover .social__action {
  opacity: 0.5;
}
.social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social__action {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  position: relative;
}
.social__action:hover, .social__action:active, .social__action:focus {
  opacity: 1 !important;
}
.social__action .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;
  padding: 0.8rem;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: #fff;
  pointer-events: none;
  margin-right: 1rem;
}
.social__action .icon:last-child {
  margin-right: 0;
}
.social__action .icon svg {
  fill: #246052;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .social__action .icon {
    width: 3.6rem;
    height: 3.6rem;
    padding: 0.6rem;
  }
}
.social__action .text {
  display: none;
  overflow: hidden;
  max-width: 20rem;
  padding: 0.6rem 0;
  -webkit-transition: max-width 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -o-transition: max-width 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: max-width 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.social__action .text.hidden {
  max-width: 0;
  opacity: 0;
}
@media (min-width: 768px) {
  .social__action .text {
    display: block;
  }
}
.social .sharethis-inline-share-buttons {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-right: 1rem;
  max-width: 0;
  overflow: hidden;
  -webkit-transition: max-width 0.2s ease-in-out !important;
  -o-transition: max-width 0.2s ease-in-out !important;
  transition: max-width 0.2s ease-in-out !important;
}
.social .sharethis-inline-share-buttons .st-btn {
  display: block !important;
  opacity: 1;
  margin-right: 1rem !important;
  -webkit-transition: opacity 0.3s ease-in-out !important;
  -o-transition: opacity 0.3s ease-in-out !important;
  transition: opacity 0.3s ease-in-out !important;
}
.social .sharethis-inline-share-buttons .st-btn:hover, .social .sharethis-inline-share-buttons .st-btn:active {
  opacity: 0.5 !important;
  top: 0 !important;
}
.social .sharethis-inline-share-buttons .st-btn:last-child {
  margin-right: 0 !important;
}
.social .sharethis-inline-share-buttons.active {
  max-width: 20rem;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 1rem auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 1rem;
  height: auto;
}

@media (min-width: 30rem) {
  .alignleft {
    float: left;
    margin-right: 1rem;
  }

  .alignright {
    float: right;
    margin-left: 1rem;
  }
}
section.block-404 {
  position: relative;
  width: 100%;
  text-align: center;
  font-family: "BeirutText", sans-serif;
  line-height: 1.2;
}
section.block-404 .frame {
  width: 100%;
  display: block;
  margin: 0 auto;
}
section.block-404 .frame svg {
  width: 100%;
  fill: #246052;
}
section.block-404 .frame svg path {
  fill: #246052;
}
section.block-404 .frame:last-of-type {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 1200px) {
  section.block-404 {
    width: calc((100% * 5.5 / 8) - calc(2.5 * 20px / 8));
    margin: 0 auto;
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  section.block-404 {
    width: calc((100% * 5.5 / 8) - calc(2.5 * 30px / 8));
  }
}
section.block-404 article {
  width: 100%;
  margin: 0 auto;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  section.block-404 article {
    width: 60%;
  }
}
section.block-404 h1 span {
  display: block;
  text-transform: uppercase;
}
section.block-404 h1 .big {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 6rem;
}
@media (min-width: 768px) {
  section.block-404 h1 .big {
    font-size: 9rem;
  }
}
section.block-404 h1 .small {
  font-family: "BeirutText", sans-serif;
  font-size: 2.7rem;
  font-weight: normal;
}
section.block-404 p {
  font-size: 2.5rem;
  line-height: 1.4;
  margin: 0;
}
section.block-404 ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
section.block-404 li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
section.block-404 li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
section.block-404 li p {
  font-family: "BeirutText", sans-serif;
  font-size: 1.9rem;
  font-style: italic;
}
section.block-404 li a {
  font-style: normal;
  color: #a0f996;
  text-decoration: underline;
}

.grid__container.layout {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  pointer-events: none;
  background-color: transparent;
}
.grid__container.layout span {
  width: calc((100% * 1 / 8) - calc(7 * 20px / 8));
  display: block;
  background-color: paleturquoise;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .grid__container.layout span {
    width: calc((100% * 1 / 8) - calc(7 * 30px / 8));
  }
}
.grid__container.layout span:last-child {
  margin-right: 0;
}

.search-block {
  background-color: #246052;
  color: #fff;
  overflow: hidden;
}
.search-block__form {
  width: 100%;
  background: #004b3a;
  margin-bottom: 2.5rem;
}
.search-block__form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.search-block__form input {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: "BeirutText", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 20px;
  background: transparent;
  font-size: 1.6rem;
  color: #b5f6a2;
}
.search-block__form input::-webkit-input-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
.search-block__form input::-moz-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
.search-block__form input:-ms-input-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
.search-block__form input::-ms-input-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
.search-block__form input::placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .search-block__form input {
    padding: 0 4rem;
    font-size: 2.1rem;
  }
  .search-block__form input::-webkit-input-placeholder {
    font-size: inherit;
  }
  .search-block__form input::-moz-placeholder {
    font-size: inherit;
  }
  .search-block__form input:-ms-input-placeholder {
    font-size: inherit;
  }
  .search-block__form input::-ms-input-placeholder {
    font-size: inherit;
  }
  .search-block__form input::placeholder {
    font-size: inherit;
  }
}
.search-block__form input:focus {
  outline: none;
}
.search-block__form button {
  width: 5rem;
  height: 5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #1e9e79;
}
.search-block__form button svg {
  width: 100%;
  height: 100%;
  max-width: 6rem;
  max-height: 6rem;
  fill: #fff;
}
@media (min-width: 768px) {
  .search-block__form button {
    width: 82px;
    height: 82px;
  }
}
@media (min-width: 768px) {
  .search-block__form {
    margin-bottom: 5rem;
  }
}
.search-block__counter {
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 4.35px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #a0f996;
  position: relative;
  padding-bottom: 0.5rem;
}
.search-block__counter::after {
  content: "";
  display: block;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.search-block__counter span {
  color: #fff;
}
@media (min-width: 768px) {
  .search-block__counter {
    letter-spacing: 5.93px;
    font-size: 1.4rem;
    padding-bottom: 3rem;
  }
}
.search-block__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.search-block__list::after {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #000;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.search-block__list.loading::after {
  opacity: 0.5;
  pointer-events: all;
}
.search-block__item {
  position: relative;
}
.search-block__item::after {
  content: "";
  display: block;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.search-block__item:empty {
  display: none;
}
.search-block__article__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.6rem 0;
}
.search-block__article__container:hover .search-block__article__content header h2, .search-block__article__container:active .search-block__article__content header h2, .search-block__article__container:focus .search-block__article__content header h2 {
  color: #b5f6a2;
}
.search-block__article__container:hover .search-block__article__content::after, .search-block__article__container:active .search-block__article__content::after, .search-block__article__container:focus .search-block__article__content::after {
  -webkit-transform: translate(25%, -25%);
       -o-transform: translate(25%, -25%);
          transform: translate(25%, -25%);
  opacity: 1;
}
@media (min-width: 768px) {
  .search-block__article__container {
    padding: 4rem 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.search-block__article__image {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 13rem;
  margin-right: 30px;
}
.search-block__article__image::before {
  content: "";
  display: block;
  padding-bottom: 134%;
}
.search-block__article__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.search-block__article__image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.search-block__article__content {
  width: 100%;
  padding-right: 4rem;
  position: relative;
}
.search-block__article__content::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-mask-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbi9hcnJvdzwvdGl0bGU+CiAgICA8ZyBpZD0iaWNvbi9hcnJvdyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBvbHlnb24gaWQ9IlBhdGgiIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuOTczMDYwLCAzMC4yNDI2MDUpIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTI5Ljk3MzA2MCwgLTMwLjI0MjYwNSkgIiBwb2ludHM9IjE5IDMwLjIzNTUxIDIzLjIzNTQ0IDM0LjQ4NTIxIDI0LjY1MjA0IDMzLjA3MzQxIDIyLjgzMDY4IDMxLjI0NTkxIDQwLjk0NjEyIDMxLjI0MzgxIDQwLjk0NTgyIDI5LjI0MzgxIDIyLjgyNjExIDI5LjI0NTkxIDI0LjY2MTYyIDI3LjQxNjU5IDIzLjI0OTc5IDI2Ij48L3BvbHlnb24+CiAgICA8L2c+Cjwvc3ZnPgo=);
          mask-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbi9hcnJvdzwvdGl0bGU+CiAgICA8ZyBpZD0iaWNvbi9hcnJvdyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBvbHlnb24gaWQ9IlBhdGgiIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuOTczMDYwLCAzMC4yNDI2MDUpIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTI5Ljk3MzA2MCwgLTMwLjI0MjYwNSkgIiBwb2ludHM9IjE5IDMwLjIzNTUxIDIzLjIzNTQ0IDM0LjQ4NTIxIDI0LjY1MjA0IDMzLjA3MzQxIDIyLjgzMDY4IDMxLjI0NTkxIDQwLjk0NjEyIDMxLjI0MzgxIDQwLjk0NTgyIDI5LjI0MzgxIDIyLjgyNjExIDI5LjI0NTkxIDI0LjY2MTYyIDI3LjQxNjU5IDIzLjI0OTc5IDI2Ij48L3BvbHlnb24+CiAgICA8L2c+Cjwvc3ZnPgo=);
  background-color: #a0f996;
  height: 6rem;
  width: 6rem;
  -webkit-transform: translate(-25%, -25%);
       -o-transform: translate(-25%, -25%);
          transform: translate(-25%, -25%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}
.search-block__article__content h2 {
  font-family: "BeirutText", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .search-block__article__content h2 {
    font-size: 2.5rem;
    margin: 0;
  }
}
.search-block__article__content p {
  display: none;
  font-size: 1.9rem;
  line-height: 1.5;
  margin: 1.6rem 0 1.8rem;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .search-block__article__content p {
    display: block;
  }
}
.search-block__article__content time {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .search-block__article__content time {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .search-block__article {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .search-block__article {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
.search-block__action {
  width: 100%;
  padding: 4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.search-block__action button.loading {
  pointer-events: none;
  opacity: 0.5;
}
.search-block__action button.hidden {
  display: none;
}
.search-block__alert {
  width: 100%;
  padding: 1.6rem 0;
  text-align: center;
  position: relative;
}
.search-block__alert::after {
  content: "";
  display: block;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .search-block__alert {
    padding: 4rem 0;
  }
}

div.search-block__article__container header::after {
  content: none;
}

.footer {
  background: #246052;
  color: #fff;
}
.footer a {
  color: inherit;
}
.single-product .footer {
  padding-bottom: 145px;
}
@media (min-width: 768px) {
  .single-product .footer {
    padding-bottom: 0;
  }
}
.footer__top {
  padding: 34px 20px 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__top {
    padding: 48px 50px 25px;
  }
}
.footer .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .social-links .rotating-button {
  width: 85px;
  height: 85px;
  margin: 0 10px;
}
@media (min-width: 768px) {
  .footer .social-links .rotating-button {
    width: 134px;
    height: 134px;
  }
}
.footer__marquee {
  margin: 10px 0 5px;
}
@media (min-width: 768px) {
  .footer__marquee {
    margin: 0;
  }
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer li {
  list-style: none;
  padding: 0;
}
.footer__menu-nav li {
  height: 73px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__menu-nav li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__menu-nav li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 1.7rem;
  line-height: 2rem;
  font-style: italic;
  padding: 0 20px;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.footer__menu-nav li a::after {
  content: "";
  display: block;
  width: 22px;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -5px;
  -webkit-mask-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIxMHB4IiB2aWV3Qm94PSIwIDAgMjIgMTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZyBpZD0iRGVzaWduLVN5c3RlbSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Imljb24vbWVudS1jb3B5LTciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NjcuMDAwMDAwLCAtNjI3LjAwMDAwMCkiPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0NDguMDAwMDAwLCA2MDIuMDAwMDAwKSIgaWQ9ImFycm93LWxvbmctbGVmdCI+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMC4wMDAwMDAsIDMwLjAwMDAwMCkgc2NhbGUoLTEsIDEpIHRyYW5zbGF0ZSgtMzAuMDAwMDAwLCAtMzAuMDAwMDAwKSB0cmFuc2xhdGUoMTkuMDAwMDAwLCAyNS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8cG9seWdvbiBpZD0iUGF0aCIgZmlsbD0iI2ZmZmZmZiIgZmlsbC1ydWxlPSJub256ZXJvIiBwb2ludHM9IjAuMDI2OTggNC45OTI5IDQuMjYyNDIgOS4yNDI2IDUuNjc5MDIgNy44MzA4IDMuODU3NjYgNi4wMDMzIDIxLjk3MzEgNi4wMDEyIDIxLjk3MjggNC4wMDEyIDMuODUzMDkgNC4wMDMzIDUuNjg4NiAyLjE3Mzk4IDQuMjc2NzcgMC43NTczOSI+PC9wb2x5Z29uPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K);
          mask-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjJweCIgaGVpZ2h0PSIxMHB4IiB2aWV3Qm94PSIwIDAgMjIgMTAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8ZyBpZD0iRGVzaWduLVN5c3RlbSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9Imljb24vbWVudS1jb3B5LTciIHRyYW5zZm9ybT0idHJhbnNsYXRlKC00NjcuMDAwMDAwLCAtNjI3LjAwMDAwMCkiPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg0NDguMDAwMDAwLCA2MDIuMDAwMDAwKSIgaWQ9ImFycm93LWxvbmctbGVmdCI+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMC4wMDAwMDAsIDMwLjAwMDAwMCkgc2NhbGUoLTEsIDEpIHRyYW5zbGF0ZSgtMzAuMDAwMDAwLCAtMzAuMDAwMDAwKSB0cmFuc2xhdGUoMTkuMDAwMDAwLCAyNS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8cG9seWdvbiBpZD0iUGF0aCIgZmlsbD0iI2ZmZmZmZiIgZmlsbC1ydWxlPSJub256ZXJvIiBwb2ludHM9IjAuMDI2OTggNC45OTI5IDQuMjYyNDIgOS4yNDI2IDUuNjc5MDIgNy44MzA4IDMuODU3NjYgNi4wMDMzIDIxLjk3MzEgNi4wMDEyIDIxLjk3MjggNC4wMDEyIDMuODUzMDkgNC4wMDMzIDUuNjg4NiAyLjE3Mzk4IDQuMjc2NzcgMC43NTczOSI+PC9wb2x5Z29uPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.footer__menu-nav li a:hover, .footer__menu-nav li a:active, .footer__menu-nav li a:focus {
  color: #b5f6a2;
}
.footer__menu-nav li a:hover::after, .footer__menu-nav li a:active::after, .footer__menu-nav li a:focus::after {
  background-color: #b5f6a2;
}
@media (min-width: 768px) {
  .footer__menu-nav li {
    height: 80px;
  }
  .footer__menu-nav li a {
    font-size: 2rem;
    line-height: 2.4rem;
    padding: 0 30px;
  }
  .footer__menu-nav li a::after {
    right: 30px;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2rem 20px;
}
@media (min-width: 768px) {
  .footer__bottom {
    height: 90px;
    padding: 0 30px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer__bottom > a {
  margin-left: 0;
  margin-right: auto;
  padding-right: 1.6rem;
}
.footer__bottom > a img {
  max-height: 4rem;
}
.footer__bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 475px) {
  .footer__bottom ul {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 475px) {
  .footer__bottom li {
    position: relative;
    margin: 0 17px;
  }
  .footer__bottom li::after {
    content: "";
    position: absolute;
    right: -19px;
    top: 50%;
    margin-top: -2px;
    display: block;
    width: 4px;
    height: 4px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .footer__bottom li:last-child {
    margin-right: 0;
  }
  .footer__bottom li:last-child::after {
    display: none;
  }
}
.footer__bottom li a {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5rem;
  display: block;
  margin: 1rem 0;
}
.footer__internationalization {
  width: 100%;
  height: 64px;
  background: #fff;
  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: 0 20px;
  overflow: hidden;
  position: sticky;
  bottom: 0;
  z-index: 3;
}
.footer__internationalization a {
  width: auto;
  height: 50px;
  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;
}
.single-product .footer__internationalization {
  border-top: 1px solid #246052;
}
@media (min-width: 768px) {
  .single-product .footer__internationalization {
    border-top: 0;
  }
}
.footer__logo-compete {
  display: block;
  width: 89px;
  height: 26px;
  background: url(/wp-content/themes/cristal/dist/images/svg/logo_compete.svg) no-repeat center;
  margin: 0 15px;
  overflow: hidden;
}
.footer__logo-pt {
  display: block;
  width: 78px;
  height: 24px;
  background: url(/wp-content/themes/cristal/dist/images/svg/logo_pt.svg) no-repeat center;
  margin: 0 15px;
  overflow: hidden;
}
.footer__logo-ue {
  display: block;
  width: 91px;
  height: 27px;
  background: url(/wp-content/themes/cristal/dist/images/svg/logo_ue.svg) no-repeat center;
  margin: 0 15px;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  z-index: 100;
  border-bottom: 1px solid currentColor;
  -webkit-transition: border-color 250ms ease-out, height 250ms ease-in-out;
  -o-transition: border-color 250ms ease-out, height 250ms ease-in-out;
  transition: border-color 250ms ease-out, height 250ms ease-in-out;
  --header-fg: #246052;
}
.header.header--dark, body.search-results header.header, body.error404 header.header, body.single-recipe header.header,
body.single-press header.header {
  border-bottom: 1px solid #fff;
  --header-fg: #fff;
}
.header__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 82px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  display: block;
  width: 118px;
}
.header__logo svg {
  display: block;
  width: 100%;
}
.header__logo path {
  fill: var(--header-fg);
  -webkit-transition: fill 0.3s ease-out;
  -o-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}
.js-light-header .header__logo path {
  fill: #fff;
}
.header__menu-button {
  position: absolute;
  left: 10px;
  width: 6rem;
  height: 6rem;
  -webkit-transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  -o-transition: opacity 250ms ease-out, -o-transform 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out, -webkit-transform 250ms ease-out, -o-transform 250ms ease-out;
}
@media (min-width: 768px) {
  .header__menu-button {
    left: 40px;
  }
}
.header__menu-button span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 125ms ease-out;
  -o-transition: all 125ms ease-out;
  transition: all 125ms ease-out;
}
.header__menu-button span.header__menu-button-close {
  fill: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotateX(90deg);
          transform: translate(-50%, -50%) rotateX(90deg);
}
.js-menu-open .header__menu-button span.header__menu-button-close {
  -webkit-transform: translate(-50%, -50%) rotateX(0deg);
          transform: translate(-50%, -50%) rotateX(0deg);
  -webkit-transition-delay: 125ms;
       -o-transition-delay: 125ms;
          transition-delay: 125ms;
}
.header__menu-button .header__menu-button-open-holder {
  -webkit-transition: all 125ms ease-out;
  -o-transition: all 125ms ease-out;
  transition: all 125ms ease-out;
  -webkit-transition-delay: 125ms;
       -o-transition-delay: 125ms;
          transition-delay: 125ms;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.js-menu-open .header__menu-button .header__menu-button-open-holder {
  fill: #fff;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transition-delay: 0ms;
       -o-transition-delay: 0ms;
          transition-delay: 0ms;
}
.header__menu-button .header__menu-button-open path {
  fill: var(--header-fg);
}
.header__menu-button::before, .header__menu-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #246052;
  -webkit-transform: scale(0);
       -o-transform: scale(0);
          transform: scale(0);
  pointer-events: none;
}
.header__menu-button::after {
  opacity: 0;
  -webkit-transition: opacity 250ms linear, -webkit-transform 250ms ease-out;
  transition: opacity 250ms linear, -webkit-transform 250ms ease-out;
  -o-transition: opacity 250ms linear, -o-transform 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms linear;
  transition: transform 250ms ease-out, opacity 250ms linear, -webkit-transform 250ms ease-out, -o-transform 250ms ease-out;
  z-index: -1;
}
.header__menu-button::before {
  -webkit-transition: all 700ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 700ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 700ms cubic-bezier(0.86, 0, 0.07, 1);
}
.js-menu-open .header__menu-button::before {
  -webkit-transform: scale(var(--scale-menu));
       -o-transform: scale(var(--scale-menu));
          transform: scale(var(--scale-menu));
}
.header__menu-button svg g {
  position: relative;
  -webkit-transition: fill 250ms ease-out;
  -o-transition: fill 250ms ease-out;
  transition: fill 250ms ease-out;
}
.header__menu-button .header__menu-button-open-h {
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out;
  -o-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}
.header__menu-button .header__menu-button-open-h path {
  fill: #fff;
}
.header__menu-button:hover .header__menu-button-open-h {
  opacity: 1;
}
.header__menu-button:hover::after {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.header__nav {
  position: absolute;
  right: 52px;
  -webkit-transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  -o-transition: opacity 250ms ease-out, -o-transform 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out, -webkit-transform 250ms ease-out, -o-transform 250ms ease-out;
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__nav ul.menu {
  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;
  opacity: 1;
  pointer-events: initial;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav ul.menu li {
  position: relative;
  margin: 0 13px;
}
.header__nav ul.menu li::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  margin-top: -2px;
  display: block;
  width: 4px;
  height: 4px;
  background-color: var(--header-fg);
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__nav ul.menu li:last-child {
  margin-right: 0;
}
.header__nav ul.menu li:last-child::after {
  display: none;
}
.header__nav ul.menu a {
  font-size: 1.6rem;
  font-style: italic;
  color: var(--header-fg);
  text-transform: lowercase;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.header__nav ul.menu a:hover, .header__nav ul.menu a:active, .header__nav ul.menu a:focus {
  opacity: 0.5;
}
.header__cart-button {
  position: absolute;
  right: 15px;
  top: 22px;
  width: 40px;
  height: 40px;
  -webkit-transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  -o-transition: opacity 250ms ease-out, -o-transform 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out, -webkit-transform 250ms ease-out, -o-transform 250ms ease-out;
}
.header__cart-button svg {
  width: 32px;
}
@media (min-width: 768px) {
  .header__cart-button {
    display: none;
  }
}
.header__cart-button path {
  fill: var(--header-fg);
}
.header.headroom {
  will-change: background-color;
  -webkit-transition: background-color 250ms ease-out, height 250ms ease-in-out;
  -o-transition: background-color 250ms ease-out, height 250ms ease-in-out;
  transition: background-color 250ms ease-out, height 250ms ease-in-out;
}
.header.headroom .header__logo {
  will-change: transform, opacity;
  -webkit-transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  -o-transition: opacity 250ms ease-out, -o-transform 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out;
  transition: transform 250ms ease-out, opacity 250ms ease-out, -webkit-transform 250ms ease-out, -o-transform 250ms ease-out;
}
.header.headroom--pinned .header__logo {
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.header.headroom--not-top {
  background-color: #fff;
  --header-fg: #246052;
}
.header.headroom--not-top.header--dark, body.search-results header.header.headroom--not-top, body.error404 header.header.headroom--not-top, body.single-recipe header.header.headroom--not-top,
body.single-press header.header.headroom--not-top {
  background-color: #246052;
  --header-fg: #fff;
}
.header.headroom--unpinned {
  background-color: transparent !important;
  border-color: transparent !important;
  pointer-events: none;
}
.header.headroom--unpinned .header__logo,
.header.headroom--unpinned .header__menu-button,
.header.headroom--unpinned .header__nav,
.header.headroom--unpinned .header__cart-button {
  -webkit-transform: translateY(-4rem);
       -o-transform: translateY(-4rem);
          transform: translateY(-4rem);
  opacity: 0;
}
body.body--global-marquee .header {
  height: calc(82px + 71px);
}

.menu {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.js-menu-open .menu {
  -webkit-transition: opacity 0.6s ease-in-out 0.3s;
  -o-transition: opacity 0.6s ease-in-out 0.3s;
  transition: opacity 0.6s ease-in-out 0.3s;
  opacity: 1;
}
.menu__scrollable {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  pointer-events: none;
  overflow-y: scroll;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
  background-color: #246052;
}
.js-menu-open .menu__scrollable {
  pointer-events: initial;
}
@media (min-width: 768px) {
  .menu__scrollable {
    padding-bottom: 0;
    overflow: visible;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.menu__top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 82px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.menu__close {
  height: 100%;
  width: 108px;
}
.menu__search {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #004b3a;
  z-index: 2;
}
@media (min-width: 768px) {
  .menu__search {
    position: relative;
    bottom: auto;
    width: auto;
    height: 100%;
  }
}
.js-menu-open .menu__search {
  pointer-events: all;
}
.menu__search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.menu__search input {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: "BeirutText", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 20px;
  background: transparent;
  font-size: 1.6rem;
  color: #b5f6a2;
}
.menu__search input::-webkit-input-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
.menu__search input::-moz-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
.menu__search input:-ms-input-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
.menu__search input::-ms-input-placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
.menu__search input::placeholder {
  font-size: 1.4rem;
  font-style: italic;
  color: #b5f6a2;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .menu__search input {
    padding: 0 4rem;
    font-size: 2.1rem;
  }
  .menu__search input::-webkit-input-placeholder {
    font-size: inherit;
  }
  .menu__search input::-moz-placeholder {
    font-size: inherit;
  }
  .menu__search input:-ms-input-placeholder {
    font-size: inherit;
  }
  .menu__search input::-ms-input-placeholder {
    font-size: inherit;
  }
  .menu__search input::placeholder {
    font-size: inherit;
  }
}
.menu__search input:focus {
  outline: none;
}
.menu__search button {
  width: 5rem;
  height: 5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #1e9e79;
}
.menu__search button svg {
  width: 100%;
  height: 100%;
  max-width: 6rem;
  max-height: 6rem;
  fill: #fff;
}
@media (min-width: 768px) {
  .menu__search button {
    width: 82px;
    height: 82px;
  }
}
.menu ul,
.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu__main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .menu__main-content {
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.js-menu-open .menu__main-content {
  pointer-events: all;
}
.menu__main-content a {
  color: #fff;
}
.menu__image {
  position: relative;
  width: 29vw;
  margin-left: 3.4vw;
  display: none;
}
@media (min-width: 768px) {
  .menu__image {
    display: block;
  }
}
.menu__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.menu__image-bg svg,
.menu__image-bg img {
  position: static;
  width: 100%;
  height: auto;
}
.menu__image-bg svg {
  width: 83%;
  margin: 12.5% 0 12.5% 8.5%;
}
.menu__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 28.7vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .menu__cols {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 6vw;
  }
}
.menu__main {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 6px;
}
@media (min-width: 768px) {
  .menu__main {
    width: 33.94vw;
    margin-right: 0;
    margin-left: 2vw;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    padding-bottom: 0;
  }
}
.menu__main li {
  margin-bottom: 18px;
}
.menu__main li a {
  display: block;
  position: relative;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  -webkit-transition: opacity 250ms ease-out;
  -o-transition: opacity 250ms ease-out;
  transition: opacity 250ms ease-out;
}
.menu__main li a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbi9hcnJvdzwvdGl0bGU+CiAgICA8ZyBpZD0iaWNvbi9hcnJvdyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBvbHlnb24gaWQ9IlBhdGgiIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuOTczMDYwLCAzMC4yNDI2MDUpIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTI5Ljk3MzA2MCwgLTMwLjI0MjYwNSkgIiBwb2ludHM9IjE5IDMwLjIzNTUxIDIzLjIzNTQ0IDM0LjQ4NTIxIDI0LjY1MjA0IDMzLjA3MzQxIDIyLjgzMDY4IDMxLjI0NTkxIDQwLjk0NjEyIDMxLjI0MzgxIDQwLjk0NTgyIDI5LjI0MzgxIDIyLjgyNjExIDI5LjI0NTkxIDI0LjY2MTYyIDI3LjQxNjU5IDIzLjI0OTc5IDI2Ij48L3BvbHlnb24+CiAgICA8L2c+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-position: center;
  height: 6rem;
  width: 6rem;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  transition: opacity 250ms ease-out, -webkit-transform 250ms ease-out;
  -o-transition: opacity 250ms ease-out, -o-transform 250ms ease-out;
  transition: opacity 250ms ease-out, transform 250ms ease-out;
  transition: opacity 250ms ease-out, transform 250ms ease-out, -webkit-transform 250ms ease-out, -o-transform 250ms ease-out;
}
@media (min-width: 768px) {
  .menu__main li {
    margin-bottom: 2vw;
  }
  .menu__main li a {
    font-weight: 900;
    font-family: "BeirutDisplay", sans-serif;
    font-size: 2.8vw;
    line-height: 3.6vw;
  }
}
.menu__main ul:hover a {
  opacity: 0.3;
}
.menu__main ul:hover a:hover {
  opacity: 1;
}
.menu__main ul:hover a:hover::after {
  opacity: 1;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.menu__main-footer {
  display: none;
}
@media (min-width: 768px) {
  .menu__main-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.js-menu-open .menu__main-footer {
  pointer-events: all;
}
.menu__main-footer .rotating-button {
  width: 6.1vw;
  margin-right: 1.4vw;
  fill: #fff;
}
.menu__main-footer .rotating-button__center {
  width: 2.2vw;
  height: 2.2vw;
}
.menu__secondary {
  padding-top: 20px;
  padding-bottom: 16px;
}
.menu__secondary li {
  margin-bottom: 3px;
}
.menu__secondary li a {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-style: italic;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.menu__secondary li a:hover, .menu__secondary li a:active, .menu__secondary li a:focus {
  color: #b5f6a2;
}
@media (min-width: 768px) {
  .menu__secondary {
    width: 30vw;
    padding-left: 3.5vw;
    padding-top: 0.1vw;
    padding-bottom: 0;
  }
  .menu__secondary li {
    margin-bottom: 0.75vw;
  }
  .menu__secondary li a {
    font-size: 1.45vw;
    line-height: 2vw;
  }
}
.menu__bottom-bar {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .menu__bottom-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 64px;
    padding-right: 50px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.js-menu-open .menu__bottom-bar {
  pointer-events: all;
}
@media (min-width: 768px) {
  .menu__bottom-bar ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.menu__bottom-bar li {
  margin: 14px 0;
}
@media (min-width: 768px) {
  .menu__bottom-bar li {
    position: relative;
    margin: 0 17px;
  }
  .menu__bottom-bar li::after {
    content: "";
    position: absolute;
    right: -19px;
    top: 50%;
    margin-top: -2px;
    display: block;
    width: 4px;
    height: 4px;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .menu__bottom-bar li:last-child {
    margin-right: 0;
  }
  .menu__bottom-bar li:last-child::after {
    display: none;
  }
}
.menu__bottom-bar .menu-item a {
  display: block;
  font-size: 1.3rem;
  line-height: 2rem;
  font-style: italic;
  color: #fff;
}
@media (min-width: 768px) {
  .menu__bottom-bar .menu-item a {
    line-height: 1.5rem;
  }
}
.menu__bottom-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}
@media (min-width: 768px) {
  .menu__bottom-nav {
    border-top: none;
    padding-top: 0;
  }
}
.menu__bottom-bar-social {
  padding-top: 10px;
}
.menu__bottom-bar-social .social-links a {
  width: 68px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .menu__bottom-bar-social {
    display: none;
  }
}
.menu__mobile-top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  height: 84px;
  background: #246052;
  width: calc(100% - 80px);
  right: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 20px;
}
.js-menu-open .menu__mobile-top-bar {
  pointer-events: all;
}
@media (min-width: 768px) {
  .menu__mobile-top-bar {
    display: none;
  }
}
.menu__mobile-top-bar nav {
  color: #fff;
}
.menu__mobile-top-bar nav a {
  color: inherit;
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-style: italic;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.menu__mobile-top-bar nav a:hover, .menu__mobile-top-bar nav a:active, .menu__mobile-top-bar nav a:focus {
  opacity: 1;
}
.menu__mobile-top-bar nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: static;
}
.js-menu-open .menu__mobile-top-bar nav ul {
  pointer-events: initial;
}
.menu__mobile-top-bar nav li {
  position: relative;
  margin-right: 25px;
}
.menu__mobile-top-bar nav li::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  display: block;
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}
.menu__mobile-top-bar nav li:last-child {
  margin-right: 0;
}
.menu__mobile-top-bar nav li:last-child::after {
  display: none;
}

body.single-recipe,
body.single-press {
  background-color: #246052;
  color: #fff;
}
body.single-recipe main.main,
body.single-press main.main {
  padding-top: 82px;
}

body.single-press main.main > .grid__container {
  position: relative;
}

body.error404 {
  background-color: #1e9e79;
  color: #fff;
}
body.error404 main.main {
  padding-top: 82px;
  min-height: 100vh;
  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;
}
body.error404 .grid__container,
body.error404 .grid {
  width: 100%;
}
body.error404 footer.footer {
  display: none;
}

body.search-results {
  background-color: #246052;
}
body.single-recipe.body--global-marquee main.main,
body.single-press.body--global-marquee main.main,
body.error404.body--global-marquee main.main,
body.search-results.body--global-marquee main.main {
  border-color: blue;
  padding-top: calc(82px + 71px);
}

main.main {
  -webkit-transition: padding 250ms ease-in-out;
  -o-transition: padding 250ms ease-in-out;
  transition: padding 250ms ease-in-out;
}
body.body--global-marquee main.top {
  padding-top: 71px;
}
body.body--global-marquee.js-menu-open main.top, body.home main.top {
  padding-top: 0;
}
main.non-top {
  padding-top: 82px;
}
body.body--global-marquee main.non-top {
  padding-top: calc(82px + 71px);
}
body.body--global-marquee.js-menu-open main.non-top {
  padding-top: 82px;
}

/**
*Set styling from content inserted as wysiwyg / paragraph block.
*/
.wysiwyg {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .wysiwyg {
    font-size: 1.9rem;
    line-height: 1.7;
  }
}
.wysiwyg p {
  margin: 0 0 3rem;
}
.wysiwyg a {
  text-decoration: underline;
  color: #b5f6a2;
}
.wysiwyg figure {
  margin: 3rem 0;
}
.wysiwyg figure img {
  margin: 0;
}
.wysiwyg img {
  width: 100% !important;
  height: auto;
  display: block;
  margin: 3rem 0;
}
.wysiwyg figcaption {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  line-height: 1.2;
}
.wysiwyg ul,
.wysiwyg ol {
  margin: 3rem 0;
  list-style: none;
}
.wysiwyg ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wysiwyg ul li {
  font-size: inherit;
  font-family: inherit;
  line-height: 1.9;
  position: relative;
  padding-left: 3.8rem;
  margin: 1rem 0;
}
.wysiwyg ul li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fff;
  border-radius: 9999px;
  opacity: 0.5;
  position: absolute;
  left: 1.8rem;
  top: 1.4rem;
  color: currentColor;
}
.wysiwyg ul > p {
  margin: 0;
}
.wysiwyg ol {
  counter-reset: item item-header;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wysiwyg ol li {
  font-size: inherit;
  font-family: inherit;
  line-height: 1.9;
  position: relative;
  padding-left: 3.8rem;
  margin: 1rem 0;
}
.wysiwyg ol li::before {
  font-size: 1.6rem;
  font-family: "BeirutText", sans-serif;
  font-style: italic;
  opacity: 0.5;
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
}
@media (min-width: 950px) {
  .wysiwyg ol li::before {
    font-size: 1.9rem;
  }
}
.wysiwyg ol li > p {
  margin: 0;
}
.wysiwyg blockquote {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.2;
  padding: 5rem 0;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.wysiwyg blockquote::before, .wysiwyg blockquote::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 2rem;
  width: 100%;
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjkyIDMwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgaWQ9Im1vZHVsZS9hX21hZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUzOC4wMDAwMDAsIC00MS4wMDAwMDApIj4KICAgICAgICAgIDxnIGlkPSJHcm91cC0xMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzc0LjAwMDAwMCwgNDEuMDAwMDAwKSI+CiAgICAgICAgICAgICAgPHBhdGggZD0iTTMwOC43MjIxMjIsNTEuNTE4ODg0OSBMMzA4LjcyMjEyMiwxNjAuNDQ2OTQyIEwyOTUuMzgzOTkzLDE0NS45MTExOTQgTDI5NS4zODM5OTMsNjYuMDU0NjMzMiBMMzA4LjcyMjEyMiw1MS41MTg4ODQ5IFogTTMyNC44MzkwMjksMTQuMjgzMjczNCBMMzI0LjgzOTAyOSwzNC44ODkzMDEgTDMwOC4xNjYzNjcsNTIuMDc0NjQwMyBMMzA4LjE2NjM2NywzMS40Njg2MTI3IEwzMjQuODM5MDI5LDE0LjI4MzI3MzQgWiBNMzA4LjE2NjM2NywtMjMuNTA4MDkzNSBMMzI0LjgzOTAyOSwtNi4zMjIwODkxNyBMMzI0LjgzOTAyOSwxNC4yODMyNzM0IEwzMDguMTY2MzY3LC0yLjkwMTI2ODQ2IEwzMDguMTY2MzY3LC0yMy41MDgwOTM1IFogTTMwOC43MjIxMjIsLTEzMC43Njg4ODUgTDMwOC43MjIxMjIsLTI0LjA2Mzg0ODkgTDI5NS4zODM5OTMsLTM4LjU1MzcyOTcgTDI5NS4zODM5OTMsLTExNi4yNzkwMDQgTDMwOC43MjIxMjIsLTEzMC43Njg4ODUgWiIgaWQ9IkNvbWJpbmVkLVNoYXBlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMTAuMTExNTExLCAxNC44MzkwMjkpIHNjYWxlKDEsIC0xKSByb3RhdGUoOTAuMDAwMDAwKSB0cmFuc2xhdGUoLTMxMC4xMTE1MTEsIC0xNC44MzkwMjkpICI+PC9wYXRoPgogICAgICAgICAgPC9nPgogICAgICA8L2c+Cjwvc3ZnPgo=);
          mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjkyIDMwIiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgogICAgPGcgaWQ9Im1vZHVsZS9hX21hZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUzOC4wMDAwMDAsIC00MS4wMDAwMDApIj4KICAgICAgICAgIDxnIGlkPSJHcm91cC0xMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzc0LjAwMDAwMCwgNDEuMDAwMDAwKSI+CiAgICAgICAgICAgICAgPHBhdGggZD0iTTMwOC43MjIxMjIsNTEuNTE4ODg0OSBMMzA4LjcyMjEyMiwxNjAuNDQ2OTQyIEwyOTUuMzgzOTkzLDE0NS45MTExOTQgTDI5NS4zODM5OTMsNjYuMDU0NjMzMiBMMzA4LjcyMjEyMiw1MS41MTg4ODQ5IFogTTMyNC44MzkwMjksMTQuMjgzMjczNCBMMzI0LjgzOTAyOSwzNC44ODkzMDEgTDMwOC4xNjYzNjcsNTIuMDc0NjQwMyBMMzA4LjE2NjM2NywzMS40Njg2MTI3IEwzMjQuODM5MDI5LDE0LjI4MzI3MzQgWiBNMzA4LjE2NjM2NywtMjMuNTA4MDkzNSBMMzI0LjgzOTAyOSwtNi4zMjIwODkxNyBMMzI0LjgzOTAyOSwxNC4yODMyNzM0IEwzMDguMTY2MzY3LC0yLjkwMTI2ODQ2IEwzMDguMTY2MzY3LC0yMy41MDgwOTM1IFogTTMwOC43MjIxMjIsLTEzMC43Njg4ODUgTDMwOC43MjIxMjIsLTI0LjA2Mzg0ODkgTDI5NS4zODM5OTMsLTM4LjU1MzcyOTcgTDI5NS4zODM5OTMsLTExNi4yNzkwMDQgTDMwOC43MjIxMjIsLTEzMC43Njg4ODUgWiIgaWQ9IkNvbWJpbmVkLVNoYXBlIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzMTAuMTExNTExLCAxNC44MzkwMjkpIHNjYWxlKDEsIC0xKSByb3RhdGUoOTAuMDAwMDAwKSB0cmFuc2xhdGUoLTMxMC4xMTE1MTEsIC0xNC44MzkwMjkpICI+PC9wYXRoPgogICAgICAgICAgPC9nPgogICAgICA8L2c+Cjwvc3ZnPgo=);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 15rem;
          mask-size: 15rem;
  background-color: #1e9e79;
}
@media (min-width: 950px) {
  .wysiwyg blockquote::before, .wysiwyg blockquote::after {
    height: 3rem;
    -webkit-mask-size: 30rem;
            mask-size: 30rem;
  }
}
.wysiwyg blockquote::after {
  bottom: 0;
  top: auto;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
}
.wysiwyg blockquote p {
  margin: 0;
}
@media (min-width: 950px) {
  .wysiwyg blockquote {
    font-size: 3.8rem;
    padding: 7rem 0;
    margin: 3rem;
  }
}

.address-block {
  background-color: #246052;
  color: #fff;
  padding: 2.4rem 0;
}
.address-block__information {
  width: 100%;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .address-block__information {
    font-size: 1.9rem;
  }
}
@media (min-width: 950px) {
  .address-block__information {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    margin: 0 auto;
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .address-block__information {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.address-block__address {
  font-style: normal;
}
.address-block__address span {
  display: block;
  margin-bottom: 1.6rem;
}
.address-block__address span:last-child {
  margin-bottom: 0;
}
.address-block__location {
  padding: 3.2rem 0;
}
.address-block__location a {
  display: block;
  text-transform: lowercase;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #a0f996;
  text-decoration: underline;
  letter-spacing: 2.06px;
  font-style: italic;
}
.address-block__contacts {
  padding: 1.6rem 0;
}
.address-block__contacts a::after {
  content: " | ";
  display: inline;
}
.address-block__contacts a:last-child::after {
  content: none;
}
.address-block__contacts a span {
  text-transform: lowercase;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #a0f996;
  text-decoration: underline;
  letter-spacing: 2.06px;
  font-style: italic;
}
.address-block form,
.address-block .custom-form-message {
  width: 100%;
}
@media (min-width: 950px) {
  .address-block form,
.address-block .custom-form-message {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .address-block form,
.address-block .custom-form-message {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.address-block form {
  margin-top: 1.6rem;
}
@media (min-width: 950px) {
  .address-block form {
    margin: 3.2rem auto 0;
  }
}
.address-block .custom-form-message .border .border__content {
  padding: 1.8rem 3.6rem;
}

.banner {
  position: relative;
  background-color: #1e9e79;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.banner .grid__container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.banner__content {
  font-family: "BeirutText", sans-serif;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  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;
  min-height: 50vh;
  position: relative;
  z-index: 1;
  font-style: italic;
}
@media (min-width: 768px) {
  .banner__content {
    margin: 0 auto;
    font-size: 2.5rem;
  }
}
.banner__content header {
  margin: 0 auto;
  font-style: normal;
  padding: 2rem 0 0;
}
.banner__content header h2 {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 4.4rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}
@media (min-width: 768px) {
  .banner__content header h2 {
    font-size: 5.8rem;
  }
}
@media (min-width: 950px) {
  .banner__content header h2 {
    font-size: 9rem;
  }
}
.banner__content header h2 span {
  display: block;
  font-family: "BeirutText", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: normal;
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .banner__content header h2 span {
    font-size: 2.7rem;
  }
}
.banner__content header svg {
  width: 15rem;
  display: block;
  margin: 0 auto;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.banner__content header svg path {
  fill: #246052;
}
@media (min-width: 768px) {
  .banner__content header svg {
    width: 30rem;
  }
}
@media (min-width: 768px) {
  .banner__content header {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .banner__content header {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .banner__content header {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    padding: 10rem 0 20rem;
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .banner__content header {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.banner__content p {
  color: #00664f;
  margin: 0 0 4rem;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .banner__content p {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .banner__content p {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .banner__content p {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    margin: 5rem 0;
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .banner__content p {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.banner__image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 950px) {
  .banner__image {
    overflow: hidden;
    position: absolute;
    width: 100%;
    max-width: 65rem;
    bottom: -16rem;
    right: 0;
    z-index: 1;
  }
}
.banner__image figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 65rem;
}
.banner__image figure::before {
  content: "";
  display: block;
  padding-bottom: 111%;
}
.banner__image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 950px) {
  .banner__image figure {
    -webkit-transform: translateX(25%);
         -o-transform: translateX(25%);
            transform: translateX(25%);
  }
}
.banner__image figure img {
  -o-object-fit: contain;
     object-fit: contain;
}
.banner::before {
  content: "";
  position: absolute;
  bottom: 29rem;
  left: 0;
  display: block;
  -webkit-clip-path: polygon(0 100%, 5% 45%, 38% 0, 62% 0, 95% 45%, 100% 100%);
          clip-path: polygon(0 100%, 5% 45%, 38% 0, 62% 0, 95% 45%, 100% 100%);
  background: #fff;
  height: 10rem;
  width: 100%;
}
@media (min-width: 950px) {
  .banner::before {
    bottom: 0;
    height: 29rem;
  }
}
.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  height: 29rem;
  width: 100%;
}
@media (min-width: 950px) {
  .banner::after {
    content: none;
  }
}
.banner .marquee {
  z-index: 1;
}
@media (min-width: 950px) {
  .banner .marquee {
    z-index: initial;
  }
}

.big-quote-block {
  padding: 4rem 0;
}
.big-quote-block.light {
  background-color: #fff;
  color: #00664f;
}
.big-quote-block.light .page-title h1,
.big-quote-block.light .page-title h2 {
  color: #1e9e79;
}
.big-quote-block.dark {
  background-color: #246052;
  color: #fff;
}
.big-quote-block .page-title {
  background-color: inherit;
  font-family: "BeirutDisplay", sans-serif;
  padding: 0 0 4rem;
}
.big-quote-block .page-title h1,
.big-quote-block .page-title h2 {
  color: inherit;
}
@media (min-width: 768px) {
  .big-quote-block .page-title {
    padding: 0 0 8rem;
  }
}
.big-quote-block__content {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .big-quote-block__content {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .big-quote-block__content {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
.big-quote-block__content p {
  font-family: "BeirutText", sans-serif;
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .big-quote-block__content p {
    font-size: 3.8rem;
  }
}
.big-quote-block__content h3 {
  font-family: "BeirutText", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 4.35px;
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-weight: normal;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .big-quote-block__content h3 {
    margin: 2rem 0;
    letter-spacing: 5.93px;
    font-size: 1.6rem;
  }
}
.big-quote-block__content svg {
  width: 15rem;
  margin: 0 auto;
  display: block;
}
.big-quote-block__content svg path {
  fill: #1e9e79;
}
.big-quote-block__content svg:first-of-type {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .big-quote-block__content svg:first-of-type {
    margin-bottom: 4rem;
  }
}
.big-quote-block__content svg:last-of-type {
  margin-top: 2rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 768px) {
  .big-quote-block__content svg:last-of-type {
    margin-top: 4rem;
  }
}
@media (min-width: 768px) {
  .big-quote-block__content svg {
    width: 30rem;
  }
}
@media (min-width: 768px) {
  .big-quote-block {
    padding: 6.5rem 0;
  }
}

.double-block {
  position: relative;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  overflow: hidden;
}
@media (min-width: 768px) {
  .double-block {
    font-size: 2.1rem;
  }
}
.double-block__header {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 4.35px;
  text-align: center;
  position: absolute;
  top: 1.6rem;
  z-index: 1;
  color: #246052;
}
.double-block__header h2 {
  margin: 0;
  font-weight: normal;
  display: inline;
  border-bottom: 2px solid currentColor;
}
@media (min-width: 768px) {
  .double-block__header {
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: 5.93px;
    top: 4rem;
  }
}
.double-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  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: 1200px) {
  .double-block__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.double-block__item {
  max-width: none;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .double-block__item {
    padding: 0 30px;
  }
}
.double-block__item:nth-child(odd) .double-block__block {
  padding-top: 9rem;
  padding-bottom: 6rem;
  -webkit-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
}
.double-block__item:nth-child(odd) figure {
  -webkit-transform: translate(-50%, -50%) rotate(80deg) scale(0.8);
       -o-transform: translate(-50%, -50%) rotate(80deg) scale(0.8);
          transform: translate(-50%, -50%) rotate(80deg) scale(0.8);
}
.double-block__item:nth-child(odd).visible figure {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(-9deg) scale(1);
       -o-transform: translate(-50%, -50%) rotate(-9deg) scale(1);
          transform: translate(-50%, -50%) rotate(-9deg) scale(1);
}
.double-block__item:nth-child(even) .double-block__block {
  padding-top: 6rem;
  padding-bottom: 9rem;
  -webkit-transform: translateY(100%);
       -o-transform: translateY(100%);
          transform: translateY(100%);
}
.double-block__item:nth-child(even) figure {
  -webkit-transform: translate(-50%, -50%) rotate(-80deg) scale(0.8);
       -o-transform: translate(-50%, -50%) rotate(-80deg) scale(0.8);
          transform: translate(-50%, -50%) rotate(-80deg) scale(0.8);
}
.double-block__item:nth-child(even).visible figure {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(9deg) scale(1);
       -o-transform: translate(-50%, -50%) rotate(9deg) scale(1);
          transform: translate(-50%, -50%) rotate(9deg) scale(1);
}
.double-block__item.green {
  background-color: #1e9e79;
  color: #ffdd4d;
}
.double-block__item.green h3::before {
  background-color: #ffdd4d;
}
.double-block__item.yellow {
  background-color: #ffdd4d;
  color: #1e9e79;
}
.double-block__item.yellow h3::before {
  background-color: #1e9e79;
}
.double-block__item.visible .double-block__block {
  opacity: 1;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 768px) {
  .double-block__item {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
@media (min-width: 1200px) {
  .double-block__item {
    width: 50%;
    padding-top: 14rem;
    padding-bottom: 14rem;
    padding-left: 0;
    padding-right: 0;
  }
  .double-block__item:nth-child(odd) .double-block__block {
    margin-right: 0;
    margin-left: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  .double-block__item:nth-child(even) .double-block__block {
    margin-right: auto;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.double-block__block {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  padding-top: 14rem;
  padding-bottom: 14rem;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
}
@media (min-width: 768px) {
  .double-block__block {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .double-block__block {
    max-width: 1266px;
  }
}
@media (min-width: 1200px) {
  .double-block__block {
    max-width: 63.25rem;
    padding: 0;
  }
}
.double-block__block__header, .double-block__block__content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .double-block__block__header, .double-block__block__content {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .double-block__block__header, .double-block__block__content {
    max-width: 1266px;
  }
}
@media (min-width: 1200px) {
  .double-block__block__header, .double-block__block__content {
    padding-left: 5rem;
    display: block;
    margin-left: 0;
    margin-right: auto;
  }
}
.double-block__block__header h3,
.double-block__block__header h4 {
  margin: 0;
  display: block;
  text-transform: uppercase;
}
.double-block__block__header h3 {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-family: "BeirutDisplay", sans-serif;
  font-weight: normal;
  font-size: 53px;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 1.6rem;
  font-style: normal;
}
.double-block__block__header h3 p {
  margin: 0;
}
.double-block__block__header h3::before {
  content: "";
  display: block;
  width: 4rem;
  height: 0.2rem;
  background-color: red;
  margin-left: 0.4rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .double-block__block__header h3::before {
    width: 7rem;
    height: 0.4rem;
    margin-bottom: 1.6rem;
  }
}
@media (min-width: 768px) {
  .double-block__block__header h3 {
    font-size: 113px;
    margin-bottom: 3rem;
  }
}
.double-block__block__header h4 {
  font-weight: 400;
}
.double-block__block__content {
  width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  margin-left: 0;
  margin-right: auto;
  position: static;
}
@media (min-width: 768px) {
  .double-block__block__content {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.double-block__block p {
  margin: 0;
}
.double-block__block a {
  border-bottom: 2px solid currentColor;
}
.double-block__block figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 15rem;
  position: absolute;
  top: 45%;
  right: -14rem;
  -webkit-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out 0.6s, -webkit-transform 0.6s ease-in-out 0.6s;
  transition: opacity 0.6s ease-in-out 0.6s, -webkit-transform 0.6s ease-in-out 0.6s;
  -o-transition: opacity 0.6s ease-in-out 0.6s, -o-transform 0.6s ease-in-out 0.6s;
  transition: opacity 0.6s ease-in-out 0.6s, transform 0.6s ease-in-out 0.6s;
  transition: opacity 0.6s ease-in-out 0.6s, transform 0.6s ease-in-out 0.6s, -webkit-transform 0.6s ease-in-out 0.6s, -o-transform 0.6s ease-in-out 0.6s;
}
.double-block__block figure::before {
  content: "";
  display: block;
  padding-bottom: 180%;
}
.double-block__block figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.double-block__block figure img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .double-block__block figure {
    top: 50%;
    right: -25%;
    max-width: 28rem;
  }
}
@media (min-width: 950px) {
  .double-block__block figure {
    right: 0;
  }
}
@media (min-width: 1200px) {
  .double-block__block figure {
    right: -28%;
    max-width: 30rem;
  }
}

.downloads-block {
  background-color: #1e9e79;
  color: #fff;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .downloads-block {
    padding-top: 8rem;
  }
}
.downloads-block__header {
  width: 100%;
  margin: 0 auto 5rem;
  text-align: center;
}
.downloads-block__header h2,
.downloads-block__header p {
  margin: 0;
}
.downloads-block__header h2 {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .downloads-block__header h2 {
    font-size: 3.8rem;
    line-height: 1.1;
  }
}
.downloads-block__header p {
  margin: 2.6rem 0 0;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-style: italic;
  color: #004b3a;
}
@media (min-width: 768px) {
  .downloads-block__header p {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .downloads-block__header {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .downloads-block__header {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.downloads-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}
@media (min-width: 768px) {
  .downloads-block__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.downloads-block__item {
  position: relative;
  width: 100%;
  min-width: 25%;
  min-height: 43rem;
  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;
}
.downloads-block__item:first-child .downloads-block__download__content header::after {
  content: none;
}
.downloads-block__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.downloads-block__item a:hover ~ .downloads-block__download, .downloads-block__item a:active ~ .downloads-block__download, .downloads-block__item a:focus ~ .downloads-block__download {
  max-height: 80rem;
}
.downloads-block__item a:hover ~ .downloads-block__download .downloads-block__download__content header::after, .downloads-block__item a:active ~ .downloads-block__download .downloads-block__download__content header::after, .downloads-block__item a:focus ~ .downloads-block__download .downloads-block__download__content header::after {
  opacity: 0;
}
.downloads-block__item a:hover ~ .downloads-block__download .downloads-block__download__content p, .downloads-block__item a:active ~ .downloads-block__download .downloads-block__download__content p, .downloads-block__item a:focus ~ .downloads-block__download .downloads-block__download__content p {
  opacity: 1;
}
.downloads-block__item a:hover ~ .downloads-block__download__background, .downloads-block__item a:active ~ .downloads-block__download__background, .downloads-block__item a:focus ~ .downloads-block__download__background {
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.downloads-block__download {
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  padding: 5rem 20px;
}
@media (min-width: 768px) {
  .downloads-block__download {
    padding-left: 30px;
    padding-right: 30px;
    max-height: 200px;
    -webkit-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
  }
}
.downloads-block__download header {
  position: relative;
}
.downloads-block__download header::before {
  display: block;
  content: "";
  width: 2.5rem;
  height: 2px;
  background-color: #fff;
  margin-bottom: 1rem;
}
.downloads-block__download header::after {
  display: block;
  content: none;
  position: absolute;
  height: 200%;
  width: 1px;
  background-color: rgba(255, 221, 77, 0.2);
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .downloads-block__download header::after {
    content: "";
  }
}
.downloads-block__download h3,
.downloads-block__download p {
  margin: 0;
}
.downloads-block__download h3 {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  text-transform: uppercase;
}
.downloads-block__download p {
  margin: 2.6rem 0 0;
  font-size: 1.9rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .downloads-block__download p {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
}
.downloads-block__download span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
}
.downloads-block__download span svg {
  margin-right: 1.6rem;
  width: 3rem;
  height: 3rem;
  fill: #a0f996;
}
.downloads-block__download__content {
  position: relative;
  left: 0;
  top: 0;
}
.downloads-block__download__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.downloads-block__download__background::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .downloads-block__download__background {
    opacity: 0;
    -webkit-transform: translateY(50%);
         -o-transform: translateY(50%);
            transform: translateY(50%);
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  }
}

.faq-list {
  width: 100%;
  margin: 0 auto;
  background-color: #246052;
}
@media (min-width: 950px) {
  .faq-list {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .faq-list {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
.faq-list__container {
  background-color: #246052;
}
.faq-list__wrapper {
  width: 100%;
  max-width: 1266px;
  margin: 0 auto;
}
.faq-list__loadmore-container {
  margin: 0 auto;
  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;
}
.faq-list__loadmore-container ._hide {
  display: none;
}
.faq-list__filter-container {
  width: 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;
  margin-bottom: 35px;
}
.faq-list__filter._desktop {
  display: none;
}
.faq-list__filter._desktop button {
  margin-right: 1.6rem;
  margin-bottom: 1.6rem;
}
.faq-list__filter._desktop button:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .faq-list__filter._desktop {
    display: block;
  }
}
.faq-list__filter._mobile {
  display: block;
}
@media (min-width: 768px) {
  .faq-list__filter._mobile {
    display: none;
  }
}
.faq-list--filter-active {
  color: #246052 !important;
}
.faq-list--filter-active .border__container .border__middle {
  border-color: #004b3a !important;
  background-color: #a0f996 !important;
}
.faq-list--filter-active .border__container .border__corner svg .corner-line-color {
  fill: #004b3a !important;
}
.faq-list--filter-active .border__container .border__corner svg .corner-background-color {
  fill: #a0f996 !important;
}
.faq-list--filter-active .border__container .border__horizontal {
  border-color: #004b3a !important;
  background-color: #a0f996 !important;
}
.faq-list__faq-list-original {
  display: none;
}
.faq-list__faq-list {
  max-width: 100%;
  margin: 0 auto;
}
.faq-list__faq-list ._pagination {
  display: none;
}
.faq-list__item {
  width: 100%;
}
.faq-list__active .border__container .border__middle {
  border-color: #1e9e79;
  background-color: #1e9e79;
}
.faq-list__active .border__container .border__corner svg .corner-line-color,
.faq-list__active .border__container .border__corner svg .corner-background-color {
  fill: #1e9e79;
}
.faq-list__active .border__container .border__horizontal {
  border-color: #1e9e79;
  background-color: #1e9e79;
}
.faq-list__accordion-container {
  width: 100%;
  margin-bottom: 20px;
}
.faq-list__accordion-container._hide {
  display: none;
}
.faq-list__accordion {
  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;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0.8rem 5rem 0.8rem 0.8rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 700;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (min-width: 950px) {
  .faq-list__accordion {
    font-size: 2.6rem;
    line-height: 3rem;
    padding: 2rem 6rem 2rem 0;
  }
}
.faq-list__icon-button {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 2rem;
  pointer-events: none;
}
@media (min-width: 950px) {
  .faq-list__icon-button {
    width: 56px;
    height: 56px;
  }
}
.faq-list__icon-button svg {
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
}
._active .faq-list__icon-button svg {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.faq-list__icon-button svg path {
  fill: #fff;
}
.faq-list__answer-container {
  text-align: left;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-out;
  -o-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}
.faq-list__answer {
  padding: 1.6rem 0;
  color: #fff;
  border-top: 1px solid #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
}
@media (min-width: 950px) {
  .faq-list__answer {
    font-size: 1.9rem;
    line-height: 3.3rem;
  }
}

.filter-accordion {
  position: relative;
  width: 100%;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .filter-accordion {
    text-align: left;
    max-width: 25rem;
    min-width: 20rem;
  }
}
.filter-accordion button,
.filter-accordion a {
  display: block;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-align: inherit;
  outline: none;
  line-height: 1.1;
  width: 100%;
}
.filter-accordion__action {
  position: relative;
  text-transform: uppercase;
  background-color: transparent;
  width: 100%;
  padding-right: 3rem;
}
.filter-accordion__container {
  max-height: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  margin: 0 -2rem;
  -webkit-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .filter-accordion__container {
    position: absolute;
    left: -2rem;
    right: -2rem;
    top: 91%;
    margin: 0;
    padding: 0 0 1.5rem;
  }
}
[data-role=filter-accordion].active .filter-accordion__container {
  opacity: 1;
  pointer-events: initial;
}
.filter-accordion__container .border__bottom {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .filter-accordion__container .border__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.filter-accordion__container .border__corner svg {
  fill: #fff;
}
.filter-accordion ul {
  margin: 0;
  padding: 1.5rem 0 0;
  list-style: none;
  max-height: 30rem;
  overflow: auto;
}
@media (min-width: 768px) {
  .filter-accordion ul {
    border-left: 1px solid #246052;
    border-right: 1px solid #246052;
  }
}
.filter-accordion ul::after {
  content: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 1.5rem;
  background-color: #fff;
  z-index: -1;
}
@media (min-width: 768px) {
  .filter-accordion ul::after {
    content: "";
  }
}
.filter-accordion li {
  font-size: 1.4rem;
  line-height: 2;
}
.filter-accordion li button,
.filter-accordion li a {
  text-align: left;
  padding: 1rem 2rem;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.filter-accordion li button:hover, .filter-accordion li button:active, .filter-accordion li button.active,
.filter-accordion li a:hover,
.filter-accordion li a:active,
.filter-accordion li a.active {
  background-color: #246052;
  color: #fff;
}

.hero__slider {
  max-width: none;
  width: 100%;
  padding: 0 20px;
  background-color: #246052;
  color: #ecff5f;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero__slider {
    padding: 0 30px;
  }
}
.hero__slider__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
}
@media (min-width: 768px) {
  .hero__slider__container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .hero__slider__container {
    max-width: 1266px;
  }
}
.hero__slider__swiper {
  padding: 6rem 0 8rem;
  width: 100%;
  min-height: 80vh;
  overflow: visible;
}
@media (min-width: 768px) {
  .hero__slider__swiper {
    padding: 2rem 0 4rem;
  }
}
.hero__slider__header {
  width: 100%;
  font-family: "BeirutText", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4.35px;
  padding-top: 1.6rem;
  text-align: center;
}
.hero__slider__header h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: normal;
  display: inline;
  color: #a0f996;
}
.hero__slider__header a {
  color: #ecff5f;
  border-bottom: 1px solid currentColor;
}
@media (min-width: 768px) {
  .hero__slider__header {
    letter-spacing: 5.93px;
    padding-top: 3rem;
  }
}
.hero__slider__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100% !important;
}
.hero__slider__slide.swiper-slide-active .hero__slider__images__main {
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.hero__slider__slide.swiper-slide-active .hero__slider__images__secondary {
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.hero__slider__slide.swiper-slide-active .hero__slider__text {
  -webkit-transform: translateY(-50%) scale(1);
       -o-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  opacity: 1;
}
.hero__slider__text {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) scale(0.5);
       -o-transform: translateY(-50%) scale(0.5);
          transform: translateY(-50%) scale(0.5);
  z-index: 2;
  font-family: "BeirutDisplay", sans-serif;
  line-height: 1.2;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  overflow: visible;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media (min-width: 768px) {
  .hero__slider__text {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .hero__slider__text {
    max-width: 1266px;
  }
}
.hero__slider__text h2,
.hero__slider__text h3 {
  margin: 0;
  font-weight: 600;
  pointer-events: initial;
}
.hero__slider__text h2 {
  width: 100%;
  font-size: 3.8rem;
  text-transform: uppercase;
}
.hero__slider__text h2 a {
  cursor: none;
}
.hero__slider__text h2 + .hero__slider__pagination {
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}
@media (min-width: 768px) {
  .hero__slider__text h2 {
    font-size: 5.8rem;
  }
}
@media (min-width: 1200px) {
  .hero__slider__text h2 {
    font-size: 9rem;
  }
}
.hero__slider__text h3 {
  font-family: "BeirutText", sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 768px) {
  .hero__slider__text h3 {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .hero__slider__text h3 {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .hero__slider__text h3 {
    font-size: 1.6rem;
    margin-top: -1rem;
  }
}
.hero__slider__text h3 a {
  text-decoration: underline;
}
.hero__slider__text h3 p {
  margin: 0;
}
@media (min-width: 768px) {
  .hero__slider__text {
    padding: 0 2rem;
    top: 60%;
  }
}
.hero__slider__images {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
}
@media (min-width: 768px) {
  .hero__slider__images {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .hero__slider__images {
    max-width: 1266px;
  }
}
@media (min-width: 768px) {
  .hero__slider__images {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    padding: 0 3rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .hero__slider__images {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
.hero__slider__images__main, .hero__slider__images__secondary {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.hero__slider__images__main::after, .hero__slider__images__secondary::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}
.hero__slider__images__main {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
  -webkit-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
}
.hero__slider__images__main::before {
  content: "";
  display: block;
  padding-bottom: 133%;
}
.hero__slider__images__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 950px) {
  .hero__slider__images__main {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 50rem;
    width: 56%;
    margin: 0;
  }
  .hero__slider__images__main::before {
    content: "";
    display: block;
    padding-bottom: 133%;
  }
  .hero__slider__images__main img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.hero__slider__images__secondary {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 31rem;
  width: 35%;
  display: none;
  -webkit-transform: translateY(100%);
       -o-transform: translateY(100%);
          transform: translateY(100%);
}
.hero__slider__images__secondary::before {
  content: "";
  display: block;
  padding-bottom: 133%;
}
.hero__slider__images__secondary img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 950px) {
  .hero__slider__images__secondary {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 31rem;
    width: 40%;
    display: block;
  }
  .hero__slider__images__secondary::before {
    content: "";
    display: block;
    padding-bottom: 133%;
  }
  .hero__slider__images__secondary img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.hero__slider__images.single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__slider__pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 1rem;
}
.hero__slider__pagination__prev.swiper-button-prev, .hero__slider__pagination__next.swiper-button-next {
  position: static;
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0.8rem;
  pointer-events: initial;
}
.hero__slider__pagination__prev.swiper-button-prev::after, .hero__slider__pagination__next.swiper-button-next::after {
  content: none;
}
.hero__slider__pagination__prev.swiper-button-prev svg, .hero__slider__pagination__next.swiper-button-next svg {
  margin: 0;
  fill: #ecff5f;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.hero__slider__pagination__prev.swiper-button-prev:hover svg, .hero__slider__pagination__prev.swiper-button-prev:active svg, .hero__slider__pagination__prev.swiper-button-prev:focus svg, .hero__slider__pagination__next.swiper-button-next:hover svg, .hero__slider__pagination__next.swiper-button-next:active svg, .hero__slider__pagination__next.swiper-button-next:focus svg {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .hero__slider__pagination__prev.swiper-button-prev, .hero__slider__pagination__next.swiper-button-next {
    width: 6.7rem;
    height: 6.7rem;
  }
}
.hero__slider__pagination__prev.swiper-button-prev.swiper-button-disabled, .hero__slider__pagination__next.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}
@media (min-width: 950px) {
  .hero__slider__pagination {
    margin-top: 0.6rem;
  }
}

.hero {
  width: 100%;
  display: none;
}
@media (min-width: 950px) {
  .hero {
    display: block;
  }
}
.hero .pin-spacer {
  max-width: 100%;
}
.hero__sections {
  padding-top: 100vh;
}
.hero__section {
  height: 300px;
}
.hero__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffdd4d;
  color: #246052;
  overflow: hidden;
  z-index: 4;
}
.hero__lines {
  padding-top: 33vh;
  opacity: 0;
  -webkit-transition: opacity 1s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: opacity 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: opacity 1s cubic-bezier(0.86, 0, 0.07, 1);
}
.js-hero-visible .hero__lines {
  opacity: 1;
}
.hero__line-title {
  font-family: "BeirutDisplay", sans-serif;
  font-weight: 600;
  font-size: 5.9vw;
  line-height: 5.9vw;
  text-transform: uppercase;
  text-align: center;
  padding-top: 2.196vw;
  opacity: 0.1;
  cursor: pointer;
}
.hero__line, .hero__fake-line {
  position: relative;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 5.9vw;
  margin-bottom: 0.3vw;
}
.hero__line:nth-child(2), .hero__line.js-active {
  height: 18.2vw;
  z-index: 1;
}
.hero__line:nth-child(2) .hero__line-title, .hero__line.js-active .hero__line-title {
  opacity: 0;
}
.hero__line.js-active .hero__line-title {
  pointer-events: none;
}
.hero__fake-lines {
  position: absolute;
  width: 100%;
  -webkit-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
}
.hero__marquee {
  position: absolute;
  width: 100%;
  height: 26vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-family: "BeirutDisplay", sans-serif;
  font-weight: 800;
  font-size: 20.134vw;
  line-height: 20.134vw;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  -webkit-animation: marquee-hero 20s linear infinite;
       -o-animation: marquee-hero 20s linear infinite;
          animation: marquee-hero 20s linear infinite;
  -webkit-animation-play-state: running;
       -o-animation-play-state: running;
          animation-play-state: running;
  text-align: left;
  padding-top: 3vw;
}
.hero__marquee-inner span {
  white-space: nowrap;
  text-align: center;
  padding: 0 3vw;
}
.js-active .hero__marquee-inner, .hero__line:nth-child(2) .hero__marquee-inner {
  opacity: 1;
}
.hero__label-img {
  width: 16vw;
  max-width: 10000px;
}
.hero__bottle {
  position: absolute;
  top: 5vh;
  right: -8vw;
  height: 87vh;
  opacity: 0;
  -webkit-transform-origin: 10vw 100vw;
       -o-transform-origin: 10vw 100vw;
          transform-origin: 10vw 100vw;
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), -o-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), -o-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 1200px) {
  .hero__bottle {
    right: 2vw;
  }
}
.hero__bottle img {
  display: block;
  width: auto;
  height: 100%;
}
.js-active .hero__bottle {
  -webkit-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -o-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1), -o-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transform: rotate(-8deg);
       -o-transform: rotate(-8deg);
          transform: rotate(-8deg);
  pointer-events: all;
  opacity: 1;
}
.hero__subtitle {
  position: absolute;
  font-size: 1.25vw;
  font-style: italic;
  letter-spacing: 2px;
  right: 52%;
  bottom: 3vw;
  -webkit-transform: translateX(-50vw);
       -o-transform: translateX(-50vw);
          transform: translateX(-50vw);
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: -o-transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), -o-transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__subtitle p {
  margin: 0;
}
.js-active .hero__subtitle {
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  -o-transition: -o-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1), -o-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__subtitle a {
  position: relative;
  pointer-events: all;
  color: inherit;
}
.hero__subtitle a::after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 2px solid;
  width: 100%;
  bottom: -3px;
  left: 0;
}
.hero__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.hero__top-shadow, .hero__bottom-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 210px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffdd4d), to(rgba(236, 221, 196, 0)));
  background-image: -webkit-linear-gradient(top, #ffdd4d 0%, rgba(236, 221, 196, 0) 100%);
  background-image: -o-linear-gradient(top, #ffdd4d 0%, rgba(236, 221, 196, 0) 100%);
  background-image: linear-gradient(to bottom, #ffdd4d 0%, rgba(236, 221, 196, 0) 100%);
}
.hero__bottom-shadow {
  top: auto;
  bottom: 0;
  height: 130px;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffdd4d), to(rgba(255, 221, 77, 0)));
  background: -webkit-linear-gradient(bottom, #ffdd4d 0%, rgba(255, 221, 77, 0) 100%);
  background: -o-linear-gradient(bottom, #ffdd4d 0%, rgba(255, 221, 77, 0) 100%);
  background: linear-gradient(to top, #ffdd4d 0%, rgba(255, 221, 77, 0) 100%);
}
.hero__bar {
  opacity: 0;
  position: absolute;
  z-index: 2;
  bottom: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #a0f996;
  -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: translateY(40px);
       -o-transform: translateY(40px);
          transform: translateY(40px);
}
.hero__bar .border .border__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero__bar .border:hover, .hero__bar .border:active {
  color: currentColor;
}
.hero__bar::before {
  left: -21px;
  background-position: left;
}
.hero__bar::after {
  right: -21px;
  background-position: right;
}
.hero__bar a {
  text-align: center;
  position: relative;
  margin: 0 1.6rem;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.hero__bar a::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #004b3a;
}
.hero__bar a:first-child {
  margin-left: 13px;
}
.hero__bar a:last-child {
  margin-right: 13px;
}
.hero__bar a:last-child::after {
  display: none;
}
.hero__bar a:hover, .hero__bar a:active, .hero__bar a:focus {
  color: #ecff5f;
}
.js-hero-visible .hero__bar {
  opacity: 1;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

.hero-mobile {
  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;
  height: 100vh;
  padding-top: 70px;
  background-color: #fff;
  opacity: 0;
  overflow: hidden;
}
@media (min-width: 950px) {
  .hero-mobile {
    display: none;
  }
}
.hero-mobile__content {
  position: relative;
  height: 110px;
}
.hero-mobile__line {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.hero-mobile__marquee {
  width: 100%;
  overflow: hidden;
}
.hero-mobile__marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-family: "BeirutDisplay", sans-serif;
  font-weight: 800;
  font-size: 7.4rem;
  line-height: 9rem;
  text-transform: uppercase;
  -webkit-animation: marquee-hero 20s linear infinite;
       -o-animation: marquee-hero 20s linear infinite;
          animation: marquee-hero 20s linear infinite;
  -webkit-animation-play-state: running;
       -o-animation-play-state: running;
          animation-play-state: running;
  text-align: left;
  letter-spacing: -0.068rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-mobile__marquee-inner span {
  white-space: nowrap;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-mobile__label-img {
  width: 7rem;
}
.hero-mobile__subtitle {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-style: italic;
  padding-left: 20px;
  width: 100%;
  max-width: 64%;
  margin-top: -10px;
}
.hero-mobile__subtitle p {
  margin: 0;
}
.hero-mobile__subtitle a {
  position: relative;
  pointer-events: all;
  color: inherit;
  white-space: nowrap;
}
.hero-mobile__subtitle a::after {
  content: "";
  position: absolute;
  display: block;
  border-bottom: 2px solid;
  width: 100%;
  bottom: -2px;
  left: 0;
}
.hero-mobile__control {
  padding: 10px 0 0 20px;
  width: 64%;
}
.hero-mobile__control a {
  width: 100%;
  font-weight: 700;
  margin: 6px 0 10px;
}
.hero-mobile__control .border__content {
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
}
.hero-mobile__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hero-mobile__bottle {
  height: 70vh;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform-origin: 100% 100%;
       -o-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  -webkit-transform: translate(25%, -50%) rotate(-9deg);
       -o-transform: translate(25%, -50%) rotate(-9deg);
          transform: translate(25%, -50%) rotate(-9deg);
}
.hero-mobile__bottle img {
  width: auto;
  max-height: 100%;
}

.home-about {
  overflow: hidden;
}
.home-about__top-badge {
  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;
  padding: 30px 0 55px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .home-about__top-badge {
    font-size: 2.6rem;
    padding: 40px 0 100px;
  }
}
.home-about__top-badge svg {
  display: block;
  width: 160px;
  height: auto;
}
@media (min-width: 768px) {
  .home-about__top-badge svg {
    width: 290px;
  }
}
.home-about__top-badge span {
  padding-top: 2px;
}
.home-about__top-badge path {
  fill: #246052;
}
.home-about__top-badge .home-about__top-badge-big {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .home-about__top-badge .home-about__top-badge-big {
    font-size: 9rem;
    margin-bottom: 0;
  }
}
.home-about__top-badge-bottom {
  margin-top: 8px;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
@media (min-width: 768px) {
  .home-about__top-badge-bottom {
    margin-top: 15px;
  }
}
.home-about__top {
  background-color: #1e9e79;
}
.home-about__top-content {
  position: relative;
  min-height: 22.69vw;
  padding-bottom: 90px;
}
.home-about__top-content::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  display: block;
  -webkit-clip-path: polygon(0 100%, 5% 45%, 38% 0, 62% 0, 95% 45%, 100% 100%);
          clip-path: polygon(0 100%, 5% 45%, 38% 0, 62% 0, 95% 45%, 100% 100%);
  background: #fff;
  height: 22.69vw;
  width: 100%;
}
.home-about__top-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background: #fff;
  height: calc(100% - 22.69vw);
  width: 100%;
}
.home-about__top-content .grid {
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .home-about__top-content .grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.home-about__top-left {
  padding-top: 116%;
  text-align: center;
}
@media (min-width: 768px) {
  .home-about__top-left {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    padding-right: 6%;
    padding-top: 200px;
    text-align: left;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__top-left {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.home-about__title1 {
  font-family: "BeirutDisplay", sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  text-transform: uppercase;
  line-height: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .home-about__title1 {
    font-size: 3.8rem;
    line-height: 4rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 950px) {
  .home-about__title1 {
    font-size: 5.8rem;
    line-height: 1;
  }
}
.home-about__subtitle1 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-style: italic;
  color: #00664f;
  text-align: center;
}
@media (min-width: 768px) {
  .home-about__subtitle1 {
    font-size: 2rem;
    line-height: 3rem;
    text-align: left;
  }
}
@media (min-width: 950px) {
  .home-about__subtitle1 {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
.home-about__top-image {
  position: absolute;
  width: 78%;
  top: -5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .home-about__top-image {
    width: 35%;
    top: -15%;
  }
}
.home-about__top-image img {
  width: 100%;
  height: auto;
}
.home-about__top-right {
  width: 100%;
}
@media (min-width: 768px) {
  .home-about__top-right {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__top-right {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
.home-about__top-right__text2 {
  margin-left: -30px;
}
.home-about__top-right-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 45px;
}
@media (min-width: 768px) {
  .home-about__top-right-image {
    padding-top: 160px;
  }
}
.home-about__top-right-image figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.home-about__top-right-image figure::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.home-about__top-right-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .home-about__top-right-image figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 63%;
    margin-right: -19%;
  }
  .home-about__top-right-image figure::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .home-about__top-right-image figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.home-about__top-right-image img {
  display: block;
}
.home-about__title2 {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 3rem;
  margin: 5rem 0 0.8rem;
}
@media (min-width: 768px) {
  .home-about__title2 {
    font-size: 3.2rem;
    line-height: 3.5rem;
    margin: 3rem 0 1.5rem;
  }
}
@media (min-width: 950px) {
  .home-about__title2 {
    font-size: 3.8rem;
    line-height: 4.5rem;
  }
}
.home-about__text2 {
  line-height: 2.4rem;
  text-align: center;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .home-about__text2 {
    text-align: left;
    font-size: 1.9rem;
    line-height: 2.9rem;
  }
}
.home-about__text2 blockquote {
  font-size: 1.3rem;
  line-height: 1.6rem;
  opacity: 0.5;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .home-about__text2 blockquote {
    margin: 0.5rem 0;
  }
}
.home-about__text2 p {
  margin: 0;
}
.home-about__middle {
  background-color: #fff;
}
.home-about__middle-left {
  position: relative;
  width: 100%;
  margin-top: 12rem;
}
@media (min-width: 768px) {
  .home-about__middle-left {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    margin-top: 0;
    position: absolute;
    bottom: -7rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__middle-left {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .home-about__middle-left {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
    bottom: -10rem;
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .home-about__middle-left {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
.home-about__middle-left figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.home-about__middle-left figure::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.home-about__middle-left figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .home-about__middle-left figure {
    margin-left: -26%;
  }
}
.home-about__middle-right {
  width: 100%;
}
@media (min-width: 768px) {
  .home-about__middle-right {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
    padding-bottom: 5rem;
    margin-right: 0;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__middle-right {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.home-about__middle-overlay {
  position: absolute;
  width: 75%;
  top: -58px;
  right: -28%;
  z-index: 1;
}
@media (min-width: 768px) {
  .home-about__middle-overlay {
    width: 100%;
    top: -132px;
    right: -43%;
  }
}
.home-about__middle-overlay img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .home-about__middle-overlay img {
    max-width: 70%;
  }
}
.home-about__middle-title {
  margin-top: 10rem;
}
@media (min-width: 950px) {
  .home-about__middle-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    margin-top: 5rem;
  }
}
@media (min-width: 950px) {
  .home-about__middle-title .home-about__title1 {
    width: 60%;
  }
}
@media (min-width: 950px) {
  .home-about__middle-title .home-about__subtitle1 {
    display: none;
  }
}
.home-about__middle-subtitle {
  display: none;
}
@media (min-width: 950px) {
  .home-about__middle-subtitle {
    display: block;
    padding-right: 20%;
  }
}
.home-about__bottom-top {
  background-color: #246052;
  color: #fff;
}
.home-about__bottom-top .home-about__subtitle1 {
  color: #fff;
  opacity: 0.8;
}
.home-about__bottom-top-left {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .home-about__bottom-top-left {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    padding-top: 20%;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__bottom-top-left {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.home-about__bottom-top-right {
  position: relative;
  width: 100%;
  margin-top: 7.5rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .home-about__bottom-top-right {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__bottom-top-right {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.home-about__bottom-top-right figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.home-about__bottom-top-right figure::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.home-about__bottom-top-right figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .home-about__bottom-top-right figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 74%;
    margin-right: -30%;
    margin-top: 115px;
    margin-bottom: 80px;
  }
  .home-about__bottom-top-right figure::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .home-about__bottom-top-right figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.home-about__bottom-top-center-image {
  position: absolute;
  top: -16%;
  left: 0%;
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  .home-about__bottom-top-center-image {
    left: -8%;
  }
}
.home-about__bottom-top-center-image img {
  width: 71%;
  height: auto;
}
@media (min-width: 768px) {
  .home-about__bottom-top-center-image img {
    width: 63%;
  }
}
.home-about__bottom-bottom {
  position: relative;
  color: #fff;
  min-height: 25vw;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .home-about__bottom-bottom {
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 950px) {
  .home-about__bottom-bottom {
    padding-bottom: 5rem;
  }
}
.home-about__bottom-bottom .home-about__text2 p {
  opacity: 0.8;
}
.home-about__bottom-bottom .grid {
  z-index: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.home-about__bottom-bottom::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  display: block;
  -webkit-clip-path: polygon(0 100%, 5% 45%, 38% 0, 62% 0, 95% 45%, 100% 100%);
          clip-path: polygon(0 100%, 5% 45%, 38% 0, 62% 0, 95% 45%, 100% 100%);
  background: #246052;
  height: 22.69vw;
  width: 100%;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.home-about__bottom-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 22.69vw);
  background: #246052;
}
.home-about__bottom-bottom .home-about__subtitle1 {
  color: #fff;
  opacity: 0.8;
}
.home-about__bottom-bottom-left {
  width: 100%;
}
@media (min-width: 768px) {
  .home-about__bottom-bottom-left {
    width: calc((100% * 1 / 8) - calc(7 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__bottom-bottom-left {
    width: calc((100% * 1 / 8) - calc(7 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .home-about__bottom-bottom-left {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .home-about__bottom-bottom-left {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
.home-about__bottom-bottom-right {
  width: 100%;
  padding-bottom: 41%;
}
@media (min-width: 768px) {
  .home-about__bottom-bottom-right {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin-left: 30px;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__bottom-bottom-right {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .home-about__bottom-bottom-right {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .home-about__bottom-bottom-right {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.home-about__bottom-bottom-right-image {
  position: absolute;
  right: 50%;
  width: 77%;
  bottom: 0;
  -webkit-transform: translate(48%, 73%);
       -o-transform: translate(48%, 73%);
          transform: translate(48%, 73%);
}
@media (min-width: 768px) {
  .home-about__bottom-bottom-right-image {
    top: -175px;
    right: -14%;
    width: 35%;
    bottom: auto;
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.home-about__bottom-bottom-right-image img {
  width: 100%;
  height: auto;
}
.home-about__footer {
  width: 100%;
  text-align: center;
  margin: 76% auto 0;
  color: #00664f;
}
@media (min-width: 768px) {
  .home-about__footer {
    margin: 0 auto;
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .home-about__footer {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.home-about__footer a {
  position: relative;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.home-about__footer a::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -2px;
  border-bottom: 2px solid #00664f;
}
@media (min-width: 768px) {
  .home-about__footer a {
    font-size: 1.9rem;
    line-height: 2.4rem;
  }
}
.home-about__footer-title {
  margin-bottom: 0;
}
.home-about__magnetic-holder {
  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: 30px 0 40px;
}
.home-about__magnetic-holder a {
  width: 180px;
}
@media (min-width: 768px) {
  .home-about__magnetic-holder a {
    width: 240px;
  }
}
@media (min-width: 768px) {
  .home-about__magnetic-holder {
    padding: 5rem 0;
  }
}
@media (min-width: 950px) {
  .home-about__magnetic-holder {
    padding: 0;
  }
}

.instagram-block {
  padding: 3rem 0;
  overflow: hidden;
}
.instagram-block .insta-gallery-feed .insta-gallery-actions {
  display: none;
}
.instagram-block .insta-gallery-feed .insta-gallery-item {
  background-color: #246052;
}
.instagram-block .insta-gallery-feed .insta-gallery-item:hover .insta-gallery-image-mask, .instagram-block .insta-gallery-feed .insta-gallery-item:active .insta-gallery-image-mask {
  opacity: 0.5 !important;
}
.instagram-block .insta-gallery-feed .insta-gallery-image-mask {
  background-color: #246052;
}
.instagram-block .insta-gallery-feed .insta-gallery-spinner {
  background-image: none;
  background-color: #246052;
  min-height: 11rem;
  -webkit-mask: url(/wp-content/themes/cristal/dist/images/svg/instagram-loader.svg) no-repeat center;
          mask: url(/wp-content/themes/cristal/dist/images/svg/instagram-loader.svg) no-repeat center;
}

.legal-block {
  background-color: #246052;
  color: #fff;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .legal-block {
    font-style: 1.9rem;
  }
}
.legal-block__image {
  display: none;
  width: 100%;
}
@media (min-width: 768px) {
  .legal-block__image {
    width: calc((100% * 3.5 / 8) - calc(4.5 * 20px / 8));
    display: block;
    position: sticky;
    top: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .legal-block__image {
    width: calc((100% * 3.5 / 8) - calc(4.5 * 30px / 8));
  }
}
.legal-block__image figure {
  position: relative;
  margin: 0;
}
.legal-block__image figure img {
  max-width: 85%;
  position: absolute;
  top: 50%;
  left: 60%;
  width: 100%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-80deg) scale(0.8);
       -o-transform: translate(-50%, -50%) rotate(-80deg) scale(0.8);
          transform: translate(-50%, -50%) rotate(-80deg) scale(0.8);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
}
.legal-block__image__background {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
.legal-block__image__background svg {
  width: 83%;
  height: auto;
  margin: 12.5% 0 12.5% 8.5%;
}
.legal-block__image.visible figure img {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(9deg) scale(1);
       -o-transform: translate(-50%, -50%) rotate(9deg) scale(1);
          transform: translate(-50%, -50%) rotate(9deg) scale(1);
}
.legal-block__image.visible .legal-block__image__background {
  opacity: 1;
}
.legal-block__content {
  width: 100%;
  margin: 0 0 2.8rem;
}
@media (min-width: 768px) {
  .legal-block__content {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    margin: 0 0 4rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .legal-block__content {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.legal-block__content table {
  display: block;
  width: 100%;
  border: none;
  border-collapse: collapse;
  font-size: 1.2rem;
  overflow: auto;
}
.legal-block__content thead,
.legal-block__content tbody {
  border: none;
  display: block;
  width: 100%;
  min-width: 60rem;
}
.legal-block__content thead {
  border-top: 1px solid #fff;
}
.legal-block__content tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: none;
  border-bottom: 1px solid #fff;
}
.legal-block__content th,
.legal-block__content td {
  padding: 1.6rem;
  padding-left: 0;
  border: none;
  vertical-align: top;
  width: 50%;
  display: block;
}
.legal-block__intro {
  overflow: hidden;
}
.legal-block__intro > * {
  margin: 0;
  opacity: 0;
  -webkit-transform: translateX(50%);
       -o-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
}
.legal-block__intro.visible > * {
  opacity: 1;
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
}
.legal-block__header {
  margin-bottom: 3rem;
}
.legal-block__header .legal-block__image {
  display: block;
}
.legal-block__header .legal-block__image .legal-block__image__background {
  opacity: 1;
}
.legal-block__header .legal-block__image figure img {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(9deg) scale(1);
       -o-transform: translate(-50%, -50%) rotate(9deg) scale(1);
          transform: translate(-50%, -50%) rotate(9deg) scale(1);
}
@media (min-width: 768px) {
  .legal-block__header .legal-block__image {
    display: none;
  }
}
.legal-block__header h2 {
  background: #246052;
  font-family: "BeirutDisplay", sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 2rem 0;
  margin: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .legal-block__header h2 {
    font-size: 6rem;
    padding: 3rem 0;
  }
}
@media (min-width: 768px) {
  .legal-block__header {
    margin-bottom: 0;
  }
}
.legal-block__list {
  counter-reset: item item-header;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.legal-block__list li {
  font-size: inherit;
  font-family: inherit;
  line-height: 1.9;
  position: relative;
  padding-left: 3.8rem;
  margin: 1rem 0;
}
.legal-block__list li::before {
  font-size: 1.6rem;
  font-family: "BeirutText", sans-serif;
  font-style: italic;
  opacity: 0.5;
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
}
@media (min-width: 950px) {
  .legal-block__list li::before {
    font-size: 1.9rem;
  }
}
.legal-block__list li > p {
  margin: 0;
}
.legal-block__list li {
  width: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  .legal-block__list li {
    padding-left: 0;
  }
}
.legal-block__list li::before {
  top: 1.6rem;
  visibility: hidden;
  -webkit-transition: visibility 0.3s ease-in-out;
  -o-transition: visibility 0.3s ease-in-out;
  transition: visibility 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .legal-block__list li::before {
    top: 3rem;
    left: -3.5rem;
  }
}
.legal-block__item {
  width: 100%;
}
.legal-block__item.visible::before {
  visibility: visible;
}
.legal-block__item.visible .legal-block__block__header > *,
.legal-block__item.visible .legal-block__block__content > * {
  opacity: 1;
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
}
.legal-block__block {
  width: 100%;
}
.legal-block__block__header {
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.legal-block__block__header h3 {
  background: #246052;
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 2rem 0;
  margin: 0;
  opacity: 0;
  -webkit-transform: translateX(50%);
       -o-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
}
@media (min-width: 768px) {
  .legal-block__block__header h3 {
    font-size: 3.8rem;
    font-family: "BeirutDisplay", sans-serif;
    padding: 3rem 0;
  }
}
.legal-block__block__content {
  overflow: hidden;
}
.legal-block__block__content > * {
  opacity: 0;
  -webkit-transform: translateX(50%);
       -o-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
}

.links-list-block {
  background-color: #246052;
  color: #fff;
  overflow: hidden;
}
.links-list-block__header {
  width: 100%;
  position: relative;
  padding: 1.6rem 0 0;
  text-align: center;
}
.links-list-block__header::after {
  content: none;
  display: block;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.links-list-block__header h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 4.35px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #a0f996;
}
@media (min-width: 768px) {
  .links-list-block__header h2 {
    letter-spacing: 5.93px;
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .links-list-block__header {
    padding: 2rem 0;
    text-align: left;
  }
  .links-list-block__header::after {
    content: "";
  }
}
.links-list-block__list {
  counter-reset: item item-header;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.links-list-block__list li {
  font-size: inherit;
  font-family: inherit;
  line-height: 1.9;
  position: relative;
  padding-left: 3.8rem;
  margin: 1rem 0;
}
.links-list-block__list li::before {
  font-size: 1.6rem;
  font-family: "BeirutText", sans-serif;
  font-style: italic;
  opacity: 0.5;
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
}
@media (min-width: 950px) {
  .links-list-block__list li::before {
    font-size: 1.9rem;
  }
}
.links-list-block__list li > p {
  margin: 0;
}
.links-list-block__item {
  padding: 3rem 0;
}
.links-list-block__item::after {
  content: "";
  display: block;
  width: 200vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.links-list-block__item::before {
  top: 2.4rem !important;
}
@media (min-width: 768px) {
  .links-list-block__item::before {
    top: 3.8rem !important;
  }
}
@media (min-width: 768px) {
  .links-list-block__item {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 4rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .links-list-block__item {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
@media (min-width: 1200px) {
  .links-list-block__item {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .links-list-block__item {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.links-list-block__article__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.links-list-block__article__container:hover .links-list-block__article__content header h3, .links-list-block__article__container:active .links-list-block__article__content header h3, .links-list-block__article__container:focus .links-list-block__article__content header h3 {
  color: #b5f6a2;
}
.links-list-block__article__container:hover .links-list-block__article__content::after, .links-list-block__article__container:active .links-list-block__article__content::after, .links-list-block__article__container:focus .links-list-block__article__content::after {
  -webkit-transform: translate(25%, -25%);
       -o-transform: translate(25%, -25%);
          transform: translate(25%, -25%);
  opacity: 1;
}
@media (min-width: 768px) {
  .links-list-block__article__container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.links-list-block__article__content {
  width: 100%;
  position: relative;
  padding-right: 4rem;
}
.links-list-block__article__content::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-mask-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbi9hcnJvdzwvdGl0bGU+CiAgICA8ZyBpZD0iaWNvbi9hcnJvdyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBvbHlnb24gaWQ9IlBhdGgiIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuOTczMDYwLCAzMC4yNDI2MDUpIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTI5Ljk3MzA2MCwgLTMwLjI0MjYwNSkgIiBwb2ludHM9IjE5IDMwLjIzNTUxIDIzLjIzNTQ0IDM0LjQ4NTIxIDI0LjY1MjA0IDMzLjA3MzQxIDIyLjgzMDY4IDMxLjI0NTkxIDQwLjk0NjEyIDMxLjI0MzgxIDQwLjk0NTgyIDI5LjI0MzgxIDIyLjgyNjExIDI5LjI0NTkxIDI0LjY2MTYyIDI3LjQxNjU5IDIzLjI0OTc5IDI2Ij48L3BvbHlnb24+CiAgICA8L2c+Cjwvc3ZnPgo=);
          mask-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbi9hcnJvdzwvdGl0bGU+CiAgICA8ZyBpZD0iaWNvbi9hcnJvdyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBvbHlnb24gaWQ9IlBhdGgiIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuOTczMDYwLCAzMC4yNDI2MDUpIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTI5Ljk3MzA2MCwgLTMwLjI0MjYwNSkgIiBwb2ludHM9IjE5IDMwLjIzNTUxIDIzLjIzNTQ0IDM0LjQ4NTIxIDI0LjY1MjA0IDMzLjA3MzQxIDIyLjgzMDY4IDMxLjI0NTkxIDQwLjk0NjEyIDMxLjI0MzgxIDQwLjk0NTgyIDI5LjI0MzgxIDIyLjgyNjExIDI5LjI0NTkxIDI0LjY2MTYyIDI3LjQxNjU5IDIzLjI0OTc5IDI2Ij48L3BvbHlnb24+CiAgICA8L2c+Cjwvc3ZnPgo=);
  background-color: #a0f996;
  height: 6rem;
  width: 6rem;
  -webkit-transform: translate(-25%, -25%);
       -o-transform: translate(-25%, -25%);
          transform: translate(-25%, -25%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}
.links-list-block__article__content h3 {
  font-family: "BeirutText", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .links-list-block__article__content h3 {
    font-size: 2.5rem;
    margin: 0;
  }
}
.links-list-block__article__content p {
  display: none;
  font-size: 1.9rem;
  line-height: 1.5;
  margin: 1.6rem 0 1.8rem;
}
.links-list-block__article__content p:empty {
  display: none;
}
@media (min-width: 768px) {
  .links-list-block__article__content p {
    display: block;
  }
}
.links-list-block__article__content cite {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .links-list-block__article__content cite {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .links-list-block__article__content {
    padding-right: calc(20% - 30px);
  }
}

.marquee-products {
  position: relative;
  padding-top: 4rem;
  height: 21rem;
  overflow: hidden;
}
.marquee-products::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  left: 0;
  background-color: #1e9e79;
}
.marquee-products__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.marquee-products__container.marquee--animation:hover .marquee-products__list, .marquee-products__container.marquee--animation:active .marquee-products__list {
  -webkit-animation-play-state: paused;
       -o-animation-play-state: paused;
          animation-play-state: paused;
}
.marquee-products__container.marquee--animation .marquee-products__list {
  -webkit-animation: marquee 10s linear infinite;
       -o-animation: marquee 10s linear infinite;
          animation: marquee 10s linear infinite;
}
.marquee-products__container.marquee--animation .marquee-products__item {
  opacity: 1;
}
.marquee-products__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.marquee-products__list:hover .marquee-products__item, .marquee-products__list:active .marquee-products__item {
  -webkit-animation-play-state: paused;
       -o-animation-play-state: paused;
          animation-play-state: paused;
}
.marquee-products__item {
  padding: 0 1.6rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.marquee-products__product {
  display: block;
  opacity: 0.95;
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-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, -o-transform 0.3s ease-in-out;
}
.marquee-products__product:hover, .marquee-products__product:active, .marquee-products__product:focus {
  -webkit-transform: scale(1.2);
       -o-transform: scale(1.2);
          transform: scale(1.2);
}
.marquee-products figure {
  margin: 0;
  width: 6rem;
}
.marquee-products figure img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.numbered-block {
  position: sticky;
  top: 0;
  z-index: 1;
}
.numbered-block__header::before, .numbered-block__header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 950px) {
  .numbered-block__header::before, .numbered-block__header::after {
    left: -3.5rem;
    top: 3rem;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
  .numbered-block.small .numbered-block__header::before, .numbered-block.small .numbered-block__header::after {
    top: 2.5rem;
  }
}
.numbered-block__header::before {
  font-size: inherit;
  font-family: "BeirutText", sans-serif;
  font-style: italic;
  counter-increment: numbered;
  content: counter(numbered, decimal-leading-zero);
  color: currentColor;
  opacity: 0.5;
}
.numbered-block__header::after {
  width: 3rem;
  height: 3rem;
  background-color: #246052;
  z-index: -1;
}
.numbered-block__header h3 {
  background: #246052;
  font-family: "BeirutDisplay", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 2rem 0;
  padding-left: 3.8rem;
  margin: 0;
}
@media (min-width: 950px) {
  .numbered-block__header h3 {
    font-size: 3.8rem;
    padding: 3rem 0;
  }
  .numbered-block.small .numbered-block__header h3 {
    font-size: 2.5rem;
    text-transform: initial;
    font-weight: normal;
  }
}

.page-title {
  width: 100%;
  padding: 102px 0 20px;
  background-color: #246052;
  color: #1e9e79;
}
@media (min-width: 768px) {
  .page-title {
    padding: 122px 0 40px;
  }
}
@media (min-width: 950px) {
  .page-title {
    padding: 142px 0 60px;
  }
}
.page-title h1,
.page-title h2 {
  margin: 0;
  font-size: 11vw;
  line-height: 11vw;
  text-transform: uppercase;
  font-weight: 900;
  color: currentColor;
}
@media (min-width: 1200px) {
  .page-title h1,
.page-title h2 {
    font-size: 15.7rem;
    line-height: 14.9rem;
  }
}
.page-title span {
  display: block;
}
.page-title span:nth-child(odd) {
  text-align: left;
}
.page-title span:nth-child(even) {
  text-align: right;
}

.press-list__header {
  width: 100%;
  position: relative;
  padding-bottom: 0.5rem;
}
.press-list__header h2 {
  margin: 0;
  font-weight: normal;
  font-size: 1.2rem;
  letter-spacing: 4.35px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #a0f996;
}
@media (min-width: 768px) {
  .press-list__header h2 {
    letter-spacing: 5.93px;
    font-size: 1.4rem;
  }
}
.press-list__header::after {
  content: "";
  display: block;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .press-list__header {
    padding-bottom: 3rem;
  }
}
.press-list__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.press-list__list::after {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #000;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.press-list__list.loading::after {
  opacity: 0.5;
  pointer-events: all;
}
.press-list__item {
  position: relative;
}
.press-list__item::after {
  content: "";
  display: block;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.press-list__item:empty {
  display: none;
}
.press-list__article {
  padding: 1.6rem 0;
}
.press-list__article__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 1.6rem;
}
.press-list__article__container:hover .press-list__article__content::after, .press-list__article__container:active .press-list__article__content::after, .press-list__article__container:focus .press-list__article__content::after {
  -webkit-transform: translate(25%, -25%);
       -o-transform: translate(25%, -25%);
          transform: translate(25%, -25%);
  opacity: 1;
}
.press-list__article__content {
  width: 100%;
  padding-right: 4rem;
  position: relative;
}
.press-list__article__content::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-mask-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbi9hcnJvdzwvdGl0bGU+CiAgICA8ZyBpZD0iaWNvbi9hcnJvdyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBvbHlnb24gaWQ9IlBhdGgiIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuOTczMDYwLCAzMC4yNDI2MDUpIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTI5Ljk3MzA2MCwgLTMwLjI0MjYwNSkgIiBwb2ludHM9IjE5IDMwLjIzNTUxIDIzLjIzNTQ0IDM0LjQ4NTIxIDI0LjY1MjA0IDMzLjA3MzQxIDIyLjgzMDY4IDMxLjI0NTkxIDQwLjk0NjEyIDMxLjI0MzgxIDQwLjk0NTgyIDI5LjI0MzgxIDIyLjgyNjExIDI5LjI0NTkxIDI0LjY2MTYyIDI3LjQxNjU5IDIzLjI0OTc5IDI2Ij48L3BvbHlnb24+CiAgICA8L2c+Cjwvc3ZnPgo=);
          mask-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iNjBweCIgaGVpZ2h0PSI2MHB4IiB2aWV3Qm94PSIwIDAgNjAgNjAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+aWNvbi9hcnJvdzwvdGl0bGU+CiAgICA8ZyBpZD0iaWNvbi9hcnJvdyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBvbHlnb24gaWQ9IlBhdGgiIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjkuOTczMDYwLCAzMC4yNDI2MDUpIHNjYWxlKC0xLCAxKSB0cmFuc2xhdGUoLTI5Ljk3MzA2MCwgLTMwLjI0MjYwNSkgIiBwb2ludHM9IjE5IDMwLjIzNTUxIDIzLjIzNTQ0IDM0LjQ4NTIxIDI0LjY1MjA0IDMzLjA3MzQxIDIyLjgzMDY4IDMxLjI0NTkxIDQwLjk0NjEyIDMxLjI0MzgxIDQwLjk0NTgyIDI5LjI0MzgxIDIyLjgyNjExIDI5LjI0NTkxIDI0LjY2MTYyIDI3LjQxNjU5IDIzLjI0OTc5IDI2Ij48L3BvbHlnb24+CiAgICA8L2c+Cjwvc3ZnPgo=);
  background-color: #a0f996;
  height: 6rem;
  width: 6rem;
  -webkit-transform: translate(-25%, -25%);
       -o-transform: translate(-25%, -25%);
          transform: translate(-25%, -25%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}
.press-list__article__content h3 {
  font-family: "BeirutText", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .press-list__article__content h3 {
    font-size: 2.5rem;
    margin: 0;
  }
}
.press-list__article__content p {
  display: none;
  font-size: 1.9rem;
  line-height: 1.5;
  margin: 1.6rem 0 1.8rem;
  opacity: 0.8;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .press-list__article__content p {
    display: -webkit-box;
  }
}
.press-list__article__source {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
}
.press-list__article__source a,
.press-list__article__source time {
  opacity: 0.5;
}
.press-list__article__source a {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.press-list__article__source a::after {
  content: ", ";
  display: inline;
}
.press-list__article__source a:hover, .press-list__article__source a:active, .press-list__article__source a:focus {
  opacity: 1;
}
@media (min-width: 768px) {
  .press-list__article__source {
    font-size: 1.4rem;
  }
}
@media (min-width: 768px) {
  .press-list__article {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin-left: auto;
    margin-right: 0;
    padding: 4rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .press-list__article {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
.press-list__action {
  width: 100%;
  padding: 4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.press-list__action button.loading {
  pointer-events: none;
  opacity: 0.5;
}
.press-list__action button.hidden {
  display: none;
}

.recipes-list__list,
.related-recipes__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  list-style: none;
  padding: 3rem 0 0;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  color: #ecff5f;
  overflow: hidden;
}
@media (min-width: 768px) {
  .recipes-list__list,
.related-recipes__list {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .recipes-list__list,
.related-recipes__list {
    max-width: 1266px;
  }
}
@media (min-width: 768px) {
  .recipes-list__list,
.related-recipes__list {
    padding: 5rem 0 3rem;
  }
}
.recipes-list__list__container,
.related-recipes__list__container {
  position: relative;
}
.recipes-list__list__container.loading::after,
.related-recipes__list__container.loading::after {
  opacity: 0.5;
  pointer-events: all;
}
.recipes-list__list__container::before, .recipes-list__list__container::after,
.related-recipes__list__container::before,
.related-recipes__list__container::after {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.recipes-list__list__container::before,
.related-recipes__list__container::before {
  z-index: -1;
  background-color: #246052;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.recipes-list__list__container::after,
.related-recipes__list__container::after {
  opacity: 0;
  z-index: 1;
  background-color: #000;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.recipes-list__item,
.related-recipes__item {
  opacity: 0;
  width: 100%;
  padding: 0 0 1.6rem;
  margin: 0 0 1.6rem;
  border-bottom: 1px solid #004b3a;
  -webkit-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
}
.visible .recipes-list__item,
.visible .related-recipes__item {
  opacity: 1;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 768px) {
  .recipes-list__item,
.related-recipes__item {
    width: calc((100% * 2.65 / 8) - calc(5.35 * 20px / 8));
    padding: 0;
    margin: 0;
    border: none;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .recipes-list__item,
.related-recipes__item {
    width: calc((100% * 2.65 / 8) - calc(5.35 * 30px / 8));
  }
}
.recipes-list__recipe a,
.related-recipes__recipe a {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: left;
}
@media (min-width: 768px) {
  .recipes-list__recipe a,
.related-recipes__recipe a {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .recipes-list__recipe a,
.related-recipes__recipe a {
    max-width: 1266px;
  }
}
@media (min-width: 768px) {
  .recipes-list__recipe a,
.related-recipes__recipe a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}
.recipes-list__recipe__header, .recipes-list__recipe__content,
.related-recipes__recipe__header,
.related-recipes__recipe__content {
  width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
}
@media (min-width: 768px) {
  .recipes-list__recipe__header, .recipes-list__recipe__content,
.related-recipes__recipe__header,
.related-recipes__recipe__content {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 768px) {
  .recipes-list__recipe__header, .recipes-list__recipe__content,
.related-recipes__recipe__header,
.related-recipes__recipe__content {
    width: 100%;
  }
}
.recipes-list__recipe__header h3,
.related-recipes__recipe__header h3 {
  margin: 0;
  font-family: "BeirutText", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  text-transform: uppercase;
}
.recipes-list__recipe__header h3 span,
.related-recipes__recipe__header h3 span {
  margin-top: 1rem;
  display: block;
  font-size: 1.2rem;
  text-transform: none;
  font-style: italic;
  font-weight: normal;
}
@media (min-width: 768px) {
  .recipes-list__recipe__header h3 span,
.related-recipes__recipe__header h3 span {
    margin-top: 0;
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .recipes-list__recipe__header h3,
.related-recipes__recipe__header h3 {
    margin: 3rem 0;
    padding: 0 1.6rem;
    font-size: 2.5rem;
  }
}
.recipes-list__recipe__content figure,
.related-recipes__recipe__content figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 40rem;
}
.recipes-list__recipe__content figure::before,
.related-recipes__recipe__content figure::before {
  content: "";
  display: block;
  padding-bottom: 165%;
}
.recipes-list__recipe__content figure img,
.related-recipes__recipe__content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.recipes-list__item:nth-child(1n),
.related-recipes__item:nth-child(1n) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.recipes-list__item:nth-child(2n),
.related-recipes__item:nth-child(2n) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.recipes-list__item:nth-child(3n),
.related-recipes__item:nth-child(3n) {
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.recipes-list__item:nth-child(4n),
.related-recipes__item:nth-child(4n) {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.recipes-list__item:nth-child(5n),
.related-recipes__item:nth-child(5n) {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.recipes-list__item:nth-child(6n),
.related-recipes__item:nth-child(6n) {
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.recipes-list {
  width: 100%;
}
.recipes-list__content {
  width: 100%;
  margin: 3rem auto;
  font-family: "BeirutText", sans-serif;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #246052;
  text-align: center;
}
.recipes-list__content p {
  margin: 0;
}
@media (min-width: 768px) {
  .recipes-list__content {
    font-size: 1.9rem;
  }
}
@media (min-width: 950px) {
  .recipes-list__content {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .recipes-list__content {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.recipes-list__container {
  overflow: hidden;
}
.recipes-list__filters {
  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;
}
.recipes-list__filters__action {
  font-family: "BeirutText", sans-serif;
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  color: #246052;
  border-top: 1px solid #246052;
  padding: 0.6rem 0;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.recipes-list__filters__action svg {
  width: 3rem;
  height: 3rem;
  fill: currentColor;
  -webkit-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
.recipes-list__filters__action:hover, .recipes-list__filters__action:active {
  color: #fff;
  background-color: #246052;
}
@media (min-width: 768px) {
  .recipes-list__filters__action {
    display: none;
  }
}
@media (min-width: 950px) {
  .recipes-list__filters {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin: 0 auto 1.6rem;
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .recipes-list__filters {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
.recipes-list__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.recipes-list__filter > * {
  width: 100%;
  max-width: 25rem;
  margin: 0 0 1.6rem;
}
.recipes-list__filter > *:first-child {
  margin-top: 1.6rem;
}
.recipes-list__filter > *:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .recipes-list__filter > * {
    margin: 0 0.8rem 1.6rem;
    width: auto;
  }
  .recipes-list__filter > *:first-child {
    margin-top: 0;
  }
}
[data-role=filters-accordion].active .recipes-list__filter {
  opacity: 1;
  pointer-events: initial;
}
@media (min-width: 768px) {
  .recipes-list__filter {
    overflow: visible;
    opacity: 1 !important;
    max-height: none !important;
    pointer-events: initial !important;
  }
}
.recipes-list__load-more.loading, .recipes-list__empty.loading {
  pointer-events: none;
  opacity: 0.5;
}
.recipes-list__load-more.hidden, .recipes-list__empty.hidden {
  display: none;
}
.recipes-list__load-more {
  margin: 4rem auto;
  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-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.recipes-list__empty {
  width: 100%;
  font-family: "BeirutText", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 10rem auto;
}

.related-products__container {
  overflow: visible;
}
.related-products__list {
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.related-products__item {
  height: auto;
}
.related-products__product {
  padding: 6rem 3rem 3rem;
  height: 100%;
}
.related-products__product.light {
  color: #fff;
}
.related-products__product a {
  display: block;
  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;
}
.related-products__product a:hover figure img, .related-products__product a:active figure img, .related-products__product a:focus figure img {
  -webkit-transform: translate(-50%, -50%) scale(1.3);
       -o-transform: translate(-50%, -50%) scale(1.3);
          transform: translate(-50%, -50%) scale(1.3);
}
.related-products__product h3 {
  text-align: center;
  text-transform: uppercase;
  margin: 1.6rem 0 0;
  font-family: "BeirutText", sans-serif;
  font-size: 2.1rem;
  position: relative;
  z-index: 10;
}
.related-products__product figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 30rem;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}
.related-products__product figure::before {
  content: "";
  display: block;
  padding-bottom: 111%;
}
.related-products__product figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.related-products__product figure img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translate(-50%, -50%) scale(1);
       -o-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-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, -o-transform 0.3s ease-in-out;
}
.related-products .swiper-button-next, .related-products .swiper-button-prev {
  width: 6rem;
  top: 0;
  height: 100%;
  margin: 0;
}
.related-products .swiper-button-next::after, .related-products .swiper-button-next::before, .related-products .swiper-button-prev::after, .related-products .swiper-button-prev::before {
  content: none;
}
.related-products .swiper-button-next {
  right: 0;
  cursor: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjQuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI1MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA1MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRkZERDREO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO30KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO3N0cm9rZS1saW5lY2FwOnNxdWFyZTt9Cjwvc3R5bGU+CjxnIGlkPSJEZXNpZ24tU3lzdGVtIj4KCTxnIGlkPSJMb2dvcy1feDJCXy1JY29ucyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI0My4wMDAwMDAsIC03NzAuMDAwMDAwKSI+CgkJPGcgaWQ9Imljb25feDJGX21lbnUtY29weS02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMzguMDAwMDAwLCA3NjAuMDAwMDAwKSI+CgkJCTxnIGlkPSJHcm91cC01LUNvcHktNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDExLjAwMDAwMCkiPgoJCQkJPHBvbHlnb24gaWQ9IkZpbGwtMSIgY2xhc3M9InN0MCIgcG9pbnRzPSIxNCwwLjggNi4xLDUuOCAwLjgsNS44IDAuOCwzMS44IDYuMSwzMS44IDE0LDM3LjggMzEuOSwzNy44IDM3LjgsMTYuOCA0Ny44LDE2LjggCgkJCQkJNDcuOCw3LjggMzAuNCw3LjggMzIuNCwyLjggMzIuNCwwLjggCQkJCSIvPgoJCQkJPGxpbmUgaWQ9IkxpbmUtMiIgY2xhc3M9InN0MSIgeDE9IjM3LjgiIHkxPSIxNi44IiB4Mj0iMjQuMyIgeTI9IjE2LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0zIiBjbGFzcz0ic3QxIiB4MT0iMzcuOCIgeTE9IjcuOCIgeDI9IjI0LjMiIHkyPSI3LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weSIgY2xhc3M9InN0MSIgeDE9IjM1LjMiIHkxPSIyNC4zIiB4Mj0iMjYuMyIgeTI9IjI0LjMiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0yIiBjbGFzcz0ic3QxIiB4MT0iMzIuOCIgeTE9IjMxLjMiIHgyPSIyOC4zIiB5Mj0iMzEuMyIvPgoJCQk8L2c+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=), auto;
}
.related-products .swiper-button-prev {
  left: 0;
  cursor: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjQuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI1MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA1MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRkZERDREO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO30KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO3N0cm9rZS1saW5lY2FwOnNxdWFyZTt9Cjwvc3R5bGU+CjxnIGlkPSJEZXNpZ24tU3lzdGVtIj4KCTxnIGlkPSJMb2dvcy1feDJCXy1JY29ucyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI0My4wMDAwMDAsIC03NzAuMDAwMDAwKSI+CgkJPGcgaWQ9Imljb25feDJGX21lbnUtY29weS02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMzguMDAwMDAwLCA3NjAuMDAwMDAwKSI+CgkJCTxnIGlkPSJHcm91cC01LUNvcHktNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDExLjAwMDAwMCkiPgoJCQkJPHBvbHlnb24gaWQ9IkZpbGwtMSIgY2xhc3M9InN0MCIgcG9pbnRzPSIzNC42LDAuOCA0Mi41LDUuOCA0Ny44LDUuOCA0Ny44LDMxLjggNDIuNSwzMS44IDM0LjYsMzcuOCAxNi43LDM3LjggMTAuOCwxNi44IAoJCQkJCTAuOCwxNi44IDAuOCw3LjggMTguMiw3LjggMTYuMiwyLjggMTYuMiwwLjggCQkJCSIvPgoJCQkJPGxpbmUgaWQ9IkxpbmUtMiIgY2xhc3M9InN0MSIgeDE9IjEwLjgiIHkxPSIxNi44IiB4Mj0iMjQuMyIgeTI9IjE2LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0zIiBjbGFzcz0ic3QxIiB4MT0iMTAuOCIgeTE9IjcuOCIgeDI9IjI0LjMiIHkyPSI3LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weSIgY2xhc3M9InN0MSIgeDE9IjEzLjMiIHkxPSIyNC4zIiB4Mj0iMjIuMyIgeTI9IjI0LjMiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0yIiBjbGFzcz0ic3QxIiB4MT0iMTUuOCIgeTE9IjMxLjMiIHgyPSIyMC4zIiB5Mj0iMzEuMyIvPgoJCQk8L2c+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=), auto;
}

.related-recipes {
  max-width: none;
  width: 100%;
  padding: 0 20px;
  background-color: #246052;
  color: #ecff5f;
}
@media (min-width: 768px) {
  .related-recipes {
    padding: 0 30px;
  }
}
.related-recipes__container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
}
@media (min-width: 768px) {
  .related-recipes__container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .related-recipes__container {
    max-width: 1266px;
  }
}
.related-recipes__header {
  width: 100%;
  font-family: "BeirutText", sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  text-transform: uppercase;
  text-decoration: underline;
  letter-spacing: 4.35px;
  padding-top: 1.6rem;
  text-align: center;
}
.related-recipes__header h2 {
  margin: 0;
  font-weight: normal;
}
@media (min-width: 768px) {
  .related-recipes__header {
    font-size: 1.6rem;
    line-height: 1.2;
    letter-spacing: 5.93px;
    padding-top: 3.6rem;
  }
}

.statement-slider {
  width: 100%;
  background-color: #b5f6a2;
}
.statement-slider__content {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 1.6rem 0 6rem;
}
.statement-slider--single .statement-slider__content {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .statement-slider__content {
    padding: 4rem 0 6rem;
  }
}
.statement-slider__pretitle {
  text-align: center;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
  font-size: 1.1rem;
  line-height: 1.8rem;
  opacity: 0.8;
  padding-bottom: 0.8rem;
}
@media (min-width: 768px) {
  .statement-slider__pretitle {
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.statement-slider__title {
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  font-size: 2.8rem;
  line-height: 1.1;
  padding-bottom: 5px;
  font-weight: 900;
}
@media (min-width: 768px) {
  .statement-slider__title {
    font-size: 3.8rem;
  }
}
.statement-slider__description {
  text-align: center;
  display: block;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .statement-slider__description {
    font-size: 1.9rem;
  }
}
.statement-slider .swiper-slide {
  padding: 0 30px;
}
.statement-slider .swiper-pagination-bullet {
  background-color: #246052;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.statement-slider .swiper-button-next, .statement-slider .swiper-button-prev {
  width: 6rem;
  top: 0;
  height: 100%;
  margin: 0;
}
.statement-slider .swiper-button-next::after, .statement-slider .swiper-button-next::before, .statement-slider .swiper-button-prev::after, .statement-slider .swiper-button-prev::before {
  content: none;
}
.statement-slider .swiper-button-next {
  right: 0;
  cursor: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjQuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI1MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA1MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRkZERDREO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO30KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO3N0cm9rZS1saW5lY2FwOnNxdWFyZTt9Cjwvc3R5bGU+CjxnIGlkPSJEZXNpZ24tU3lzdGVtIj4KCTxnIGlkPSJMb2dvcy1feDJCXy1JY29ucyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI0My4wMDAwMDAsIC03NzAuMDAwMDAwKSI+CgkJPGcgaWQ9Imljb25feDJGX21lbnUtY29weS02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMzguMDAwMDAwLCA3NjAuMDAwMDAwKSI+CgkJCTxnIGlkPSJHcm91cC01LUNvcHktNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDExLjAwMDAwMCkiPgoJCQkJPHBvbHlnb24gaWQ9IkZpbGwtMSIgY2xhc3M9InN0MCIgcG9pbnRzPSIxNCwwLjggNi4xLDUuOCAwLjgsNS44IDAuOCwzMS44IDYuMSwzMS44IDE0LDM3LjggMzEuOSwzNy44IDM3LjgsMTYuOCA0Ny44LDE2LjggCgkJCQkJNDcuOCw3LjggMzAuNCw3LjggMzIuNCwyLjggMzIuNCwwLjggCQkJCSIvPgoJCQkJPGxpbmUgaWQ9IkxpbmUtMiIgY2xhc3M9InN0MSIgeDE9IjM3LjgiIHkxPSIxNi44IiB4Mj0iMjQuMyIgeTI9IjE2LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0zIiBjbGFzcz0ic3QxIiB4MT0iMzcuOCIgeTE9IjcuOCIgeDI9IjI0LjMiIHkyPSI3LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weSIgY2xhc3M9InN0MSIgeDE9IjM1LjMiIHkxPSIyNC4zIiB4Mj0iMjYuMyIgeTI9IjI0LjMiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0yIiBjbGFzcz0ic3QxIiB4MT0iMzIuOCIgeTE9IjMxLjMiIHgyPSIyOC4zIiB5Mj0iMzEuMyIvPgoJCQk8L2c+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=), auto;
}
.statement-slider .swiper-button-prev {
  left: 0;
  cursor: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjQuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI1MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA1MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRkZERDREO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO30KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO3N0cm9rZS1saW5lY2FwOnNxdWFyZTt9Cjwvc3R5bGU+CjxnIGlkPSJEZXNpZ24tU3lzdGVtIj4KCTxnIGlkPSJMb2dvcy1feDJCXy1JY29ucyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI0My4wMDAwMDAsIC03NzAuMDAwMDAwKSI+CgkJPGcgaWQ9Imljb25feDJGX21lbnUtY29weS02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMzguMDAwMDAwLCA3NjAuMDAwMDAwKSI+CgkJCTxnIGlkPSJHcm91cC01LUNvcHktNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDExLjAwMDAwMCkiPgoJCQkJPHBvbHlnb24gaWQ9IkZpbGwtMSIgY2xhc3M9InN0MCIgcG9pbnRzPSIzNC42LDAuOCA0Mi41LDUuOCA0Ny44LDUuOCA0Ny44LDMxLjggNDIuNSwzMS44IDM0LjYsMzcuOCAxNi43LDM3LjggMTAuOCwxNi44IAoJCQkJCTAuOCwxNi44IDAuOCw3LjggMTguMiw3LjggMTYuMiwyLjggMTYuMiwwLjggCQkJCSIvPgoJCQkJPGxpbmUgaWQ9IkxpbmUtMiIgY2xhc3M9InN0MSIgeDE9IjEwLjgiIHkxPSIxNi44IiB4Mj0iMjQuMyIgeTI9IjE2LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0zIiBjbGFzcz0ic3QxIiB4MT0iMTAuOCIgeTE9IjcuOCIgeDI9IjI0LjMiIHkyPSI3LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weSIgY2xhc3M9InN0MSIgeDE9IjEzLjMiIHkxPSIyNC4zIiB4Mj0iMjIuMyIgeTI9IjI0LjMiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0yIiBjbGFzcz0ic3QxIiB4MT0iMTUuOCIgeTE9IjMxLjMiIHgyPSIyMC4zIiB5Mj0iMzEuMyIvPgoJCQk8L2c+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=), auto;
}

.tab__actions {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .tab__actions {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .tab__actions {
    max-width: 1266px;
  }
}
.tab__title {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin: 0;
}
.tab__controller {
  display: none;
}
.tab__controller:checked + .tab__content {
  display: block;
}
.tab__content {
  display: none;
}

:root {
  --text-center-image-rotation: 0deg;
}

.text-center-image-block {
  background-color: #fff;
  color: rgba(0, 102, 79, 0.7);
  padding: 3rem 0 5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .text-center-image-block__top {
    height: 100vh;
  }
}
@media (min-width: 950px) {
  .text-center-image-block {
    padding: 0 0 10rem;
  }
}
.text-center-image-block .grid:first-child {
  z-index: 1;
}
.text-center-image-block__block {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .text-center-image-block__block {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .text-center-image-block__block {
    max-width: 1266px;
  }
}
@media (min-width: 768px) {
  .text-center-image-block__block {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    min-height: 500px;
  }
}
.text-center-image-block__block.visible .text-center-image-block__left,
.text-center-image-block__block.visible .text-center-image-block__right {
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.text-center-image-block__left, .text-center-image-block__right, .text-center-image-block__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-style: italic;
  font-weight: normal;
  text-align: center;
}
@media (min-width: 768px) {
  .text-center-image-block__left, .text-center-image-block__right, .text-center-image-block__bottom {
    text-align: left;
  }
}
@media (min-width: 950px) {
  .text-center-image-block__left, .text-center-image-block__right, .text-center-image-block__bottom {
    font-size: 1.9rem;
    text-align: left;
  }
}
.text-center-image-block__left h3, .text-center-image-block__right h3, .text-center-image-block__bottom h3 {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 2.8rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 1rem;
  font-style: normal;
  font-weight: bold;
  color: #246052;
}
@media (min-width: 950px) {
  .text-center-image-block__left h3, .text-center-image-block__right h3, .text-center-image-block__bottom h3 {
    font-size: 3.8rem;
    margin: 0 0 1.6rem;
  }
}
@media (min-width: 950px) {
  .text-center-image-block__left.big, .text-center-image-block__right.big, .text-center-image-block__bottom.big {
    font-size: 2.5rem;
  }
  .text-center-image-block__left.big h3, .text-center-image-block__right.big h3, .text-center-image-block__bottom.big h3 {
    font-size: 5.6rem;
  }
}
.text-center-image-block__left p, .text-center-image-block__right p, .text-center-image-block__bottom p {
  margin: 0;
}
.text-center-image-block__left, .text-center-image-block__right {
  width: 100%;
  min-height: 6rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .text-center-image-block__left, .text-center-image-block__right {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .text-center-image-block__left {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
    margin-top: -20vh;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-center-image-block__left {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
.text-center-image-block__right {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .text-center-image-block__right {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
    margin-top: 10vh;
    padding: 10rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-center-image-block__right {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .text-center-image-block__right {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    padding-left: calc(100% / 8);
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .text-center-image-block__right {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.text-center-image-block__bottom {
  width: 100%;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 0;
}
@media (min-width: 768px) {
  .text-center-image-block__bottom {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-center-image-block__bottom {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .text-center-image-block__bottom {
    padding: 0 0 5rem;
  }
}
@media (min-width: 1200px) {
  .text-center-image-block__bottom {
    width: calc((100% * 4.1 / 8) - calc(3.9 * 20px / 8));
    margin-top: 150px;
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .text-center-image-block__bottom {
    width: calc((100% * 4.1 / 8) - calc(3.9 * 30px / 8));
  }
}
.text-center-image-block__bottom h3 {
  margin-bottom: 0;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .text-center-image-block__bottom h3 {
    margin-top: 1.6rem;
  }
}
.text-center-image-block__image {
  width: 100%;
  position: relative;
  margin-bottom: 50px;
}
.text-center-image-block__image figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  max-height: 70vh;
  -webkit-transform: rotate(var(--text-center-image-rotation));
       -o-transform: rotate(var(--text-center-image-rotation));
          transform: rotate(var(--text-center-image-rotation));
}
.text-center-image-block__image figure::before {
  content: "";
  display: block;
  padding-bottom: 182%;
}
.text-center-image-block__image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .text-center-image-block__image figure {
    max-height: 100%;
  }
}
.text-center-image-block__image figure img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100vh;
}
@media (min-width: 768px) {
  .text-center-image-block__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100vh;
    min-height: 500px;
  }
  .text-center-image-block__image figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 42rem;
  }
  .text-center-image-block__image figure::before {
    content: "";
    display: block;
    padding-bottom: 182%;
  }
  .text-center-image-block__image figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .text-center-image-block__image figure img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.text-center-image-block__pin {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .text-center-image-block__pin {
    position: static !important;
    -webkit-transform: none !important;
         -o-transform: none !important;
            transform: none !important;
  }
}
.text-center-image-block__pin.visible .text-center-image-block__image {
  opacity: 1;
}
.text-center-image-block__magnetic-holder {
  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;
  bottom: 0;
}
.text-center-image-block .pin-spacer-scroll-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.text-image-block {
  font-family: "BeirutText", sans-serif;
  background-color: #246052;
  color: #fff;
  overflow: hidden;
}
.text-image-block .grid__container {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .text-image-block .grid__container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.text-image-block .grid {
  position: static;
}
.text-image-block.light {
  background-color: #1e9e79;
}
.text-image-block.light .page-title {
  background-color: inherit;
  color: #246052;
}
.text-image-block.invert .grid {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .text-image-block.with-bottom-title .grid__container {
    margin-top: -12rem;
  }
}
.text-image-block__pretitle {
  display: none;
  width: 100%;
  text-align: center;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 5.93px;
  margin: 3rem 0;
  text-transform: uppercase;
  font-weight: normal;
  opacity: 0.9;
  color: #a0f996;
}
@media (min-width: 768px) {
  .text-image-block__pretitle {
    display: block;
  }
}
.text-image-block__content {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  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;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .text-image-block__content {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    font-size: 1.9rem;
    min-height: 60rem;
    margin-top: 12rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-image-block__content {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.text-image-block__content header {
  font-style: normal;
}
.text-image-block__content header h3 {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 4.4rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}
@media (min-width: 768px) {
  .text-image-block__content header h3 {
    font-size: 5.8rem;
  }
}
@media (min-width: 950px) {
  .text-image-block__content header h3 {
    font-size: 9rem;
  }
}
.text-image-block__content header h3 span {
  display: block;
  font-family: "BeirutText", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: normal;
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .text-image-block__content header h3 span {
    font-size: 2.5rem;
  }
}
.text-image-block__content header svg {
  width: 15rem;
  display: block;
  margin: 0 auto;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.text-image-block__content header svg path {
  fill: #246052;
}
@media (min-width: 768px) {
  .text-image-block__content header svg {
    width: 30rem;
  }
}
.dark .text-image-block__content header svg path {
  fill: #1e9e79;
}
.text-image-block__content p {
  margin: 0 0 4rem;
}
.with-title .text-image-block__content p {
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .with-title .text-image-block__content p {
    margin: 3rem 0;
  }
}
.text-image-block__content .border {
  font-style: normal;
}
.with-title .text-image-block__content {
  margin-top: 0;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .with-title .text-image-block__content {
    font-style: italic;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .with-frame .text-image-block__content {
    min-height: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .with-header .text-image-block__content {
    margin-top: 24rem;
  }
}
.text-image-block__image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .text-image-block__image {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-image-block__image {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
@media (min-width: 768px) {
  .text-image-block__image.with-title {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    padding-left: 60px;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-image-block__image.with-title {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 768px) {
  .invert .text-image-block__image.with-title {
    padding-left: 0;
    padding-right: 60px;
  }
}
.text-image-block__image figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  min-width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.text-image-block__image figure::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.text-image-block__image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.text-image-block__image figure img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .text-image-block__image figure {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100VW;
    width: 150%;
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    max-height: 60rem;
    min-width: 0;
    -webkit-transform: translateY(-50%) translateX(25%);
         -o-transform: translateY(-50%) translateX(25%);
            transform: translateY(-50%) translateX(25%);
  }
  .text-image-block__image figure::before {
    content: "";
    display: block;
    padding-bottom: 78%;
  }
  .text-image-block__image figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .text-image-block__image figure img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .invert .text-image-block__image figure {
    left: 0;
    -webkit-transform: translateY(-50%) translateX(-25%);
         -o-transform: translateY(-50%) translateX(-25%);
            transform: translateY(-50%) translateX(-25%);
  }
}
.text-image-block__image figure.text-image-block__frame {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 52rem;
  min-width: 0;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  margin: 0 0 0 auto;
}
.text-image-block__image figure.text-image-block__frame::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.text-image-block__image figure.text-image-block__frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.invert .text-image-block__image figure.text-image-block__frame {
  margin: 0 auto 0 0;
}
.text-image-block .page-title {
  padding-top: 3rem;
  padding-bottom: 0;
}
.text-image-block .page-title + .grid__container {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .text-image-block .page-title + .grid__container {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .text-image-block .page-title {
    padding-top: 0;
  }
}

:root {
  --text-side-image-rotation: 0deg;
}

.text-side-image-block {
  background-color: #fff;
  color: #246052;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .text-side-image-block {
    padding: 4rem 0 6.5rem;
  }
}
.text-side-image-block .grid {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .text-side-image-block.has-secondary-image {
    padding-bottom: 10rem;
  }
}
@media (min-width: 950px) {
  .text-side-image-block.has-secondary-image {
    padding-bottom: 16rem;
  }
}
.text-side-image-block.invert .grid {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.text-side-image-block__content {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .text-side-image-block__content {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
    text-align: left;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-side-image-block__content {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.text-side-image-block__top h3, .text-side-image-block__bottom h3 {
  font-family: "BeirutDisplay", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 2.8rem;
  margin: 0;
}
@media (min-width: 950px) {
  .text-side-image-block__top h3, .text-side-image-block__bottom h3 {
    font-size: 3.8rem;
  }
}
.text-side-image-block__top p, .text-side-image-block__bottom p {
  margin: 0;
  font-family: "BeirutText", sans-serif;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .text-side-image-block__top p, .text-side-image-block__bottom p {
    color: rgba(36, 96, 82, 0.8);
    font-size: 1.9rem;
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .text-side-image-block__top.big h3, .text-side-image-block__bottom.big h3 {
    font-size: 3.8rem;
  }
}
@media (min-width: 950px) {
  .text-side-image-block__top.big h3, .text-side-image-block__bottom.big h3 {
    font-size: 5.8rem;
  }
}
@media (min-width: 950px) {
  .text-side-image-block__top.big p, .text-side-image-block__bottom.big p {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .text-side-image-block__top {
    margin-bottom: 4rem;
  }
}
@media (min-width: 950px) {
  .text-side-image-block__top {
    margin-bottom: 7rem;
  }
}
.text-side-image-block__bottom {
  width: 100%;
}
@media (min-width: 768px) {
  .text-side-image-block__bottom {
    padding-left: 20%;
    margin-right: 0;
    margin-left: auto;
  }
}
.text-side-image-block__image {
  width: 100%;
  position: relative;
  padding: 12vw 0;
}
@media (min-width: 768px) {
  .text-side-image-block__image {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
    padding: 0;
    margin-top: 5rem;
    -webkit-transform: translateX(25%);
         -o-transform: translateX(25%);
            transform: translateX(25%);
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .text-side-image-block__image {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
@media (min-width: 768px) {
  .invert .text-side-image-block__image {
    left: 0;
    -webkit-transform: translateX(-25%);
         -o-transform: translateX(-25%);
            transform: translateX(-25%);
  }
}
.text-side-image-block__main {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.text-side-image-block__main::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.text-side-image-block__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.text-side-image-block__secondary {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 75%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(25%, -50%) rotate(var(--text-side-image-rotation));
       -o-transform: translate(25%, -50%) rotate(var(--text-side-image-rotation));
          transform: translate(25%, -50%) rotate(var(--text-side-image-rotation));
  z-index: 1;
}
.text-side-image-block__secondary::before {
  content: "";
  display: block;
  padding-bottom: 183%;
}
.text-side-image-block__secondary img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.text-side-image-block__secondary img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .text-side-image-block__secondary {
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 90%;
    position: absolute;
    -webkit-transform: translate(50%, -50%) rotate(var(--text-side-image-rotation));
         -o-transform: translate(50%, -50%) rotate(var(--text-side-image-rotation));
            transform: translate(50%, -50%) rotate(var(--text-side-image-rotation));
  }
  .text-side-image-block__secondary::before {
    content: "";
    display: block;
    padding-bottom: 183%;
  }
  .text-side-image-block__secondary img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .text-side-image-block__secondary img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.text-side-image-block .page-title {
  background-color: inherit;
  color: #1e9e79;
  padding: 0 0 2rem;
}

.values-block {
  background-color: #1e9e79;
  color: #fff;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .values-block {
    padding-top: 8rem;
  }
}
.values-block__header {
  width: 100%;
  margin: 0 auto 5rem;
  text-align: center;
}
.values-block__header h2,
.values-block__header p {
  margin: 0;
}
.values-block__header h2 {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .values-block__header h2 {
    font-size: 3.8rem;
    line-height: 1.1;
  }
}
.values-block__header p {
  margin: 2.6rem 0 0;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-style: italic;
  color: #004b3a;
}
@media (min-width: 768px) {
  .values-block__header p {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  .values-block__header {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .values-block__header {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.values-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}
@media (min-width: 768px) {
  .values-block__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.values-block__item {
  position: relative;
  width: 100%;
  min-width: 25%;
  min-height: 43rem;
  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;
}
.values-block__item:first-child .values-block__value__content header::after {
  content: none;
}
.values-block__value {
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
  padding: 5rem 20px;
}
@media (min-width: 768px) {
  .values-block__value {
    padding-left: 30px;
    padding-right: 30px;
    max-height: 200px;
    -webkit-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out;
  }
}
.values-block__value header {
  position: relative;
}
.values-block__value header::before {
  display: block;
  content: "";
  width: 2.5rem;
  height: 2px;
  background-color: #fff;
  margin-bottom: 1rem;
}
.values-block__value header::after {
  display: block;
  content: none;
  position: absolute;
  height: 200%;
  width: 1px;
  background-color: rgba(255, 221, 77, 0.2);
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .values-block__value header::after {
    content: "";
  }
}
.values-block__value h3,
.values-block__value p {
  margin: 0;
}
.values-block__value h3 {
  font-family: "BeirutDisplay", sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  text-transform: uppercase;
}
.values-block__value p {
  margin: 2.6rem 0 0;
  font-size: 1.9rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .values-block__value p {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
}
.values-block__value__content {
  position: relative;
  left: 0;
  top: 0;
}
.values-block__value__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.values-block__value__background::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .values-block__value__background {
    opacity: 0;
    -webkit-transform: translateY(50%);
         -o-transform: translateY(50%);
            transform: translateY(50%);
    -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
  }
}
.values-block__value:hover {
  max-height: 80rem;
}
.values-block__value:hover .values-block__value__content header::after {
  opacity: 0;
}
.values-block__value:hover .values-block__value__content p {
  opacity: 1;
}
.values-block__value:hover ~ .values-block__value__background {
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.archive-product {
  margin-top: 82px;
  width: 100%;
  overflow-x: hidden;
}
.archive-product .woocommerce-breadcrumb {
  display: none !important;
}
.archive-product__header {
  width: 100%;
  text-align: center;
  margin: 3rem auto;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #246052;
  font-style: italic;
  font-weight: 400;
}
.archive-product__header * {
  margin: 0;
}
@media (min-width: 768px) {
  .archive-product__header {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
    font-size: 1.9rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .archive-product__header {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.archive-product__filter-wrapper {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .archive-product__filter-wrapper {
    position: fixed;
    background-color: #fff;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    top: 0;
    -webkit-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
    overflow-y: auto;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: -o-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, -o-transform 0.3s ease-in-out;
  }
  .archive-product__filter-wrapper.archive-product--show {
    -webkit-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .archive-product__filter-wrapper {
    display: block;
  }
}
.archive-product__filter-wrapper-mobile, .archive-product__filter-wrapper-close {
  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;
  position: relative;
}
@media (min-width: 768px) {
  .archive-product__filter-wrapper-mobile, .archive-product__filter-wrapper-close {
    display: none;
  }
}
.archive-product__filter-wrapper-mobile button, .archive-product__filter-wrapper-close button {
  font-family: "BeirutText", sans-serif;
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  color: #246052;
  padding: 0.6rem 20px;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.archive-product__filter-wrapper-mobile button svg, .archive-product__filter-wrapper-close button svg {
  width: 3rem;
  height: 3rem;
  fill: currentColor;
  -webkit-transition: fill 0.3s ease-in-out;
  -o-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
.archive-product__filter-wrapper-mobile button:hover, .archive-product__filter-wrapper-mobile button:active, .archive-product__filter-wrapper-mobile button:focus, .archive-product__filter-wrapper-close button:hover, .archive-product__filter-wrapper-close button:active, .archive-product__filter-wrapper-close button:focus {
  background-color: #246052;
  color: #fff;
}
.archive-product__filter-wrapper-mobile button:hover svg, .archive-product__filter-wrapper-mobile button:active svg, .archive-product__filter-wrapper-mobile button:focus svg, .archive-product__filter-wrapper-close button:hover svg, .archive-product__filter-wrapper-close button:active svg, .archive-product__filter-wrapper-close button:focus svg {
  fill: #fff;
}
.archive-product__filter-wrapper-mobile span, .archive-product__filter-wrapper-close span {
  margin-left: auto;
  margin-right: 0;
}
.archive-product__filter-wrapper-mobile::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: 1px solid #246052;
}
.archive-product__filter-wrapper-close::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: 1px solid rgba(36, 96, 82, 0.4);
}
.archive-product__filter-wrapper-close button svg {
  width: 100%;
  height: 100%;
  margin: 0;
}
.archive-product__filter-wrapper-close button span {
  width: 4rem;
  height: 4rem;
}
.archive-product__close-filter {
  display: block;
}
@media (min-width: 768px) {
  .archive-product__close-filter {
    display: none;
  }
}
.archive-product__categories-wrapper {
  width: 100%;
  padding: 3rem 0 2rem;
  position: relative;
  border-bottom: 1px solid rgba(36, 96, 82, 0.4);
}
@media (min-width: 768px) {
  .archive-product__categories-wrapper {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin: 0 auto 3rem;
    padding: 0;
    border-bottom: none;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .archive-product__categories-wrapper {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
.archive-product__categories-container {
  width: 100%;
  margin: 0 auto;
  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-wrap: wrap;
      flex-wrap: wrap;
}
.archive-product__category {
  margin: 0 1rem 1rem;
}
.archive-product__category * {
  pointer-events: none;
}
@media (min-width: 768px) {
  .archive-product__category {
    margin: 0 1rem;
  }
}
.archive-product__filter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
}
.archive-product__filter-container::before {
  content: none;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  top: 0;
  width: 100vw;
  border-top: 1px solid #246052;
}
@media (min-width: 768px) {
  .archive-product__filter-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;
    min-height: 40px;
    padding: 1.6rem 0;
  }
  .archive-product__filter-container::before {
    content: "";
  }
}
.archive-product__subcategories {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .archive-product__subcategories {
    padding: 5px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.archive-product__subcategories.archive-product--show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.archive-product__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 3rem 0;
  border-top: 1px solid rgba(36, 96, 82, 0.4);
}
@media (min-width: 768px) {
  .archive-product__tags {
    border-top: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0.5rem 0;
    border-left: 1px solid rgba(36, 96, 82, 0.4);
    padding-left: 3rem;
    margin-left: 1rem;
  }
}
.archive-product__filter-option {
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #246052;
  display: grid;
  grid-template-columns: -webkit-min-content auto;
  grid-template-columns: min-content auto;
  grid-gap: 0.5rem;
  margin-right: 20px;
  cursor: pointer;
  padding: 1rem 0;
}
.archive-product__filter-option:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .archive-product__filter-option {
    padding: 0.5rem 0;
  }
}
.archive-product__filter-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.archive-product__filter-input input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.archive-product__filter-input input:checked + .archive-product__filter-control {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjNweCIgaGVpZ2h0PSIyM3B4IiB2aWV3Qm94PSIwIDAgMjMgMjMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+RUY0Nzc0MDktMDY4MS00Rjc4LUIwQzItQjlBQTUyNjk1OThGPC90aXRsZT4KICAgIDxkZWZzPgogICAgICAgIDxmaWx0ZXIgaWQ9ImZpbHRlci0xIj4KICAgICAgICAgICAgPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUdyYXBoaWMiIHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAuNzExMTE1IDAgMCAwIDAgMC45NjM0ODYgMCAwIDAgMCAwLjYzNDc2NCAwIDAgMCAxLjAwMDAwMCAwIj48L2ZlQ29sb3JNYXRyaXg+CiAgICAgICAgPC9maWx0ZXI+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iTGF5b3V0cyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjAyLVNlY2Nhb19Mb2phIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDguMDAwMDAwLCAtMzIyLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iRklMVEVSUyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDkuMDAwMDAwLCAzMTguMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMy1Db3B5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjAwMDAwMCwgNS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTMuMzgwNzYzOCwwLjcwMTAxMDEyNyBMMTcuMDU4Njg4NiwzLjM0MzMzMTY2IEwxOS43MDEwMTAxLDcuMDIxMjU2NDQgTDE5LjcwMTAxMDEsMTMuMzgwNzYzOCBMMTcuMDU4Njg4NiwxNy4wNTg2ODg2IEwxMy4zODA3NjM4LDE5LjcwMTAxMDEgTDcuMDIxMjU2NDQsMTkuNzAxMDEwMSBMMy4zNDMzMzE2NiwxNy4wNTg2ODg2IEwwLjcwMTAxMDEyNywxMy4zODA3NjM4IEwwLjcwMTAxMDEyNyw3LjAyMTI1NjQ0IEwzLjM0MzMzMTY2LDMuMzQzMzMxNjYgTDcuMDIxMjU2NDQsMC43MDEwMTAxMjcgTDEzLjM4MDc2MzgsMC43MDEwMTAxMjcgWiIgaWQ9IkZpbGwtMS1Db3B5LTIiIHN0cm9rZT0iIzAwNEIzQSIgZmlsbD0iIzI0NjA1MiI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgIDxnIGZpbHRlcj0idXJsKCNmaWx0ZXItMSkiIGlkPSJHcm91cC02IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPgogICAgICAgICAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4wMDAwMDAsIDEwLjAwMDAwMCkgcm90YXRlKDQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC4wMDAwMDApIHRyYW5zbGF0ZSgzLjAwMDAwMCwgMy4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaW5lIHgxPSIwLjQ1NzEwNjc4MSIgeTE9IjcuMDYwNjYwMTciIHgyPSIxMy45NTcxMDY4IiB5Mj0iNy4wNjA2NjAxNyIgaWQ9InBsdXMiIHN0cm9rZT0iI0QxRDFENiIgc3Ryb2tlLXdpZHRoPSIyIj48L2xpbmU+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGluZSB4MT0iNy4yMDcxMDY3OCIgeTE9IjAuMzEwNjYwMTcyIiB4Mj0iNy4yMDcxMDY3OCIgeTI9IjEzLjgxMDY2MDIiIGlkPSJwbHVzIiBzdHJva2U9IiNEMUQxRDYiIHN0cm9rZS13aWR0aD0iMiI+PC9saW5lPgogICAgICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) no-repeat center;
}
.archive-product__filter-control {
  display: block;
  width: 1em;
  height: 1em;
  -webkit-transform: translateY(-0.05em);
       -o-transform: translateY(-0.05em);
          transform: translateY(-0.05em);
  border-radius: 100%;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjFweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjEgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+NDg3RTMyMjYtRTRFNS00M0UxLTk4RTUtRDk0MTQ4RTlDMUM4PC90aXRsZT4KICAgIDxnIGlkPSJMYXlvdXRzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iMDItU2VjY2FvX0xvamEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMzUuMDAwMDAwLCAtMzIzLjAwMDAwMCkiIHN0cm9rZT0iIzI0NjA1MiIgc3Ryb2tlLXdpZHRoPSIxLjA1ODA3MjM2Ij4KICAgICAgICAgICAgPGcgaWQ9IkZJTFRFUlMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ5LjAwMDAwMCwgMzE4LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTMtQ29weSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjg2LjAwMDAwMCwgNS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTMuMzcxNDE0OSwwLjczMDA0NjMwOCBMMTcuMDM3ODgzMSwzLjM2NDEzNzEzIEwxOS42NzE5NzM5LDcuMDMwNjA1MzYgTDE5LjY3MTk3MzksMTMuMzcxNDE0OSBMMTcuMDM3ODgzMSwxNy4wMzc4ODMxIEwxMy4zNzE0MTQ5LDE5LjY3MTk3MzkgTDcuMDMwNjA1MzYsMTkuNjcxOTczOSBMMy4zNjQxMzcxMywxNy4wMzc4ODMxIEwwLjczMDA0NjMwOCwxMy4zNzE0MTQ5IEwwLjczMDA0NjMwOCw3LjAzMDYwNTM2IEwzLjM2NDEzNzEzLDMuMzY0MTM3MTMgTDcuMDMwNjA1MzYsMC43MzAwNDYzMDggTDEzLjM3MTQxNDksMC43MzAwNDYzMDggWiIgaWQ9IkZpbGwtMS1Db3B5LTIiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) no-repeat center;
  background-size: contain;
}
.archive-product__filter-label {
  line-height: 1;
  margin-left: 7px;
}
.archive-product__grid__container {
  position: relative;
}
.archive-product__grid__container.loading::after {
  opacity: 0.5;
  pointer-events: all;
}
.archive-product__grid__container::after {
  content: "";
  display: block;
  width: 100vw;
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  z-index: 1;
  background-color: #000;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.archive-product__grid {
  padding: 0;
  list-style: none;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  row-gap: 0;
  justify-items: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .archive-product__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.archive-product__grid-item {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 30px;
  cursor: none;
}
.archive-product__grid-item a {
  width: 100%;
  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;
  cursor: none;
}
.archive-product__grid-item a.button {
  display: none !important;
}
.archive-product__grid-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}
.archive-product__grid-image::before {
  content: "";
  display: block;
  padding-bottom: 111%;
}
.archive-product__grid-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.archive-product__grid-image img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform: translate(-50%, -50%) scale(1);
       -o-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-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, -o-transform 0.3s ease-in-out;
}
.archive-product__grid-info {
  text-transform: uppercase;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #00664f;
  position: relative;
}
.archive-product__grid-info h2 {
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: normal;
}
@media (min-width: 768px) {
  .archive-product__grid-info h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 950px) {
  .archive-product__grid-info h2 {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
.archive-product__grid-info .price {
  width: 100%;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 900;
  color: #246052;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .archive-product__grid-info .price {
    font-size: 3.1rem;
    line-height: 3.6rem;
  }
}
@media (min-width: 950px) {
  .archive-product__grid-info .price {
    font-size: 3.9rem;
    line-height: 4.5rem;
  }
}
.archive-product--dark .archive-product__grid-info .price {
  color: #fff;
}
.archive-product--dark .archive-product__grid-info {
  color: #fff;
}
.archive-product .archive-product__grid-item:hover img {
  -webkit-transform: translate(-50%, -57%) scale(1.1);
       -o-transform: translate(-50%, -57%) scale(1.1);
          transform: translate(-50%, -57%) scale(1.1);
}
.archive-product .archive-product__grid-item:hover .archive-product__grid-info h2 {
  opacity: 0;
}
.archive-product .archive-product__grid-item:hover .archive-product__grid-info .price {
  opacity: 1;
}
.archive-product__loadmore-container.loading, .archive-product__empty-container.loading {
  pointer-events: none;
  opacity: 0.5;
}
.archive-product__loadmore-container.hidden, .archive-product__empty-container.hidden {
  display: none;
}
.archive-product__loadmore-container {
  width: 100%;
  max-width: 1266px;
  margin: 0 auto;
  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: 40px 0;
}
.archive-product__empty-container {
  width: 100%;
  font-family: "BeirutText", sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 10rem auto;
}

.woocommerce-cart .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-cart .product-name, .woocommerce-cart .product-quantity, .woocommerce-cart .product-subtotal, .woocommerce-cart .product-price {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2rem;
  padding-right: 4rem;
  font-family: "BeirutDisplay", sans-serif;
  text-transform: capitalize;
  line-height: 1.2;
  font-size: 1.6rem;
}
.woocommerce-cart .product-name::before, .woocommerce-cart .product-quantity::before, .woocommerce-cart .product-subtotal::before, .woocommerce-cart .product-price::before {
  display: block;
  font-family: "BeirutText", sans-serif;
  content: attr(data-title) ": ";
  font-weight: 700;
  text-transform: initial;
  padding-right: 1.6rem;
}
@media (min-width: 1200px) {
  .woocommerce-cart .product-name, .woocommerce-cart .product-quantity, .woocommerce-cart .product-subtotal, .woocommerce-cart .product-price {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 0;
    font-size: 2.5rem;
    padding-right: 0;
  }
  .woocommerce-cart .product-name::before, .woocommerce-cart .product-quantity::before, .woocommerce-cart .product-subtotal::before, .woocommerce-cart .product-price::before {
    content: none;
  }
}
.woocommerce-cart .product-price, .woocommerce-cart .product-quantity, .woocommerce-cart .product-subtotal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1200px) {
  .woocommerce-cart .product-price, .woocommerce-cart .product-quantity, .woocommerce-cart .product-subtotal {
    width: calc((100% * 1 / 6) - calc(5 * 20px / 6));
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .woocommerce-cart .product-price, .woocommerce-cart .product-quantity, .woocommerce-cart .product-subtotal {
    width: calc((100% * 1 / 6) - calc(5 * 30px / 6));
  }
}
.woocommerce-cart .product-thumbnail {
  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-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-bottom: 3rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1200px) {
  .woocommerce-cart .product-thumbnail {
    width: calc((100% * 1 / 6) - calc(5 * 20px / 6));
    padding-bottom: 0;
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .woocommerce-cart .product-thumbnail {
    width: calc((100% * 1 / 6) - calc(5 * 30px / 6));
  }
}
.woocommerce-cart .product-thumbnail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.woocommerce-cart .product-thumbnail a.remove {
  background-color: #246052;
  width: 4rem;
  height: 4rem;
  -webkit-mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNDAuMjUsMTkuNzVhMSwxLDAsMCwxLC4wOCwxLjMybC0uMDguMDlMMzEuNDEsMzBsOC44NCw4Ljg0YTEsMSwwLDAsMSwwLDEuNDEsMSwxLDAsMCwxLTEuMzIuMDhsLS4wOS0uMDhMMzAsMzEuNDFsLTguODQsOC44NGExLDEsMCwwLDEtMS40MSwwLDEsMSwwLDAsMS0uMDgtMS4zMmwuMDgtLjA5TDI4LjU5LDMwbC04Ljg0LTguODRhMSwxLDAsMCwxLDAtMS40MSwxLDEsMCwwLDEsMS4zMi0uMDhsLjA5LjA4TDMwLDI4LjU5bDguODQtOC44NEExLDEsMCwwLDEsNDAuMjUsMTkuNzVaIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
          mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNDAuMjUsMTkuNzVhMSwxLDAsMCwxLC4wOCwxLjMybC0uMDguMDlMMzEuNDEsMzBsOC44NCw4Ljg0YTEsMSwwLDAsMSwwLDEuNDEsMSwxLDAsMCwxLTEuMzIuMDhsLS4wOS0uMDhMMzAsMzEuNDFsLTguODQsOC44NGExLDEsMCwwLDEtMS40MSwwLDEsMSwwLDAsMS0uMDgtMS4zMmwuMDgtLjA5TDI4LjU5LDMwbC04Ljg0LTguODRhMSwxLDAsMCwxLDAtMS40MSwxLDEsMCwwLDEsMS4zMi0uMDhsLjA5LjA4TDMwLDI4LjU5bDguODQtOC44NEExLDEsMCwwLDEsNDAuMjUsMTkuNzVaIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.woocommerce-cart .product-image {
  display: block;
  width: 100%;
}
.woocommerce-cart .product-image figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 9.4rem;
}
.woocommerce-cart .product-image figure::before {
  content: "";
  display: block;
  padding-bottom: 182%;
}
.woocommerce-cart .product-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.woocommerce-cart .product-image figure img {
  -o-object-fit: contain;
     object-fit: contain;
}
.woocommerce-cart .product-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 1200px) {
  .woocommerce-cart .product-name {
    width: calc((100% * 2 / 6) - calc(4 * 20px / 6));
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .woocommerce-cart .product-name {
    width: calc((100% * 2 / 6) - calc(4 * 30px / 6));
  }
}
.woocommerce-cart .product-price .amount, .woocommerce-cart .product-subtotal .amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.woocommerce-cart .product-price .amount::after {
  text-transform: lowercase;
  font-family: "BeirutText", sans-serif;
  font-size: 1.4rem;
  line-height: inherit;
}
.woocommerce-cart .product-subtotal {
  padding-bottom: 0;
}
.woocommerce-cart .product-quantity input {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  height: 100%;
  padding: 0;
  border: 1px solid #246052;
  text-align: center;
  font-size: 1.6rem;
  color: inherit;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.woocommerce-cart .product-quantity input::-webkit-outer-spin-button, .woocommerce-cart .product-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-cart .product-quantity input:hover, .woocommerce-cart .product-quantity input:active, .woocommerce-cart .product-quantity input:focus {
  background-color: #246052;
  color: #fff;
}
.woocommerce-cart .product-quantity .quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce-cart .product-quantity .quantity__input {
  max-width: 8rem;
}
.woocommerce-cart .product-quantity .quantity__decrease, .woocommerce-cart .product-quantity .quantity__increase {
  display: block;
  width: 4rem;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.woocommerce-cart .product-quantity .quantity__decrease:hover .border__horizontal, .woocommerce-cart .product-quantity .quantity__decrease:active .border__horizontal, .woocommerce-cart .product-quantity .quantity__decrease:focus .border__horizontal, .woocommerce-cart .product-quantity .quantity__increase:hover .border__horizontal, .woocommerce-cart .product-quantity .quantity__increase:active .border__horizontal, .woocommerce-cart .product-quantity .quantity__increase:focus .border__horizontal {
  background-color: #246052;
  border-color: #246052;
}
.woocommerce-cart .product-quantity .quantity__decrease:hover .border__middle, .woocommerce-cart .product-quantity .quantity__decrease:active .border__middle, .woocommerce-cart .product-quantity .quantity__decrease:focus .border__middle, .woocommerce-cart .product-quantity .quantity__increase:hover .border__middle, .woocommerce-cart .product-quantity .quantity__increase:active .border__middle, .woocommerce-cart .product-quantity .quantity__increase:focus .border__middle {
  color: #fff;
  background-color: #246052;
}
.woocommerce-cart .product-quantity .quantity__decrease:hover .border__middle::before, .woocommerce-cart .product-quantity .quantity__decrease:hover .border__middle::after, .woocommerce-cart .product-quantity .quantity__decrease:active .border__middle::before, .woocommerce-cart .product-quantity .quantity__decrease:active .border__middle::after, .woocommerce-cart .product-quantity .quantity__decrease:focus .border__middle::before, .woocommerce-cart .product-quantity .quantity__decrease:focus .border__middle::after, .woocommerce-cart .product-quantity .quantity__increase:hover .border__middle::before, .woocommerce-cart .product-quantity .quantity__increase:hover .border__middle::after, .woocommerce-cart .product-quantity .quantity__increase:active .border__middle::before, .woocommerce-cart .product-quantity .quantity__increase:active .border__middle::after, .woocommerce-cart .product-quantity .quantity__increase:focus .border__middle::before, .woocommerce-cart .product-quantity .quantity__increase:focus .border__middle::after {
  border-color: #fff;
}
.woocommerce-cart .product-quantity .quantity__decrease:hover .border__corner .corner-background-color, .woocommerce-cart .product-quantity .quantity__decrease:active .border__corner .corner-background-color, .woocommerce-cart .product-quantity .quantity__decrease:focus .border__corner .corner-background-color, .woocommerce-cart .product-quantity .quantity__increase:hover .border__corner .corner-background-color, .woocommerce-cart .product-quantity .quantity__increase:active .border__corner .corner-background-color, .woocommerce-cart .product-quantity .quantity__increase:focus .border__corner .corner-background-color {
  fill: #246052;
}
.woocommerce-cart .product-quantity .quantity__decrease .border__middle, .woocommerce-cart .product-quantity .quantity__increase .border__middle {
  position: relative;
}
.woocommerce-cart .product-quantity .quantity__decrease .border__middle::after, .woocommerce-cart .product-quantity .quantity__decrease .border__middle::before, .woocommerce-cart .product-quantity .quantity__increase .border__middle::after, .woocommerce-cart .product-quantity .quantity__increase .border__middle::before {
  content: "";
  font-size: 2rem;
  line-height: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  border: 1px solid #246052;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: border-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.woocommerce-cart .product-quantity .quantity__decrease .border__middle::after, .woocommerce-cart .product-quantity .quantity__increase .border__middle::after {
  -webkit-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
       -o-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.woocommerce-cart .product-quantity .quantity__decrease .border__middle {
  border-left: 1px solid #246052;
}
.woocommerce-cart .product-quantity .quantity__decrease .border__middle::after {
  content: none;
}
.woocommerce-cart .product-quantity .quantity__decrease .border__top .border__horizontal,
.woocommerce-cart .product-quantity .quantity__decrease .border__bottom .border__horizontal {
  margin-left: -1px;
  margin-right: 0;
}
.woocommerce-cart .product-quantity .quantity__increase .border__middle {
  border-right: 1px solid #246052;
}
.woocommerce-cart .product-quantity .quantity__increase .border__top .border__horizontal,
.woocommerce-cart .product-quantity .quantity__increase .border__bottom .border__horizontal {
  margin-right: -1px;
  margin-left: 0;
}
.woocommerce-cart .product-quantity .border__middle {
  border-right: none;
  border-left: none;
  height: 1rem;
  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: #fff;
  margin: -1px 0;
}
.woocommerce-cart .product-quantity .border__horizontal {
  background-color: #fff;
}
.woocommerce-cart .product-quantity .border__corner-top-right, .woocommerce-cart .product-quantity .border__corner-bottom-right {
  margin-left: auto;
  margin-right: 0;
}
.woocommerce-cart .product-quantity .border__corner .corner-line-color {
  fill: #246052;
}
.woocommerce-cart .product-quantity .border__corner .corner-background-color {
  fill: #fff;
}

html[lang=pt-PT] .woocommerce-cart .product-price .amount::after {
  content: "/cada";
  margin-bottom: 1px;
}
@media (min-width: 1200px) {
  html[lang=pt-PT] .woocommerce-cart .product-price .amount::after {
    margin-bottom: 4px;
  }
}

.woocommerce-cart .grid__container {
  position: relative;
}
.woocommerce-cart .grid {
  position: static;
}
.woocommerce-cart-header {
  width: 100%;
  text-align: center;
  margin: 3rem 0;
}
@media (min-width: 768px) {
  .woocommerce-cart-header {
    margin: 5rem 0;
  }
}
.woocommerce-cart-header h1 {
  font-family: "BeirutDisplay", sans-serif;
  text-transform: uppercase;
  color: #1e9e79;
  font-size: 3.8rem;
  line-height: 1.2;
  margin: 0;
}
.woocommerce-cart-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.woocommerce-cart-form__list {
  width: 100%;
  margin-bottom: 3rem;
  position: static !important;
}
@media (min-width: 768px) {
  .woocommerce-cart-form__list {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-cart-form__list {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .woocommerce-cart-form__list {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .woocommerce-cart-form__list {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
@media (min-width: 1200px) {
  .woocommerce-cart-form__list {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .woocommerce-cart-form__list {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
.woocommerce-cart-form__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-cart-form__item {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(36, 96, 82, 0.4);
}
.woocommerce-cart-form__item:last-child {
  border-bottom: none;
}
.woocommerce-cart-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 950px) {
  .woocommerce-cart-form__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .woocommerce-cart-form__actions {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.woocommerce-cart-form__actions .coupon {
  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-wrap: wrap;
      flex-wrap: wrap;
  margin: 2rem 0 0;
}
@media (min-width: 768px) {
  .woocommerce-cart-form__actions .coupon {
    margin: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.woocommerce-cart-form__actions .coupon label {
  font-size: 2.5rem;
  line-height: 1;
  display: none;
}
@media (min-width: 950px) {
  .woocommerce-cart-form__actions .coupon label {
    display: block;
  }
}
.woocommerce-cart-form__actions .coupon input {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  appearance: none;
  height: 100%;
  padding: 0 5rem 0 0;
  border-top: 1px solid #246052;
  border-bottom: 1px solid #246052;
  text-align: left;
  font-size: 1.4rem;
  color: inherit;
  background-color: #fff;
  position: relative;
  z-index: 0;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.woocommerce-cart-form__actions .coupon input::-webkit-input-placeholder {
  opacity: 1;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-cart-form__actions .coupon input::-moz-placeholder {
  opacity: 1;
  color: #246052;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-cart-form__actions .coupon input:-ms-input-placeholder {
  opacity: 1;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-cart-form__actions .coupon input::-ms-input-placeholder {
  opacity: 1;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-cart-form__actions .coupon input::placeholder {
  opacity: 1;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-cart-form__actions .coupon__input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  max-width: 20rem;
}
.woocommerce-cart-form__actions .coupon__input-wrapper button[type=submit] {
  background-color: #246052;
  -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbi9hcnJvd19zbWFsbDwvdGl0bGU+CiAgICA8ZyBpZD0iSWNvbi9hcnJvd19zbWFsbCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTMuMjkyODkzMjIsNy42ODk2MzAzMyBDMy42NTMzNzcxOCw3LjMyOTE0NjM3IDQuMjIwNjA4MjQsNy4zMDE0MTY4MyA0LjYxMjg5OTQ0LDcuNjA2NDQxNzIgTDQuNzA3MTA2NzgsNy42ODk2MzAzMyBMMTIsMTQuOTgyIEwxOS4yOTI4OTMyLDcuNjg5NjMwMzMgQzE5LjY1MzM3NzIsNy4zMjkxNDYzNyAyMC4yMjA2MDgyLDcuMzAxNDE2ODMgMjAuNjEyODk5NCw3LjYwNjQ0MTcyIEwyMC43MDcxMDY4LDcuNjg5NjMwMzMgQzIxLjA2NzU5MDcsOC4wNTAxMTQyOSAyMS4wOTUzMjAzLDguNjE3MzQ1MzQgMjAuNzkwMjk1NCw5LjAwOTYzNjU1IEwyMC43MDcxMDY4LDkuMTAzODQzODkgTDEyLjcwNzEwNjgsMTcuMTAzODQzOSBDMTIuMzQ2NjIyOCwxNy40NjQzMjc5IDExLjc3OTM5MTgsMTcuNDkyMDU3NCAxMS4zODcxMDA2LDE3LjE4NzAzMjUgTDExLjI5Mjg5MzIsMTcuMTAzODQzOSBMMy4yOTI4OTMyMiw5LjEwMzg0Mzg5IEMyLjkwMjM2ODkzLDguNzEzMzE5NiAyLjkwMjM2ODkzLDguMDgwMTU0NjIgMy4yOTI4OTMyMiw3LjY4OTYzMDMzIFoiIGlkPSJhcnJvdyIgZmlsbD0iIzAwMDAwMCIgZmlsbC1ydWxlPSJub256ZXJvIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==);
          mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjRweCIgaGVpZ2h0PSIyNHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+SWNvbi9hcnJvd19zbWFsbDwvdGl0bGU+CiAgICA8ZyBpZD0iSWNvbi9hcnJvd19zbWFsbCIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPHBhdGggZD0iTTMuMjkyODkzMjIsNy42ODk2MzAzMyBDMy42NTMzNzcxOCw3LjMyOTE0NjM3IDQuMjIwNjA4MjQsNy4zMDE0MTY4MyA0LjYxMjg5OTQ0LDcuNjA2NDQxNzIgTDQuNzA3MTA2NzgsNy42ODk2MzAzMyBMMTIsMTQuOTgyIEwxOS4yOTI4OTMyLDcuNjg5NjMwMzMgQzE5LjY1MzM3NzIsNy4zMjkxNDYzNyAyMC4yMjA2MDgyLDcuMzAxNDE2ODMgMjAuNjEyODk5NCw3LjYwNjQ0MTcyIEwyMC43MDcxMDY4LDcuNjg5NjMwMzMgQzIxLjA2NzU5MDcsOC4wNTAxMTQyOSAyMS4wOTUzMjAzLDguNjE3MzQ1MzQgMjAuNzkwMjk1NCw5LjAwOTYzNjU1IEwyMC43MDcxMDY4LDkuMTAzODQzODkgTDEyLjcwNzEwNjgsMTcuMTAzODQzOSBDMTIuMzQ2NjIyOCwxNy40NjQzMjc5IDExLjc3OTM5MTgsMTcuNDkyMDU3NCAxMS4zODcxMDA2LDE3LjE4NzAzMjUgTDExLjI5Mjg5MzIsMTcuMTAzODQzOSBMMy4yOTI4OTMyMiw5LjEwMzg0Mzg5IEMyLjkwMjM2ODkzLDguNzEzMzE5NiAyLjkwMjM2ODkzLDguMDgwMTU0NjIgMy4yOTI4OTMyMiw3LjY4OTYzMDMzIFoiIGlkPSJhcnJvdyIgZmlsbD0iIzAwMDAwMCIgZmlsbC1ydWxlPSJub256ZXJvIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 35%;
          mask-size: 35%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 4rem;
  width: 4rem;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.woocommerce-cart-form__actions .coupon__input-wrapper .border__middle {
  border-right: none;
  border-left: none;
  height: 1rem;
  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;
  margin: -1px 0;
}
.woocommerce-cart-form__actions .coupon__input-wrapper .border__corner-top-right, .woocommerce-cart-form__actions .coupon__input-wrapper .border__corner-bottom-right {
  margin-left: auto;
  margin-right: 0;
}
.woocommerce-cart-form__actions .coupon__input-wrapper .border__corner .corner-line-color {
  fill: #246052;
}
.woocommerce-cart-form__actions .coupon__input-wrapper .border__corner .corner-background-color {
  fill: #fff;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover input, .woocommerce-cart-form__actions .coupon__input-wrapper.active input {
  background-color: #246052;
  color: #fff;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover input::-webkit-input-placeholder, .woocommerce-cart-form__actions .coupon__input-wrapper.active input::-webkit-input-placeholder {
  color: #fff;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover input::-moz-placeholder, .woocommerce-cart-form__actions .coupon__input-wrapper.active input::-moz-placeholder {
  color: #fff;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover input:-ms-input-placeholder, .woocommerce-cart-form__actions .coupon__input-wrapper.active input:-ms-input-placeholder {
  color: #fff;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover input::-ms-input-placeholder, .woocommerce-cart-form__actions .coupon__input-wrapper.active input::-ms-input-placeholder {
  color: #fff;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover input::placeholder, .woocommerce-cart-form__actions .coupon__input-wrapper.active input::placeholder {
  color: #fff;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover button[type=submit], .woocommerce-cart-form__actions .coupon__input-wrapper.active button[type=submit] {
  background-color: #fff;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover .border__horizontal, .woocommerce-cart-form__actions .coupon__input-wrapper.active .border__horizontal {
  background-color: #246052;
  border-color: #246052;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover .border__middle, .woocommerce-cart-form__actions .coupon__input-wrapper.active .border__middle {
  color: #fff;
  background-color: #246052;
}
.woocommerce-cart-form__actions .coupon__input-wrapper:hover .border__corner .corner-background-color, .woocommerce-cart-form__actions .coupon__input-wrapper.active .border__corner .corner-background-color {
  fill: #246052;
}
@media (min-width: 950px) {
  .woocommerce-cart-form__actions .coupon__input-wrapper {
    width: auto;
    margin: 0 2rem;
  }
}
.woocommerce-cart-form__actions .coupon__input-wrapper-text {
  width: 100%;
  margin: 0 -1px;
}
@media (min-width: 950px) {
  .woocommerce-cart-form__actions .coupon__input-wrapper-text {
    width: auto;
  }
}
.woocommerce-cart-form__actions .coupon__input-wrapper-right, .woocommerce-cart-form__actions .coupon__input-wrapper-left {
  display: block;
  width: 1.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.woocommerce-cart-form__actions .coupon__input-wrapper-left .border__middle {
  border-left: 1px solid #246052;
}
.woocommerce-cart-form__actions .coupon__input-wrapper-right .border__middle {
  border-right: 1px solid #246052;
}
.woocommerce-cart-form__actions button.border--dark {
  display: block;
  margin: 2rem auto;
  font-size: 1.4rem;
}
.woocommerce-cart-form__actions button.border--dark .border__corner {
  width: 1.5rem;
  height: 1.5rem;
}
.woocommerce-cart-form__actions button.border--dark .border__horizontal {
  height: 1.5rem;
}
.woocommerce-cart-form__actions button.border--dark .border__content {
  padding: 1.2rem 1.5rem;
}
@media (min-width: 1200px) {
  .woocommerce-cart-form__actions button.border--dark {
    margin: 3rem 0 3rem auto;
  }
}
.woocommerce-cart-form::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  cursor: progress;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.woocommerce-cart-form.processing::before {
  opacity: 1;
  pointer-events: initial;
}
.woocommerce-cart-collaterals {
  width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .woocommerce-cart-collaterals {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    position: sticky;
    top: 0;
    margin-bottom: 6rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-cart-collaterals {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .woocommerce-cart-collaterals {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .woocommerce-cart-collaterals {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
@media (min-width: 1200px) {
  .woocommerce-cart-collaterals {
    width: calc((100% * 2 / 8) - calc(6 * 20px / 8));
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  .woocommerce-cart-collaterals {
    width: calc((100% * 2 / 8) - calc(6 * 30px / 8));
  }
}
.woocommerce-cart-collaterals .cart_totals {
  padding: 3rem;
  color: #fff;
  background-color: #246052;
}
.woocommerce-cart-collaterals header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 3rem;
}
.woocommerce-cart-collaterals header h2 {
  font-family: "BeirutText", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 3rem;
}
.woocommerce-cart-collaterals table {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.7;
}
.woocommerce-cart-collaterals table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 3rem;
}
.woocommerce-cart-collaterals table th,
.woocommerce-cart-collaterals table td {
  display: block;
  width: 100%;
  text-align: left;
}
.woocommerce-cart-collaterals table th {
  padding: 0 1.6rem 0 0;
  font-weight: normal;
  max-width: calc(100% / 3);
}
.woocommerce-cart-collaterals table tr.cart-subtotal .amount,
.woocommerce-cart-collaterals table tr.cart-subtotal .amount bdi,
.woocommerce-cart-collaterals table tr.cart-discount .amount,
.woocommerce-cart-collaterals table tr.cart-discount .amount bdi,
.woocommerce-cart-collaterals table tr.order-total .amount,
.woocommerce-cart-collaterals table tr.order-total .amount bdi {
  font-weight: bold;
  color: #a0f996;
}
.woocommerce-cart-collaterals table tr.cart-discount td {
  font-weight: bold;
  color: #a0f996;
  position: relative;
}
.woocommerce-cart-collaterals table tr.cart-discount .code {
  font-weight: bold;
}
.woocommerce-cart-collaterals table tr.cart-discount .woocommerce-remove-coupon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  background-color: #fff;
  width: 4rem;
  height: 4rem;
  -webkit-mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNDAuMjUsMTkuNzVhMSwxLDAsMCwxLC4wOCwxLjMybC0uMDguMDlMMzEuNDEsMzBsOC44NCw4Ljg0YTEsMSwwLDAsMSwwLDEuNDEsMSwxLDAsMCwxLTEuMzIuMDhsLS4wOS0uMDhMMzAsMzEuNDFsLTguODQsOC44NGExLDEsMCwwLDEtMS40MSwwLDEsMSwwLDAsMS0uMDgtMS4zMmwuMDgtLjA5TDI4LjU5LDMwbC04Ljg0LTguODRhMSwxLDAsMCwxLDAtMS40MSwxLDEsMCwwLDEsMS4zMi0uMDhsLjA5LjA4TDMwLDI4LjU5bDguODQtOC44NEExLDEsMCwwLDEsNDAuMjUsMTkuNzVaIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
          mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNDAuMjUsMTkuNzVhMSwxLDAsMCwxLC4wOCwxLjMybC0uMDguMDlMMzEuNDEsMzBsOC44NCw4Ljg0YTEsMSwwLDAsMSwwLDEuNDEsMSwxLDAsMCwxLTEuMzIuMDhsLS4wOS0uMDhMMzAsMzEuNDFsLTguODQsOC44NGExLDEsMCwwLDEtMS40MSwwLDEsMSwwLDAsMS0uMDgtMS4zMmwuMDgtLjA5TDI4LjU5LDMwbC04Ljg0LTguODRhMSwxLDAsMCwxLDAtMS40MSwxLDEsMCwwLDEsMS4zMi0uMDhsLjA5LjA4TDMwLDI4LjU5bDguODQtOC44NEExLDEsMCwwLDEsNDAuMjUsMTkuNzVaIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.woocommerce-cart-collaterals table tr.shipping p,
.woocommerce-cart-collaterals table tr.shipping ul {
  margin: 0 0 2rem;
}
.woocommerce-cart-collaterals table tr.shipping ul {
  padding: 0;
  list-style: none;
}
.woocommerce-cart-collaterals table tr.shipping a {
  font-style: italic;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.woocommerce-cart-collaterals table tr.shipping a:hover, .woocommerce-cart-collaterals table tr.shipping a:active, .woocommerce-cart-collaterals table tr.shipping a:focus {
  opacity: 1;
}
.woocommerce-cart-collaterals table tr.shipping a.shipping-calculator-button {
  margin-top: 3rem;
  display: block;
}
.woocommerce-cart-collaterals a.border--light {
  font-size: 1.4rem;
  width: 100%;
}
.woocommerce-cart-collaterals a.border--light .border__corner {
  width: 1.5rem;
  height: 1.5rem;
}
.woocommerce-cart-collaterals a.border--light .border__horizontal {
  height: 1.5rem;
}
.woocommerce-cart-collaterals a.border--light .border__content {
  padding: 1rem 1.5rem;
}
.woocommerce-cart-collaterals button.border--filter.border--dark {
  font-size: 1.4rem;
  margin: 0 auto;
}
.woocommerce-cart-collaterals .shipping-calculator-form {
  margin-top: 3rem;
}
.woocommerce-cart-collaterals .shipping-calculator-form .form-row {
  font-size: 1.6rem;
  line-height: 1.5;
}
.woocommerce-cart-collaterals .shipping-calculator-form input[type=text],
.woocommerce-cart-collaterals .shipping-calculator-form input[type=number],
.woocommerce-cart-collaterals .shipping-calculator-form input[type=email],
.woocommerce-cart-collaterals .shipping-calculator-form input[type=tel] {
  padding: 0.5rem 2rem;
  height: 4rem;
}
.woocommerce-cart-collaterals .shipping-calculator-form .select2 {
  pointer-events: none;
}
.woocommerce-cart-collaterals .shipping-calculator-form .select2 .select2-selection {
  padding: 0.5rem 2rem;
  height: 4rem;
}
.woocommerce-cart-collaterals .shipping-calculator-form .select2 .select2-selection__rendered {
  line-height: 3rem;
}
.woocommerce-cart-empty {
  min-height: calc(100vh - 82px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-cart-empty .woocommerce-message {
  display: none;
}
.woocommerce-cart-empty .frame {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.woocommerce-cart-empty .frame svg {
  width: 100%;
  fill: #246052;
}
.woocommerce-cart-empty .frame svg path {
  fill: #246052;
}
.woocommerce-cart-empty .frame:last-of-type {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.woocommerce-cart-empty article {
  width: 100%;
  margin: 0 auto;
  padding: 6rem 0;
}
@media (min-width: 768px) {
  .woocommerce-cart-empty article {
    width: 60%;
  }
}
.woocommerce-cart-empty__message, .woocommerce-cart-empty__action {
  width: 100%;
  text-align: center;
}
.woocommerce-cart-empty__message {
  margin: 3rem 0;
}
.woocommerce-cart-empty__message p {
  font-family: "BeirutDisplay", sans-serif;
  text-transform: uppercase;
  color: #1e9e79;
  font-size: 3.8rem;
  line-height: 1.2;
  margin: 0;
}
.woocommerce-cart .blockUI {
  display: none !important;
}

.woocommerce-checkout-header {
  width: 100%;
  text-align: center;
  margin: 3rem 0;
}
@media (min-width: 768px) {
  .woocommerce-checkout-header {
    margin: 5rem 0;
  }
}
.woocommerce-checkout-header h1 {
  font-family: "BeirutDisplay", sans-serif;
  text-transform: uppercase;
  color: #1e9e79;
  font-size: 3.8rem;
  line-height: 1.2;
  margin: 0;
}
.woocommerce-checkout-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-checkout-payment {
  color: #fff;
}
.woocommerce-checkout-payment ul {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0 2rem;
  background-color: #fff;
  color: #246052;
}
.woocommerce-checkout-payment ul li {
  border-bottom: 1px solid rgba(36, 96, 82, 0.4);
}
.woocommerce-checkout-payment ul li:last-child {
  border-bottom: none;
}
.woocommerce-checkout-payment ul li input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.woocommerce-checkout-payment ul li input[type=radio]:checked + label::before {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjNweCIgaGVpZ2h0PSIyM3B4IiB2aWV3Qm94PSIwIDAgMjMgMjMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+RUY0Nzc0MDktMDY4MS00Rjc4LUIwQzItQjlBQTUyNjk1OThGPC90aXRsZT4KICAgIDxkZWZzPgogICAgICAgIDxmaWx0ZXIgaWQ9ImZpbHRlci0xIj4KICAgICAgICAgICAgPGZlQ29sb3JNYXRyaXggaW49IlNvdXJjZUdyYXBoaWMiIHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIwIDAgMCAwIDAuNzExMTE1IDAgMCAwIDAgMC45NjM0ODYgMCAwIDAgMCAwLjYzNDc2NCAwIDAgMCAxLjAwMDAwMCAwIj48L2ZlQ29sb3JNYXRyaXg+CiAgICAgICAgPC9maWx0ZXI+CiAgICA8L2RlZnM+CiAgICA8ZyBpZD0iTGF5b3V0cyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgaWQ9IjAyLVNlY2Nhb19Mb2phIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNDguMDAwMDAwLCAtMzIyLjAwMDAwMCkiPgogICAgICAgICAgICA8ZyBpZD0iRklMVEVSUyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDkuMDAwMDAwLCAzMTguMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyBpZD0iR3JvdXAtMy1Db3B5IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjAwMDAwMCwgNS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTMuMzgwNzYzOCwwLjcwMTAxMDEyNyBMMTcuMDU4Njg4NiwzLjM0MzMzMTY2IEwxOS43MDEwMTAxLDcuMDIxMjU2NDQgTDE5LjcwMTAxMDEsMTMuMzgwNzYzOCBMMTcuMDU4Njg4NiwxNy4wNTg2ODg2IEwxMy4zODA3NjM4LDE5LjcwMTAxMDEgTDcuMDIxMjU2NDQsMTkuNzAxMDEwMSBMMy4zNDMzMzE2NiwxNy4wNTg2ODg2IEwwLjcwMTAxMDEyNywxMy4zODA3NjM4IEwwLjcwMTAxMDEyNyw3LjAyMTI1NjQ0IEwzLjM0MzMzMTY2LDMuMzQzMzMxNjYgTDcuMDIxMjU2NDQsMC43MDEwMTAxMjcgTDEzLjM4MDc2MzgsMC43MDEwMTAxMjcgWiIgaWQ9IkZpbGwtMS1Db3B5LTIiIHN0cm9rZT0iIzAwNEIzQSIgZmlsbD0iIzI0NjA1MiI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgIDxnIGZpbHRlcj0idXJsKCNmaWx0ZXItMSkiIGlkPSJHcm91cC02IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPgogICAgICAgICAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4wMDAwMDAsIDEwLjAwMDAwMCkgcm90YXRlKDQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC4wMDAwMDApIHRyYW5zbGF0ZSgzLjAwMDAwMCwgMy4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsaW5lIHgxPSIwLjQ1NzEwNjc4MSIgeTE9IjcuMDYwNjYwMTciIHgyPSIxMy45NTcxMDY4IiB5Mj0iNy4wNjA2NjAxNyIgaWQ9InBsdXMiIHN0cm9rZT0iI0QxRDFENiIgc3Ryb2tlLXdpZHRoPSIyIj48L2xpbmU+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bGluZSB4MT0iNy4yMDcxMDY3OCIgeTE9IjAuMzEwNjYwMTcyIiB4Mj0iNy4yMDcxMDY3OCIgeTI9IjEzLjgxMDY2MDIiIGlkPSJwbHVzIiBzdHJva2U9IiNEMUQxRDYiIHN0cm9rZS13aWR0aD0iMiI+PC9saW5lPgogICAgICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=) no-repeat center;
}
.woocommerce-checkout-payment ul li input[type=tel] {
  display: block;
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  resize: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0.5rem 2rem;
  height: 4rem;
  border: 1px solid currentColor;
  background-color: #fff;
  border-radius: 0;
  -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  height: 4rem;
  margin-top: 1.6rem;
}
.woocommerce-checkout-payment ul li input[type=tel]:hover, .woocommerce-checkout-payment ul li input[type=tel]:active, .woocommerce-checkout-payment ul li input[type=tel]:focus {
  border-color: #1e9e79;
}
.woocommerce-checkout-payment ul li input[type=tel]::-webkit-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-checkout-payment ul li input[type=tel]::-moz-placeholder {
  opacity: 0.4;
  color: #246052;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-checkout-payment ul li input[type=tel]:-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-checkout-payment ul li input[type=tel]::-ms-input-placeholder {
  opacity: 0.4;
  color: #246052;
  -ms-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-checkout-payment ul li input[type=tel]::placeholder {
  opacity: 0.4;
  color: #246052;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.woocommerce-checkout-payment ul li input[type=tel] + span {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .woocommerce-checkout-payment ul li input[type=tel] {
    height: 5.6rem;
    padding: 1rem 2rem;
  }
}
.woocommerce-checkout-payment ul li label {
  font-size: 1.6rem;
  line-height: 1.2;
  display: block;
  padding: 1.6rem 0;
  cursor: pointer;
}
.woocommerce-checkout-payment ul li label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMjFweCIgaGVpZ2h0PSIyMXB4IiB2aWV3Qm94PSIwIDAgMjEgMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8dGl0bGU+NDg3RTMyMjYtRTRFNS00M0UxLTk4RTUtRDk0MTQ4RTlDMUM4PC90aXRsZT4KICAgIDxnIGlkPSJMYXlvdXRzIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyBpZD0iMDItU2VjY2FvX0xvamEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zMzUuMDAwMDAwLCAtMzIzLjAwMDAwMCkiIHN0cm9rZT0iIzI0NjA1MiIgc3Ryb2tlLXdpZHRoPSIxLjA1ODA3MjM2Ij4KICAgICAgICAgICAgPGcgaWQ9IkZJTFRFUlMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ5LjAwMDAwMCwgMzE4LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgPGcgaWQ9Ikdyb3VwLTMtQ29weSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjg2LjAwMDAwMCwgNS4wMDAwMDApIj4KICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNMTMuMzcxNDE0OSwwLjczMDA0NjMwOCBMMTcuMDM3ODgzMSwzLjM2NDEzNzEzIEwxOS42NzE5NzM5LDcuMDMwNjA1MzYgTDE5LjY3MTk3MzksMTMuMzcxNDE0OSBMMTcuMDM3ODgzMSwxNy4wMzc4ODMxIEwxMy4zNzE0MTQ5LDE5LjY3MTk3MzkgTDcuMDMwNjA1MzYsMTkuNjcxOTczOSBMMy4zNjQxMzcxMywxNy4wMzc4ODMxIEwwLjczMDA0NjMwOCwxMy4zNzE0MTQ5IEwwLjczMDA0NjMwOCw3LjAzMDYwNTM2IEwzLjM2NDEzNzEzLDMuMzY0MTM3MTMgTDcuMDMwNjA1MzYsMC43MzAwNDYzMDggTDEzLjM3MTQxNDksMC43MzAwNDYzMDggWiIgaWQ9IkZpbGwtMS1Db3B5LTIiPjwvcGF0aD4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+) no-repeat center;
  background-size: contain;
  -webkit-transform: translateY(2px);
       -o-transform: translateY(2px);
          transform: translateY(2px);
  margin-right: 0.7rem;
}
.woocommerce-checkout-payment ul li img {
  display: none;
}
.woocommerce-checkout-payment ul li .payment_box {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.2;
  padding-bottom: 1.6rem;
}
.woocommerce-checkout-payment ul li .payment_box p {
  margin: 0;
}
.woocommerce-checkout-payment .form-row {
  color: inherit;
  font-size: 1.4rem;
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 0;
}
.woocommerce-checkout-payment .form-row a {
  color: #a0f996;
  text-decoration: underline;
}
.woocommerce-checkout-form-pay {
  margin: 6rem auto;
}
.woocommerce-checkout-customer-details {
  width: 100%;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .woocommerce-checkout-customer-details {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-checkout-customer-details {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .woocommerce-checkout-customer-details {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .woocommerce-checkout-customer-details {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.woocommerce-checkout-customer-details h3 {
  font-family: "BeirutText", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 3rem;
  text-transform: uppercase;
}
.woocommerce-checkout-review-order {
  width: 100%;
  padding: 3rem;
  color: #fff;
  background-color: #246052;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .woocommerce-checkout-review-order {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    position: sticky;
    top: 0;
    margin-bottom: 6rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-checkout-review-order {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .woocommerce-checkout-review-order {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .woocommerce-checkout-review-order {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
.woocommerce-checkout-review-order header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 3rem;
}
.woocommerce-checkout-review-order header h3 {
  font-family: "BeirutText", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 3rem;
}
.woocommerce-checkout-review-order table {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.7;
}
.woocommerce-checkout-review-order table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 1.6rem;
}
.woocommerce-checkout-review-order table th,
.woocommerce-checkout-review-order table td {
  display: block;
  width: 100%;
  padding: 0;
  text-align: right;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.woocommerce-checkout-review-order table th:first-child,
.woocommerce-checkout-review-order table td:first-child {
  text-align: left;
  padding: 0 1rem 0 0;
  font-weight: normal;
  max-width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.woocommerce-checkout-review-order table td.product-name {
  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;
  max-width: 75%;
}
.woocommerce-checkout-review-order table tr.cart-subtotal,
.woocommerce-checkout-review-order table tr.cart-discount,
.woocommerce-checkout-review-order table tr.order-total {
  font-weight: bold;
  color: #a0f996;
}
.woocommerce-checkout-review-order table tr.cart-discount {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-checkout-review-order table tr.cart-discount td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: #a0f996;
  position: relative;
}
.woocommerce-checkout-review-order table tr.cart-discount .code {
  font-weight: bold;
}
.woocommerce-checkout-review-order table tr.cart-discount .woocommerce-remove-coupon {
  display: block;
  background-color: #fff;
  width: 4rem;
  height: 4rem;
  -webkit-mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNDAuMjUsMTkuNzVhMSwxLDAsMCwxLC4wOCwxLjMybC0uMDguMDlMMzEuNDEsMzBsOC44NCw4Ljg0YTEsMSwwLDAsMSwwLDEuNDEsMSwxLDAsMCwxLTEuMzIuMDhsLS4wOS0uMDhMMzAsMzEuNDFsLTguODQsOC44NGExLDEsMCwwLDEtMS40MSwwLDEsMSwwLDAsMS0uMDgtMS4zMmwuMDgtLjA5TDI4LjU5LDMwbC04Ljg0LTguODRhMSwxLDAsMCwxLDAtMS40MSwxLDEsMCwwLDEsMS4zMi0uMDhsLjA5LjA4TDMwLDI4LjU5bDguODQtOC44NEExLDEsMCwwLDEsNDAuMjUsMTkuNzVaIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
          mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNDAuMjUsMTkuNzVhMSwxLDAsMCwxLC4wOCwxLjMybC0uMDguMDlMMzEuNDEsMzBsOC44NCw4Ljg0YTEsMSwwLDAsMSwwLDEuNDEsMSwxLDAsMCwxLTEuMzIuMDhsLS4wOS0uMDhMMzAsMzEuNDFsLTguODQsOC44NGExLDEsMCwwLDEtMS40MSwwLDEsMSwwLDAsMS0uMDgtMS4zMmwuMDgtLjA5TDI4LjU5LDMwbC04Ljg0LTguODRhMSwxLDAsMCwxLDAtMS40MSwxLDEsMCwwLDEsMS4zMi0uMDhsLjA5LjA4TDMwLDI4LjU5bDguODQtOC44NEExLDEsMCwwLDEsNDAuMjUsMTkuNzVaIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.woocommerce-checkout-review-order table tr.shipping p,
.woocommerce-checkout-review-order table tr.shipping ul {
  margin: 0;
}
.woocommerce-checkout-review-order table tr.shipping ul {
  padding: 0;
  list-style: none;
}
.woocommerce-checkout-review-order table tr.shipping a {
  font-style: italic;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.woocommerce-checkout-review-order table tr.shipping a:hover, .woocommerce-checkout-review-order table tr.shipping a:active, .woocommerce-checkout-review-order table tr.shipping a:focus {
  opacity: 1;
}
.woocommerce-checkout-review-order button[type=submit] {
  display: none;
  pointer-events: none;
}
.woocommerce-checkout-review-order button.border--light {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  pointer-events: initial;
  font-size: 1.4rem;
  width: 100%;
}
.woocommerce-checkout-review-order button.border--light .border__corner {
  width: 1.5rem;
  height: 1.5rem;
}
.woocommerce-checkout-review-order button.border--light .border__horizontal {
  height: 1.5rem;
}
.woocommerce-checkout-review-order button.border--light .border__content {
  padding: 1rem 1.5rem;
}
.woocommerce-checkout-min-message {
  padding: 2rem;
  background-color: #fff;
  color: #fc6e6d;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.woocommerce-checkout-min-message p {
  margin: 0;
}
.woocommerce-checkout .woocommerce-terms-and-conditions {
  display: none;
}
.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  width: 100%;
}
.woocommerce-checkout .woocommerce-error {
  color: #fc6e6d;
}
.woocommerce-checkout .woocommerce-privacy-policy-text p {
  margin: 0 0 3rem;
}
.woocommerce-checkout .woocommerce-terms-text {
  color: rgba(255, 255, 255, 0.5);
  font-family: "BeirutText", sans-serif;
  font-weight: normal;
  margin: 0 0 3rem;
  font-size: 1.2rem;
  line-height: 2rem;
}
.woocommerce-checkout .woocommerce-terms-text a:first-child {
  color: inherit;
  text-decoration: none;
}
.woocommerce-checkout .woocommerce-terms-text label {
  display: inline;
  font-size: inherit;
  line-height: inherit;
}
.woocommerce-checkout .woocommerce-terms-text label::after {
  content: " ";
  display: inline;
}
.woocommerce-checkout .woocommerce-terms-text label span::before {
  border-color: currentColor;
  background-color: transparent;
}
.woocommerce-checkout .woocommerce-terms-text.woocommerce-invalid {
  color: rgba(255, 255, 255, 0.5);
}
.woocommerce-checkout .woocommerce-terms-text.woocommerce-invalid label span::before {
  border-color: #fc6e6d;
}

.woocommerce-login {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .woocommerce-login .grid {
    max-width: 94rem;
  }
}
@media (min-width: 768px) {
  .woocommerce-login {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.woocommerce-login__column {
  width: 100%;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .woocommerce-login__column {
    width: calc((100% * 3 / 7) - calc(4 * 20px / 7));
    padding: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-login__column {
    width: calc((100% * 3 / 7) - calc(4 * 30px / 7));
  }
}
.woocommerce-login__header {
  margin: 3rem 0;
}
.woocommerce-login__header h2 {
  font-family: "BeirutDisplay", sans-serif;
  text-transform: uppercase;
  color: #1e9e79;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
@media (min-width: 950px) {
  .woocommerce-login__header {
    margin: 0 0 3rem;
  }
}
.woocommerce-login__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce-login .woocommerce-form__label-for-checkbox span::before, .woocommerce-login .woocommerce-form__label-for-checkbox span::after {
  top: -2px;
}
.woocommerce-login .woocommerce-privacy-policy-text p {
  font-family: "BeirutText", sans-serif;
  margin: 0 0 3rem;
  font-size: 1.2rem;
  line-height: 2rem;
}
.woocommerce-login .woocommerce-privacy-policy-text p a {
  color: #1e9e79;
  text-decoration: underline;
}
.woocommerce-login .woocommerce-password-strength {
  font-size: 1.6rem;
  font-style: normal;
  margin: 2rem 0;
  line-height: 1.2;
}
.woocommerce-login .woocommerce-password-strength.short, .woocommerce-login .woocommerce-password-strength.bad {
  color: #fc6e6d;
}
.woocommerce-login .woocommerce-password-strength.good {
  color: #1e9e79;
}
.woocommerce-login .woocommerce-password-hint {
  font-style: normal;
  display: block;
  font-size: 1.2rem;
  line-height: 2rem;
}
.woocommerce-login .register .woocommerce-login__actions {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.woocommerce-login .remember_me {
  width: 100%;
  margin-bottom: 3rem;
}
.woocommerce-login .start_session {
  margin-bottom: 3rem;
}
.woocommerce-login .start_session,
.woocommerce-login .lost_password {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.woocommerce-myaccount {
  min-height: calc(100vh - 82px);
  margin: 5rem 0;
}
@media (min-width: 768px) {
  .woocommerce-myaccount .grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.woocommerce-myaccount-navigation {
  width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .woocommerce-myaccount-navigation {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
    position: sticky;
    top: 82px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-myaccount-navigation {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
.woocommerce-myaccount-navigation nav {
  padding: 3rem;
  color: #fff;
  background-color: #246052;
  font-family: "BeirutText", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .woocommerce-myaccount-navigation nav {
    padding: 5rem 3rem;
  }
}
.woocommerce-myaccount-navigation nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-myaccount-navigation nav li {
  margin: 0 0 2rem;
}
.woocommerce-myaccount-navigation nav li:last-child {
  margin-bottom: 0;
}
.woocommerce-myaccount-navigation nav li.is-active a {
  color: #a0f996;
  text-decoration: underline;
}
.woocommerce-myaccount-navigation nav a:hover, .woocommerce-myaccount-navigation nav a:active, .woocommerce-myaccount-navigation nav a:focus {
  text-decoration: underline;
}
.woocommerce-myaccount-dashboard {
  width: 100%;
  font-family: "BeirutText", sans-serif;
  font-size: 1.9rem;
  line-height: 1.5;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .woocommerce-myaccount-dashboard {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
    margin-bottom: 0;
    margin-top: 3rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-myaccount-dashboard {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.woocommerce-myaccount-dashboard header {
  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;
  padding-bottom: 5rem;
}
.woocommerce-myaccount-dashboard header h1,
.woocommerce-myaccount-dashboard header h2,
.woocommerce-myaccount-dashboard header h3 {
  font-family: "BeirutDisplay", sans-serif;
  text-transform: uppercase;
  color: #246052;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}
.woocommerce-myaccount-dashboard p {
  margin: 0;
}
.woocommerce-myaccount-dashboard a {
  color: #1e9e79;
  text-decoration: underline;
}
.woocommerce-myaccount-orders {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .woocommerce-myaccount-orders {
    overflow: auto;
  }
}
.woocommerce-myaccount-order p {
  margin-bottom: 3rem;
}
.woocommerce-myaccount-order p mark {
  background-color: transparent;
  font-weight: bold;
  color: currentColor;
}
.woocommerce-myaccount-order .woocommerce-order-details {
  width: 100%;
}
.woocommerce-myaccount-order .woocommerce-order-details h2 {
  color: currentColor;
}
.woocommerce-myaccount-notes {
  border-top: 1px solid #246052;
  border-bottom: 1px solid #246052;
  margin: 3rem 0;
}
.woocommerce-myaccount-notes header {
  padding: 3rem 0;
}
.woocommerce-myaccount-notes .notes {
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-myaccount-notes .note {
  margin: 2rem 0;
}
.woocommerce-myaccount-notes .note:last-child {
  margin-bottom: 0;
}
.woocommerce-myaccount-notes .note .meta {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0;
  opacity: 0.5;
}
.woocommerce-myaccount-notes .note .description {
  margin-bottom: 0;
}
.woocommerce-myaccount .woocommerce-message a {
  display: block;
  color: #1e9e79;
  text-decoration: underline;
  margin-top: 2rem;
}
.woocommerce-myaccount .woocommerce-Address header {
  padding: 5rem 0 3rem;
}
.woocommerce-myaccount .woocommerce-password-strength {
  font-size: 1.6rem;
  font-style: normal;
  margin: 2rem 0;
  line-height: 1.2;
}
.woocommerce-myaccount .woocommerce-password-strength.short, .woocommerce-myaccount .woocommerce-password-strength.bad {
  color: #fc6e6d;
}
.woocommerce-myaccount .woocommerce-password-strength.good {
  color: #1e9e79;
}
.woocommerce-myaccount .woocommerce-password-hint {
  font-style: normal;
  display: block;
  font-size: 1.2rem;
  line-height: 2rem;
}
.woocommerce-myaccount .woocommerce-MyAccount-orders {
  font-size: 1.4rem;
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-myaccount .woocommerce-MyAccount-orders th,
.woocommerce-myaccount .woocommerce-MyAccount-orders td {
  padding: 2rem;
  text-align: center;
}
.woocommerce-myaccount .woocommerce-MyAccount-orders th:first-child,
.woocommerce-myaccount .woocommerce-MyAccount-orders td:first-child {
  text-align: left;
  padding-left: 0;
}
.woocommerce-myaccount .woocommerce-MyAccount-orders th a,
.woocommerce-myaccount .woocommerce-MyAccount-orders td a {
  margin-right: 1rem;
}
.woocommerce-myaccount .woocommerce-MyAccount-orders th a:last-child,
.woocommerce-myaccount .woocommerce-MyAccount-orders td a:last-child {
  margin-right: 0;
}
.woocommerce-myaccount .woocommerce-MyAccount-orders thead {
  font-size: 1.6rem;
  border-bottom: 1px solid #246052;
}
.woocommerce-myaccount .woocommerce-MyAccount-orders tbody td {
  border-bottom: 1px solid #246052;
}
.woocommerce-myaccount .woocommerce-MyAccount-orders tbody td:last-child {
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .woocommerce-myaccount .woocommerce-MyAccount-orders {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    border: 1px solid #246052;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders thead {
    position: sticky;
    left: 0;
    z-index: 1;
    background-color: #fff;
    border-bottom: none;
    border-right: 1px solid #246052;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders thead th {
    padding: 1rem;
    border-bottom: 1px solid #246052;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders thead th:first-child {
    padding-left: 1rem;
    text-align: center;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders thead th:last-child {
    border-bottom: none;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    font-size: 1.6rem;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders tbody tr {
    border-right: 1px solid #246052;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders tbody tr:last-child {
    border-right: none;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders tbody td {
    white-space: nowrap;
    padding: 1rem 3rem;
    border-bottom: 1px solid #246052;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders tbody td:first-child {
    padding-left: 1rem;
    text-align: center;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders tbody td:last-child {
    border-bottom: none;
  }
  .woocommerce-myaccount .woocommerce-MyAccount-orders thead tr,
.woocommerce-myaccount .woocommerce-MyAccount-orders tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.woocommerce-notices-wrapper {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #246052;
}
.woocommerce-notices-wrapper:empty {
  margin-bottom: 0;
}
.woocommerce-notices-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-notices-wrapper a {
  text-align: right;
  text-decoration: underline;
  color: #1e9e79;
}
.woocommerce-notices-wrapper a.restore-item {
  display: none;
}
.woocommerce-notices-wrapper .woocommerce-error {
  color: #fc6e6d;
}
.single-product .woocommerce-notices-wrapper, .woocommerce-myaccount .woocommerce-notices-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: fixed;
  right: 20px;
  top: 20%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9999;
  margin: 0 auto;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .single-product .woocommerce-notices-wrapper, .woocommerce-myaccount .woocommerce-notices-wrapper {
    right: 30px;
  }
}
.single-product .woocommerce-notices-wrapper:not(:empty), .woocommerce-myaccount .woocommerce-notices-wrapper:not(:empty) {
  -webkit-animation: opacity-0-1 0.3s ease-in-out;
       -o-animation: opacity-0-1 0.3s ease-in-out;
          animation: opacity-0-1 0.3s ease-in-out;
}
.single-product .woocommerce-notices-wrapper:empty, .single-product .woocommerce-notices-wrapper.hidden, .woocommerce-myaccount .woocommerce-notices-wrapper:empty, .woocommerce-myaccount .woocommerce-notices-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}
.single-product .woocommerce-notices-wrapper .woocommerce-message, .woocommerce-myaccount .woocommerce-notices-wrapper .woocommerce-message {
  max-width: 50vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.single-product .woocommerce-notices-wrapper .woocommerce-error, .woocommerce-myaccount .woocommerce-notices-wrapper .woocommerce-error {
  padding: 2rem;
  background-color: #fc6e6d;
  color: #fff;
}
.woocommerce-myaccount .woocommerce-notices-wrapper .woocommerce-message {
  border: 1px solid #246052;
}
.cart_totals .woocommerce-notices-wrapper .woocommerce-message {
  color: #fff;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.cart_totals .woocommerce-notices-wrapper ul {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.cart_totals .woocommerce-notices-wrapper ul li {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.woocommerce-order-header {
  width: 100%;
  text-align: center;
  margin: 3rem 0;
}
@media (min-width: 768px) {
  .woocommerce-order-header {
    margin: 5rem 0;
  }
}
.woocommerce-order-header h1 {
  font-family: "BeirutDisplay", sans-serif;
  text-transform: uppercase;
  color: #1e9e79;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 768px) {
  .woocommerce-order-header h1 {
    font-size: 3.8rem;
  }
}
.woocommerce-order-payment {
  width: 100%;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .woocommerce-order-payment {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-order-payment {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .woocommerce-order-payment {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .woocommerce-order-payment {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
.woocommerce-order-payment h3 {
  font-family: "BeirutText", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 3rem;
  text-transform: uppercase;
}
.woocommerce-order-payment table {
  width: 100% !important;
  margin: 0 !important;
  font-size: 1.6rem;
  border: none !important;
  border-collapse: collapse;
  text-align: left;
}
.woocommerce-order-payment table tr:first-child td {
  background-color: #246052 !important;
  color: #fff !important;
}
.woocommerce-order-payment table td {
  padding: 1rem 2rem;
  line-height: 1.5;
}
.woocommerce-order-payment table td[rowspan="3"] {
  display: none;
}
@media (min-width: 950px) {
  .woocommerce-order-payment table td[rowspan="3"] {
    display: table-cell;
    padding: 0 1.4rem !important;
  }
}
.woocommerce-order-payment p,
.woocommerce-order-payment center {
  margin: 2rem;
}
.woocommerce-order-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #246052;
}
.woocommerce-order-details {
  width: 100%;
  padding: 3rem;
  color: #fff;
  background-color: #246052;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .woocommerce-order-details {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    position: sticky;
    top: 0;
    margin-bottom: 6rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-order-details {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  .woocommerce-order-details {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  .woocommerce-order-details {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
.woocommerce-order-details header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 3rem;
  padding: 0;
}
.woocommerce-order-details header h2,
.woocommerce-order-details header h3 {
  font-family: "BeirutText", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0 0 3rem;
  color: #fff;
  text-transform: initial;
}
.woocommerce-order-details table {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.7;
}
.woocommerce-order-details table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 1.6rem;
}
.woocommerce-order-details table th,
.woocommerce-order-details table td {
  display: block;
  width: 100%;
  padding: 0;
  text-align: right;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.woocommerce-order-details table th:first-child,
.woocommerce-order-details table td:first-child {
  text-align: left;
  padding: 0 1rem 0 0;
  font-weight: normal;
  max-width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.woocommerce-order-details table td.product-name {
  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;
  max-width: 75%;
}
.woocommerce-order-details table tr.cart-subtotal,
.woocommerce-order-details table tr.cart-discount,
.woocommerce-order-details table tr.order-total {
  font-weight: bold;
  color: #a0f996;
}
.woocommerce-order-details table tr.cart-discount {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-order-details table tr.cart-discount td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: #a0f996;
  position: relative;
}
.woocommerce-order-details table tr.cart-discount .code {
  font-weight: bold;
}
.woocommerce-order-details table tr.cart-discount .woocommerce-remove-coupon {
  display: block;
  background-color: #fff;
  width: 4rem;
  height: 4rem;
  -webkit-mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNDAuMjUsMTkuNzVhMSwxLDAsMCwxLC4wOCwxLjMybC0uMDguMDlMMzEuNDEsMzBsOC44NCw4Ljg0YTEsMSwwLDAsMSwwLDEuNDEsMSwxLDAsMCwxLTEuMzIuMDhsLS4wOS0uMDhMMzAsMzEuNDFsLTguODQsOC44NGExLDEsMCwwLDEtMS40MSwwLDEsMSwwLDAsMS0uMDgtMS4zMmwuMDgtLjA5TDI4LjU5LDMwbC04Ljg0LTguODRhMSwxLDAsMCwxLDAtMS40MSwxLDEsMCwwLDEsMS4zMi0uMDhsLjA5LjA4TDMwLDI4LjU5bDguODQtOC44NEExLDEsMCwwLDEsNDAuMjUsMTkuNzVaIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
          mask: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNNDAuMjUsMTkuNzVhMSwxLDAsMCwxLC4wOCwxLjMybC0uMDguMDlMMzEuNDEsMzBsOC44NCw4Ljg0YTEsMSwwLDAsMSwwLDEuNDEsMSwxLDAsMCwxLTEuMzIuMDhsLS4wOS0uMDhMMzAsMzEuNDFsLTguODQsOC44NGExLDEsMCwwLDEtMS40MSwwLDEsMSwwLDAsMS0uMDgtMS4zMmwuMDgtLjA5TDI4LjU5LDMwbC04Ljg0LTguODRhMSwxLDAsMCwxLDAtMS40MSwxLDEsMCwwLDEsMS4zMi0uMDhsLjA5LjA4TDMwLDI4LjU5bDguODQtOC44NEExLDEsMCwwLDEsNDAuMjUsMTkuNzVaIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.woocommerce-order-details table tr.shipping p,
.woocommerce-order-details table tr.shipping ul {
  margin: 0;
}
.woocommerce-order-details table tr.shipping ul {
  padding: 0;
  list-style: none;
}
.woocommerce-order-details table tr.shipping a {
  font-style: italic;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.woocommerce-order-details table tr.shipping a:hover, .woocommerce-order-details table tr.shipping a:active, .woocommerce-order-details table tr.shipping a:focus {
  opacity: 1;
}
.woocommerce-order-details button[type=submit] {
  display: none;
  pointer-events: none;
}
.woocommerce-order-details button.border--light {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  pointer-events: initial;
  font-size: 1.4rem;
  width: 100%;
}
.woocommerce-order-details button.border--light .border__corner {
  width: 1.5rem;
  height: 1.5rem;
}
.woocommerce-order-details button.border--light .border__horizontal {
  height: 1.5rem;
}
.woocommerce-order-details button.border--light .border__content {
  padding: 1rem 1.5rem;
}
.woocommerce-order-overview {
  list-style: none;
  padding: 2rem;
  margin: 0 0 3rem;
  border: 1px solid #246052;
}
.woocommerce-order-customer-details {
  margin: 3rem 0;
  padding: 2rem;
  border: 1px solid #246052;
}
.woocommerce-order-customer-details h2 {
  margin-top: 0;
}
.woocommerce-order-customer-details address p {
  margin: 0;
}
.woocommerce-order-customer-details__extra {
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .woocommerce-order-customer-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.woocommerce-order-customer-details .woocommerce-column--shipping-address {
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .woocommerce-order-customer-details .woocommerce-column--shipping-address {
    margin-top: 0;
  }
}
.woocommerce-order .woocommerce-column {
  width: 100%;
}
@media (min-width: 1200px) {
  .woocommerce-order .woocommerce-column {
    width: 45%;
  }
}

.woocommerce-password {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-password-form {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .woocommerce-password-form {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .woocommerce-password-form {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
.woocommerce-password-intro {
  text-align: center;
}
.woocommerce-password button[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
.woocommerce-password .woocommerce-password-strength {
  font-size: 1.6rem;
  font-style: normal;
  margin: 2rem 0;
  line-height: 1.2;
}
.woocommerce-password .woocommerce-password-strength.short, .woocommerce-password .woocommerce-password-strength.bad {
  color: #fc6e6d;
}
.woocommerce-password .woocommerce-password-strength.good {
  color: #1e9e79;
}
.woocommerce-password .woocommerce-password-hint {
  font-style: normal;
  display: block;
  font-size: 1.2rem;
  line-height: 2rem;
}
.woocommerce-password .woocommerce-notices-wrapper .woocommerce-error {
  color: #fc6e6d;
}
.woocommerce-password .woocommerce-notices-wrapper .woocommerce-error li {
  padding: 0;
  border: none;
}

.single-product {
  width: 100%;
}
.single-product.single-product--light {
  color: #fff;
}
.single-product.single-product--dark {
  color: #246052;
}
.single-product .woocommerce-breadcrumb {
  display: none !important;
}
.single-product .woocommerce-product-gallery__image {
  pointer-events: none;
}
.single-product__wrapper {
  position: relative;
  overflow: hidden;
}
.single-product__wrapper-top {
  position: relative;
  padding-top: 80px;
}
.single-product__wrapper-bottom {
  background-color: #fff;
  position: fixed;
  bottom: 64px;
  width: 100%;
  z-index: 2;
}
@media (min-width: 768px) {
  .single-product__wrapper-bottom {
    z-index: unset;
    position: relative;
    bottom: unset;
    width: auto;
  }
}
.single-product__color-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .single-product__color-background {
    top: 0;
  }
}
.single-product__container {
  width: 100%;
  max-width: 1266px;
  padding: 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .single-product__container {
    padding: 0 50px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    min-height: 130px;
  }
}
.single-product__wrapper-bottom .single-product__container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .single-product__wrapper-bottom .single-product__container {
    padding: 10px 50px;
  }
}
.single-product__image-container {
  width: 100%;
  height: 320px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .single-product__image-container {
    max-width: 200px;
    height: 565px;
  }
}
@media (min-width: 950px) {
  .single-product__image-container {
    max-width: 250px;
  }
}
@media (min-width: 1200px) {
  .single-product__image-container {
    max-width: 300px;
  }
}
.single-product__image-container figure {
  margin: 0;
}
.single-product__image-container a {
  display: block;
}
.single-product__image-container img {
  height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .single-product__image-container img {
    height: 665px;
  }
}
@media (min-width: 950px) {
  .single-product__image-container img {
    height: 720px;
  }
}
.single-product__left-column {
  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;
  -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-top: 50px;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (min-width: 768px) {
  .single-product__left-column {
    width: calc((100% - 200px) / 2);
  }
}
@media (min-width: 950px) {
  .single-product__left-column {
    width: calc((100% - 250px) / 2);
  }
}
@media (min-width: 1200px) {
  .single-product__left-column {
    width: calc((100% - 300px) / 2);
  }
}
.single-product__left-column h1 {
  font-size: 2.8rem;
  line-height: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  color: #fff;
  width: 100%;
}
@media (min-width: 950px) {
  .single-product__left-column h1 {
    font-size: 4.5rem;
    line-height: 4.7rem;
  }
}
@media (min-width: 1200px) {
  .single-product__left-column h1 {
    font-size: 5.8rem;
    line-height: 6rem;
  }
}
.single-product--dark .single-product__left-column h1 {
  color: #246052;
}
.single-product__right-column {
  width: 100%;
  padding: 20px 0 0;
}
@media (min-width: 768px) {
  .single-product__right-column {
    width: calc((100% - 200px) / 2);
    padding: 50px 0;
  }
}
@media (min-width: 950px) {
  .single-product__right-column {
    width: calc((100% - 250px) / 2);
  }
}
@media (min-width: 1200px) {
  .single-product__right-column {
    width: calc((100% - 300px) / 2);
  }
}
.single-product__product-pretitle {
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 950px) {
  .single-product__product-pretitle {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .single-product__product-pretitle {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.single-product--dark .single-product__product-pretitle {
  color: #246052;
}
.single-product__product-subtitle {
  font-size: 1.1rem;
  line-height: 1.8rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.7rem;
  padding: 10px 0 20px;
  color: #fff;
}
@media (min-width: 950px) {
  .single-product__product-subtitle {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .single-product__product-subtitle {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.single-product--dark .single-product__product-subtitle {
  color: #246052;
}
.single-product__title-top svg {
  width: 100%;
  max-width: 250px;
}
.single-product__title-top svg g {
  fill: #fff;
}
.single-product--dark .single-product__title-top svg g {
  fill: #246052;
}
.single-product__title-bottom svg {
  width: 100%;
  max-width: 220px;
}
.single-product__title-bottom svg g {
  fill: #fff;
}
.single-product--dark .single-product__title-bottom svg g {
  fill: #246052;
}
.single-product__product-cta-title {
  font-size: 1.1rem;
  line-height: 1.6rem;
  font-style: italic;
  letter-spacing: 0.16rem;
  text-decoration: underline;
  padding: 10px 0 40px;
  color: #fff;
}
@media (min-width: 950px) {
  .single-product__product-cta-title {
    font-size: 1.3rem;
    line-height: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .single-product__product-cta-title {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.single-product--dark .single-product__product-cta-title {
  color: #246052;
}
.single-product__description {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-style: italic;
  padding-bottom: 15px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 5px;
  color: currentColor;
}
@media (min-width: 768px) {
  .single-product__description {
    font-size: 1.9rem;
    line-height: 3.1rem;
  }
}
.single-product__description p {
  margin: 0;
}
.single-product__short-description {
  font-size: 1.4rem;
  line-height: 2rem;
  font-style: italic;
  color: currentColor;
}
.single-product__short-description p {
  margin: 0;
}
.single-product__link {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 2rem;
  color: currentColor;
  font-weight: 700;
}
.single-product__link a {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.single-product__link a span svg {
  margin-top: -2px;
  margin-right: 4px;
  width: 16px;
  height: 16px;
  fill: currentColor;
  vertical-align: middle;
}
.single-product__link a:hover, .single-product__link a:active, .single-product__link a:focus-visible {
  color: #1e9e79;
}
.single-product__summary-container {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .single-product__summary-container {
    margin-top: 60px;
  }
}
.single-product__summary-container .product_title,
.single-product__summary-container .woocommerce-product-details__short-description,
.single-product__summary-container .single_variation_wrap,
.single-product__summary-container .product_meta,
.single-product__summary-container .quantity, .single-product__summary-container > .price {
  display: none !important;
}
.single-product__variations_form {
  position: fixed;
  bottom: 134px;
  background-color: #fff;
  width: 100%;
  left: 0;
  padding: 0 20px;
  z-index: 2;
}
@media (min-width: 768px) {
  .single-product__variations_form {
    z-index: unset;
    position: relative;
    bottom: unset;
    left: unset;
    width: auto;
    padding: unset;
    background-color: unset;
  }
}
.single-product__variations_form .single_variation_wrap {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .single-product__variations_form .single_variation_wrap {
    display: none !important;
  }
}
.single-product__variations_form .single_variation_wrap .woocommerce-Price-amount {
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 700;
}
.single-product__container-variations {
  width: 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;
}
@media (min-width: 768px) {
  .single-product__container-variations {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.single-product__variations {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.single-product__variations > label:not(.border) {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.9rem;
  font-weight: 700;
  display: none;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .single-product__variations > label:not(.border) {
    display: block;
  }
}
.single-product--dark .single-product__variations > label:not(.border) {
  color: #246052;
}
.single-product__select-variant {
  display: block;
  margin: 15px 0;
}
@media (min-width: 768px) {
  .single-product__select-variant {
    display: none;
  }
}
.single-product__price-container {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(36, 96, 82, 0.4);
}
@media (min-width: 768px) {
  .single-product__price-container {
    border-top: none;
    width: calc((100% - 200px) / 2);
  }
}
@media (min-width: 950px) {
  .single-product__price-container {
    width: calc((100% - 250px) / 2);
  }
}
@media (min-width: 1200px) {
  .single-product__price-container {
    width: calc((100% - 300px) / 2);
  }
}
.single-product__price {
  color: #246052;
  font-size: 2.5rem;
  line-height: 3rem;
  font-weight: 700;
  min-width: 45px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .single-product__price {
    display: block;
    font-size: 3.5rem;
    line-height: 4rem;
    min-width: 65px;
  }
}
@media (min-width: 950px) {
  .single-product__price {
    font-size: 5.1rem;
    line-height: 6.2rem;
    min-width: 85px;
  }
}
.single-product__button-cart.border.border--button {
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 15px 0;
  max-width: 20rem;
}
@media (min-width: 768px) {
  .single-product__button-cart.border.border--button {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    font-size: 1.7rem;
    line-height: 2rem;
    margin: 10px 0;
    max-width: 270px;
  }
}
@media (min-width: 950px) {
  .single-product__button-cart.border.border--button {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.single-product__button-cart.border.border--button .border__content {
  padding: 12px 14px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .single-product__button-cart.border.border--button .border__content {
    padding: 14px 30px;
  }
}
@media (min-width: 950px) {
  .single-product__button-cart.border.border--button .border__content {
    padding: 18px 70px;
  }
}
.single-product__buttons-variant {
  display: none;
}
@media (min-width: 768px) {
  .single-product__buttons-variant {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 1rem;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.single-product--variant-active {
  color: #246052 !important;
}
.single-product--variant-active .border__container .border__middle {
  border-color: #004b3a !important;
  background-color: #a0f996 !important;
}
.single-product--variant-active .border__container .border__corner svg .corner-line-color {
  fill: #004b3a !important;
}
.single-product--variant-active .border__container .border__corner svg .corner-background-color {
  fill: #a0f996 !important;
}
.single-product--variant-active .border__container .border__horizontal {
  border-color: #004b3a !important;
  background-color: #a0f996 !important;
}
.single-product--dark .single-product--variant-active {
  color: #b5f6a2 !important;
}
.single-product--dark .single-product--variant-active .border__container .border__middle {
  border-color: #004b3a !important;
  background-color: #246052 !important;
}
.single-product--dark .single-product--variant-active .border__container .border__corner svg .corner-line-color {
  fill: #004b3a !important;
}
.single-product--dark .single-product--variant-active .border__container .border__corner svg .corner-background-color {
  fill: #246052 !important;
}
.single-product--dark .single-product--variant-active .border__container .border__horizontal {
  border-color: #004b3a !important;
  background-color: #246052 !important;
}
.single-product__logo-container {
  width: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 768px) {
  .single-product__logo-container {
    width: calc((100% - 200px) / 2);
  }
}
@media (min-width: 950px) {
  .single-product__logo-container {
    width: calc((100% - 250px) / 2);
  }
}
@media (min-width: 1200px) {
  .single-product__logo-container {
    width: calc((100% - 300px) / 2);
  }
}
.single-product__logo-container.single-product--mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .single-product__logo-container.single-product--mobile {
    display: none;
  }
}
.single-product__logo-container.single-product--desktop {
  display: none;
}
@media (min-width: 768px) {
  .single-product__logo-container.single-product--desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.single-product__logo {
  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;
  margin: 0 0 5px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .single-product__logo {
    width: auto;
    margin: 5px 15px;
  }
}
.single-product__logo svg {
  width: 100%;
}
@media (min-width: 768px) {
  .single-product__logo svg {
    width: auto;
  }
}
.single-product__logo svg g {
  fill: #246052;
}
.single-product--light .single-product--mobile .single-product__logo svg g {
  fill: #fff;
}
@media (min-width: 768px) {
  .single-product__image-space {
    width: 200px;
  }
}
@media (min-width: 950px) {
  .single-product__image-space {
    width: 250px;
  }
}
@media (min-width: 1200px) {
  .single-product__image-space {
    width: 300px;
  }
}

body.single-press .press {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  counter-reset: numbered;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  body.single-press .press {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  body.single-press .press {
    max-width: 1266px;
  }
}
@media (min-width: 768px) {
  body.single-press .press {
    margin-top: 8rem;
  }
}
body.single-press .press__container {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-press .press__container {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    margin-right: 0;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  body.single-press .press__container {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  body.single-press .press__container {
    width: calc((100% * 4.5 / 8) - calc(3.5 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  body.single-press .press__container {
    width: calc((100% * 4.5 / 8) - calc(3.5 * 30px / 8));
  }
}
@media (min-width: 1200px) {
  body.single-press .press__container {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  body.single-press .press__container {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
body.single-press .press__header {
  font-family: "BeirutDisplay", sans-serif;
  line-height: 1.2;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
body.single-press .press__header time {
  font-family: "BeirutText", sans-serif;
  font-size: 1.9rem;
  color: #b5f6a2;
  display: block;
  margin-bottom: 2rem;
}
body.single-press .press__header h1 {
  margin: 0;
}
@media (min-width: 950px) {
  body.single-press .press__header {
    font-size: 3.8rem;
  }
}
body.single-press .press__images {
  width: 100%;
}
body.single-press .press__images-desktop {
  display: none;
}
@media (min-width: 768px) {
  body.single-press .press__images-desktop {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
    display: block;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  body.single-press .press__images-desktop {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  body.single-press .press__images-desktop {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  body.single-press .press__images-desktop {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
body.single-press .press__images-mobile {
  display: block;
}
@media (min-width: 768px) {
  body.single-press .press__images-mobile {
    display: none;
  }
}
body.single-press .press__images__image {
  margin: 0 0 4rem;
}
@media (min-width: 768px) {
  body.single-press .press__images__image {
    margin: 0 0 8rem;
  }
}
body.single-press .press__images__image img {
  max-width: 100%;
}
body.single-press .press .social__list {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

body.single-recipe .recipe {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  padding-top: 2.2rem;
}
@media (min-width: 768px) {
  body.single-recipe .recipe {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  body.single-recipe .recipe {
    max-width: 1266px;
  }
}
@media (min-width: 768px) {
  body.single-recipe .recipe {
    padding-top: 6rem;
  }
}
body.single-recipe .recipe.visible .recipe__header__images__main {
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
body.single-recipe .recipe.visible .recipe__header__images__secondary {
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}
body.single-recipe .recipe.visible .recipe__header__headings {
  -webkit-transform: translateX(0%);
       -o-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}
@media (min-width: 768px) {
  body.single-recipe .recipe.visible .recipe__header__headings {
    -webkit-transform: translateY(-50%) translateX(0);
         -o-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
  }
}
body.single-recipe .recipe__header {
  width: 100%;
  position: relative;
  color: #ecff5f;
}
body.single-recipe .recipe__header__headings {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-family: "BeirutDisplay", sans-serif;
  line-height: 1.2;
  text-align: center;
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__header__headings {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  body.single-recipe .recipe__header__headings {
    max-width: 1266px;
  }
}
body.single-recipe .recipe__header__headings__title, body.single-recipe .recipe__header__headings__subtitle {
  margin: 0;
  font-weight: 600;
}
body.single-recipe .recipe__header__headings__title {
  font-size: 3.8rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__header__headings__title {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  body.single-recipe .recipe__header__headings__title {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
@media (min-width: 950px) {
  body.single-recipe .recipe__header__headings__title {
    font-size: 5.8rem;
  }
}
@media (min-width: 1200px) {
  body.single-recipe .recipe__header__headings__title {
    font-size: 9rem;
  }
}
body.single-recipe .recipe__header__headings__subtitle {
  font-family: "BeirutText", sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: right;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  body.single-recipe .recipe__header__headings__subtitle {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  body.single-recipe .recipe__header__headings__subtitle {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
@media (min-width: 950px) {
  body.single-recipe .recipe__header__headings__subtitle {
    font-size: 1.6rem;
  }
}
body.single-recipe .recipe__header__headings__subtitle a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__header__headings {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    -webkit-transform: translateY(-50%) translateX(-100%);
         -o-transform: translateY(-50%) translateX(-100%);
            transform: translateY(-50%) translateX(-100%);
    text-align: left;
  }
}
body.single-recipe .recipe__header__images {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  z-index: 0;
}
body.single-recipe .recipe__header__images__main, body.single-recipe .recipe__header__images__secondary {
  opacity: 0;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
body.single-recipe .recipe__header__images__main {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 53rem;
  width: 69%;
  -webkit-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
}
body.single-recipe .recipe__header__images__main::before {
  content: "";
  display: block;
  padding-bottom: 142%;
}
body.single-recipe .recipe__header__images__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body.single-recipe .recipe__header__images__secondary {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 33rem;
  width: 42%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(100%);
       -o-transform: translateY(100%);
          transform: translateY(100%);
  z-index: 1;
}
body.single-recipe .recipe__header__images__secondary::before {
  content: "";
  display: block;
  padding-bottom: 142%;
}
body.single-recipe .recipe__header__images__secondary img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  body.single-recipe .recipe__header__images {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  body.single-recipe .recipe__header__images {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
@media (min-width: 950px) {
  body.single-recipe .recipe__header__images {
    width: calc((100% * 5 / 8) - calc(3 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  body.single-recipe .recipe__header__images {
    width: calc((100% * 5 / 8) - calc(3 * 30px / 8));
  }
}
body.single-recipe .recipe__content {
  width: 100%;
}
body.single-recipe .recipe__information {
  width: 100%;
  padding-top: 2.4rem;
  text-align: center;
  font-family: "BeirutText", sans-serif;
}
body.single-recipe .recipe__information p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
  padding-bottom: 2.4rem;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__information p {
    font-size: 2.5rem;
    padding-bottom: 5.8rem;
  }
}
body.single-recipe .recipe__information ul {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 4rem;
  padding: 0.6rem 0;
  list-style: none;
  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;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
body.single-recipe .recipe__information ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-4rem);
       -o-transform: translateX(-4rem);
          transform: translateX(-4rem);
}
@media (min-width: 768px) {
  body.single-recipe .recipe__information ul li {
    position: static;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    margin-right: 3rem;
  }
  body.single-recipe .recipe__information ul li:last-child {
    margin-right: 0;
  }
}
body.single-recipe .recipe__information ul svg {
  display: block;
  width: 3rem;
  height: 3rem;
  fill: #fff;
  opacity: 0.5;
  margin-right: 0.4em;
}
body.single-recipe .recipe__information ul span {
  -webkit-transform: translateY(2px);
       -o-transform: translateY(2px);
          transform: translateY(2px);
}
@media (min-width: 768px) {
  body.single-recipe .recipe__information ul {
    margin: 0 0 5rem;
    -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;
  }
}
@media (min-width: 768px) {
  body.single-recipe .recipe__information {
    width: calc((100% * 6 / 8) - calc(2 * 20px / 8));
    margin: 0 auto;
    padding-top: 5.8rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  body.single-recipe .recipe__information {
    width: calc((100% * 6 / 8) - calc(2 * 30px / 8));
  }
}
@media (min-width: 1200px) {
  body.single-recipe .recipe__information {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 1200px) and (min-width: 768px) {
  body.single-recipe .recipe__information {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
body.single-recipe .recipe__tab {
  width: 100%;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__tab {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  body.single-recipe .recipe__tab {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
body.single-recipe .recipe__tab__list {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 475px;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__tab__list {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  body.single-recipe .recipe__tab__list {
    max-width: 1266px;
  }
}
body.single-recipe .recipe__tab__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
body.single-recipe .recipe__tab__actions .tab__action {
  width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  text-align: center;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__tab__actions .tab__action {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
body.single-recipe .recipe__tab__actions .tab__action .border__content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__tab__actions {
    display: none;
  }
}
@media (min-width: 950px) {
  body.single-recipe .recipe__tab__left {
    width: calc((100% * 3 / 8) - calc(5 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  body.single-recipe .recipe__tab__left {
    width: calc((100% * 3 / 8) - calc(5 * 30px / 8));
  }
}
body.single-recipe .recipe__tab__title {
  display: none;
  font-family: "BeirutDisplay", sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__tab__title {
    display: block;
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  body.single-recipe .recipe__tab__title {
    font-size: 3.8rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  body.single-recipe .recipe__tab__content {
    display: block !important;
  }
}
body.single-recipe .recipe__stage li, body.single-recipe .recipe__step li {
  position: relative;
  font-family: "BeirutText", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__stage li, body.single-recipe .recipe__step li {
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  body.single-recipe .recipe__stage li, body.single-recipe .recipe__step li {
    font-size: 2.1rem;
    padding-left: 3.5rem;
  }
}
body.single-recipe .recipe__stage ul, body.single-recipe .recipe__step ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.single-recipe .recipe__stage ul li, body.single-recipe .recipe__step ul li {
  padding-left: 1.5rem;
}
body.single-recipe .recipe__stage ul li::before, body.single-recipe .recipe__step ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 9999px;
  background-color: #fff;
}
@media (min-width: 950px) {
  body.single-recipe .recipe__stage ul li, body.single-recipe .recipe__step ul li {
    padding-left: 2rem;
  }
}
body.single-recipe .recipe__stage ol, body.single-recipe .recipe__step ol {
  counter-reset: item item-header;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.single-recipe .recipe__stage ol li, body.single-recipe .recipe__step ol li {
  font-size: inherit;
  font-family: inherit;
  line-height: 1.9;
  position: relative;
  padding-left: 3.8rem;
  margin: 1rem 0;
}
body.single-recipe .recipe__stage ol li::before, body.single-recipe .recipe__step ol li::before {
  font-size: 1.6rem;
  font-family: "BeirutText", sans-serif;
  font-style: italic;
  opacity: 0.5;
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
}
@media (min-width: 950px) {
  body.single-recipe .recipe__stage ol li::before, body.single-recipe .recipe__step ol li::before {
    font-size: 1.9rem;
  }
}
body.single-recipe .recipe__stage ol li > p, body.single-recipe .recipe__step ol li > p {
  margin: 0;
}
body.single-recipe .recipe__stage ol li, body.single-recipe .recipe__step ol li {
  margin: 2rem 0;
}
@media (min-width: 950px) {
  body.single-recipe .recipe__stage ol li, body.single-recipe .recipe__step ol li {
    padding-left: 0;
  }
  body.single-recipe .recipe__stage ol li::before, body.single-recipe .recipe__step ol li::before {
    left: -3.5rem;
  }
}
body.single-recipe .recipe__stage__title, body.single-recipe .recipe__step__title {
  margin: 0;
}
body.single-recipe .recipe__stage {
  padding: 0;
  margin-bottom: 3rem;
}
body.single-recipe .recipe__stage li.recipe__stage__item {
  padding-left: 0;
  margin: 0;
}
body.single-recipe .recipe__stage li.recipe__stage__item:last-child::after {
  content: none;
}
body.single-recipe .recipe__stage li.recipe__stage__item::before {
  content: none;
}
body.single-recipe .recipe__stage li.recipe__stage__item::after {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-radius: 0;
  height: 0;
  left: 50%;
  margin: 3rem 0;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #004b3a;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__stage li.recipe__stage__item::after {
    width: calc(100% + 8rem);
    border-color: #246052;
  }
}
body.single-recipe .recipe__stage li.recipe__ingredient {
  margin: 1.6rem 0;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__stage {
    background-color: #004b3a;
    padding: 3rem;
  }
}
body.single-recipe .recipe__step {
  margin-bottom: 2rem;
}
body.single-recipe .recipe__step li.recipe__step__item {
  padding-left: 0;
}
body.single-recipe .recipe__step li.recipe__step__item::before {
  content: none;
}
body.single-recipe .recipe__step li.recipe__step__subitem::before {
  background: none;
  font-style: italic;
  opacity: 0.5;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  width: auto;
  height: auto;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__step {
    margin-bottom: 4rem;
  }
}
body.single-recipe .recipe__ingredient {
  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;
}
body.single-recipe .recipe__ingredient__name, body.single-recipe .recipe__ingredient__quantity {
  margin: 0;
}
body.single-recipe .recipe__ingredient__quantity {
  white-space: nowrap;
  margin-left: 1.6rem;
}
body.single-recipe .recipe__slider {
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__slider {
    position: static;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    width: 100%;
    margin-bottom: 6rem;
  }
}
body.single-recipe .recipe__slider__slide {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 50%;
  margin: 0 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.5;
  -webkit-transition: opacity 1s ease-out;
  -o-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
body.single-recipe .recipe__slider__slide::before {
  content: "";
  display: block;
  padding-bottom: 129%;
}
body.single-recipe .recipe__slider__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body.single-recipe .recipe__slider__slide.swiper-slide-active {
  opacity: 1;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__slider__slide {
    max-width: 35rem;
    margin: 0 1.5rem;
  }
}
body.single-recipe .recipe__hints {
  font-family: "BeirutText", sans-serif;
  background-color: #004b3a;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}
body.single-recipe .recipe__hints h4 {
  font-size: 1.5rem;
  line-height: 2.2;
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
  color: #ecff5f;
}
@media (min-width: 950px) {
  body.single-recipe .recipe__hints h4 {
    font-size: 1.9rem;
    line-height: 1.8;
  }
}
body.single-recipe .recipe__hints p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 950px) {
  body.single-recipe .recipe__hints p {
    font-size: 2.1rem;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  body.single-recipe .recipe__hints {
    padding: 2rem;
  }
}
body.single-recipe .recipe__highlight__product {
  background-color: #ffdd4d;
  padding: 2rem 5rem 2rem;
  text-align: center;
  font-family: "BeirutText", sans-serif;
  color: #246052;
}
body.single-recipe .recipe__highlight__product.light {
  color: #fff;
}
body.single-recipe .recipe__highlight__product h4,
body.single-recipe .recipe__highlight__product p {
  margin: 0;
  text-transform: uppercase;
}
body.single-recipe .recipe__highlight__product h4 {
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 4.35px;
  font-weight: normal;
}
@media (min-width: 950px) {
  body.single-recipe .recipe__highlight__product h4 {
    font-size: 1.6rem;
    line-height: 1.1;
    letter-spacing: 5.93px;
  }
}
body.single-recipe .recipe__highlight__product p {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (min-width: 950px) {
  body.single-recipe .recipe__highlight__product p {
    font-size: 2.5rem;
  }
}
body.single-recipe .recipe__highlight__product figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
body.single-recipe .recipe__highlight__product figure::before {
  content: "";
  display: block;
  padding-bottom: 138%;
}
body.single-recipe .recipe__highlight__product figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
body.single-recipe .recipe__highlight__product figure img {
  -o-object-fit: contain;
     object-fit: contain;
}
body.single-recipe .recipe__highlight__product a {
  width: 100%;
  max-width: 32rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__highlight__product a {
    font-size: 2.1rem;
  }
  body.single-recipe .recipe__highlight__product a .border__content {
    padding: 1.8rem;
  }
}
@media (min-width: 768px) {
  body.single-recipe .recipe__highlight__product {
    padding-bottom: 3rem;
  }
}
body.single-recipe .recipe__footer {
  width: 100%;
  margin: 3rem 0;
}
@media (min-width: 768px) {
  body.single-recipe .recipe__footer {
    margin: 6rem auto 2rem;
  }
}
@media (min-width: 950px) {
  body.single-recipe .recipe__footer {
    width: calc((100% * 4 / 8) - calc(4 * 20px / 8));
  }
}
@media (min-width: 950px) and (min-width: 768px) {
  body.single-recipe .recipe__footer {
    width: calc((100% * 4 / 8) - calc(4 * 30px / 8));
  }
}
body.single-recipe .recipe .swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  body.single-recipe .recipe .swiper-pagination {
    margin-top: 3rem;
  }
}
body.single-recipe .recipe .swiper-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
body.single-recipe .recipe .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #a0f996;
}
body.single-recipe .recipe .swiper-button-next, body.single-recipe .recipe .swiper-button-prev {
  width: 6rem;
  top: 0;
  height: 100%;
  margin: 0;
}
body.single-recipe .recipe .swiper-button-next::after, body.single-recipe .recipe .swiper-button-next::before, body.single-recipe .recipe .swiper-button-prev::after, body.single-recipe .recipe .swiper-button-prev::before {
  content: none;
}
body.single-recipe .recipe .swiper-button-next {
  right: 0;
  cursor: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjQuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI1MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA1MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRkZERDREO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO30KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO3N0cm9rZS1saW5lY2FwOnNxdWFyZTt9Cjwvc3R5bGU+CjxnIGlkPSJEZXNpZ24tU3lzdGVtIj4KCTxnIGlkPSJMb2dvcy1feDJCXy1JY29ucyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI0My4wMDAwMDAsIC03NzAuMDAwMDAwKSI+CgkJPGcgaWQ9Imljb25feDJGX21lbnUtY29weS02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMzguMDAwMDAwLCA3NjAuMDAwMDAwKSI+CgkJCTxnIGlkPSJHcm91cC01LUNvcHktNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDExLjAwMDAwMCkiPgoJCQkJPHBvbHlnb24gaWQ9IkZpbGwtMSIgY2xhc3M9InN0MCIgcG9pbnRzPSIxNCwwLjggNi4xLDUuOCAwLjgsNS44IDAuOCwzMS44IDYuMSwzMS44IDE0LDM3LjggMzEuOSwzNy44IDM3LjgsMTYuOCA0Ny44LDE2LjggCgkJCQkJNDcuOCw3LjggMzAuNCw3LjggMzIuNCwyLjggMzIuNCwwLjggCQkJCSIvPgoJCQkJPGxpbmUgaWQ9IkxpbmUtMiIgY2xhc3M9InN0MSIgeDE9IjM3LjgiIHkxPSIxNi44IiB4Mj0iMjQuMyIgeTI9IjE2LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0zIiBjbGFzcz0ic3QxIiB4MT0iMzcuOCIgeTE9IjcuOCIgeDI9IjI0LjMiIHkyPSI3LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weSIgY2xhc3M9InN0MSIgeDE9IjM1LjMiIHkxPSIyNC4zIiB4Mj0iMjYuMyIgeTI9IjI0LjMiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0yIiBjbGFzcz0ic3QxIiB4MT0iMzIuOCIgeTE9IjMxLjMiIHgyPSIyOC4zIiB5Mj0iMzEuMyIvPgoJCQk8L2c+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=), auto;
}
body.single-recipe .recipe .swiper-button-prev {
  left: 0;
  cursor: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI1LjQuMSwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHdpZHRoPSI1MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA1MCA0MCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAgNDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojRkZERDREO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO30KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojMDA2NjRGO3N0cm9rZS13aWR0aDoyO3N0cm9rZS1saW5lY2FwOnNxdWFyZTt9Cjwvc3R5bGU+CjxnIGlkPSJEZXNpZ24tU3lzdGVtIj4KCTxnIGlkPSJMb2dvcy1feDJCXy1JY29ucyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI0My4wMDAwMDAsIC03NzAuMDAwMDAwKSI+CgkJPGcgaWQ9Imljb25feDJGX21lbnUtY29weS02IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMzguMDAwMDAwLCA3NjAuMDAwMDAwKSI+CgkJCTxnIGlkPSJHcm91cC01LUNvcHktNiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNi4wMDAwMDAsIDExLjAwMDAwMCkiPgoJCQkJPHBvbHlnb24gaWQ9IkZpbGwtMSIgY2xhc3M9InN0MCIgcG9pbnRzPSIzNC42LDAuOCA0Mi41LDUuOCA0Ny44LDUuOCA0Ny44LDMxLjggNDIuNSwzMS44IDM0LjYsMzcuOCAxNi43LDM3LjggMTAuOCwxNi44IAoJCQkJCTAuOCwxNi44IDAuOCw3LjggMTguMiw3LjggMTYuMiwyLjggMTYuMiwwLjggCQkJCSIvPgoJCQkJPGxpbmUgaWQ9IkxpbmUtMiIgY2xhc3M9InN0MSIgeDE9IjEwLjgiIHkxPSIxNi44IiB4Mj0iMjQuMyIgeTI9IjE2LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0zIiBjbGFzcz0ic3QxIiB4MT0iMTAuOCIgeTE9IjcuOCIgeDI9IjI0LjMiIHkyPSI3LjgiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weSIgY2xhc3M9InN0MSIgeDE9IjEzLjMiIHkxPSIyNC4zIiB4Mj0iMjIuMyIgeTI9IjI0LjMiLz4KCQkJCTxsaW5lIGlkPSJMaW5lLTItQ29weS0yIiBjbGFzcz0ic3QxIiB4MT0iMTUuOCIgeTE9IjMxLjMiIHgyPSIyMC4zIiB5Mj0iMzEuMyIvPgoJCQk8L2c+CgkJPC9nPgoJPC9nPgo8L2c+Cjwvc3ZnPgo=), auto;
}

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