:root {
  accent-color: var(--color-primary);
  --padding-on-side: 40px;
  --margins: 1em;
  --gap: 40px;
  --content-small: 900px;
  --content-regular: 1400px;
  --content-big: 1700px;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 800;
  --border-radius-smaller: 10px;
  --border-radius: 20px;
  --border-radius-bigger: 30px;
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-30: 30px;
  --font-size-36: 36px;
  --font-size-48: 48px;
  --font-size-60: 60px;
  --font-size-72: 72px;
  --font-size-90: 100px;
  --color-white: #fff;
  --color-black: #000;
  --color-green: #007340;
  --color-red: #d8000c;
  --shadow: 1em 1em 2em rgba(0, 0, 0, 0.1);
  --shadow-darker: 0.75em 0.75em 0.75em rgba(0, 0, 0, 0.15);
  --color-main: #fff;
  --color-primary: #a2c617;
  --color-secondary: #547011;
  --color-background: #1c201b;
  --color-background-2: #111411;
  --color-border: transparent;
  --color-main-rgb: 255, 255, 255;
  --color-primary-rgb: 162, 198, 23;
  --color-secondary-rgb: 84, 112, 17;
  --color-background-rgb: 17, 20, 17;
  --color-background-2-rgb: 28, 32, 27;
  --color-white-rgb: 255, 255, 255;
  --arrow-right: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="14"><path fill="%23893213" fill-rule="evenodd" d="M1.521 6.537a.636.636 0 0 0-.629.642c0 .355.282.642.629.642l16.065-.002-4.883 4.989c-.246.782-.246.658 0 .909l.018.019a.622.622 0 0 0 .892 0l5.948-6.073a.646.646 0 0 0 .156-.263.653.653 0 0 0 .039-.223c0-.069-.011.223-.031-.199a.65.65 0 0 0-.173-.33L13.602.573a.622.622 0 0 0-.892 0l-.018.019a.652.652 0 0 0 0 .909l4.928 5.035-16.099.001Z"/></svg>');
}
:root {
  --icon-cart: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23009bab' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9.2 20.1c.5 0 .9.4.9 1s-.4 1-.9 1-.9-.4-.9-1 .4-1 .9-1Zm10.3 0c.5 0 .9.4.9 1s-.4 1-.9 1-.9-.4-.9-1 .4-1 .9-1ZM1.6 2h3.8l2.5 12.8c.2.9 1 1.6 1.9 1.5H19c.9 0 1.7-.6 1.9-1.5l1.5-8H6.3' /%3E%3C/svg%3E");
}
* {
  box-sizing: border-box;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a,
input,
textarea,
p,
body,
span {
  margin: 0;
  padding: 0;
}
img {
  border: none;
}
ul li {
  list-style: none;
}
a {
  text-decoration: none;
}
a,
svg,
path {
  transition: all 0.25s ease-in-out;
}
div,
article,
section,
img,
main,
input,
textarea {
  display: block;
}
input,
textarea,
img,
a,
option,
select,
button,
div {
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
html {
  font-size: 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: var(--regular);
  font-optical-sizing: auto;
  height: fill-available;
  height: -webkit-fill-available;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-size: var(--font-size-18);
  color: var(--color-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-background);
  min-height: 100vh;
  min-height: fill-available;
  min-height: -webkit-fill-available;
  overflow: clip;
  scrollbar-color: var(--color-main) var(--color-background);
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 0.8rem;
  background: var(--color-background);
}
body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0.4rem;
}
p {
  line-height: 1.4em;
}
.content {
  width: 100%;
  padding: 0 var(--padding-on-side);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.content--regular {
  max-width: calc(var(--content-regular) + 2 * var(--padding-on-side));
}
.content--smaller {
  max-width: calc(var(--content-small) + 2 * var(--padding-on-side));
}
.content--bigger {
  max-width: calc(var(--content-big) + 2 * var(--padding-on-side));
}
.section {
  position: relative;
  z-index: 2;
}
.section--smaller {
  padding: calc(var(--gap) * 2) 0;
}
.section--normal {
  padding: calc(var(--gap) * 4) 0;
}
.section--no-top {
  padding-top: 0;
}
.section--no-bottom {
  padding-bottom: 0;
}
.section--background {
  background-color: var(--color-background-2);
}
.absolute-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.button-wrapper {
  margin-top: var(--gap);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.button,
.global-style .wp-block-button__link {
  --color-text: var(--color-white);
  --color-text-hover: var(--color-white);
  --color-background: var(--color-primary);
  --color-background-hover: var(--color-secondary);
  display: inline-block;
  padding: 1em 2em;
  line-height: 1em;
  font-family: "Open Sans", sans-serif;
  font-weight: var(--semibold);
  font-optical-sizing: auto;
  font-size: var(--font-size-18);
  border: none;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  border-radius: 1em;
  border-top-right-radius: 0;
  box-shadow: none;
  text-align: center;
  color: var(--color-text);
  background-color: var(--color-background);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.button:hover,
.global-style .wp-block-button__link:hover {
  color: var(--color-text-hover);
  background-color: var(--color-background-hover);
}
.button--margin-top,
.global-style .wp-block-button__link--margin-top {
  margin-top: var(--gap);
}
.text-center {
  text-align: center;
}
.margin-top {
  margin-top: var(--gap);
}
.margin-bottom {
  margin-bottom: var(--gap);
}
.section__title,
h2.wp-block-heading {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  font-size: var(--font-size-48);
  line-height: 1.2;
  color: var(--color-main);
  margin-bottom: 1em;
}
.section__title strong,
h2.wp-block-heading strong {
  color: var(--color-primary);
  font-weight: var(--black);
}
.section__title--smaller,
h2.wp-block-heading--smaller {
  font-size: var(--font-size-36);
  color: var(--color-primary);
}
.section__subheading,
.is-style-section-subheading {
  font-size: var(--font-size-24);
  font-weight: var(--bold);
  line-height: 1em;
  color: var(--color-secondary);
  margin: -1em 0 1em;
  text-transform: uppercase;
}
.section__text {
  font-size: var(--font-size-16);
  line-height: 1.5em;
  color: var(--color-main);
}
.section__text.text-center {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
.js-parallax {
  transition-property: opacity, filter;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
}
.section--normal:has(+ .section--normal) {
  padding-bottom: 0;
}
.z-index-5 {
  z-index: 5;
}
.global-style,
.wp-block-group {
  font-size: var(--font-size-20);
}
.global-style > *:first-child,
.wp-block-group > *:first-child {
  margin-top: 0;
}
.global-style > *:last-child,
.wp-block-group > *:last-child {
  margin-bottom: 0;
}
.global-style p,
.wp-block-group p {
  margin: 1em 0;
}
.global-style p a,
.wp-block-group p a,
.global-style li a,
.wp-block-group li a,
.global-style table a,
.wp-block-group table a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}
.global-style p a::after,
.wp-block-group p a::after,
.global-style li a::after,
.wp-block-group li a::after,
.global-style table a::after,
.wp-block-group table a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-primary-hover);
}
.global-style p a:hover::after,
.wp-block-group p a:hover::after,
.global-style li a:hover::after,
.wp-block-group li a:hover::after,
.global-style table a:hover::after,
.wp-block-group table a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
.global-style hr,
.wp-block-group hr {
  border: 0;
  height: 2px;
  background: var(--color-background);
  clear: both;
  margin: var(--gap) 0;
}
.global-style h1,
.wp-block-group h1,
.global-style h2,
.wp-block-group h2,
.global-style h3,
.wp-block-group h3,
.global-style h4,
.wp-block-group h4,
.global-style h5,
.wp-block-group h5 {
  line-height: 1.1;
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  margin-top: 1em;
}
.global-style h1,
.wp-block-group h1 {
  font-size: var(--font-size-60);
  margin-bottom: 0.5em;
  color: var(--color-secondary);
}
.global-style h3,
.wp-block-group h3 {
  font-size: var(--font-size-24);
  color: var(--color-primary);
}
.global-style h4,
.wp-block-group h4 {
  font-size: var(--font-size-24);
}
.global-style ol:not([class]),
.wp-block-group ol:not([class]),
.global-style ul:not([class]),
.wp-block-group ul:not([class]),
.global-style ul.is-style-two-columns,
.wp-block-group ul.is-style-two-columns {
  counter-reset: item;
  list-style: none;
  margin: var(--margins) 0;
}
.global-style ul:not([class]) li,
.wp-block-group ul:not([class]) li,
.global-style ul.is-style-two-columns li,
.wp-block-group ul.is-style-two-columns li {
  padding: 0.3em 0 0.3em 1.4em;
}
.global-style ul:not([class]) li::before,
.wp-block-group ul:not([class]) li::before,
.global-style ul.is-style-two-columns li::before,
.wp-block-group ul.is-style-two-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0.4em;
  height: 0.4em;
  background-color: var(--color-secondary);
  top: 0.8em;
  border-radius: 0;
}
.global-style ol li::before,
.wp-block-group ol li::before {
  color: var(--color-main);
}
.global-style ol:not([class]),
.wp-block-group ol:not([class]) {
  padding-left: 0;
}
.global-style ol:not([class]) li,
.wp-block-group ol:not([class]) li {
  padding-left: 1.4em;
  padding-top: 0.3em;
  padding-bottom: 0.3em;
}
.global-style ol:not([class]) li::before,
.wp-block-group ol:not([class]) li::before {
  counter-increment: item;
  content: counter(item) ". ";
  font-weight: var(--bold);
  display: inline-block;
  position: absolute;
  left: 0;
  z-index: 2;
}
.global-style blockquote,
.wp-block-group blockquote {
  border-left: 0.4rem solid var(--color-main);
  margin: var(--gap) 0;
  padding: calc(var(--gap) * 0.75) var(--gap);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='124' height='99'%3E%3Cpath fill='%232B2171' fill-rule='evenodd' d='M55.855 28.158C55.536 13.346 43.939 1.929 28.811 2.255 13.999 2.574 2.589 14.486 2.908 29.299c.224 10.4 6.087 19.102 14.685 23.016L.928 98.393l24.898-.536L48.478 51.65c4.819-10.509 7.519-16.873 7.377-23.492Zm67.759-1.46C123.295 11.886 111.383.476 96.57.795c-15.127.326-26.222 12.475-25.903 27.044.224 10.4 6.087 19.103 14.685 23.016L68.687 96.934l24.898-.537 22.337-46.2c5.638-10.516 7.834-16.88 7.692-23.499Z' opacity='.1'/%3E%3C/svg%3E") 101% 105% / auto no-repeat;
  background-color: var(--color-background);
}
.global-style blockquote p,
.wp-block-group blockquote p {
  margin: 0;
  z-index: 2;
}
.global-style blockquote cite,
.wp-block-group blockquote cite {
  margin-top: 1em;
  font-size: var(--font-size-16);
  display: block;
}
.has-small-font-size {
  font-size: var(--font-size-18);
}
.has-medium-font-size {
  font-size: var(--font-size-20);
  color: var(--color-main);
  line-height: 1.4em;
}
.has-large-font-size {
  font-size: var(--font-size-24);
}
.has-huge-font-size {
  font-size: var(--font-size-30);
}
.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-table {
  margin: var(--margins) 0;
  overflow: inherit;
}
.wp-block-table table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}
.wp-block-table th {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  font-size: var(--font-size-18);
  color: var(--color-white);
  background-color: var(--color-main);
  text-align: left;
  border: none;
  padding: 0.6em 1em;
}
.wp-block-table td {
  font-size: var(--font-size-18);
  text-align: left;
  border: none;
  padding: 0.6em 1em;
}
.wp-block-table tr:nth-of-type(even) td {
  background-color: var(--color-background);
}
.is-style-two-columns {
  column-count: 2;
  gap: var(--gap);
}
.is-style-section--background {
  background-color: var(--color-background);
  padding: calc(var(--gap) * 2) 0;
}
.is-style-section-subheading {
  position: absolute;
  top: -0.55em;
  left: 0.5em;
}
.is-style-section-subheading + .wp-block-heading {
  margin-top: 0;
}
@media screen and (max-width: 660px) {
  .is-style-two-columns {
    column-count: 1;
  }
}
.wp-block-columns {
  gap: calc(var(--gap) * 1.5);
}
.wp-block-media-text {
  grid-template-columns: 50% 1fr;
  gap: calc(var(--gap) * 1);
  margin: var(--gap) 0;
}
.wp-block-media-text + .wp-block-media-text {
  margin-top: calc(var(--gap) * 2);
}
.wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
.wp-block-media-text .wp-block-media-text__content > *:first-child {
  margin-top: 0;
}
.wp-block-media-text .wp-block-media-text__content > *:last-child {
  margin-bottom: 0;
}
.wp-block-media-text img {
  border-radius: var(--border-radius);
}
@media screen and (max-width: 768px) {
  .wp-block-media-text {
    grid-template-columns: 1fr !important;
  }
  .wp-block-media-text .wp-block-media-text__media {
    grid-column: auto !important;
    order: 1;
    grid-row: auto !important;
  }
  .wp-block-media-text .wp-block-media-text__content {
    grid-column: auto !important;
    order: 2;
    grid-row: auto !important;
  }
}
.wp-block-group__inner-container {
  width: 100%;
  padding: 0 var(--padding-on-side);
  margin: 0 auto;
  position: relative;
  z-index: 5;
  max-width: calc(var(--content-regular) + 2 * var(--padding-on-side));
}
.section--narrow .wp-block-group__inner-container {
  max-width: calc(var(--content-small) + 2 * var(--padding-on-side));
}
.contacts {
  align-items: center;
}
.contacts h3 + p {
  margin-top: 0.25em;
}
.contacts p:last-child {
  margin-bottom: 0;
}
.contacts iframe {
  display: block;
  width: 100%;
  height: 48rem;
}
.wp-block-group a {
  z-index: 5;
}
figcaption {
  margin-top: 0.2em;
  font-size: var(--font-size-16);
  font-style: italic;
}
.wp-block-group__inner-container > *:first-child,
.wp-block-column > *:first-child {
  margin-top: 0;
}
.wp-block-group__inner-container > *:last-child,
.wp-block-column > *:last-child {
  margin-bottom: 0;
}
.wp-block-group__inner-container {
  width: 100%;
  padding: 0 var(--padding-on-side);
  margin: 0 auto;
  position: relative;
  z-index: 5;
  max-width: calc(var(--content-regular) + 2 * var(--padding-on-side));
}
.top-bar {
  padding: 1em 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: all 0.25s ease-in-out;
}
.top-bar.smaller {
  background: var(--color-background-2);
  box-shadow: 0 0.3em 0.6em rgba(0, 0, 0, 0.3);
  padding: 0.5em 0;
}
.top-bar.smaller .top-bar__logo img {
  height: clamp(30px, 5vw, 60px);
}
.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
.top-bar__logo img {
  height: clamp(40px, 7cqw, 90px);
  width: auto;
  transition: all 0.25s ease-in-out;
}
.top-bar__menu {
  display: flex;
  align-items: center;
}
.top-bar__menu a {
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5em 1em;
  font-size: var(--font-size-18);
  font-weight: var(--bold);
  text-transform: uppercase;
}
.top-bar__menu a:hover {
  color: var(--color-primary);
}
.top-bar__mobile-menu {
  display: none;
  align-items: center;
  margin-left: var(--gap);
  cursor: pointer;
}
.top-bar__mobile-menu:hover .top-bar__hamburger span {
  width: 100%;
}
.top-bar__mobile-menu-text {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  text-transform: uppercase;
  font-size: var(--font-size-24);
  font-weight: var(--black);
  letter-spacing: -0.025em;
  margin-right: 0.5em;
  color: var(--color-white);
  transition: all 0.25s ease-in-out;
}
.top-bar__hamburger {
  width: 2em;
  height: 1.6em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top-bar__hamburger span {
  display: block;
  height: 0.25em;
  border-radius: 0;
  margin-left: auto;
  transition: all 0.25s ease-in-out;
  background-color: var(--color-white);
}
.top-bar__hamburger span:nth-child(1) {
  width: 70%;
}
.top-bar__hamburger span:nth-child(2) {
  width: 100%;
}
.top-bar__hamburger span:nth-child(3) {
  width: 80%;
}
.top-bar__eshop {
  display: flex !important;
  align-items: center;
  gap: 0.75em;
  margin-left: 0.5em;
}
.top-bar__eshop::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  aspect-ratio: 1/1;
  mask: var(--icon-cart) center / contain no-repeat;
  background-color: var(--color-white);
}
.top-bar__eshop:hover {
  color: var(--color-white) !important;
}
.top-bar__eshop--mobile {
  display: none !important;
}
.top-bar__right-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 800px) {
  .top-bar__mobile-menu {
    display: flex;
    align-items: center;
  }
  .top-bar__menu {
    display: none;
  }
  .top-bar__eshop--mobile {
    display: flex !important;
    padding: 0.5em 1em;
    justify-content: flex-end;
  }
  .top-bar__eshop--desktop {
    display: none !important;
  }
}
.mobile-menu {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  background-color: var(--color-secondary);
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.2s ease-in-out;
}
.mobile-menu.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.mobile-menu__close {
  width: 2.4em;
  height: 2.4em;
  position: absolute;
  top: 2rem;
  right: var(--padding-on-side);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M3.4 3.4l33.2 33.2m0-33.2L3.4 36.6' fill='none' stroke='%23FFFFFF' stroke-width='5' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10'/%3E%3C/svg%3E") center / contain no-repeat;
  cursor: pointer;
}
.mobile-menu__content-wrapper {
  width: 100%;
  overflow-y: auto;
  padding-top: 6rem;
  padding-bottom: 4rem;
  height: 100vh;
  scrollbar-color: var(--color-main) var(--color-background);
  scrollbar-width: thin;
  display: flex;
  align-items: center;
}
.mobile-menu__content-wrapper::-webkit-scrollbar {
  width: 0.8rem;
  background: var(--color-background);
}
.mobile-menu__content-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0.4rem;
}
.mobile-menu__menu {
  width: 100%;
}
.mobile-menu__menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu__menu > li:last-child {
  border-bottom: none;
}
.mobile-menu__menu > li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mobile-menu__menu > li > a {
  width: calc(100% - 4rem);
  order: 1;
}
.mobile-menu__menu a {
  color: var(--color-white);
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  font-size: var(--font-size-30);
  padding: 0.5em 1.5em 0.7em;
  display: inline-block;
}
.mobile-menu__menu .current-menu-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--color-primary);
}
.mobile-menu .sub-menu {
  background-color: rgba(255, 255, 255, 0.03);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  height: 0;
  transition: all 0.25s ease-in-out;
  order: 3;
  width: 100%;
}
.mobile-menu .sub-menu.visible {
  visibility: visible;
  opacity: 1;
}
.mobile-menu .sub-menu a {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--regular);
  font-optical-sizing: auto;
  font-size: var(--font-size-20);
  padding: 0.5em 2em;
  display: block;
}
.mobile-menu .open-submenu {
  order: 2;
  flex-shrink: 0;
  right: 0;
  width: 4rem;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu .open-submenu::after {
  height: 100%;
  width: 100%;
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 20 12.1' version='1.1' viewBox='0 0 20 12.1'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='5' d='M2.1 2.2 10 10.1 18 2.2'/%3E%3C/svg%3E") center / 1rem auto no-repeat;
  display: inline-block;
  transition: all 0.25s ease-in-out;
}
.mobile-menu .open-submenu.active::after {
  transform: rotate(180deg);
}
.mobile-menu__content {
  flex-basis: 100%;
}
@media screen and (max-width: 800px) {
  .mobile-menu {
    display: block;
  }
}
.hero {
  padding: clamp(10vh, 10vw, 20vh) 0;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(var(--color-background-rgb), 0) 0%, var(--color-background) 100%);
  z-index: 1;
}
.hero__inner {
  margin-top: 15vh;
}
.hero__title {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  font-size: var(--font-size-60);
  line-height: 1.2;
  color: var(--color-main);
  margin-bottom: 1em;
  text-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.8);
}
.hero__title strong {
  font-size: var(--font-size-60);
  color: var(--color-primary);
  display: block;
  font-weight: var(--black);
}
.hero__text {
  font-size: var(--font-size-24);
  line-height: 1.5em;
  color: var(--color-main);
  max-width: 36em;
  margin: 0 auto;
  font-weight: var(--medium);
  text-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.8);
}
#pixel-to-watch {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100px;
}
.image-text {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: calc(var(--gap) * 1.5);
  align-items: center;
}
.image-text--image-first {
  grid-template-columns: 50% 1fr;
}
.image-text__image img {
  border-radius: var(--border-radius);
  border-top-right-radius: 0;
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .image-text {
    grid-template-columns: 1fr;
  }
  .image-text--image-first {
    grid-template-columns: 1fr;
  }
  .image-text__image {
    order: 1;
  }
  .image-text__content {
    order: 2;
  }
}
.products__title {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  font-size: var(--font-size-36);
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: 1em;
  text-transform: uppercase;
  display: flex;
  align-items: flex-end;
}
.products__title img {
  display: inline-block;
  margin-right: 1em;
}
.products__subheading {
  --icon-gluten-free: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' x='0' y='0' enable-background='new 0 0 205.8 205.6' version='1.1' viewBox='0 0 205.8 205.6'%3E%3Cpath d='M1.7 102.8c.4-27 9.5-50.4 28-69.7C51.1 10.8 77.5.4 108.3 1.9c25.6 1.2 47.8 11 65.9 29.2 21.2 21.3 31 47.2 29.8 77.1-2.1 49.3-43.7 98.4-106.8 95.6-24-1.1-45.2-10.1-62.8-26.5C12.8 157.2 2.1 132 1.7 102.8zM11 91.9c-.1 62.3 41.4 101.1 87.8 102.8 28.2 1 52.2-8.8 71.5-29.4 15.4-16.4 23.7-36.1 24.5-58.7 1-27.3-8.4-50.7-27.8-69.7-16.3-16-36.3-24.9-59.2-25.9-30.3-1.3-55.7 9.7-75.3 32.8C18.2 60.6 11.1 80.4 11 91.9zm72.5 31.2c-4 5.2-8.2 10.3-12 15.6-4.7 6.6-9.3 13.2-13.7 20-3.1 4.8-6 9.7-7.1 15.5-.4 2.1.8 3.9 2.9 4.2 2.1.2 2.9-.2 3.4-1.9.4-1.3.7-2.6 1.2-3.8 1.4-3.4 2.8-6.9 4.5-10.2 1.8-3.5 3.9-6.8 5.8-10.3 2.1-3.8 5.3-6.4 8.9-8.7 1.1-.7 2.1-.2 2 1.1-.1 2.1-.3 4.1-.5 6.2-.3 2.2-.7 4.3-.9 6.5-.2 2-.4 4-.3 6 .1 4.2.4 8.4.8 12.6.1.6.6 1.5 1.2 1.8.8.5 1.3-.4 1.8-1 .2-.2.4-.4.5-.6 1.5-3.1 3.2-6.1 4.6-9.3 2-4.4 2.4-9.2 2.8-13.9.3-3.4 1-6.6 2.1-9.9 1.4-4 2.7-8 2.6-12.4-.1-2.2-1.7-2.8-3.3-2.2-1.7.6-3.4 1.3-5.1 2-1 .4-1.9.9-2.8 1.3 4.8-6.5 9.7-12.9 15.1-19 3 3.2 5.8 6.2 8.6 9.2 4.6 4.9 9.2 9.9 13.7 14.8 3.9 4.3 8 8.5 13 11.6 2.9 1.8 5.9 3.3 9.3 3.9 3.9.7 7.6-.5 11-2.4 4.6-2.6 8.8-5.6 12.8-9 3-2.5 5.8-5.2 8.7-7.8.6-.5.9-2.5.5-3.2-.5-.9-1.4-1.1-2.3-.8-.9.3-1.9.7-2.6 1.3-3.1 2.3-6 4.9-9.1 7.2-2.1 1.5-4.5 2.8-7.2 3-1.6.1-3.3-.1-4.9-.4-3.8-.7-7-2.7-9.7-5.3-3.8-3.7-7.4-7.7-11.1-11.5-4.9-5-9.8-10-14.7-15.1-1.1-1.1-2.1-2.3-3.1-3.4 1.7-.8 3.3-1.6 4.8-2.3.8-.4 1.5-.8 2.5-.3 1.5.6 3.1.4 4.4-.7 1.5-1.3 3-2.7 4.1-4.3 1.6-2.4 3-5 4.3-7.7.7-1.4-.1-2.4-1.7-2.2-.8.1-1.6.5-2.3.8-2.2 1-4.4 2.2-7.1 1.6-1.4-.3-2.8.2-3.8 1.2-2.4 2.2-4 4.9-5.5 7.8-.7 1.3-1.2 2.7-1.9 4-1.5-.8-1.3-1.9-.8-3.1.7-1.6.5-3.1-.4-4.6-1.2-1.9-1.5-3.9-1.3-6 .1-.9.1-1.8 0-2.6-.1-.6-.4-1.4-.8-1.5-.7-.2-1.6-.1-2.2.4-1 .8-1.8 1.8-2.6 2.8-.9 1.2-1.7 2.5-2.6 3.8-.5-.5-.9-.8-1.3-1.2-3.2-3.3-6.4-6.7-9.6-10-4.4-4.5-9.2-8.6-14.8-11.7-6.6-3.8-13.4-6.4-21.2-6.2-3.9.1-7.6 1-11.1 2.7-5.1 2.5-9.1 6.2-12.2 10.9-1.5 2.3-3 4.6-2.9 7.6 0 1.1.7 1.6 1.7 1.2.8-.3 1.6-.9 2.3-1.4 1.4-1.2 2.6-2.5 4-3.8 4.1-3.8 8.9-5.9 14.6-5.6 3.8.2 7.5 1.2 11 2.7 3.6 1.6 6.9 3.7 10.2 6 4.5 3.1 7.7 7.3 11.5 11.1 3.5 3.6 6.8 7.3 10.2 10.9 1.4 1.5 2.8 3 4.1 4.4-3.7 4.4-7.4 9-11 13.6zm50.3-38.3c1.2-.9 2.4-1.9 3.4-3 2.2-2.2 4.3-4.6 5.4-7.5.2-.7.2-1.7-.2-2.3-.3-.4-1.4-.4-2-.3-1.1.2-2.1.7-3.1 1.2-1.5.6-3.1.9-4.7.5s-3.1-.4-4.3.5c-1.3 1-2.6 2-3.6 3.3-1.9 2.6-3.5 5.3-5.1 8-.7 1.3-.1 2.2 1.4 2 1.7-.3 3.4-.8 5-1.5 1.1-.4 2-.7 3.1-.3.6.2 1.2.3 2.1.6.7-.3 1.7-.6 2.6-1.2zm-14.9-11.7v1.1c0 1.7.8 2.2 2.3 1.3.9-.6 1.8-1.2 2.5-2 2.6-2.5 5.3-4.9 6.7-8.3.6-1.3.7-2.7.1-4-.8-1.9-1.2-3.8-.6-5.9.3-1 .4-2 .4-3 0-.6-.3-1.6-.7-1.7-.7-.2-1.7-.2-2.2.2-3.9 2.8-6.8 6.5-8.8 11-.7 1.7-.7 3.4.5 4.9.6.8.6 1.6.4 2.5-.3 1.4-.6 2.7-.8 4.1 0-.2.1-.2.2-.2zM117 69c-.2-.7-.5-1.7-1-2.1-.8-.6-1.7-.1-2.3.7-1.1 1.4-2.4 2.7-3.4 4.2-1.8 2.6-3.4 5.4-3.8 8.7-.2 1.3-.1 2.6 1 3.6.9.8 1 2 .9 3.2-.1 1.6-.1 3.2.1 4.8.2 1.6 1.1 1.8 2.3.8 3.3-2.9 5.8-6.5 7.6-10.6.7-1.6.9-3.4-.1-4.8-1.5-2.1-1.5-4.4-1.3-6.7 0-.6.2-1.3 0-1.8zm27.2-32.7c-.6.1-1.1.4-1.6.7-3.1 1.8-5.7 4.2-8 7-1.9 2.3-3.3 4.8-1.4 7.8.1.2 0 .7-.1 1-.5 1.7-1.1 3.3-1.6 5-.3.9-.5 2.1.5 2.6.5.3 1.6-.1 2.3-.5 1.6-.9 3.2-1.9 4.5-3.1 1.9-1.7 3.8-3.5 5.4-5.5.8-1 1.2-2.4.6-3.8-.7-2-.5-3.9.2-5.8.4-1.1.7-2.3.9-2.9.2-2-.5-2.7-1.7-2.5zm-7.1 33.6c.7-.2 1.6-.4 2.2-.1 2 .7 3.6.3 5.3-.9 2.8-2.1 5-4.7 6.9-7.6.8-1.1 1.3-2.4 1.8-3.7.4-1.2-.4-2.1-1.6-1.9-.8.1-1.6.3-2.4.6-2.2.9-4.4 1.8-6.8 1.2-1.5-.4-2.8-.1-3.9.8-1.3 1.1-2.7 2.2-3.6 3.6-1.7 2.5-3.2 5.3-4.7 8-.6 1.1 0 1.9 1.4 2.1 1.8-.8 3.5-1.5 5.4-2.1zm23.6-32.8c-.2-.6-.4-1.6-.8-1.7-.6-.2-1.4.1-2.1.4-.5.2-.8.7-1.2 1.1-1.4 1.4-2.9 2.7-5 3-1.4.2-2.5.9-3.2 2.2-2 3.8-2.7 7.9-2.9 12.1-.1 1.4 1 2 2.1 1.2.9-.7 1.7-1.5 2.6-2.2.9-.7 1.5-2.1 3-2 1.8.1 3.1-.8 3.9-2.2 2.1-3.5 3.3-7.3 3.6-11.3 0-.2.1-.4 0-.6z'/%3E%3C/svg%3E");
  z-index: 5;
  max-width: 90rem;
  padding: calc(var(--gap) * 0.75);
  padding-left: calc(var(--gap) * 2);
  border-radius: var(--border-radius);
  background-color: var(--color-background);
  border-top-right-radius: 0;
  margin-top: -0.5em;
  margin-bottom: 2em;
  width: auto;
  display: inline-block;
}
.products__subheading::before {
  content: "";
  position: absolute;
  left: calc(var(--gap) * 0.75);
  top: calc(var(--gap) * 0.75);
  width: 1.6em;
  height: 1.6em;
  mask: var(--icon-gluten-free) center / contain no-repeat;
  background-color: var(--color-primary);
}
.products__columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--gap);
}
.products__column-title {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  font-size: var(--font-size-24);
  line-height: 1.2;
  color: var(--color-main);
  margin-bottom: 0.5em;
  min-height: 2em;
}
.products li {
  padding: 0.25em 0;
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .products__subheading {
    background-color: var(--color-background-2);
    padding-left: 3.6em;
  }
}
@media screen and (max-width: 600px) {
  .products__columns {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
.launch {
  background-color: var(--color-background);
  padding: var(--gap);
  margin-top: 2em;
  text-align: center;
  border-radius: var(--border-radius);
  border-top-right-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
}
.launch__title {
  font-size: var(--font-size-24);
  line-height: 1.2;
  color: var(--color-main);
}
.launch__date {
  font-size: var(--font-size-30);
  line-height: 1.2;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-top: 0.2em;
}
.section-numbers {
  overflow: hidden;
}
.section-numbers::after {
  content: "";
  position: absolute;
  left: 0;
  top: -20%;
  right: 0;
  height: 80%;
  background-color: var(--color-background-2);
  transform: skewY(4deg);
  z-index: -1;
}
.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  margin-top: var(--gap);
}
.numbers__value {
  font-size: var(--font-size-30);
  line-height: 1;
  color: var(--color-primary);
  font-weight: var(--black);
}
.numbers__value strong {
  font-size: var(--font-size-60);
  font-weight: var(--black);
}
.numbers__label {
  font-size: var(--font-size-24);
  line-height: 1.2;
  color: var(--color-main);
  font-weight: var(--black);
  margin-top: 0.2em;
}
@media screen and (max-width: 480px) {
  .numbers {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.banners {
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: var(--gap);
  max-width: 60em;
  margin: 0 auto;
}
.banners--smaller {
  grid-template-columns: 1fr 1fr;
  max-width: 40em;
  margin-top: var(--gap);
}
.banners--smaller .banners__item {
  min-height: 20rem;
}
.banners__item {
  min-height: 32rem;
}
.banners__item img {
  border-radius: var(--border-radius);
  border-top-right-radius: 0;
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.5);
}
.banners__item--maso img {
  object-position: 100% 0;
}
@media screen and (max-width: 860px) {
  .banners__item {
    min-height: 24rem;
  }
  .banners--smaller .banners__item {
    min-height: 16rem;
  }
}
@media screen and (max-width: 660px) {
  .banners {
    grid-template-columns: 1fr;
  }
  .banners img {
    position: relative;
  }
}
.embla__viewport {
  overflow: hidden;
  margin: 0 auto;
}
.embla__container {
  backface-visibility: hidden;
  display: flex;
  touch-action: pan-y;
}
.embla__slide {
  flex-shrink: 0;
  min-width: 0;
}
.embla__arrows {
  position: absolute;
  top: 50%;
  left: var(--padding-on-side);
  right: var(--padding-on-side);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.embla__arrow {
  width: 4em;
  height: 4em;
  background: var(--color-secondary);
  cursor: pointer;
  border: none;
  transition: all 0.25s ease-in-out;
  border-radius: var(--border-radius-smaller);
  overflow: hidden;
  border-top-right-radius: 0;
}
.embla__arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  mask: var(--arrow-right) center / 60% auto no-repeat;
  background-color: var(--color-white);
  transition: all 0.25s ease-in-out;
}
.embla__arrow:hover:not(:disabled) {
  background-color: var(--color-primary);
}
.embla__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.embla__arrow--prev::after {
  transform: rotate(180deg);
}
.gallery--product {
  margin: calc(var(--gap) * 2) 0;
}
.gallery__image {
  height: 320px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__image--shadow img {
  border-radius: var(--border-radius-smaller);
  border-top-right-radius: 0;
}
.gallery__image img {
  max-height: 100%;
}
.gallery__item {
  padding: 0 calc(var(--gap) * 0.5);
}
.gallery__text {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  text-align: center;
  font-size: var(--font-size-24);
}
@media screen and (max-width: 1024px) {
  .gallery__image {
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  .gallery__image {
    height: 180px;
  }
}
.contact {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: var(--gap);
  border-radius: var(--border-radius);
  border-top-right-radius: 0;
  background-color: var(--color-background-2);
  overflow: hidden;
}
.contact__left {
  padding: calc(var(--gap) * 2);
}
.contact__link {
  font-size: var(--font-size-24);
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  color: var(--color-primary);
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--color-white);
}
.contact__link:hover {
  text-decoration-color: var(--color-primary);
}
.contact__oval {
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  font-size: var(--font-size-14);
  padding: 0.4em 0.6em;
  margin-bottom: 1em;
  line-height: 1.2;
}
.contact p {
  margin: 1em 0;
}
.contact iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 660px) {
  .contact {
    grid-template-columns: 1fr;
  }
  .contact iframe {
    aspect-ratio: 16/9;
  }
}
.footer {
  padding: calc(var(--gap) * 1.5) 0;
}
.footer__copyright {
  font-size: var(--font-size-14);
  text-align: center;
}
.footer__image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  mix-blend-mode: overlay;
}
.forest {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.forest__1 {
  position: absolute;
  min-width: 120vw;
  left: -10vw;
  bottom: 0;
}
.forest__2 {
  position: absolute;
  min-width: 120vw;
  left: -10vw;
  bottom: 0em;
}
.forest__3 {
  position: absolute;
  width: 90vw;
  left: 10vw;
  bottom: 0em;
}
@media screen and (max-width: 768px) {
  .forest__1 {
    min-width: 900px;
  }
  .forest__2 {
    min-width: 900px;
  }
  .forest__3 {
    min-width: 600px;
  }
}
#nabidka {
  z-index: 1;
}
.ethics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--border-radius);
  border-top-right-radius: 0;
  overflow: hidden;
  box-shadow: 0 0.3em 0.6em rgba(0, 0, 0, 0.3);
  margin-top: var(--gap);
  min-height: 32rem;
}
.ethics__left,
.ethics__right {
  padding: var(--gap);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ethics__text {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  z-index: 5;
  font-size: var(--font-size-30);
  text-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.8);
}
.ethics__text-2 {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  z-index: 5;
  font-size: var(--font-size-48);
  text-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.8);
}
.ethics__title {
  margin-top: calc(var(--gap) * 2);
}
@media screen and (max-width: 1024px) {
  .ethics {
    min-height: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .ethics {
    grid-template-columns: 1fr;
    min-height: 32rem;
  }
  .ethics__left,
  .ethics__right {
    padding: var(--gap);
  }
}
.popup {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap);
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  color: var(--color-main);
}
.popup.visible {
  opacity: 1;
  visibility: visible;
}
.popup__wrapper {
  background-color: var(--color-background);
  max-width: var(--content-small);
  padding: calc(var(--gap) * 2);
  scrollbar-color: var(--color-main) var(--color-background);
  scrollbar-width: thin;
  overflow: auto;
  width: 100%;
  max-height: calc(100vh - var(--gap) * 2);
  border-radius: var(--border-radius-smaller);
}
.popup__wrapper::-webkit-scrollbar {
  width: 0.8rem;
  background: var(--color-background);
}
.popup__wrapper::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0.4rem;
}
.popup__helper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.popup__close {
  position: absolute;
  top: var(--gap);
  right: var(--gap);
  width: 1.8em;
  height: 1.8em;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  z-index: 5;
  --close-color: var(--color-primary);
  --height: 0.16em;
}
.popup__close:hover {
  --close-color: var(--color-secondary);
  --height: 0.22em;
  scale: 1.2;
}
.popup__close:hover span:nth-child(1) {
  transform: rotate(-135deg);
}
.popup__close span {
  width: 100%;
  height: var(--height);
  background-color: var(--close-color);
  display: block;
  border-radius: 1em;
  transform-origin: center;
  position: absolute;
  top: calc(50% - var(--height) / 2);
  left: 0;
  transition: all 0.25s ease-in-out;
}
.popup__close span:nth-child(1) {
  transform: rotate(45deg);
}
.popup__close span:nth-child(2) {
  transform: rotate(-45deg);
}
.popup__content {
  text-align: center;
}
.popup__content p {
  margin: 1em auto;
}
.popup__subheading {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  font-size: var(--font-size-24);
  color: var(--color-secondary);
  text-transform: uppercase;
}
.popup__title {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  color: var(--color-primary);
  font-size: var(--font-size-36);
  margin: 0.25em auto 1em;
}
/* OpenStreetMap styly */
.map-pickups {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-smaller);
  overflow: hidden;
}
.map-pickups .leaflet-popup-content-wrapper {
  border-radius: 0.6rem;
  background: var(--color-background);
}
.map-pickups .leaflet-popup-content {
  margin: 1em;
  color: var(--color-main);
  font-size: var(--font-size-16);
  line-height: 1.4;
}
.map-pickups .leaflet-popup-tip {
  background: var(--color-background);
}
.map-pickups .map-bubble__content p {
  margin: 0;
  font-weight: var(--regular);
  color: var(--color-main);
}
.map-pickups .map-bubble__content a {
  font-weight: var(--bold);
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-white);
  font-size: var(--font-size-14);
}
.map-pickups .map-bubble__content a:hover {
  text-decoration-color: var(--color-primary);
}
.leaflet-control-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.leaflet-tile-pane {
  filter: grayscale(0.75);
}
.map-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1em;
  margin-top: 1em;
}
.map-locations__item {
  display: flex;
  gap: 0.75em;
  padding: 1em 1.25em;
  border-radius: var(--border-radius-smaller);
  border-top-right-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--color-background);
}
.map-locations__item:hover {
  transform: translateY(0.25rem);
}
.map-locations__item:active {
  transform: scale(0.98);
}
.map-locations__item-address-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.map-locations__item-icon {
  height: 1.4em;
  width: auto;
  flex-shrink: 0;
  position: relative;
  top: 0.3em;
}
.map-locations__item-address {
  font-size: var(--font-size-16);
  line-height: 1.4;
  font-weight: var(--bold);
}
.map-locations__item-link {
  font-size: var(--font-size-14);
  line-height: 1.4;
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-white);
}
.map-locations__item-link:hover {
  text-decoration-color: var(--color-primary);
}
.meat-composition {
  margin: 0 auto;
}
.wp-block-image a,
.gallery a {
  display: block;
  overflow: hidden;
}
.wp-block-image a::before,
.gallery a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23fff'%3E%3Cpath d='M90 0h61v30H90zM181 0h61v30h-61zM272 0h60v30h-60zM362 0h60v30h-60zM452 0v30h30v30h30V0h-60zM302 90v30h68.787l-120 120H30v-60H0v332h332v-30h-60V261.213l120-120V210h30V90H302zm-60 392H30V270h212v212zM0 90h30v60H0zM0 0v60h30V30h30V0H0zM482 90h30v60h-30zM482 180h30v60h-30zM482 270h30v60h-30zM482 360h30v61h-30zM482 451v31h-30v30h60v-61h-30zM362 482h60v30h-60z'/%3E%3C/svg%3E") center / 4rem auto no-repeat;
}
.wp-block-image a::after,
.gallery a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  opacity: 0;
  z-index: 2;
  transition: all 0.25s ease-in-out;
}
.wp-block-image a:hover::after,
.gallery a:hover::after {
  opacity: 0.7;
}
.wp-block-image a:hover:before,
.gallery a:hover:before {
  opacity: 1;
}
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
/* Lightbox */
.pswp__ui {
  position: static;
}
input,
textarea {
  padding: 0.7em 2em 0.7em 1em;
  font-size: var(--font-size-16);
  background: var(--color-white);
  color: var(--color-primary);
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #ddd;
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  transition: all 0.25s ease-in-out;
}
input:focus,
textarea:focus {
  border-color: var(--color-primary);
}
.label {
  position: absolute;
  top: 0.7em;
  left: 1em;
  display: block;
  color: var(--color-main);
  z-index: 2;
  cursor: text;
  transition: all 0.25s ease-in-out;
  font-size: var(--font-size-16);
  border: 1px solid transparent;
  border-radius: 0.3rem;
  text-transform: uppercase;
  font-weight: var(--bold);
}
.label span {
  color: var(--color-red);
  font-weight: var(--bold);
}
.label.active {
  top: -1em;
  left: 1em;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.1em 0.4em;
  z-index: 3;
  font-size: var(--font-size-12);
}
.label.active span {
  color: var(--color-white);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 480px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.submit-wrapper {
  text-align: right;
  position: relative;
  margin-top: 2rem;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control-wrap::after {
  content: "";
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 0;
  top: 0.45em;
  transition: opacity 0.15s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.wpcf7-form-control-wrap.wpcf7-not-valid::after {
  opacity: 1;
  visibility: visible;
  mask: var(--icon-warning) center / auto 2rem no-repeat;
  background: var(--color-red);
}
.wpcf7-form-control-wrap.wpcf7-not-valid input,
.wpcf7-form-control-wrap.wpcf7-not-valid textarea {
  border-color: var(--color-red);
}
.wpcf7-form-control-wrap.wpcf7-is-valid::after {
  opacity: 1;
  visibility: visible;
  mask: var(--icon-ok) center / auto 1.4rem no-repeat;
  background: var(--color-green);
}
.wpcf7-form-control-wrap.wpcf7-is-valid input,
.wpcf7-form-control-wrap.wpcf7-is-valid textarea {
  border-color: var(--color-green);
}
.wpcf7 .screen-reader-response,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wpcf7-response-output {
  color: var(--color-white);
  border-radius: var(--border-radius);
  margin: 0 auto;
  padding: 1em;
  line-height: 1.2em;
  border: none;
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  transition: all 0.25s ease-in-out;
  font-family: "Open Sans", sans-serif;
  font-weight: var(--black);
  font-optical-sizing: auto;
  font-size: var(--font-size-16) !important;
  display: none;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.wpcf7-spinner {
  animation: spin 1s linear infinite;
  mask: var(--icon-loading) center / 1.6rem auto no-repeat;
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  left: 0;
  margin: 0;
  transition: all 0.25s ease-in-out;
}
.wpcf7-spinner::before {
  content: none !important;
}
.wpcf7-form.submitting .wpcf7-spinner {
  visibility: visible;
  opacity: 1;
}
.wpcf7-form.invalid .wpcf7-response-output {
  background-color: var(--color-red);
  display: block;
}
.wpcf7-form.sent .wpcf7-response-output {
  background-color: var(--color-green);
  display: block;
}
.wpcf7-acceptance {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.wpcf7-acceptance--first {
  margin-top: 2rem;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item a {
  color: var(--color-primary);
}
.wpcf7-acceptance .wpcf7-list-item a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.wpcf7-acceptance .wpcf7-list-item input {
  display: none;
}
.wpcf7-acceptance .wpcf7-list-item input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 2em;
  font-size: var(--font-size-14);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p {
  margin: 0;
  padding-left: 0.8em;
  line-height: 1.2em;
  margin-top: 0.2em;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label p a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  z-index: 2;
  border: 2px solid transparent;
  mask: var(--icon-ok) center / auto 60% no-repeat;
  background-color: var(--color-primary);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2em;
  height: 1.2em;
  border: none;
  border-radius: 0;
  transition: all 0.25s ease-in-out;
  background: var(--color-white);
  border: 2px solid var(--color-border);
}
.wpcf7-acceptance.wpcf7-not-valid .wpcf7-list-item-label::after {
  border-color: var(--color-red);
}
.form-notice {
  font-size: var(--font-size-14);
  margin-top: 1em;
}
.form-notice a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}
.form-notice a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.form-notice a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
.google-recaptcha {
  font-size: 1.2rem;
  color: var(--color-main);
  margin: 0 0 1.5rem 0 !important;
}
.google-recaptcha a {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
}
.google-recaptcha a::after {
  content: "";
  display: block;
  height: 0.1em;
  width: 0%;
  background-color: transparent;
  border-radius: 1em;
  transition: all 0.25s ease-in-out;
  z-index: -1;
  background: var(--color-secondary);
}
.google-recaptcha a:hover::after {
  width: 100%;
  color: var(--color-primary);
}
@media screen and (max-width: 1400px) {
  :root {
    --padding-on-side: 2rem;
    --font-size-12: 1.2rem;
    --font-size-14: 1.3rem;
    --font-size-16: 1.5rem;
    --font-size-18: 1.6rem;
    --font-size-20: 1.8rem;
    --font-size-24: 2rem;
    --font-size-30: 2.4rem;
    --font-size-36: 2.8rem;
    --font-size-48: 3.2rem;
    --font-size-60: 4.8rem;
    --font-size-72: 5.4rem;
    --font-size-90: 6rem;
    --font-size-120: 8rem;
    --gap: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --font-size-12: 1.1rem;
    --font-size-14: 1.2rem;
    --font-size-16: 1.4rem;
    --font-size-18: 1.5rem;
    --font-size-20: 1.7rem;
    --font-size-24: 1.9rem;
    --font-size-30: 2.2rem;
    --font-size-36: 2.4rem;
    --font-size-48: 2.8rem;
    --font-size-60: 3.2rem;
    --font-size-72: 3.4rem;
    --font-size-90: 3.6rem;
    --font-size-120: 4rem;
    --gap: 2rem;
  }
}
@media screen and (max-width: 660px) {
  :root {
    --font-size-12: 1.1rem;
    --font-size-14: 1.2rem;
    --font-size-16: 1.4rem;
    --font-size-18: 1.5rem;
    --font-size-20: 1.6rem;
    --font-size-24: 1.8rem;
    --font-size-30: 2rem;
    --font-size-36: 2.2rem;
    --font-size-48: 2.4rem;
    --font-size-60: 2.8rem;
    --font-size-72: 3rem;
    --font-size-90: 3.2rem;
    --font-size-120: 3.6rem;
    --gap: 2rem;
    --shadow: 0 0.3em 1em rgba(25, 42, 60, 0.2);
  }
}
