img {
  display: block;
  width: 100%;
  height: auto;
}

.subheading {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: inherit;
  opacity: 0.5;
  font-weight: 400;
  margin-bottom: 10px;
  display: inline-block;
  scroll-margin: 150px !important;
  scroll-padding: 150px !important;
  -webkit-margin-before: unset !important;
          margin-block-start: unset !important;
}
@media (min-width: 992px) {
  .subheading {
    scroll-margin: 180px !important;
    scroll-padding: 180px !important;
    font-size: 17px;
  }
}
.subheading + * {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}

.entry-suffix {
  display: inline-block;
  background-color: rgb(from var(--wp--preset--color--emerald) r g b/0.1);
  border-radius: 24px;
  padding: 9px 18px;
  text-transform: uppercase;
  color: var(--wp--preset--color--emerald);
  font-size: clamp(15px, 4vw, 17px);
  -ms-flex-item-align: start;
      align-self: flex-start;
}

a {
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.download,
.video {
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
}
@media (min-width: 782px) {
  .download,
  .video {
    font-size: 18px;
  }
}
.download:before,
.video:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("../svg/download.svg");
          mask-image: url("../svg/download.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--wp--preset--color--emerald);
  margin-right: 5px;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media (min-width: 782px) {
  .download:before,
  .video:before {
    margin-right: 10px;
  }
}
.download:hover,
.video:hover {
  color: var(--wp--preset--color--red);
}
.download:hover:before,
.video:hover:before {
  background-color: var(--wp--preset--color--red);
}

.video:before {
  -webkit-mask-image: url("../svg/video.svg");
          mask-image: url("../svg/video.svg");
}

.has-large-font-size {
  font-size: 25px;
  line-height: 1.2;
}

.font-medium {
  font-weight: 500;
}

@media (max-width: 575px) {
  .intro-paragraph {
    font-size: 20px !important;
  }
}

.wp-element-button {
  position: relative;
  padding-right: 110px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  border-radius: 37px;
  font-weight: 500;
  text-align: left;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (max-width: 781px) {
  .wp-element-button {
    font-size: 15px !important;
    padding-block: 5px;
    min-height: 50px;
    padding-right: 60px;
  }
}
.wp-element-button:before {
  content: "";
  display: block;
  height: 40px;
  width: 40px;
  background-image: url("../svg/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  background-color: var(--wp--preset--color--white);
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (max-width: 781px) {
  .wp-element-button:before {
    right: 5px;
    top: calc(50% - 20px);
  }
}
.wp-element-button:hover {
  background-color: var(--wp--preset--color--red);
}
.wp-element-button:hover:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.wp-element-button--light {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--emerald);
}
.wp-element-button--light:hover {
  color: var(--wp--preset--color--white);
}

@media (max-width: 575px) {
  .variant-2 .wp-block-button {
    width: 100%;
    max-width: 225px;
  }
}

input:not([type=checkbox]):not([type=radio]) {
  background-color: transparent;
  color: var(--wp--preset--color--black);
  padding: 15px;
  border: 1px solid var(--wp--preset--color--borders);
  width: 100%;
  font-size: inherit;
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 5px;
}
@media (min-width: 782px) {
  input:not([type=checkbox]):not([type=radio]) {
    padding: 25px;
  }
}
input:not([type=checkbox]):not([type=radio]):focus, input:not([type=checkbox]):not([type=radio]):active {
  border-color: var(--wp--preset--color--emerald);
}
input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder {
  opacity: 1;
}
input:not([type=checkbox]):not([type=radio])::-moz-placeholder {
  opacity: 1;
}
input:not([type=checkbox]):not([type=radio]):-ms-input-placeholder {
  opacity: 1;
}
input:not([type=checkbox]):not([type=radio])::-ms-input-placeholder {
  opacity: 1;
}
input:not([type=checkbox]):not([type=radio])::placeholder {
  opacity: 1;
}

select {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  padding: 20px;
  border: solid 1px rgb(from var(--wp--preset--color--black) r g b/0.16);
  font-family: var(--wp--preset--font-family--satoshi);
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  font-size: 18px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/drop.svg");
  background-size: 16px 10px;
  background-repeat: no-repeat;
  background-position: center right 16px;
}

.advert {
  border-radius: 10px;
  border: 1px solid var(--wp--preset--color--borders);
  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;
  gap: 15px;
  background-color: var(--wp--preset--color--light);
  padding: 20px;
}
@media (min-width: 782px) {
  .advert {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 11px;
    padding: 30px 40px;
  }
}
.advert__title {
  width: 100%;
  margin: 0;
  font-size: 18px;
}
@media (min-width: 782px) {
  .advert__title {
    font-size: 25px;
  }
}
.advert__city {
  margin: 0;
  font-size: 15px;
}
.advert__city strong {
  margin-left: 10px;
  color: var(--wp--preset--color--emerald);
}
@media (min-width: 782px) {
  .advert__city {
    font-size: 18px;
  }
}
.advert__link {
  margin-top: 15px;
  font-weight: 600;
  text-decoration: underline;
  font-size: 16px;
}
@media (min-width: 782px) {
  .advert__link {
    margin-top: 0;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-left: auto;
  }
}

li.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
li.product .woocommerce-loop-product__title {
  color: var(--wp--preset--color--black);
  margin: 25px 0 10px;
  font-size: 18px;
}
@media (min-width: 782px) {
  li.product .woocommerce-loop-product__title {
    font-size: 25px;
  }
}
li.product .woocommerce-loop-product__date {
  margin: 0 0 25px;
}
li.product .woocommerce-loop-product__button {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto;
}
li.product .woocommerce-loop-product__button:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("../images/ticket.svg");
          mask-image: url("../images/ticket.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--wp--preset--color--black);
  margin-right: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
li.product .woocommerce-loop-product__button:before {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
@media (min-width: 992px) {
  li.product .woocommerce-loop-product__button {
    width: calc(100% - 30px);
    margin: auto 15px 0;
  }
}
li.product .woocommerce-loop-product__button:hover {
  background-color: var(--wp--preset--color--orange);
}

.woocommerce-pagination {
  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;
  margin-top: 40px;
}
.woocommerce-pagination ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 0;
}

.site-search {
  background: white linear-gradient(180deg, rgba(240, 242, 242, 0.8) 0%, rgba(255, 255, 255, 0) 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: -1;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  opacity: 0;
  -webkit-box-shadow: 0 10px 10px rgba(14, 49, 49, 0.2);
          box-shadow: 0 10px 10px rgba(14, 49, 49, 0.2);
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 375px) {
  .site-search {
    padding: 20px 35px;
    border-radius: 0 0 20px 20px;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.site-search__input {
  position: relative;
  border-bottom: solid 1px var(--wp--preset--color--borders);
}
.site-search__input input {
  height: 48px;
  padding: 15px 0 15px 45px !important;
  border: none !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}
.site-search__input input::-webkit-input-placeholder {
  color: var(--wp--preset--color--black);
  opacity: 1;
}
.site-search__input input::-moz-placeholder {
  color: var(--wp--preset--color--black);
  opacity: 1;
}
.site-search__input input:-ms-input-placeholder {
  color: var(--wp--preset--color--black);
  opacity: 1;
}
.site-search__input input::-ms-input-placeholder {
  color: var(--wp--preset--color--black);
  opacity: 1;
}
.site-search__input input::placeholder {
  color: var(--wp--preset--color--black);
  opacity: 1;
}
.site-search__input button {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 9px;
  z-index: 10;
}
@media (min-width: 375px) {
  .site-search__input button {
    width: 30px;
    height: 30px;
  }
}
.site-search__input button:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  -webkit-mask-image: url("../svg/search.svg");
          mask-image: url("../svg/search.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--wp--preset--color--black);
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-search__input button:hover:after {
  background-color: var(--wp--preset--color--red);
}
.site-search__close {
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  margin-top: 9px;
}
.site-search__close:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  -webkit-mask-image: url("../svg/close.svg");
          mask-image: url("../svg/close.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 22px;
          mask-size: 22px;
  background-color: var(--wp--preset--color--black);
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-search__close:hover:after {
  background-color: var(--wp--preset--color--red);
}
.site-search.is-open {
  opacity: 1;
  visibility: visible;
}

.product-grid:not(.swiper-wrapper) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1194px;
  margin-inline: auto;
}
.product-grid .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding: 15px;
  border: 1px solid var(--wp--preset--color--borders);
  border-radius: 10px;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.4s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, border-color 0.3s ease;
  transition: box-shadow 0.4s ease, border-color 0.3s ease, -webkit-box-shadow 0.4s ease;
}
@media (min-width: 576px) {
  .product-grid .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: calc(50% - 15px);
  }
}
@media (min-width: 782px) {
  .product-grid .product {
    padding: 30px;
    max-width: calc(33.3333333333% - 15px);
  }
}
.product-grid .product__image {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-right: 10px;
  max-height: 100px;
}
@media (min-width: 576px) {
  .product-grid .product__image {
    margin-bottom: 10px;
    aspect-ratio: 1;
    max-height: unset;
  }
}
.product-grid .product__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 50px;
  position: relative;
  width: 100%;
}
@media (min-width: 576px) {
  .product-grid .product__name {
    margin-top: auto;
    margin-right: auto;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 992px) {
  .product-grid .product__name {
    min-height: 75px;
  }
}
.product-grid .product__name > * {
  color: var(--wp--preset--color--black);
  font-size: 18px;
  margin: 0;
}
@media (min-width: 992px) {
  .product-grid .product__name > * {
    font-size: 25px;
  }
}
.product-grid .product__name .arrow {
  width: 40px;
  height: 40px;
  background: #F5F6F7;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.product-grid .product__name .arrow:before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  -webkit-mask-image: url("../svg/arrow-right.svg");
          mask-image: url("../svg/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--wp--preset--color--red);
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.product-grid .product:hover {
  -webkit-box-shadow: 0 4px 24px #dedede;
          box-shadow: 0 4px 24px #dedede;
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--black);
  border-color: var(--wp--preset--color--emerald);
}
.product-grid .product:hover .arrow {
  background-color: var(--wp--preset--color--red);
}
.product-grid .product:hover .arrow:before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  background-color: var(--wp--preset--color--white);
}

.submenu {
  background-color: var(--wp--preset--color--white);
  border-bottom: solid 1px #d2d8d8;
  position: fixed;
  width: 100vw;
  top: 70px;
  left: 0;
  z-index: 998;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .submenu {
    top: 90px;
  }
}
.submenu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: black;
  scrollbar-width: thin;
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding-inline: 15px;
}
@media (min-width: 782px) {
  .submenu__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1200px) {
  .submenu__nav {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
.submenu__item {
  display: block;
  padding-block: 20px;
  color: var(--wp--preset--color--black);
  font-weight: 500;
  font-size: 15px;
  border-bottom: solid 3px transparent;
  text-decoration: none !important;
  margin-bottom: -1px;
  white-space: nowrap;
}
@media (min-width: 782px) {
  .submenu__item {
    font-size: 18px;
    padding-block: 30px;
  }
}
.submenu__item:hover {
  color: var(--wp--preset--color--emerald);
}
.submenu__item--current {
  color: var(--wp--preset--color--emerald);
  border-color: var(--wp--preset--color--emerald);
}
.submenu--dynamic {
  border-bottom: unset;
  height: 66px;
  top: unset;
  background-color: var(--wp--preset--color--emerald);
  bottom: 0;
}
.submenu--dynamic .submenu__nav .submenu__item {
  padding-block: 19px;
  color: rgb(from var(--wp--preset--color--white) r g b/0.7);
}
.submenu--dynamic .submenu__nav .submenu__item:hover {
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--white);
}
.submenu:not(.submenu--dynamic) + .entry-header {
  margin-top: 65px;
}
@media (min-width: 992px) {
  .submenu:not(.submenu--dynamic) + .entry-header {
    margin-top: 85px;
  }
}

.swiper {
  position: relative;
}
@media only screen and (min-width: 1530px) {
  .swiper.swiper-container-fullwidth {
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
  }
}

.swiper-button-next,
.swiper-button-prev {
  -webkit-box-shadow: 0px 3px 50px rgba(14, 49, 49, 0.3);
          box-shadow: 0px 3px 50px rgba(14, 49, 49, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 30px;
  opacity: 1;
  background-color: var(--wp--preset--color--white);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  -webkit-mask-image: url("../svg/arrow-right.svg");
          mask-image: url("../svg/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--wp--preset--color--emerald);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  background-color: var(--wp--preset--color--red);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0 !important;
}

.swiper-button-prev:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.wp-block-columns {
  position: relative;
}
@media (max-width: 781px) {
  .wp-block-columns .wp-block-column.mobile-first {
    background: red;
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
}
.wp-block-columns.is-style-text-image:not(.not-reverse-mobile) .wp-block-column:has(img) {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media (min-width: 782px) {
  .wp-block-columns.is-style-text-image:not(.not-reverse-mobile) .wp-block-column:has(img) {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
.wp-block-columns.is-style-text-image:not(.not-reverse-mobile) .wp-block-column:has(img) img,
.wp-block-columns.is-style-text-image:not(.not-reverse-mobile) .wp-block-column:has(img) figure {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.wp-block-columns.is-style-text-image .wp-block-column:has(p) {
  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;
  padding-block: 20px;
}
@media (min-width: 992px) {
  .wp-block-columns.is-style-text-image .wp-block-column:has(p) {
    padding-inline: clamp(0px, 7vw, 115px);
  }
}
@media (min-width: 782px) {
  .wp-block-columns.is-style-gray-background:before {
    content: "";
    display: block;
    width: calc(100% - 60px);
    margin: 0 auto;
    height: 100%;
    background: #F5F6F7;
    position: absolute;
    z-index: -1;
    left: 30px;
    border-radius: 20px;
  }
}
.wp-block-columns.is-style-mtd-group {
  max-width: 1400px !important;
  gap: 30px;
}
@media (min-width: 782px) {
  .wp-block-columns.is-style-mtd-group {
    gap: 7%;
  }
}
@media (min-width: 782px) {
  .wp-block-columns.is-style-mtd-group .wp-block-column:has(img) {
    -ms-flex-preferred-size: 54%;
        flex-basis: 54%;
  }
}
@media (min-width: 782px) {
  .wp-block-columns.is-style-mtd-group .wp-block-column:has(p) {
    padding: 0;
    -ms-flex-preferred-size: 37%;
        flex-basis: 37%;
    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;
  }
}
.wp-block-columns.is-style-mtd-group-2 .wp-block-column {
  gap: 0;
}
@media (max-width: 781px) {
  .wp-block-columns.is-style-mtd-group-2 .wp-block-column:has(img) .wp-block-image {
    margin: 30px auto;
    float: unset;
    max-width: 160px;
  }
}
@media (min-width: 782px) {
  .wp-block-columns.is-style-mtd-group-2 .wp-block-column:has(img) {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}
@media (min-width: 782px) {
  .wp-block-columns.is-style-mtd-group-2 .wp-block-column:has(p) {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
  }
}
@media (max-width: 781px) {
  .wp-block-columns.is-educational-materials .wp-block-column:has(img) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.wp-block-columns.is-educational-materials .wp-block-column:has(p) {
  padding-left: 0;
}
.wp-block-columns.is-career {
  max-width: 1920px !important;
}
.wp-block-columns.is-career:after {
  display: block;
  content: "";
  width: 100vw;
  height: 1px;
  background: var(--wp--preset--color--light-gray);
  position: absolute;
  bottom: 0;
  left: calc((100vw - 100%) / 2 * -1);
}
.wp-block-columns.is-career .wp-block-column:has(.wp-block-image) .wp-block-image {
  height: 100%;
}
.wp-block-columns.is-career .wp-block-column:has(.wp-block-image) .wp-block-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-columns.is-career .wp-block-column:has(p) {
  padding: 45px 15px;
}
.wp-block-columns .wp-block-column {
  container-type: inline-size;
}
@container (min-width: 600px) {
  .wp-block-columns .wp-block-column ul.two-columns,
  .wp-block-columns .wp-block-column ol.two-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
.wp-block-columns.is-contact {
  gap: 15%;
}
@media (max-width: 1199px) {
  .wp-block-columns.is-contact {
    gap: 6%;
  }
}
@media (max-width: 781px) {
  .wp-block-columns.is-contact .wp-block-column:not(.has-background) {
    padding: 30px 0 !important;
  }
}
@media (min-width: 992px) {
  .wp-block-columns.is-contact .wp-block-column.has-background .email {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .wp-block-columns.is-contact .wp-block-column.has-background {
    padding-inline: 20px !important;
  }
}
@media (max-width: 781px) {
  .wp-block-columns.is-contact .wp-block-column.has-background {
    margin-inline: -15px;
    border-radius: 0 !important;
    padding: 40px 15px !important;
  }
}
.wp-block-columns.homepage-images h3 {
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
}
@media (max-width: 1199px) {
  .wp-block-columns.homepage-images {
    display: block;
  }
}
.wp-block-columns.homepage-images .wp-block-column {
  padding-bottom: 20px;
}
@media (min-width: 1200px) {
  .wp-block-columns.homepage-images .wp-block-column {
    padding-bottom: 80px;
  }
}
.wp-block-columns.homepage-images .wp-block-column .wp-block-image {
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .wp-block-columns.homepage-images .wp-block-column .wp-block-image {
    border-radius: 30px;
  }
}
.wp-block-columns.homepage-images .wp-block-column .wp-block-image:nth-of-type(1) {
  max-width: 55%;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .wp-block-columns.homepage-images .wp-block-column .wp-block-image:nth-of-type(1) {
    position: absolute;
    max-width: 772px;
    top: 29%;
    margin-left: 2%;
  }
}
.wp-block-columns.homepage-images .wp-block-column .wp-block-image:nth-of-type(2) {
  position: absolute;
  max-width: 640px;
  right: 40%;
  top: 70%;
  z-index: -1;
  margin-left: 15px;
}
@media (min-width: 1200px) {
  .wp-block-columns.homepage-images .wp-block-column .wp-block-image:nth-of-type(2) {
    top: 90%;
    right: 45%;
  }
}
.wp-block-columns.homepage-video {
  gap: 0;
}
@media (max-width: 991px) {
  .wp-block-columns.homepage-video {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    background-color: #f5f6f7;
  }
}
.wp-block-columns.homepage-video .wp-block-column {
  container-type: unset !important;
}
.wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) {
  background-color: #f5f6f7;
  border-radius: 20px 0 0 20px;
  padding: 25px 0 40px;
}
@media (min-width: 992px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) {
    padding: 70px;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) {
    padding: 70px 150px;
  }
}
.wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) > *:not(:first-child) {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) > *:not(:first-child) {
    margin-top: 40px;
  }
}
.wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h2, .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h3, .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h4 {
  position: relative;
}
.wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h2:before, .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h3:before, .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h4:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("../svg/history.svg");
          mask-image: url("../svg/history.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--wp--preset--color--black);
  margin-right: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h2:before, .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h3:before, .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h4:before {
  width: 50px;
  height: 50px;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
}
@media (min-width: 1200px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h2:before, .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h3:before, .wp-block-columns.homepage-video .wp-block-column:nth-of-type(1) h4:before {
    top: -20px;
    position: absolute;
    left: -90px;
  }
}
@media (max-width: 991px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(2) {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.wp-block-columns.homepage-video .wp-block-column:nth-of-type(2) .wp-block-video {
  height: calc(100% + 80px);
  margin-right: -15px;
  border-radius: 0 0 0 20px;
  background-color: #f5f6f7;
}
@media (max-width: 991px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(2) .wp-block-video {
    border-radius: 0;
    margin-left: -15px;
  }
}
@media only screen and (min-width: 1560px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(2) .wp-block-video {
    border-radius: 0 20px 20px 20px;
  }
}
.wp-block-columns.homepage-video .wp-block-column:nth-of-type(2) .wp-block-video video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 991px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(2) .wp-block-video video {
    border-radius: 0;
  }
}
@media only screen and (min-width: 1560px) {
  .wp-block-columns.homepage-video .wp-block-column:nth-of-type(2) .wp-block-video video {
    border-radius: 20px;
  }
}
@media (max-width: 781px) {
  .wp-block-columns.reverse-mobile .wp-block-column:nth-of-type(1) {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
}
@media (max-width: 781px) {
  .wp-block-columns.product-brochure {
    padding: 20px !important;
  }
  .wp-block-columns.product-brochure .wp-block-column:has(img) {
    -ms-flex-preferred-size: 94px !important;
        flex-basis: 94px !important;
  }
}

.entry:has(.wp-block-columns.is-contact) .entry-header {
  margin-bottom: 0;
}

.wp-block-group {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1589px) {
  .wp-block-group.is-style-light-green.alignwide {
    margin-inline: 15px;
    width: calc(100% - 30px);
  }
}
.wp-block-group.is-style-light-green.alignwide > * {
  max-width: 1300px !important;
}
.wp-block-group.is-style-light-green:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 560/290;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-image: url("../svg/lightgreen-effect.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
}
.wp-block-group.is-style-dark-green {
  margin-inline: auto;
  width: calc(100% - 30px);
  z-index: 1;
}
@media (max-width: 781px) {
  .wp-block-group.is-style-dark-green {
    border-radius: 0;
    width: 100%;
    margin-inline: 0;
  }
}
.wp-block-group.is-style-dark-green:before {
  content: "";
  display: none;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 560/290;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-image: url("../svg/white-effect.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
}
@media (min-width: 782px) {
  .wp-block-group.is-style-dark-green:before {
    display: block;
  }
}
@media (min-width: 782px) {
  .wp-block-group.is-style-dark-green .file {
    max-width: 250px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-left: auto;
  }
}
.wp-block-group.is-style-dark-green.alignwide > * {
  max-width: 1300px !important;
}
@media (max-width: 781px) {
  .wp-block-group.is-map {
    width: 100vw !important;
    padding: 0 !important;
  }
  .wp-block-group.is-map .wp-block-image,
  .wp-block-group.is-map img {
    width: 100vw !important;
    padding: 0;
    margin: 0;
    min-height: 250px;
  }
}
.wp-block-group.homepage-two-color-columns {
  overflow: unset;
  margin-top: -120px;
}
@media (max-width: 781px) {
  .wp-block-group.homepage-two-color-columns {
    margin-top: 12%;
    margin-bottom: 50px;
  }
}
.wp-block-group.homepage-two-color-columns .wp-block-columns {
  gap: 40px;
}
.wp-block-group.homepage-two-color-columns .wp-block-columns h3 {
  margin-bottom: 30px;
  max-width: 320px;
  line-height: 1.1;
  height: 92px;
}
@media (max-width: 781px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns h3 {
    margin-bottom: 20px;
    height: unset;
  }
}
.wp-block-group.homepage-two-color-columns .wp-block-columns p {
  max-width: 460px;
}
.wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-buttons {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-buttons {
    margin-top: 25px;
  }
}
.wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-buttons .wp-block-button__link {
  padding: 10px 65px 10px 0;
  background-color: transparent;
  color: var(--wp--preset--color--black);
}
.wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-buttons .wp-block-button__link:before {
  width: 40px !important;
  height: 40px !important;
  top: 0;
  right: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #F5F6F7;
}
.wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-buttons .wp-block-button__link:hover:before {
  background-color: var(--wp--preset--color--red);
  background-image: url("../svg/arrow-right-white.svg");
}
@media (max-width: 781px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column {
    padding: 30px !important;
    border: solid 1px var(--wp--preset--color--light-gray);
    border-radius: 10px;
  }
}
@media (min-width: 782px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column {
    padding-top: 280px !important;
  }
}
@media (min-width: 992px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column {
    padding-top: 350px !important;
  }
}
@media (min-width: 1200px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column {
    padding-top: 540px !important;
  }
}
@media (min-width: 1200px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column:nth-of-type(1) {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
.wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column:nth-of-type(2) {
  position: relative;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--wp--preset--color--white);
}
@media (min-width: 1200px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column:nth-of-type(2) > * {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
.wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column:nth-of-type(2) .wp-block-buttons .wp-block-button__link {
  color: var(--wp--preset--color--white);
}
.wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column:nth-of-type(2):before {
  content: "";
  display: block;
  width: 120vw;
  height: calc(100% + 40px);
  background-color: var(--wp--preset--color--emerald);
  position: absolute;
  z-index: -2;
  top: -20px;
  left: -30px;
  background-image: url("../svg/white-effect-alt.svg");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: bottom right 30%;
}
@media (min-width: 782px) {
  .wp-block-group.homepage-two-color-columns .wp-block-columns .wp-block-column:nth-of-type(2):before {
    top: 0;
    border-radius: 40px 0 0 40px;
    width: 60vw;
    height: 100%;
  }
}

article.entry:has(.is-career) .entry-header {
  margin-bottom: 0;
}

.wp-block-separator.is-style-thick {
  margin: 20px auto !important;
}
@media (min-width: 782px) {
  .wp-block-separator.is-style-thick {
    margin: 30px auto !important;
  }
}

.contacts {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1px;
  overflow: hidden;
  background-color: var(--wp--preset--color--borders);
}
@media (min-width: 576px) {
  .contacts {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: -15px;
  }
}
@media (min-width: 992px) {
  .contacts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contacts__item {
  background-color: white;
  padding: 60px 20px;
}
.contacts__item-wrapper {
  font-size: 15px;
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 782px) {
  .contacts__item-wrapper {
    font-size: 18px;
  }
}
.contacts__item-wrapper .description {
  color: var(--wp--preset--color--emerald);
  margin-bottom: 40px;
  display: inline-block;
  font-size: 17px;
  background-color: rgb(from var(--wp--preset--color--emerald) r g b/0.1);
  border-radius: 24px;
  padding: 9px 18px;
}
.contacts__item-wrapper img {
  max-width: 140px;
}
.contacts__item-wrapper a {
  font-weight: 600;
}
.contacts__item-wrapper a[href^="tel:"]:not(:hover), .contacts__item-wrapper a[href^="mailto:"]:not(:hover) {
  color: var(--wp--preset--color--black);
}
@media (max-width: 575px) {
  .contacts__item:not(:has(*)) {
    display: none;
  }
}
@media (min-width: 782px) {
  .contacts__item:nth-child(-n+2) {
    padding-top: 0;
  }
}
@media (min-width: 992px) {
  .contacts__item:nth-child(-n+3) {
    padding-top: 0;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .contacts__item:last-child {
    display: none;
  }
}

.ilabs-certificates {
  margin-block: 60px;
}
@media (min-width: 992px) {
  .ilabs-certificates {
    margin-block: 100px;
  }
}
.ilabs-certificates h3 {
  text-align: center;
  margin: 0;
}
.ilabs-certificates .certificates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: var(--wp--preset--color--borders);
  max-width: 1270px;
  margin: 15px auto 0;
}
@media (min-width: 782px) {
  .ilabs-certificates .certificates {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .ilabs-certificates .certificates {
    margin: 50px auto 0;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .ilabs-certificates .certificates {
    grid-template-columns: repeat(5, 1fr);
  }
}
.ilabs-certificates .certificates__item {
  background-color: white;
  padding: 15px;
  font-weight: 500;
}
@media (min-width: 782px) {
  .ilabs-certificates .certificates__item {
    padding: 30px;
  }
}
.ilabs-certificates .certificates__item img {
  max-width: 125px;
  margin: 0 auto;
}
@media (min-width: 782px) {
  .ilabs-certificates .certificates__item img {
    max-width: 150px;
  }
}
.ilabs-certificates .certificates__item p {
  margin: 10px 0;
  font-size: 14px;
}
@media (min-width: 782px) {
  .ilabs-certificates .certificates__item p {
    font-size: 18px;
    margin: 15px 0;
  }
}
@media (min-width: 1200px) {
  .ilabs-certificates .certificates__item:nth-last-child(-n+3) {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .ilabs-certificates .certificates__item:nth-last-child(-n+2) {
    display: none;
  }
}
@media (max-width: 575px) {
  .ilabs-certificates .certificates__item:nth-last-child(-n+2) {
    display: none;
  }
}

.fiscal-strategy {
  max-width: 1295px;
  margin-inline: auto;
}
.fiscal-strategy .row {
  margin-bottom: 15px;
  border: 1px solid var(--wp--preset--color--borders);
  padding: clamp(20px, 5vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: clamp(10px, 3vw, 20px);
}
@media (min-width: 576px) {
  .fiscal-strategy .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.fiscal-strategy .row__title {
  margin-bottom: 0;
  font-weight: 500;
  font-size: clamp(18px, 5vw, 25px);
}

.ilabs-symbols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1300px !important;
  margin-top: 30px;
  margin-bottom: 90px;
  font-size: 15px;
}
.ilabs-symbols__row {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 782px) {
  .ilabs-symbols__row {
    grid-template-columns: 35% 1fr;
  }
}
@media (min-width: 782px) {
  .ilabs-symbols__row:has(.iso_no):has(.symbol) {
    grid-template-columns: 20% 20% 40% 1fr;
  }
}
@media (min-width: 782px) {
  .ilabs-symbols__row:has(.symbol) {
    grid-template-columns: 20% 40% 1fr;
  }
}
.ilabs-symbols__row--header {
  display: none;
  background-color: var(--wp--preset--color--emerald);
  color: var(--wp--preset--color--white);
  font-weight: 500;
  border-radius: 10px;
  min-height: 74px;
}
@media (min-width: 782px) {
  .ilabs-symbols__row--header {
    display: grid;
  }
}
.ilabs-symbols__row--header > div {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ilabs-symbols__row--header > div.symbol {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ilabs-symbols__row--body .symbol {
  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;
  padding: 15px 0;
}
@media (min-width: 782px) {
  .ilabs-symbols__row--body .symbol {
    padding: 15px;
    border-bottom: 1px solid var(--wp--preset--color--borders);
  }
}
.ilabs-symbols__row--body .symbol img {
  width: 175px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.ilabs-symbols__row--body .title {
  font-weight: 600;
  padding-bottom: 8px;
}
@media (min-width: 782px) {
  .ilabs-symbols__row--body .title {
    padding: 15px;
    border-bottom: 1px solid var(--wp--preset--color--borders);
  }
}
.ilabs-symbols__row--body .description {
  padding-bottom: 15px;
}
@media (min-width: 782px) {
  .ilabs-symbols__row--body .description {
    padding: 15px;
    border-bottom: 1px solid var(--wp--preset--color--borders);
  }
}
.ilabs-symbols__row--body .iso_no {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--wp--preset--color--borders);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (min-width: 782px) {
  .ilabs-symbols__row--body .iso_no {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--wp--preset--color--borders);
  }
}
.ilabs-symbols__row--body .iso_no .label {
  opacity: 0.6;
}
@media (min-width: 782px) {
  .ilabs-symbols__row--body .iso_no .label {
    display: none;
  }
}
.file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--wp--preset--color--light);
  border-radius: 10px;
  padding: 25px;
  gap: 15px;
  color: var(--wp--preset--color--black);
  border: solid 1px #d2d8d8;
}
.file__type {
  opacity: 0.5;
  font-size: 17px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .file__type {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
.file__title {
  font-weight: 500;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
}
@media (min-width: 576px) {
  .file__title {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
.file a {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: -10px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
}
@media (min-width: 576px) {
  .file a {
    -ms-flex-item-align: unset;
        align-self: unset;
    margin: 0;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}

.ilabs-product-instructions .submenu {
  position: relative;
  top: 0;
  z-index: 1;
  margin-inline: calc((100vw - 100%) / -2) !important;
}
.ilabs-product-instructions .submenu:after {
  display: block;
  content: "";
  height: 1px;
  background: var(--wp--preset--color--borders);
  width: 100vw;
  position: absolute;
  left: calc((100vw - 100%) / 2);
  z-index: -1;
}
.ilabs-product-instructions .submenu__nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1398px) {
  .ilabs-product-instructions .submenu__nav {
    padding-inline: 15px;
  }
}
@media (max-width: 1398px) {
  .ilabs-product-instructions .submenu {
    margin-inline: -15px;
  }
}
.ilabs-product-instructions .instruction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 225px;
  padding-block: 30px;
  padding-inline: clamp(15px, 3vw, 130px);
  border-bottom: solid 1px #d2d8d8;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-inline: -15px;
  gap: 15px;
}
@media (min-width: 992px) {
  .ilabs-product-instructions .instruction {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-inline: unset;
  }
}
.ilabs-product-instructions .instruction__product {
  position: relative;
  padding-left: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  min-height: 130px;
}
@media (min-width: 992px) {
  .ilabs-product-instructions .instruction__product {
    min-height: 165px;
    padding-left: 165px;
  }
}
.ilabs-product-instructions .instruction__product img {
  position: absolute;
  aspect-ratio: 1;
  width: 130px;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 992px) {
  .ilabs-product-instructions .instruction__product img {
    width: 165px;
  }
}
.ilabs-product-instructions .instruction__product h3 {
  font-size: 20px;
}
@media (min-width: 992px) {
  .ilabs-product-instructions .instruction__product h3 {
    font-size: 40px;
  }
}
.ilabs-product-instructions .instruction__product a,
.ilabs-product-instructions .instruction__product span {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  color: var(--wp--preset--color--emerald);
}
@media (min-width: 992px) {
  .ilabs-product-instructions .instruction__product a,
  .ilabs-product-instructions .instruction__product span {
    font-size: 18px;
  }
}
.ilabs-product-instructions .instruction__product a {
  text-decoration: underline;
}
.ilabs-product-instructions .instruction__items {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: grid;
  gap: 15px;
}
@media (min-width: 576px) {
  .ilabs-product-instructions .instruction__items {
    grid-template-columns: 1fr 1fr;
  }
}
.ilabs-product-instructions .instruction:not(:has(.instruction__items > *)) {
  display: none;
}

.entry:has(.ilabs-product-instructions) .entry-header {
  margin-bottom: 0;
}

.educational-material {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1295px;
  margin: 0 auto 15px;
  background-color: var(--wp--preset--color--light);
  border-radius: 10px;
  padding: 15px;
  gap: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: solid 1px #d2d8d8;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 782px) {
  .educational-material {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 992px) {
  .educational-material {
    gap: 90px;
    padding: 10px 50px;
  }
}
.educational-material__thumbnail {
  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;
  max-width: 180px;
  width: 100%;
}
@media (min-width: 782px) {
  .educational-material__thumbnail {
    max-width: 380px;
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
  }
}
.educational-material__thumbnail img {
  aspect-ratio: 380/260;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  max-height: 200px;
}
@media (min-width: 782px) {
  .educational-material__thumbnail img {
    max-height: 260px;
  }
}
@media (min-width: 782px) {
  .educational-material__description {
    -ms-flex-preferred-size: 66%;
        flex-basis: 66%;
  }
}
.educational-material__description h3 {
  font-size: 15px;
  margin-bottom: 20px;
}
@media (min-width: 782px) {
  .educational-material__description h3 {
    font-size: 18px;
  }
}
.educational-material__description p {
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 30px;
}
@media (min-width: 782px) {
  .educational-material__description p {
    font-size: 18px;
  }
}

.job-offers {
  max-width: 1030px;
  margin: 40px auto;
}
@media (min-width: 782px) {
  .job-offers {
    margin: 100px auto;
  }
}
.job-offers__title {
  margin-bottom: 20px;
}
@media (min-width: 782px) {
  .job-offers__title {
    margin-bottom: 45px;
  }
}
.job-offers__search {
  margin-bottom: 15px;
  position: relative;
}
@media (min-width: 782px) {
  .job-offers__search {
    margin-bottom: 25px;
  }
}
.job-offers__search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1;
  cursor: pointer;
  background-image: url("../svg/search.svg");
  background-color: transparent;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}
.job-offers__search input {
  padding-right: 70px;
}
.job-offers__adverts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 17px;
  padding: 0;
}

.email {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px;
  border-radius: 10px;
  gap: 15px;
  font-weight: 500;
  font-size: 15px;
}
@media (min-width: 1200px) {
  .email {
    padding: 30px;
    border-radius: 30px;
    font-size: 18px;
  }
}
.email__prefix {
  color: var(--wp--preset--color--emerald);
  padding-right: 40px;
  position: relative;
}
@media (min-width: 1200px) {
  .email__prefix {
    padding-right: 70px;
  }
}
.email__prefix:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("../svg/mail.svg");
          mask-image: url("../svg/mail.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--wp--preset--color--emerald);
  margin-left: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.email__prefix:after {
  width: 23px;
  height: 23px;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media (min-width: 992px) {
  .email__prefix:after {
    width: 30px;
    height: 30px;
  }
}
.email__address {
  color: var(--wp--preset--color--black) !important;
}

.ilabs-hero.alignfull {
  max-width: 1920px !important;
}
.ilabs-hero .hero {
  height: clamp(610px, 50vw, 960px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 65% 50%;
  padding-block: 40px;
  padding-inline: 15px;
}
@media (min-width: 782px) {
  .ilabs-hero .hero {
    padding-block: 100px;
    background-position: center;
  }
}
.ilabs-hero .hero__wrapper {
  max-width: 1529px;
  margin: 0 auto;
  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;
}
.ilabs-hero .hero__wrapper > * {
  max-width: 785px;
}
.ilabs-hero .hero__wrapper h1 {
  margin: auto 0 0 0;
  color: var(--wp--preset--color--white);
}
@media (min-width: 782px) {
  .ilabs-hero .hero__wrapper h1 {
    margin: auto 0;
  }
}
.ilabs-hero .hero__wrapper a {
  display: inline-block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 30px;
  margin-right: auto;
}
@media (min-width: 782px) {
  .ilabs-hero .hero__wrapper a {
    margin-top: auto;
  }
}

.ilabs-product-categories-carousel .products-categories-carousel {
  margin-inline: -15px;
}
.ilabs-product-categories-carousel .products-categories-carousel .swiper {
  margin-left: calc((100vw - 100%) / -2);
}
.ilabs-product-categories-carousel .products-categories-carousel .swiper .swiper-wrapper {
  padding-inline: 15px;
  padding-block: 25px;
}
.ilabs-product-categories-carousel .products-categories-carousel .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
@media only screen and (min-width: 1900px) {
  .ilabs-product-categories-carousel .products-categories-carousel .swiper .swiper-wrapper .swiper-slide {
    max-width: 371.25px;
  }
}
.ilabs-product-categories-carousel .products-categories-carousel .swiper .swiper-wrapper .swiper-slide .product {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: unset;
  height: 100%;
}
.ilabs-product-categories-carousel .products-categories-carousel .swiper .swiper-wrapper .swiper-slide .product img {
  margin-right: 0;
}
.ilabs-product-categories-carousel .products-categories-carousel .swiper .swiper-wrapper .swiper-slide .product__name {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: auto;
}
.ilabs-product-categories-carousel .products-categories-carousel .navigation-wrapper {
  height: 10px;
  max-width: 1530px;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 1199px) {
  .ilabs-product-categories-carousel .products-categories-carousel .navigation-wrapper {
    display: none;
  }
}
.ilabs-product-categories-carousel .products-categories-carousel .navigation-wrapper > * {
  top: -260px;
}
@media (min-width: 1920px) {
  .ilabs-product-categories-carousel .products-categories-carousel .navigation-wrapper .swiper-button-next {
    right: -40px;
  }
}
@media (min-width: 1920px) {
  .ilabs-product-categories-carousel .products-categories-carousel .navigation-wrapper {
    left: -10px;
  }
}

.ilabs-timeline {
  background-color: var(--wp--preset--color--emerald);
  padding-block: 40px;
  text-align: center;
  color: var(--wp--preset--color--white);
}
@media (min-width: 992px) {
  .ilabs-timeline {
    padding-block: 110px;
    background-image: url("../svg/white-effect.svg");
    background-size: 800px auto;
    background-repeat: no-repeat;
    background-position: top right;
  }
}
.ilabs-timeline .subheading {
  margin-top: 0;
  color: rgb(from var(--wp--preset--color--white) r g b/0.5);
}
.ilabs-timeline h2 {
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  .ilabs-timeline h2 {
    margin-bottom: 55px;
  }
}
.ilabs-timeline .timeline {
  padding-inline: 15px;
}
.ilabs-timeline .timeline .swiper {
  max-width: 1560px;
  margin-inline: auto;
}
.ilabs-timeline .timeline .swiper .event {
  text-align: left;
  border-radius: 10px;
  background-color: #297C7C;
}
.ilabs-timeline .timeline .swiper .event__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 25px;
  height: 100%;
}
@media (min-width: 992px) {
  .ilabs-timeline .timeline .swiper .event__wrapper {
    padding: 40px;
  }
}
.ilabs-timeline .timeline .swiper .event__year {
  padding: 4px 14px;
  border: solid 1px var(--wp--preset--color--white);
  border-radius: 5px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 30px;
  font-size: 15px;
}
@media (min-width: 992px) {
  .ilabs-timeline .timeline .swiper .event__year {
    padding: 8px 18px;
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.ilabs-timeline .timeline .swiper .event__description {
  min-height: 120px;
}
.ilabs-timeline .timeline .swiper .event__description p {
  margin-top: 0;
}
.ilabs-timeline .timeline .swiper .event__description ul {
  list-style-type: none;
  padding: 0;
}
.ilabs-timeline .timeline .swiper .event__description ul li {
  position: relative;
  padding-left: 28px;
}
.ilabs-timeline .timeline .swiper .event__description ul li:before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  background-image: url("../svg/check-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}
.ilabs-timeline .timeline .navigation-wrapper {
  max-width: 1560px;
  position: relative;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 1919px) {
  .ilabs-timeline .timeline .navigation-wrapper .swiper-button-prev,
  .ilabs-timeline .timeline .navigation-wrapper .swiper-button-next {
    position: relative;
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 1920px) {
  .ilabs-timeline .timeline .navigation-wrapper .swiper-button-prev {
    left: -110px;
    top: -210px;
  }
}
@media (min-width: 1920px) {
  .ilabs-timeline .timeline .navigation-wrapper .swiper-button-next {
    right: -110px;
    top: -210px;
  }
}

.wp-block-list.is-style-checklist {
  list-style-type: none;
  padding: 0;
}
.wp-block-list.is-style-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.wp-block-list.is-style-checklist li:before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  background-image: url("../svg/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--wp--preset--color--white);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}

.ilabs-slideshow {
  position: relative;
}
.ilabs-slideshow.alignfull {
  max-width: 1920px !important;
}
.ilabs-slideshow .slide {
  height: clamp(610px, 50vw, 960px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 65% 50%;
  padding-block: 40px;
  padding-inline: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}
.ilabs-slideshow .slide:not(.swiper-slide-active) {
  opacity: 0 !important;
}
@media (min-width: 782px) {
  .ilabs-slideshow .slide {
    padding-block: 100px;
    background-position: center;
  }
}
.ilabs-slideshow .slide__wrapper {
  max-width: 1529px;
  margin: 0 auto;
  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;
}
.ilabs-slideshow .slide__wrapper > * {
  max-width: 785px;
}
.ilabs-slideshow .slide__wrapper h1 {
  margin: auto 0 0 0;
  color: var(--wp--preset--color--white);
  font-size: clamp(26px, 6vw, 60px);
}
@media (min-width: 782px) {
  .ilabs-slideshow .slide__wrapper h1 {
    margin: auto 0;
  }
}
.ilabs-slideshow .slide__wrapper a {
  display: inline-block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 30px;
  margin-right: auto;
}
@media (min-width: 782px) {
  .ilabs-slideshow .slide__wrapper a {
    margin-top: auto;
  }
}
.ilabs-slideshow .slide__wrapper picture {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: unset;
}
.ilabs-slideshow .slide__wrapper picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 782px) {
  .ilabs-slideshow .slide__wrapper picture:has(img.mobile) img.mobile {
    display: none;
  }
}
.ilabs-slideshow .slide__wrapper picture:has(img.mobile) img.desktop {
  display: none;
}
@media (min-width: 782px) {
  .ilabs-slideshow .slide__wrapper picture:has(img.mobile) img.desktop {
    display: block;
  }
}
.ilabs-slideshow .slide__wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 100, 99)), to(rgba(0, 100, 99, 0)));
  background: linear-gradient(0deg, rgb(0, 100, 99) 0%, rgba(0, 100, 99, 0) 100%);
}
.ilabs-slideshow .navigation-wrapper {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  max-width: 1920px;
}
.ilabs-slideshow .navigation-wrapper .container {
  width: 100%;
  max-width: 1530px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-right: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ilabs-slideshow .navigation-wrapper .container > * {
  position: relative;
  left: unset;
  right: unset;
  top: unset;
}
.ilabs-slideshow .navigation-wrapper .container .swiper-button-prev {
  margin-left: auto;
}
@media (max-width: 781px) {
  .ilabs-slideshow .navigation-wrapper {
    display: none;
  }
}

.ilabs-erecruiter {
  margin: 100px auto;
}
.ilabs-erecruiter .skk_filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 576px) {
  .ilabs-erecruiter .skk_filters {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.ilabs-erecruiter .skk_filters_options {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(70% - 20px);
          flex: 1 1 calc(70% - 20px);
}
.ilabs-erecruiter .skk_filters_btn_search {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  min-height: 50px;
  padding: 0 !important;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-block: auto 0 !important;
}
.ilabs-erecruiter .skk_filters p {
  margin: 0;
  width: 100%;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.site-inner {
  overflow-x: hidden;
}

.wrap {
  margin-inline: auto;
  max-width: var(--wp--style--global--wide-size);
  padding-inline: var(--wp--custom--gutter);
}

.site-container {
  padding-top: 70px;
}
@media (min-width: 992px) {
  .site-container {
    padding-top: 90px;
  }
}

.entry-header {
  background-color: #E5EFEF;
  text-align: center;
  padding-top: clamp(40px, 15vw, 90px);
  padding-bottom: clamp(60px, 15vw, 100px);
  margin-bottom: clamp(30px, 10vw, 60px);
  padding-inline: var(--wp--custom--gutter);
  position: relative;
}
.entry-header .entry-suffix {
  margin-bottom: 20px;
}
.entry-header h1 {
  margin-inline: auto;
}
.entry-header__effect {
  width: clamp(120px, 34vw, 560px);
  aspect-ratio: 560/300;
  position: absolute;
  overflow: hidden;
}
.entry-header__effect:before, .entry-header__effect:after {
  content: "";
  display: block;
  width: 95%;
  aspect-ratio: 1;
  border: solid 4px rgb(from var(--wp--preset--color--emerald) r g b/0.16);
  position: absolute;
  border-radius: 100%;
  opacity: 0;
  z-index: 0;
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
}
.entry-header__effect:before {
  top: 50%;
  left: 0;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.entry-header__effect:after {
  top: 10%;
  right: 25%;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.entry-header__effect--left {
  left: 0;
  bottom: 0;
}
.entry-header__effect--right {
  right: 0;
  top: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.entry-content > * {
  width: 100%;
  margin-inline: auto;
  display: block;
}
.entry-content > *:not(.alignfull) {
  padding-inline: var(--wp--custom--gutter);
}
.entry-content > *:not(.alignwide):not(.alignfull):not(.fh-title) {
  max-width: var(--wp--style--global--content-size);
}
.entry-content > *.alignwide {
  max-width: var(--wp--style--global--wide-size);
}
.entry-content > *.alignfull {
  max-width: unset;
}
.entry-footer {
  padding-inline: var(--wp--custom--gutter);
  padding-block: 16px;
  font-size: 12px;
  opacity: 0.5;
  text-align: right;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .entry-footer {
    margin-top: 100px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
body.search .results {
  width: 100%;
  margin-inline: auto;
  display: block;
  max-width: var(--wp--style--global--wide-size);
  margin-bottom: 50px;
}
@media (max-width: 781px) {
  body.search .results {
    margin-bottom: 20px;
  }
}
body.search .results__title {
  margin-bottom: 45px;
  text-align: center;
}
@media (max-width: 781px) {
  body.search .results__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
body.search .results hr.wp-block-separator {
  margin: 0 0 80px;
}
@media (max-width: 781px) {
  body.search .results hr.wp-block-separator {
    margin: 0 0 20px;
  }
}
body.search .results:not(:last-of-type) {
  padding-bottom: 50px;
  border-bottom: solid 1px var(--wp--preset--color--light-gray);
}
body.search .results .product-grid {
  padding-inline: 15px;
  max-width: unset;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
body.search .results .product-grid .product {
  max-width: unset;
}
body.search .results .pages-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 1030px;
  margin: 0 auto;
  padding-inline: 15px;
}
body.search .results .pages-list .page {
  border: 1px solid var(--wp--preset--color--borders);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 15px;
  padding: 15px 20px;
}
@media (min-width: 576px) {
  body.search .results .pages-list .page {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 40px;
  }
}
body.search .results .pages-list .page h4 {
  margin: 0;
  font-size: 18px;
}
@media (min-width: 576px) {
  body.search .results .pages-list .page h4 {
    font-size: 25px;
  }
}
body.search .results .pages-list .page a {
  font-weight: 600;
  text-decoration: underline;
  font-size: 15px;
}
@media (min-width: 576px) {
  body.search .results .pages-list .page a {
    font-size: 18px;
  }
}

body.single-product .submenu__nav {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
}
body.single-product .submenu__item.back {
  position: relative;
  color: var(--wp--preset--color--emerald);
  border-right: solid 1px #d2d8d8;
  padding-right: 20px;
  text-decoration: underline !important;
}
@media (min-width: 1200px) {
  body.single-product .submenu__item.back {
    padding-right: 50px;
  }
}
body.single-product .submenu__item.back:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("../svg/back.svg");
          mask-image: url("../svg/back.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--wp--preset--color--emerald);
  margin-right: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
body.single-product .submenu__item.back:before {
  width: 16px;
  height: 16px;
}
body.single-product .entry-header {
  position: relative;
  margin-bottom: 220px;
}
@media (min-width: 782px) {
  body.single-product .entry-header {
    margin-bottom: 180px;
  }
}
body.single-product .entry-header h1 {
  margin-bottom: 40px;
}
body.single-product .entry-header img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
  margin-bottom: -260px;
  z-index: 2;
}
@media (min-width: 782px) {
  body.single-product .entry-header img {
    width: 420px;
    max-width: unset;
  }
}

body.single-product_cat .categories_menu {
  background-color: #E5EFEF;
  border-bottom: solid 1px #d2d8d8;
}
body.single-product_cat .categories_menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: black;
  scrollbar-width: thin;
}
@media (min-width: 1200px) {
  body.single-product_cat .categories_menu__nav {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
body.single-product_cat .categories_menu__item {
  display: block;
  padding-block: 18px;
  color: rgb(from var(--wp--preset--color--black) r g b/0.7);
  font-weight: 500;
  font-size: 15px;
  border-bottom: solid 3px transparent;
  text-decoration: none !important;
  margin-bottom: -1px;
  white-space: nowrap;
}
@media (min-width: 782px) {
  body.single-product_cat .categories_menu__item {
    font-size: 18px;
    padding-block: 26px;
  }
}
body.single-product_cat .categories_menu__item:hover {
  color: var(--wp--preset--color--emerald);
}
body.single-product_cat .categories_menu__item--current {
  color: var(--wp--preset--color--emerald);
  border-color: var(--wp--preset--color--emerald);
}
body.single-product_cat .mobile-title {
  padding-inline: var(--wp--custom--gutter);
  padding-top: 20px;
}
@media (min-width: 782px) {
  body.single-product_cat .mobile-title {
    display: none;
  }
}
@media (max-width: 781px) {
  body.single-product_cat .entry-content h1, body.single-product_cat .entry-content .entry-suffix {
    display: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--wp--preset--color--white);
  -webkit-box-shadow: 0 3px 20px rgb(from var(--wp--preset--color--light-gray) r g b/0.8);
          box-shadow: 0 3px 20px rgb(from var(--wp--preset--color--light-gray) r g b/0.8);
  z-index: 999;
}
.site-header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  height: 70px;
  padding-block: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background: var(--wp--preset--color--white);
}
@media (min-width: 992px) {
  .site-header .wrap {
    height: 90px;
    padding-block: unset;
  }
}
.site-header__branding img {
  width: 105px;
  height: auto;
}
@media (min-width: 992px) {
  .site-header__branding img {
    width: 147px;
  }
}
.site-header__nav {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  margin-top: 15px;
}
@media (max-width: 991px) {
  .site-header__nav {
    display: none;
  }
  .site-header__nav.is-open {
    display: block;
  }
}
@media (min-width: 992px) {
  .site-header__nav {
    margin-top: unset;
    width: unset;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-left: auto;
    margin-block: auto;
  }
}
.site-header__nav ul {
  padding: 0;
  list-style-type: none;
  background: white;
}
.site-header__nav ul li a {
  color: var(--wp--preset--color--black);
}
.site-header__nav ul li a:hover {
  color: var(--wp--preset--color--red);
}
.site-header__nav ul li ul li a {
  color: rgb(from var(--wp--preset--color--black) r g b/0.7);
}
.site-header__nav ul li.is-open > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header__nav ul li.is-open:after {
  -webkit-transform: rotate(180deg) translateY(2px);
          transform: rotate(180deg) translateY(2px);
}
.site-header__nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  font-weight: 500;
  margin-block: 0;
  margin-inline: -15px;
  padding-inline: 15px;
  font-size: 16px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}
@media (min-width: 992px) {
  .site-header__nav > ul {
    margin-right: 25px;
    margin-left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 0;
    font-size: 18px;
    height: unset;
    overflow: unset;
  }
}
@media (min-width: 1200px) {
  .site-header__nav > ul {
    margin-right: 50px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.site-header__nav > ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 992px) {
  .site-header__nav > ul > li {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.site-header__nav > ul > li:not(:last-child) {
  border-bottom: 1px solid var(--wp--preset--color--borders);
}
@media (min-width: 992px) {
  .site-header__nav > ul > li:not(:last-child) {
    border-bottom: unset;
  }
}
@media (min-width: 992px) {
  .site-header__nav > ul > li {
    height: 90px;
    border: unset;
  }
}
.site-header__nav > ul > li > a:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .site-header__nav > ul > li:has(ul) {
    position: relative;
  }
  .site-header__nav > ul > li:has(ul):after {
    content: "";
    display: block;
    height: 20px;
    width: 20px;
    -webkit-mask-image: url("../svg/drop.svg");
            mask-image: url("../svg/drop.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    background-color: rgb(from var(--wp--preset--color--black) r g b/0.7);
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: absolute;
    top: 25px;
    right: 0;
  }
}
@media (min-width: 992px) {
  .site-header__nav > ul > li:has(ul) > ul {
    background: white linear-gradient(180deg, rgba(240, 242, 242, 0.8) 0%, rgba(255, 255, 255, 0) 40px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
.site-header__nav > ul > li:has(ul):hover > a {
  color: var(--wp--preset--color--red);
}
.site-header__nav > ul > li:has(ul):hover > ul {
  opacity: 1;
  visibility: visible;
}
.site-header__nav > ul > li > ul {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-left: 20px;
  margin-bottom: -20px;
}
@media (min-width: 992px) {
  .site-header__nav > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 100%;
    left: -35px;
    row-gap: 35px;
    min-width: 340px;
    padding: 20px 35px 30px;
    border-radius: 0 0 20px 20px;
    -webkit-box-shadow: 0 10px 10px rgba(14, 49, 49, 0.2);
            box-shadow: 0 10px 10px rgba(14, 49, 49, 0.2);
    z-index: -2;
    margin-bottom: unset;
  }
}
@media (min-width: 1200px) {
  .site-header__nav > ul > li > ul {
    padding: 40px 70px 55px;
    left: -70px;
  }
}
.site-header__nav > ul > li > ul > li {
  padding-block: 20px;
}
@media (min-width: 992px) {
  .site-header__nav > ul > li > ul > li {
    padding-block: unset;
  }
}
.site-header__nav > ul > li > ul > li:not(:last-child) {
  border-bottom: 1px solid var(--wp--preset--color--borders);
}
@media (min-width: 992px) {
  .site-header__nav > ul > li > ul > li:not(:last-child) {
    border-bottom: unset;
  }
}
.site-header__nav > ul > li > ul > li > ul {
  margin-top: 10px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.site-header__nav > ul > li.products-menu > ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  display: none;
}
@media (min-width: 992px) {
  .site-header__nav > ul > li.products-menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    min-width: 500px;
    margin-left: -160px;
  }
}
@media (min-width: 1200px) {
  .site-header__nav > ul > li.products-menu > ul {
    min-width: 500px;
    margin-left: -200px;
  }
}
@media (max-width: 991px) {
  .site-header__nav > ul > li.products-menu > ul > li {
    border-bottom: unset;
  }
}
@media (min-width: 992px) {
  .site-header__nav > ul > li.products-menu > ul > li {
    width: 160px;
  }
}
@media (min-width: 1200px) {
  .site-header__nav > ul > li.products-menu > ul > li {
    width: 200px;
  }
}
@media (max-width: 991px) {
  .site-header__nav > ul > li.products-menu > ul > li:first-child {
    padding: 0;
    margin-top: 15px;
  }
}
.site-header__nav > ul > li.products-menu > ul > li:first-child > a {
  font-size: 16px;
  color: #999797;
}
@media (max-width: 991px) {
  .site-header__nav > ul > li.products-menu > ul > li:first-child > a {
    display: none;
  }
}
@media (min-width: 992px) {
  .site-header__nav > ul > li.products-menu > ul > li:first-child + li {
    margin-top: 27px;
  }
}
.site-header__nav > ul > li.products-menu > ul > li > ul {
  gap: 10px;
  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-shadow: unset;
          box-shadow: unset;
  background-color: transparent;
  padding: 0;
}
@media (min-width: 992px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul {
    padding-top: 20px;
    padding-bottom: 30px;
    margin-top: -46px;
    margin-bottom: -58px;
    margin-left: 160px;
    min-width: 350px;
    top: 0;
    gap: 35px;
  }
}
@media (min-width: 1200px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul {
    margin-left: 200px;
    padding-top: 40px;
    padding-bottom: 55px;
    margin-top: -67px;
    margin-bottom: -82px;
  }
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media (max-width: 991px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li {
    padding: 10px 20px;
    background-color: #F5F6F7;
    border-radius: 5px;
    margin-left: -20px;
  }
}
@media (min-width: 992px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li {
    padding-right: 20px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li > a {
  margin-right: 30px;
}
@media (min-width: 992px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li > a {
    margin-right: unset;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li > ul {
  display: none;
  gap: 20px 30px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: calc(100% + 40px);
  background-color: transparent;
  margin-inline: -20px;
  margin-top: 10px;
  padding-inline: 20px;
  border-top: 1px solid rgb(from var(--wp--preset--color--black) r g b/0.2);
  font-size: 15px;
  padding-top: 20px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    visibility: hidden;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: unset;
    margin-inline: unset;
    padding-top: 20px;
    padding-bottom: 30px;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
    width: unset;
    position: absolute;
    left: 550px;
    top: 0;
    margin: unset;
    background-color: #f5f6f7;
    min-width: 320px;
    padding-inline: 30px;
    gap: 35px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 10px 10px 10px rgba(14, 49, 49, 0.2);
            box-shadow: 10px 10px 10px rgba(14, 49, 49, 0.2);
    font-size: 18px;
    padding-block: unset;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
@media (min-width: 1200px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li > ul {
    min-width: 400px;
    padding-top: 40px;
    padding-bottom: 55px;
    left: 620px;
  }
}
@media (max-width: 991px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li > ul > li > a:not(:hover) {
    color: rgb(from var(--wp--preset--color--white) r g b/0.7);
  }
}
@media (max-width: 991px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li.menu-item-has-children {
    position: relative;
  }
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li.menu-item-has-children:after {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  -webkit-mask-image: url("../svg/drop.svg");
          mask-image: url("../svg/drop.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: rgb(from var(--wp--preset--color--black) r g b/0.7);
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-right: -10px;
}
@media (max-width: 991px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li.menu-item-has-children:after {
    position: absolute;
    top: 14px;
    right: 16px;
  }
}
@media (min-width: 992px) {
  .site-header__nav > ul > li.products-menu > ul > li > ul > li.menu-item-has-children:after {
    margin-right: unset;
    -webkit-mask-image: url("../svg/arrow-right.svg");
            mask-image: url("../svg/arrow-right.svg");
  }
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li:hover > a {
  color: var(--wp--preset--color--red);
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li:hover:after {
  background-color: var(--wp--preset--color--red);
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li.is-open {
  background-color: var(--wp--preset--color--emerald);
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li.is-open > a {
  color: white;
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li.is-open > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header__nav > ul > li.products-menu > ul > li > ul > li.is-open:after {
  background-color: white;
  -webkit-transform: rotate(180deg) translateY(2px);
          transform: rotate(180deg) translateY(2px);
}
.site-header__nav > ul > li.products-menu.is-open > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-header__search-btn {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  border: none;
  background: transparent;
  margin-left: auto;
}
@media (min-width: 992px) {
  .site-header__search-btn {
    margin-left: 0;
  }
}
.site-header__search-btn:after {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  -webkit-mask-image: url("../svg/search.svg");
          mask-image: url("../svg/search.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--wp--preset--color--black);
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-header__search-btn:hover:after, .site-header__search-btn.is-open:after {
  background-color: var(--wp--preset--color--red);
}
.site-header__menu-btn {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  border: none;
  background: transparent;
  margin-left: 26px;
}
@media (min-width: 992px) {
  .site-header__menu-btn {
    display: none;
  }
}
.site-header__menu-btn:after {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  -webkit-mask-image: url("../svg/menu.svg");
          mask-image: url("../svg/menu.svg");
  -webkit-mask-size: 22px;
          mask-size: 22px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--wp--preset--color--black);
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-header__menu-btn.is-open:after {
  -webkit-mask-image: url("../svg/close.svg");
          mask-image: url("../svg/close.svg");
}
.site-header__menu-btn:hover:after {
  background-color: var(--wp--preset--color--red);
}
.site-header__language_switcher {
  position: relative;
  margin-left: 25px;
}
.site-header__language_switcher ul {
  position: absolute;
  top: 32px;
  right: -10px;
  list-style-type: none;
  padding: 30px 48px;
  background: white linear-gradient(180deg, rgba(240, 242, 242, 0.8) 0%, rgba(255, 255, 255, 0) 40px);
  -webkit-box-shadow: 0 10px 10px rgba(14, 49, 49, 0.2);
          box-shadow: 0 10px 10px rgba(14, 49, 49, 0.2);
  border-radius: 0 0 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media (min-width: 576px) {
  .site-header__language_switcher ul {
    gap: 25px;
    padding: 20px 38px;
  }
}
@media (min-width: 992px) {
  .site-header__language_switcher ul {
    top: 42px;
  }
}
@media (min-width: 1920px) {
  .site-header__language_switcher ul {
    right: unset;
    left: -70px;
  }
}
.site-header__language_switcher ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 15px;
}
.site-header__language_switcher ul li a img {
  width: 24px !important;
  height: 24px !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
}
.site-header__language_switcher ul li a:not(:hover) {
  color: var(--wp--preset--color--black);
}
.site-header__language_switcher button {
  border: none;
  background-color: transparent;
  width: 47px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  cursor: pointer;
}
.site-header__language_switcher button img {
  width: 24px !important;
  height: 24px !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 12px;
}
.site-header__language_switcher button:after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("../svg/drop.svg");
          mask-image: url("../svg/drop.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--wp--preset--color--black);
  margin-left: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.site-header__language_switcher button:after {
  position: absolute;
  right: 0;
  top: 8px;
  margin-left: 9px;
  width: 10px;
  height: 10px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.site-header__language_switcher button.is-open:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.site-header__language_switcher button.is-open + ul {
  opacity: 1;
  visibility: visible;
}

.site-footer {
  border-top: solid 1px var(--wp--preset--color--light-gray);
  padding-block: clamp(35px, 6vw, 80px);
}
.site-footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 375px) {
  .site-footer .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.site-footer__item {
  margin-right: auto;
}
.site-footer__item img {
  margin: 0;
  max-width: clamp(160px, 30vw, 200px);
}
.site-footer__item p {
  margin-top: 0;
  margin-bottom: 15px !important;
}
.site-footer__item a:not(:hover) {
  color: var(--wp--preset--color--black);
}
.site-footer__item__title {
  color: var(--wp--preset--color--emerald);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: clamp(8px, 3vw, 15px) !important;
}
@media (min-width: 782px) {
  .site-footer__item__title {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .site-footer__item:first-of-type {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.site-legal {
  border-top: solid 1px var(--wp--preset--color--light-gray);
  padding-block: clamp(35px, 6vw, 80px);
  font-size: 14px;
}
@media (min-width: 576px) {
  .site-legal {
    font-size: 16px;
  }
}
.site-legal .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-legal .wrap .copyright {
  margin-right: auto;
  opacity: 0.6;
  display: block;
  width: 100%;
  text-align: center;
}
@media (min-width: 576px) {
  .site-legal .wrap .copyright {
    width: unset;
    text-align: left;
  }
}
.site-legal .wrap a:not(:hover) {
  color: var(--wp--preset--color--black);
}

:root :where(.is-layout-constrained) > * {
  -webkit-margin-before: 0 !important;
          margin-block-start: 0 !important;
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
}
