@keyframes stroboDisappear {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes stroboAppear {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  78% {
    opacity: 0;
  }
  86% {
    opacity: 1;
  }
  92% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes disappear {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes disappearDelayed40 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes delayedAppear50 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes delayedAppear75 {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes floatingV {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-0.35em);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(0.35em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatingH {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-0.5em);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(0.5em);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes appearFromBottom {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 135%;
  color: #FFF;
  background-color: #1E2223;
  overflow-anchor: none;
}
@media (max-width: 1919px) {
  body {
    font-size: calc(100vw / (1920 / 18));
  }
}
@media (max-width: 540px) {
  body {
    font-size: calc(100vw / (390 / 16));
    font-weight: 300;
  }
}

a {
  color: #707171;
  text-decoration: none;
  transition: color 0.5s;
}
a:hover {
  color: #FFF;
}

ul {
  padding-left: 1.5em;
}
ul li {
  line-height: 1.2em;
}
ul li:not(:first-child) {
  margin-top: 0.75em;
}

main {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.content {
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1919px) {
  .content {
    max-width: calc(100vw / (1920 / 1450));
  }
}
@media (max-width: 540px) {
  .content {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}

.arrowDn {
  position: absolute;
  z-index: 10;
  left: 24.45em;
  top: 52.5em;
  width: 2.23em;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;
  pointer-events: none;
  pointer-events: all;
}
.arrowDn img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.arrowDn img.fx {
  opacity: 1;
  transform: none;
}
.arrowDn img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.arrowDn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .arrowDn {
    width: 2.5em;
    left: 3em;
    top: 31.9em;
  }
}

.arrowUp {
  position: fixed;
  z-index: 18;
  right: 3.89em;
  bottom: 15em;
  width: 2.78em;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
  pointer-events: all;
}
@media (max-width: 540px) {
  .arrowUp {
    bottom: 1em;
    width: 2em;
  }
}
.arrowUp--visible {
  visibility: visible;
  opacity: 1;
}
.arrowUp:active {
  transform: scale(0.8);
}
.arrowUp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  max-width: 1920px;
  margin: 0 auto;
  position: sticky;
  z-index: 11;
  width: 100%;
  left: 0;
  top: 0;
  background: #1E2223;
  box-shadow: 0 0.23em 0.23em rgba(0, 0, 0, 0.2);
  padding-top: 1.72em;
  height: 4.46em;
  box-sizing: border-box;
}
@media (max-width: 540px) {
  .header {
    padding-top: 0;
    height: 6.1875em;
  }
}
.header__glow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header__glow__oval {
  content: "";
  position: absolute;
  z-index: 1;
  left: -4.84em;
  top: -3.95em;
  width: 45.34em;
  height: auto;
  aspect-ratio: 816/317;
  border-radius: 45.34em;
  background: rgba(4, 137, 16, 0.8);
  filter: blur(8.34em);
  pointer-events: none;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.header__glow__oval.fx {
  opacity: 1;
  transform: none;
}
.header__glow__oval.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .header__glow__oval {
    left: -8em;
    top: 0;
    width: 20.25em;
    aspect-ratio: 324/106;
    transform: rotate(-61deg);
    background: #048910;
    border-radius: 50%;
    filter: blur(4em);
  }
}
.header__stripe {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 4.8em;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/51;
  pointer-events: none;
}
.header__stripe,
.header__stripe img.fx {
  animation-duration: 0.4s;
  animation-timing-function: linear;
}
.header__stripe img.fx {
  animation-name: stroboAppear;
}
.header__stripe img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header__stripe img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .header__stripe img:nth-of-type(1) {
    display: none;
  }
  .header__stripe img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .header__stripe {
    aspect-ratio: 390/51;
    width: 100%;
    top: 7em;
    left: 0;
  }
}
.header__stripe--off {
  animation-name: stroboDisappear;
}
.header__stripe--uncharged {
  display: none;
}
.header__stripe--charged {
  opacity: 0;
}
.header__stripe--on {
  animation-name: stroboAppear;
}
.header__lang {
  position: absolute;
  z-index: 3;
  left: 13.28em;
  top: 1.62em;
}
@media (max-width: 540px) {
  .header__lang {
    top: 2.375em;
    left: 15.75em;
  }
}
.header__lang__item {
  position: relative;
  cursor: pointer;
}
@media (max-width: 540px) {
  .header__lang__item {
    font-size: 1.125em;
  }
}
.header__lang__item,
.header__lang__item a {
  color: #fff;
}
.header__lang__item:hover,
.header__lang__item a:hover {
  color: #00AB52;
}
@media (max-width: 540px) {
  .header__lang__item,
  .header__lang__item a {
    color: #fff;
  }
}
.header__lang__item a {
  position: relative;
  z-index: 2;
}
.header__lang__item::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -0.6239em;
  top: 50%;
  transform: translateY(-50%);
  width: 0.3462em;
  height: 0.2473em;
  background: url(/wp-content/uploads/dd.svg);
  background-size: 100%;
}
.header__lang__item__dd {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  padding-top: 1.5em;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: height 1s;
}
@media (max-width: 540px) {
  .header__lang__item__dd {
    position: static;
    visibility: visible;
    height: auto;
    overflow: visible;
    transition: none;
    padding-top: 0;
  }
}
.ddWrapper:hover .header__lang__item__dd {
  visibility: visible;
  height: 50vh;
}
@media (max-width: 540px) {
  .ddWrapper:hover .header__lang__item__dd {
    height: auto;
  }
}
.header__lang__item__dd::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 1.6875em solid rgba(47, 95, 49, 0.7);
  border-top: 1.375em solid transparent;
}
@media (max-width: 540px) {
  .header__lang__item__dd::before {
    display: none;
  }
}
.header__lang__item__dd__subs {
  background: rgba(47, 95, 49, 0.7);
  padding: 1.875em;
  backdrop-filter: blur(0.11em);
  border-right: 1px solid rgba(137, 137, 137, 0.4);
  border-bottom: 1px solid rgba(137, 137, 137, 0.4);
  list-style: none;
  margin: 0;
}
@media (max-width: 540px) {
  .header__lang__item__dd__subs {
    border: none;
    backdrop-filter: none;
    background: transparent;
    padding: 0;
  }
}
.header__lang__item__dd__subs li {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.625em;
}
@media (max-width: 540px) {
  .header__lang__item__dd__subs li {
    padding: 0 1em 0 3.5715em;
  }
  .header__lang__item__dd__subs li:not(:last-child) {
    border-bottom: 1px solid #E8E8E8;
  }
}
.header__lang__item__dd__subs li,
.header__lang__item__dd__subs li a {
  color: #FFF;
}
.header__lang__item__dd__subs li:hover,
.header__lang__item__dd__subs li a:hover {
  color: #00AB52;
}
@media (max-width: 540px) {
  .header__lang__item__dd__subs li,
  .header__lang__item__dd__subs li a {
    color: #000;
  }
  .header__lang__item__dd__subs li:hover,
  .header__lang__item__dd__subs li a:hover {
    color: #09A956;
  }
  .header__lang__item__dd__subs li::before,
  .header__lang__item__dd__subs li a::before {
    display: none;
  }
}
.header__lang__item__dd__subs li a {
  padding-top: 0.8571em;
  padding-bottom: 0.8571em;
}
.header__lang__item__dd__subs li:not(:last-child) {
  margin-bottom: 1em;
}
@media (max-width: 540px) {
  .header__lang__item__dd__subs li:not(:last-child) {
    margin-bottom: 0;
  }
}
.header__lang__item__dd__subs li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 0.8125em solid #048910;
  border-top: 0.8125em solid transparent;
}
@media (max-width: 540px) {
  .header__lang__item__dd__subs li::before {
    display: none;
  }
}
@media (max-width: 540px) {
  .header__lang__item__dd {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(47, 95, 49, 0.7);
    padding: 0.3em 0;
  }
  .ddWrapper:hover .header__lang__item__dd {
    display: block;
  }
  .header__lang__item__dd li {
    padding: 0 0.75em;
  }
  .header__lang__item__dd li:not(:last-child) {
    border-bottom-color: transparent;
  }
  .header__lang__item__dd li:not(:first-child) {
    margin-top: 0;
  }
  .header__lang__item__dd li a {
    font-size: 0.875em;
    color: #fff;
    padding: 0.5em 0;
  }
}
.header__nav {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3.34em;
  justify-content: center;
  align-items: center;
}
@media (max-width: 540px) {
  .header__nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2.5em 0;
    gap: 0;
    box-sizing: border-box;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
    background: #fff;
    width: 0;
    opacity: 0;
    pointer-events: none;
    height: 100%;
    transition: width 0.5s, opacity 0.5s;
  }
  .header__nav--charged {
    display: flex;
  }
  .header__nav--on {
    pointer-events: all;
    opacity: 1;
    width: 18em;
  }
}
.header__nav__box {
  position: relative;
  font-size: 0.89em;
  line-height: 1em;
}
@media (max-width: 540px) {
  .header__nav__box {
    width: 100%;
  }
  .header__nav__box:nth-child(4) {
    order: -1;
    padding-left: 1.7142em;
    margin-bottom: 1.3492em;
  }
  .header__nav__box:nth-child(4) .header__nav__box__item a {
    padding: 0;
  }
  .header__nav__box:nth-child(4) .header__nav__box__item a::before {
    display: none;
  }
  .header__nav__box:not(:nth-child(4)) {
    border-bottom: 1px solid #E8E8E8;
  }
}
.header__nav__box__item {
  white-space: nowrap;
}
.header__nav__box__item,
.header__nav__box__item a {
  color: #fff;
}
.header__nav__box__item:hover,
.header__nav__box__item a:hover {
  color: #00AB52;
}
@media (max-width: 540px) {
  .header__nav__box__item,
  .header__nav__box__item a {
    color: #000;
  }
  .header__nav__box__item:hover,
  .header__nav__box__item a:hover {
    color: #09A956;
  }
}
.header__nav__box__item a {
  position: relative;
  z-index: 2;
}
@media (max-width: 540px) {
  .header__nav__box__item a {
    display: flex;
    align-items: center;
    padding: 1.1785em 3.0715em 1.1785em 2.1527em;
  }
  .header__nav__box__item a, .header__nav__box__item a[data-with-dd] {
    gap: 0.7142em;
  }
  .header__nav__box__item a::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-right: 0.9285em solid #048910;
    border-top: 0.9285em solid transparent;
  }
}
.header__nav__box__item img {
  display: block;
  width: 8.25em;
  height: auto;
  aspect-ratio: 132/19;
}
@media (max-width: 540px) {
  .header__nav__box__item img {
    width: 10.3em;
  }
}
.header__nav__box__item [data-with-dd] {
  display: flex;
  align-items: center;
  gap: 0.625em;
}
@media (max-width: 540px) {
  .header__nav__box__item [data-with-dd] {
    border-bottom: 1px solid #E8E8E8;
  }
}
.header__nav__box__item [data-with-dd]::after {
  content: "";
  display: block;
  width: 0.3462em;
  height: 0.2473em;
  background: url(/wp-content/uploads/dd.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .header__nav__box__item [data-with-dd]::after {
    height: 0.2857em;
    width: 0.4285em;
    background-image: url(/wp-content/uploads/dd-black.svg);
  }
}
.header__nav__box__item__dd {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  padding-top: 1.5em;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: height 1s;
}
@media (max-width: 540px) {
  .header__nav__box__item__dd {
    position: static;
    visibility: visible;
    height: auto;
    overflow: visible;
    transition: none;
    padding-top: 0;
  }
}
.ddWrapper:hover .header__nav__box__item__dd {
  visibility: visible;
  height: 50vh;
}
@media (max-width: 540px) {
  .ddWrapper:hover .header__nav__box__item__dd {
    height: auto;
  }
}
.header__nav__box__item__dd::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 1.6875em solid rgba(47, 95, 49, 0.7);
  border-top: 1.375em solid transparent;
}
@media (max-width: 540px) {
  .header__nav__box__item__dd::before {
    display: none;
  }
}
.header__nav__box__item__dd__subs {
  background: rgba(47, 95, 49, 0.7);
  padding: 1.875em;
  backdrop-filter: blur(0.11em);
  border-right: 1px solid rgba(137, 137, 137, 0.4);
  border-bottom: 1px solid rgba(137, 137, 137, 0.4);
  list-style: none;
  margin: 0;
}
@media (max-width: 540px) {
  .header__nav__box__item__dd__subs {
    border: none;
    backdrop-filter: none;
    background: transparent;
    padding: 0;
  }
}
.header__nav__box__item__dd__subs li {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.625em;
}
@media (max-width: 540px) {
  .header__nav__box__item__dd__subs li {
    padding: 0 1em 0 3.5715em;
  }
  .header__nav__box__item__dd__subs li:not(:last-child) {
    border-bottom: 1px solid #E8E8E8;
  }
}
.header__nav__box__item__dd__subs li,
.header__nav__box__item__dd__subs li a {
  color: #FFF;
}
.header__nav__box__item__dd__subs li:hover,
.header__nav__box__item__dd__subs li a:hover {
  color: #00AB52;
}
@media (max-width: 540px) {
  .header__nav__box__item__dd__subs li,
  .header__nav__box__item__dd__subs li a {
    color: #000;
  }
  .header__nav__box__item__dd__subs li:hover,
  .header__nav__box__item__dd__subs li a:hover {
    color: #09A956;
  }
  .header__nav__box__item__dd__subs li::before,
  .header__nav__box__item__dd__subs li a::before {
    display: none;
  }
}
.header__nav__box__item__dd__subs li a {
  padding-top: 0.8571em;
  padding-bottom: 0.8571em;
}
.header__nav__box__item__dd__subs li:not(:last-child) {
  margin-bottom: 1em;
}
@media (max-width: 540px) {
  .header__nav__box__item__dd__subs li:not(:last-child) {
    margin-bottom: 0;
  }
}
.header__nav__box__item__dd__subs li::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 0.8125em solid #048910;
  border-top: 0.8125em solid transparent;
}
@media (max-width: 540px) {
  .header__nav__box__item__dd__subs li::before {
    display: none;
  }
}
.header__nav__geo {
  position: absolute;
  z-index: 3;
  right: 13.23em;
  top: 0.1em;
}
@media (max-width: 540px) {
  .header__nav__geo {
    z-index: 16;
    top: auto;
    bottom: 2.5em;
    right: auto;
    left: 1.9375em;
  }
}
.header__nav__geo__item {
  display: flex;
  align-items: center;
  gap: 0.625em;
  font-size: 0.89em;
  line-height: 1em;
  color: #fff;
}
@media (max-width: 540px) {
  .header__nav__geo__item {
    font-size: 1em;
    color: #000;
  }
}
.header__nav__geo__item::before {
  content: "";
  display: block;
  width: 0.625em;
  height: 0.9375em;
  background: url(/wp-content/uploads/geoPointer.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .header__nav__geo__item::before {
    background-image: url(/wp-content/uploads/geoPointer-whiteCenter.svg);
  }
}
.header__nav__close {
  display: none;
  pointer-events: none;
  pointer-events: all;
}
.header__nav__close img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .header__nav__close {
    display: block;
    position: absolute;
    z-index: 2;
    top: 2.5625em;
    right: 1.375em;
    width: 1.25em;
    aspect-ratio: 1;
  }
}
.header__burger {
  display: none;
  pointer-events: none;
  pointer-events: all;
}
.header__burger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .header__burger {
    display: block;
    position: absolute;
    z-index: 3;
    top: 2.6875em;
    right: 1.375em;
    width: 3.125em;
    aspect-ratio: 50/13;
  }
}
.header__mobileLogo {
  display: none;
}
@media (max-width: 540px) {
  .header__mobileLogo {
    display: block;
    position: absolute;
    z-index: 3;
    top: 2.4375em;
    left: 1.375em;
    width: 9.125em;
    height: auto;
    aspect-ratio: 146/21;
    pointer-events: none;
    pointer-events: all;
  }
  .header__mobileLogo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.header__tint {
  display: none;
  position: fixed;
  z-index: 19;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s;
}
.header__tint--charged {
  display: block;
}
.header__tint--on {
  opacity: 1;
}

.glowUnderHeader {
  position: absolute;
  z-index: 9;
  left: -4.84em;
  top: -3.95em;
  width: 45.34em;
  height: auto;
  aspect-ratio: 816/317;
  border-radius: 45.34em;
  background: rgba(4, 137, 16, 0.8);
  filter: blur(8.34em);
  pointer-events: none;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.glowUnderHeader--offhome {
  z-index: -1;
  top: -11em;
}
.glowUnderHeader.fx {
  opacity: 1;
  transform: none;
}
.glowUnderHeader.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .glowUnderHeader {
    left: -8em;
    top: 0;
    width: 20.25em;
    aspect-ratio: 324/106;
    transform: rotate(-61deg);
    background: #048910;
    border-radius: 50%;
    filter: blur(4em);
  }
}
.glowUnderHeader--off {
  opacity: 0;
}
.glowUnderHeader--on {
  opacity: 1;
}
.glowUnderHeader--uncharged {
  display: none;
}

.headBanner {
  height: 83.78em;
  position: relative;
  overflow: hidden;
}
@media (max-width: 540px) {
  .headBanner {
    height: auto;
    padding-bottom: 2.875em;
  }
}
.headBanner .glowBL {
  position: absolute;
  z-index: 4;
  top: 42em;
  left: -9em;
  width: 19em;
  height: auto;
  aspect-ratio: 360/211;
  transform: rotate(70.803deg);
  background: #00AB52;
  mix-blend-mode: difference;
  filter: blur(4em);
  pointer-events: none;
  border-radius: 30%;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner .glowBL.fx {
  opacity: 1;
  transform: none;
}
.headBanner .glowBL.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .headBanner .glowBL {
    display: none;
  }
}
.headBanner__brakeBg {
  position: absolute;
  z-index: 4;
  top: 20em;
  left: -19em;
  width: 41.3em;
  height: auto;
  aspect-ratio: 743/752;
  pointer-events: none;
  pointer-events: none;
}
.headBanner__brakeBg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__brakeBg img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner__brakeBg img.fx {
  opacity: 1;
  transform: none;
}
.headBanner__brakeBg img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.headBanner__carBg {
  position: absolute;
  z-index: 1;
  top: 2.3em;
  left: 50%;
  transform: translateX(-50%);
  width: 68.3em;
  height: auto;
  aspect-ratio: 1229/591;
  pointer-events: none;
  pointer-events: none;
}
.headBanner__carBg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__carBg img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner__carBg img.fx {
  opacity: 1;
  transform: none;
}
.headBanner__carBg img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.headBanner__detailBg {
  position: absolute;
  z-index: 1;
  top: -13em;
  right: -10.5em;
  width: 35.5em;
  height: auto;
  aspect-ratio: 637/775;
  pointer-events: none;
  pointer-events: none;
}
.headBanner__detailBg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__detailBg img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner__detailBg img.fx {
  opacity: 1;
  transform: none;
}
.headBanner__detailBg img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.headBanner__detail1 {
  position: absolute;
  z-index: 4;
  top: 18.5em;
  left: 20.5em;
  width: 19.4em;
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
}
.headBanner__detail1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__detail1 img {
  opacity: 0;
}
.headBanner__detail1 img.fx {
  opacity: 0;
  animation: appearDetail1 1s ease-out 1s forwards, floatingV 5s linear infinite 2s;
}
@keyframes appearDetail1 {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(-30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.headBanner__detail2 {
  position: absolute;
  z-index: 5;
  top: 21.5em;
  left: 27em;
  width: 20em;
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
}
.headBanner__detail2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__detail2 img {
  opacity: 0;
}
.headBanner__detail2 img.fx {
  opacity: 0;
  animation: appearDetail2 1s ease-out 1s forwards, floatingV 5s linear infinite 2.2s;
}
@keyframes appearDetail2 {
  0% {
    opacity: 0;
    transform: translateY(20%) translateX(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.headBanner__detail3 {
  position: absolute;
  z-index: 6;
  top: 21em;
  left: 40em;
  width: 19.7em;
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
}
.headBanner__detail3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__detail3 img {
  opacity: 0;
}
.headBanner__detail3 img.fx {
  opacity: 0;
  animation: appearDetail3 1s ease-out 1s forwards, floatingV 5s linear infinite 2.4s;
}
@keyframes appearDetail3 {
  0% {
    opacity: 0;
    transform: translateY(30%) translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.headBanner__detail4 {
  position: absolute;
  z-index: 7;
  top: 21.5em;
  left: 53.5em;
  width: 20.88em;
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
}
.headBanner__detail4 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__detail4 img {
  opacity: 0;
}
.headBanner__detail4 img.fx {
  opacity: 0;
  animation: appearDetail4 1s ease-out 1s forwards, floatingV 5s linear infinite 2.6s;
}
@keyframes appearDetail4 {
  0% {
    opacity: 0;
    transform: translateY(20%) translateX(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.headBanner__detail5 {
  position: absolute;
  z-index: 6;
  top: 20em;
  left: 60em;
  width: 25.72em;
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
}
.headBanner__detail5 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__detail5 img {
  opacity: 0;
}
.headBanner__detail5 img.fx {
  opacity: 0;
  animation: appearDetail5 1s ease-out 1s forwards, floatingV 5s linear infinite 2.8s;
}
@keyframes appearDetail5 {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.headBanner__detailsShadow {
  position: absolute;
  z-index: 3;
  top: 35em;
  left: calc((100vw - 86.8em) / 2);
  width: 86.8em;
  height: auto;
  aspect-ratio: 1563/236;
  pointer-events: none;
}
.headBanner__detailsShadow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner__detailsShadow img {
  opacity: 0;
}
.headBanner__detailsShadow img.fx {
  opacity: 0;
  animation: appearFromBottom 1s ease-out forwards 4s, floatingV 5s linear infinite 5s;
}
.headBanner .glowBL2 {
  position: absolute;
  z-index: 1;
  top: 51.1em;
  left: -16.84em;
  width: 25.12em;
  height: auto;
  aspect-ratio: 452/450;
  transform: rotate(70.803deg);
  background: #00AB52;
  mix-blend-mode: difference;
  filter: blur(4.17em);
  pointer-events: none;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner .glowBL2.fx {
  opacity: 1;
  transform: none;
}
.headBanner .glowBL2.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .headBanner .glowBL2 {
    display: none;
  }
}
.headBanner .glowBCT {
  position: absolute;
  z-index: 2;
  top: 77.5em;
  left: 45em;
  width: 43em;
  height: auto;
  aspect-ratio: 852/301;
  border-radius: 47.32506em;
  background: linear-gradient(118deg, #00AB52 -4.84%, #218E59 31.39%, #CEF4A2 67.29%);
  mix-blend-mode: multiply;
  filter: blur(4.17em);
  transform: rotate(-171.2deg);
  pointer-events: none;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner .glowBCT.fx {
  opacity: 1;
  transform: none;
}
.headBanner .glowBCT.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .headBanner .glowBCT {
    display: none;
  }
}
.headBanner .glowBCB {
  position: absolute;
  z-index: 1;
  top: 77.5em;
  left: 45em;
  width: 43em;
  height: auto;
  aspect-ratio: 852/301;
  border-radius: 47.32506em;
  background: linear-gradient(118deg, #00AB52 -4.84%, #218E59 31.39%, #CEF4A2 67.29%);
  mix-blend-mode: difference;
  filter: blur(4.17em);
  transform: rotate(-171.2deg);
  pointer-events: none;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner .glowBCB.fx {
  opacity: 1;
  transform: none;
}
.headBanner .glowBCB.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .headBanner .glowBCB {
    display: none;
  }
}
.headBanner .logo {
  position: absolute;
  z-index: 4;
  top: 12.2em;
  width: 82.28em;
  left: 12.89em;
  height: auto;
  aspect-ratio: 1481/336;
  margin: 0 auto;
  pointer-events: none;
}
.headBanner .logo img.fx {
  animation: appear linear 1.2s, logoMove linear 1.2s;
}
.headBanner .logo img.fx.fxOut {
  opacity: 0;
  animation: disappear 0.75s, logoMoveOut 0.75s;
}
.headBanner .logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner .logo img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .headBanner .logo img:nth-of-type(1) {
    display: none;
  }
  .headBanner .logo img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .headBanner .logo {
    aspect-ratio: 390/130;
    width: 100%;
    left: 0;
    top: 9.18em;
  }
}
@keyframes logoMove {
  0% {
    transform: translateY(10em);
  }
  84% {
    transform: translateY(0);
  }
  92% {
    transform: translateY(0.5em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes logoMoveOut {
  0% {
    transform: none;
  }
  100% {
    transform: translateY(10em);
  }
}
.headBanner .logoShadow {
  position: absolute;
  z-index: 1;
  top: 7.8em;
  width: 85em;
  left: 11.39em;
  height: auto;
  aspect-ratio: 1530/476;
  margin: 0 auto;
  pointer-events: none;
}
.headBanner .logoShadow img.fx {
  animation: appear linear 1s, logoMove linear 1s;
}
.headBanner .logoShadow img.fx.fxOut {
  opacity: 0;
  animation: disappear 0.75s, logoMoveOut 0.75s;
}
.headBanner .logoShadow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .headBanner .logoShadow {
    display: none;
  }
}
.headBanner .original {
  position: absolute;
  z-index: 10;
  top: 4.5em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.23em;
  line-height: 2.23em;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-shadow: 0.5em 0.5em 1.125em #000;
  white-space: nowrap;
  opacity: 0;
}
.headBanner .original.fx {
  opacity: 1;
  animation: delayedAppear50 ease-out 3s, oriMove ease-out 3s;
}
.headBanner .original.fx.fxOut {
  opacity: 0;
  animation: disappear 0.75s, oriMoveOut 0.75s;
}
@media (max-width: 540px) {
  .headBanner .original {
    font-size: 0.825em;
    line-height: 1em;
    font-weight: 500;
    text-shadow: 1.12em 1.12em 2.5em #000;
    top: 10.7em;
  }
}
@keyframes oriMove {
  0% {
    margin-top: 2.5em;
  }
  50% {
    margin-top: 2.5em;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes oriMoveOut {
  0% {
    margin-top: 0;
  }
  100% {
    margin-top: 2.5em;
  }
}
.headBanner .logoTriangle {
  position: absolute;
  z-index: 7;
  top: 21.2em;
  left: 39.65em;
  width: 3.78em;
  height: auto;
  aspect-ratio: 68/67;
  pointer-events: none;
}
.headBanner .logoTriangle img.fx {
  animation: appear linear 1.2s, logoMove linear 1.2s;
}
.headBanner .logoTriangle img.fx.fxOut {
  opacity: 0;
  animation: disappear 0.75s, logoMoveOut 0.75s;
}
.headBanner .logoTriangle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .headBanner .logoTriangle {
    width: 1.125em;
    left: 8.125em;
    top: 12.125em;
  }
}
.headBanner .dots {
  position: absolute;
  z-index: 3;
  top: 51.7em;
  left: 2.17em;
  width: 104em;
  height: auto;
  aspect-ratio: 1868/557;
  pointer-events: none;
}
.headBanner .dots img {
  opacity: 0;
}
.headBanner .dots img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
.headBanner .dots img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner .dots img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .headBanner .dots img:nth-of-type(1) {
    display: none;
  }
  .headBanner .dots img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .headBanner .dots {
    left: 0;
    aspect-ratio: 390/201;
    width: 100%;
    top: 26.3em;
  }
}
.headBanner .stripesL {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 47.95em;
  height: auto;
  aspect-ratio: 863/597;
  pointer-events: none;
}
.headBanner .stripesL img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(-5em);
}
.headBanner .stripesL img.fx {
  opacity: 1;
  transform: none;
}
.headBanner .stripesL img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headBanner .stripesL img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .headBanner .stripesL img:nth-of-type(1) {
    display: none;
  }
  .headBanner .stripesL img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .headBanner .stripesL {
    aspect-ratio: 313/103;
    width: 19.5em;
    left: 0;
    bottom: auto;
    top: 26.5em;
  }
}
.headBanner .stripesR {
  position: absolute;
  z-index: 4;
  top: 51em;
  left: 33em;
  width: 97.17em;
  height: auto;
  aspect-ratio: 1749/594;
  pointer-events: none;
}
.headBanner .stripesR img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(5em);
}
.headBanner .stripesR img.fx {
  opacity: 1;
  transform: none;
}
.headBanner .stripesR img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .headBanner .stripesR {
    display: none;
  }
}
.headBanner .stripesTintR {
  position: absolute;
  z-index: 5;
  top: 51em;
  left: 77em;
  width: 53.17em;
  height: auto;
  aspect-ratio: 957/594;
  background: linear-gradient(90deg, rgba(30, 34, 35, 0) 18.34%, #1E2223 81.42%);
}
@media (max-width: 540px) {
  .headBanner .stripesTintR {
    display: none;
  }
}
.headBannerLightL-m {
  display: none;
  pointer-events: none;
}
.headBannerLightL-m img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .headBannerLightL-m {
    display: block;
    position: absolute;
    z-index: 4;
    height: auto;
    aspect-ratio: 390/441;
    width: 100%;
    left: 0;
    top: 17.5em;
  }
  .headBannerLightL-m img {
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
    opacity: 0;
    transform: translateY(2em);
  }
  .headBannerLightL-m img.fx {
    opacity: 1;
    transform: none;
  }
  .headBannerLightL-m img.fx.fxOut {
    opacity: 0;
    transform: translateY(2em);
  }
}
.headBannerLightR-m {
  display: none;
  pointer-events: none;
}
.headBannerLightR-m img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .headBannerLightR-m {
    display: block;
    position: absolute;
    z-index: 4;
    height: auto;
    aspect-ratio: 306/395;
    width: 19.12em;
    right: 0;
    top: 51em;
  }
  .headBannerLightR-m img {
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
    opacity: 0;
    transform: translateY(2em);
  }
  .headBannerLightR-m img.fx {
    opacity: 1;
    transform: none;
  }
  .headBannerLightR-m img.fx.fxOut {
    opacity: 0;
    transform: translateY(2em);
  }
}
.headBannerLight {
  position: absolute;
  z-index: 4;
  height: auto;
  aspect-ratio: 1920/818;
  width: 100%;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.headBannerLight img {
  opacity: 0;
}
.headBannerLight img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
.headBannerLight img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .headBannerLight {
    display: none;
  }
}
.headBannerFlare {
  position: absolute;
  z-index: 7;
  top: 52.5em;
  left: 29.05em;
  width: 34.05em;
  height: auto;
  aspect-ratio: 613/275;
  animation: pulsar 1.5s infinite;
  pointer-events: none;
}
.headBannerFlare img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBannerFlare img.fx {
  opacity: 1;
  transform: none;
}
.headBannerFlare img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.headBannerFlare img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .headBannerFlare {
    display: none;
  }
}
@keyframes pulsar {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  55% {
    opacity: 1;
  }
  60% {
    opacity: 0.9;
  }
  65% {
    opacity: 1;
  }
}
.headBanner .textFrame {
  position: absolute;
  z-index: 6;
  top: 58.2em;
  left: 15.9em;
  width: 43.2em;
  height: auto;
  aspect-ratio: 777/328;
  background: url(/wp-content/uploads/headerTextFrame.svg) no-repeat;
  background-size: 100%;
  object-fit: cover;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner .textFrame.fx {
  opacity: 1;
  transform: none;
}
.headBanner .textFrame.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .headBanner .textFrame {
    position: relative;
    top: 0;
    background: none;
    aspect-ratio: auto;
    width: 100%;
    left: 0;
    margin-top: 38em;
  }
  .headBanner .textFrame::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -2.75em;
    right: 0;
    aspect-ratio: 390/42;
    height: auto;
    width: 100%;
    background-image: url(/wp-content/uploads/headBannerFrameTop-m.svg);
    background-size: 100%;
  }
  .headBanner .textFrame::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: -1.7em;
    right: 0;
    aspect-ratio: 196/112;
    height: auto;
    width: 12.25em;
    background: url(/wp-content/uploads/headBannerFrameBottom-m.svg);
    background-size: 100%;
  }
}
.headBanner .textFrame__text {
  width: 36.6em;
  height: 11.5em;
  margin: 3.17em 0 0 4.056em;
  overflow-y: auto;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner .textFrame__text.fx {
  opacity: 1;
  transform: none;
}
.headBanner .textFrame__text.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .headBanner .textFrame__text {
    margin-left: 1.375em;
    margin-right: 1.375em;
    margin-top: 2.8em;
    width: auto;
    height: auto;
    line-height: 135%;
  }
}
.headBanner .textFrame__text p {
  margin-top: 0;
}
@media (max-width: 540px) {
  .headBanner .textFrame__text p:not(:last-child) {
    margin-bottom: 1em;
  }
}
.headBanner .textFrame__button {
  margin: 2.4em 0 0 4.056em;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.headBanner .textFrame__button.fx {
  opacity: 1;
  transform: none;
}
.headBanner .textFrame__button.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .headBanner .textFrame__button {
    margin-left: 1.375em;
  }
}
.headBanner .textFrame__button a {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
  width: 6.3em;
}
@media (max-width: 540px) {
  .headBanner .textFrame__button a {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.headBanner .textFrame__button a:hover {
  transform: scale(1.1);
}
.headBanner .dotsB-m {
  display: none;
}
@media (max-width: 540px) {
  .headBanner .dotsB-m {
    display: block;
    position: absolute;
    z-index: 3;
    top: 58em;
    right: 0;
    width: 21.56em;
    height: auto;
    aspect-ratio: 345/153;
    pointer-events: none;
  }
  .headBanner .dotsB-m img {
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
    opacity: 0;
    transform: translateY(2em);
  }
  .headBanner .dotsB-m img.fx {
    opacity: 1;
    transform: none;
  }
  .headBanner .dotsB-m img.fx.fxOut {
    opacity: 0;
    transform: translateY(2em);
  }
  .headBanner .dotsB-m img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.sectionHeaderFrame {
  position: absolute;
  z-index: 10;
  background-size: 100%;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.sectionHeaderFrame.fx {
  opacity: 1;
  transform: none;
}
.sectionHeaderFrame.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.sectionHeaderFrame h2 {
  margin: 0 0.5em;
  font-size: 3.56em;
  font-weight: 800;
  line-height: normal;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 540px) {
  .sectionHeaderFrame h2 {
    font-size: 2.5em;
    font-weight: 700;
  }
}

.actions {
  position: relative;
}
.actions__stripeOver {
  display: none;
}
@media (max-width: 540px) {
  .actions__stripeOver {
    display: block;
    position: absolute;
    z-index: 5;
    top: -1.2em;
    right: 0;
    width: 22.8em;
    height: auto;
    aspect-ratio: 365/26;
    pointer-events: none;
  }
  .actions__stripeOver img {
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
    opacity: 0;
    transform: translateY(2em);
  }
  .actions__stripeOver img.fx {
    opacity: 1;
    transform: none;
  }
  .actions__stripeOver img.fx.fxOut {
    opacity: 0;
    transform: translateY(2em);
  }
  .actions__stripeOver img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.actions__slick__item img {
  display: block;
  width: 107em;
  height: auto;
  aspect-ratio: 1920/652;
  object-fit: cover;
}
@media (max-width: 540px) {
  .actions__slick__item img {
    width: 100%;
    aspect-ratio: 390/410;
  }
}

.prods {
  position: relative;
  height: 47.5em;
}
@media (max-width: 540px) {
  .prods {
    height: auto;
    padding-bottom: 5.2em;
  }
}
.prods__light1 {
  position: absolute;
  z-index: 10;
  top: -11.5em;
  left: 0;
  width: 30.8em;
  height: auto;
  aspect-ratio: 555/604;
  pointer-events: none;
}
.prods__light1 img {
  opacity: 0;
}
.prods__light1 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
.prods__light1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prods__light1 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .prods__light1 img:nth-of-type(1) {
    display: none;
  }
  .prods__light1 img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .prods__light1 {
    width: 16.44em;
    aspect-ratio: 263/380;
    left: auto;
    right: 0;
    top: -7.5em;
  }
}
.prods__light2 {
  position: absolute;
  z-index: 10;
  top: -3.7em;
  right: 0;
  width: 19.7em;
  height: auto;
  aspect-ratio: 355/380;
  pointer-events: none;
}
.prods__light2 img {
  opacity: 0;
}
.prods__light2 img.fx {
  opacity: inherit;
  animation: stroboAppear 2s ease-out;
}
.prods__light2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prods__light2 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .prods__light2 img:nth-of-type(1) {
    display: none;
  }
  .prods__light2 img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .prods__light2 {
    aspect-ratio: 144/391;
    width: 9em;
    right: auto;
    left: 0;
    top: -13.5em;
  }
}
.prods__light3 {
  position: absolute;
  z-index: 10;
  top: 9em;
  left: 0;
  width: 13.3em;
  height: auto;
  aspect-ratio: 239/391;
  pointer-events: none;
}
.prods__light3 img {
  opacity: 0;
  animation-delay: 4s;
}
.prods__light3 img.fx {
  opacity: inherit;
  animation: stroboAppear 2.5s ease-out;
}
.prods__light3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .prods__light3 {
    display: none;
  }
}
.prods__skew {
  position: absolute;
  top: -7.45em;
  left: 0;
  z-index: 1;
  width: 107em;
  height: auto;
  aspect-ratio: 1920/134;
  background: url(/wp-content/uploads/prodSkew.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .prods__skew {
    width: 100%;
    top: 0;
    transform: translateY(-100%);
  }
}
.prods__overlayL {
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0.34em;
  aspect-ratio: 336/858;
  width: 18.67em;
  pointer-events: none;
}
.prods__overlayL img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .prods__overlayL {
    display: none;
  }
}
.prods .dotsL {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 16.1em;
  height: auto;
  aspect-ratio: 289/326;
  pointer-events: none;
}
.prods .dotsL img {
  opacity: 0;
}
.prods .dotsL img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
.prods .dotsL img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prods .dotsL img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .prods .dotsL img:nth-of-type(1) {
    display: none;
  }
  .prods .dotsL img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .prods .dotsL {
    aspect-ratio: 390/208;
    width: 100%;
    top: -5.5em;
  }
}
.prods .dotsR {
  position: absolute;
  right: 0;
  top: -6.12em;
  z-index: 2;
  width: 43.9em;
  height: auto;
  aspect-ratio: 790/449;
  pointer-events: none;
}
.prods .dotsR img {
  opacity: 0;
  animation-delay: 2.5s;
}
.prods .dotsR img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
.prods .dotsR img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .prods .dotsR {
    display: none;
  }
}
.prods .stripesL {
  position: absolute;
  left: 0;
  top: 6.28em;
  z-index: 1;
  width: 23.56em;
  height: auto;
  aspect-ratio: 424/259;
  pointer-events: none;
}
.prods .stripesL img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(-5em);
}
.prods .stripesL img.fx {
  opacity: 1;
  transform: none;
}
.prods .stripesL img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prods .stripesL img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .prods .stripesL img:nth-of-type(1) {
    display: none;
  }
  .prods .stripesL img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .prods .stripesL {
    aspect-ratio: 93/183;
    width: 5.8125em;
    top: 4.2em;
  }
}
.prods .stripesR {
  position: absolute;
  right: 0;
  top: 3.33em;
  z-index: 1;
  width: 71.1em;
  height: auto;
  aspect-ratio: 1280/803;
  pointer-events: none;
}
.prods .stripesR img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(5em);
}
.prods .stripesR img.fx {
  opacity: 1;
  transform: none;
}
.prods .stripesR img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prods .stripesR img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .prods .stripesR img:nth-of-type(1) {
    display: none;
  }
  .prods .stripesR img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .prods .stripesR {
    aspect-ratio: 240/120;
    width: 15em;
    top: -1.625em;
    z-index: 2;
  }
}
.prods .arrowDn {
  left: 24.44em;
  top: 5.72em;
}
@media (max-width: 540px) {
  .prods .arrowDn {
    left: 2.75em;
    top: 1.06em;
  }
}
.prods .glow2 {
  position: absolute;
  z-index: 2;
  left: 13em;
  top: 23.21em;
  width: 77em;
  height: auto;
  aspect-ratio: 1650/189;
  transform: rotate(-1.91deg);
  border-radius: 91.66667em;
  background: #218C56;
  mix-blend-mode: difference;
  filter: blur(4.17em);
  pointer-events: none;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.prods .glow2.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .prods .glow2 {
    width: 18.25em;
    height: auto;
    aspect-ratio: 292/171;
    transform: rotate(26deg);
    left: auto;
    right: -7.82em;
    top: -2.375em;
    background: #00AB52;
    z-index: 1;
  }
}
.prods .glow3 {
  position: absolute;
  z-index: 2;
  right: 7.54em;
  top: 37.22em;
  width: 17em;
  height: auto;
  aspect-ratio: 360/61;
  transform: rotate(0.254deg);
  background: #00AB52;
  mix-blend-mode: difference;
  filter: blur(4.17em);
  pointer-events: none;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.prods .glow3.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .prods .glow3 {
    aspect-ratio: 152/2824;
    width: 9.5em;
    background: #09FF00;
    transform: translateX(50%);
    top: 19.7em;
    right: 50%;
    border-radius: 50%;
  }
}
.prods .glow4 {
  position: absolute;
  z-index: 3;
  left: 16.39em;
  top: 22.28em;
  width: 73.8em;
  height: auto;
  aspect-ratio: 1329/225;
  transform: rotate(0.254deg);
  background: #00AB52;
  mix-blend-mode: difference;
  filter: blur(4.17em);
  pointer-events: none;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.prods .glow4.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .prods .glow4 {
    display: none;
  }
}
.prods .glow5 {
  position: absolute;
  z-index: 4;
  left: 8.5em;
  top: 21em;
  width: 83em;
  height: auto;
  aspect-ratio: 2085/345;
  transform: rotate(-0.05deg);
  border-radius: 116em;
  background: #09FF00;
  mix-blend-mode: difference;
  filter: blur(4.17em);
  pointer-events: none;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.prods .glow5.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .prods .glow5 {
    display: none;
  }
}
.prods .detail1 {
  position: absolute;
  z-index: 6;
  left: 45.5em;
  top: 8em;
  width: 37.28em;
  height: auto;
  aspect-ratio: 671/523;
  pointer-events: none;
}
.prods .detail1 img {
  transition: opacity 2s ease-out, transform 2s ease-out;
  opacity: 0;
  transform: translateY(-5em) translateX(0.5em);
}
.prods .detail1 img.fx {
  opacity: inherit;
  transform: none;
  animation: floatingV 5s linear infinite;
  animation-delay: 3.5s;
}
.prods .detail1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .prods .detail1 {
    display: none;
  }
}
.prods .sectionHeaderFrame {
  z-index: 10;
  top: 8.56em;
  left: 17.7em;
  aspect-ratio: 520/136;
  background-image: url(/wp-content/uploads/prodHeaderFrame.svg);
}
.prods .sectionHeaderFrame h2 {
  margin: 0 0.75em;
}
@media (max-width: 540px) {
  .prods .sectionHeaderFrame {
    position: relative;
    display: inline-block;
    left: 1em;
    top: 6.1em;
  }
}
.prods .prodsList {
  position: absolute;
  z-index: 9;
  top: 18.11em;
  left: 13.22em;
  display: flex;
}
@media (max-width: 540px) {
  .prods .prodsList {
    position: relative;
    left: 0;
    flex-direction: column;
    top: 8.4em;
    padding-left: 1.44em;
    padding-bottom: 5.2em;
  }
}
.prods .prodsList__item {
  display: block;
  position: relative;
  width: 15.39em;
  color: #fff;
  transition: transform 1s ease-out, opacity 1s ease-out;
  opacity: 0;
  transform: translateY(5em);
}
.prods .prodsList__item.fx {
  opacity: 1;
  transform: none;
}
.prods .prodsList__item:hover {
  transition: transform 0.5s;
  transform: scale(1.05);
}
@media (max-width: 540px) {
  .prods .prodsList__item {
    width: calc(100% + 0.4em);
  }
}
.prods .prodsList__item:not(:last-child) {
  margin-right: 1.056em;
}
@media (max-width: 540px) {
  .prods .prodsList__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.25em;
  }
}
.prods .prodsList__item__pic {
  position: relative;
  width: 100%;
  aspect-ratio: 277/371;
  pointer-events: none;
  pointer-events: all;
}
.prods .prodsList__item__pic img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.prods .prodsList__item__pic img.fx {
  opacity: 1;
  transform: none;
}
.prods .prodsList__item__pic img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.prods .prodsList__item__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prods .prodsList__item__pic::after {
  content: "";
  display: block;
  position: absolute;
  left: 12.28em;
  top: 17.23em;
  z-index: 1;
  width: 2.5em;
  height: auto;
  aspect-ratio: 1;
  background: url(/wp-content/uploads/homeProdCorner.svg);
  background-size: 100%;
  pointer-events: none;
}
@media (max-width: 540px) {
  .prods .prodsList__item__pic::after {
    left: auto;
    right: 1em;
    top: auto;
    bottom: 1.2em;
    width: 3.75em;
  }
}
.prods .prodsList__item__title {
  padding-left: 0.875em;
  padding-bottom: 1.34em;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .prods .prodsList__item__title {
    font-size: 1.125em;
    padding-bottom: 2.3em;
  }
}
.prods .prodsList__item__stripe {
  position: absolute;
  z-index: 1;
  left: -0.06em;
  bottom: 0;
  width: 0.12em;
  height: 7.95em;
  background: #fff;
}
@media (max-width: 540px) {
  .prods .prodsList__item__stripe {
    height: 11.56em;
  }
}
.prods .prodMore {
  position: absolute;
  z-index: 10;
  left: 48.44em;
  top: 45.28em;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.prods .prodMore.fx {
  opacity: 1;
  transform: none;
}
.prods .prodMore.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.prods .prodMore a {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
}
@media (max-width: 540px) {
  .prods .prodMore a {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.prods .prodMore a:hover {
  transform: scale(1.1);
}
@media (max-width: 540px) {
  .prods .prodMore {
    position: relative;
    display: inline-block;
    left: 50%;
    top: 5.2em;
  }
  .prods .prodMore, .prods .prodMore.fx {
    transform: translateX(-50%);
  }
}

.gallery {
  position: relative;
  z-index: 8;
  padding: 12em 0 10em 3.5em;
  height: 46.1em;
}
@media (max-width: 540px) {
  .gallery {
    padding: 0;
    margin-top: 9em;
    height: 45em;
  }
}
.gallery .glowBrakeD,
.gallery .glowBrakeM {
  position: absolute;
  top: 4.6em;
  left: -10em;
  height: auto;
  pointer-events: none;
  border-radius: 50%;
  aspect-ratio: 1019/300;
  width: 56.62em;
  transform: rotate(8.8deg);
  filter: blur(3.75em);
  background: linear-gradient(207deg, #00AB52 0.98%, #218E59 33.37%, #b3d97a 65.46%);
  transition: opacity 7s ease-out;
  opacity: 0;
}
.gallery .glowBrakeD.fx,
.gallery .glowBrakeM.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .gallery .glowBrakeD,
  .gallery .glowBrakeM {
    aspect-ratio: 493/174;
    width: 30.8em;
    top: 0;
    left: -8.7em;
  }
}
.gallery .glowBrakeD {
  z-index: 1;
  mix-blend-mode: difference;
}
.gallery .glowBrakeM {
  z-index: 2;
  mix-blend-mode: multiply;
}
.gallery .brakeBg {
  position: absolute;
  z-index: 3;
  left: 4.1em;
  top: -5em;
  width: 41.6em;
  height: auto;
  aspect-ratio: 749/765;
  animation: rotateBrake 60s;
  pointer-events: none;
}
.gallery .brakeBg img {
  transition: opacity 7s ease-out;
  opacity: 0;
}
.gallery .brakeBg img.fx {
  opacity: 1;
}
.gallery .brakeBg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .brakeBg img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .gallery .brakeBg img:nth-of-type(1) {
    display: none;
  }
  .gallery .brakeBg img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .gallery .brakeBg {
    aspect-ratio: 284/560;
    top: -7.5em;
    width: 17.75em;
    left: 0;
    animation: none;
  }
}
@keyframes rotateBrake {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gallery .light4 {
  position: absolute;
  z-index: 9;
  top: 27.6em;
  left: 0;
  width: 42.5em;
  height: auto;
  aspect-ratio: 765/639;
  pointer-events: none;
}
.gallery .light4 img {
  opacity: 0;
}
.gallery .light4 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
.gallery .light4 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .gallery .light4 {
    display: none;
  }
}
.gallery .stripesGaL {
  position: absolute;
  z-index: 8;
  top: 32.2em;
  left: 0;
  width: 84.89em;
  height: auto;
  aspect-ratio: 1528/559;
  pointer-events: none;
}
.gallery .stripesGaL img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(-5em);
}
.gallery .stripesGaL img.fx {
  opacity: 1;
  transform: none;
}
.gallery .stripesGaL img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .gallery .stripesGaL {
    display: none;
  }
}
.gallery .stripesGaR {
  position: absolute;
  z-index: 4;
  top: 42.5em;
  right: 0;
  width: 47.12em;
  height: auto;
  aspect-ratio: 848/401;
  pointer-events: none;
}
.gallery .stripesGaR img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(5em);
}
.gallery .stripesGaR img.fx {
  opacity: 1;
  transform: none;
}
.gallery .stripesGaR img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .gallery .stripesGaR {
    display: none;
  }
}
.gallery .dotsGa {
  position: absolute;
  z-index: 4;
  top: 23.5em;
  left: 1.17em;
  width: 105.28em;
  height: auto;
  aspect-ratio: 1895/659;
  pointer-events: none;
}
.gallery .dotsGa img {
  opacity: 0;
}
.gallery .dotsGa img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
.gallery .dotsGa img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .gallery .dotsGa {
    display: none;
  }
}
.gallery .glowGaBottom {
  position: absolute;
  z-index: 7;
  right: -1em;
  top: 37.5em;
  width: 56.62em;
  height: auto;
  aspect-ratio: 1019/336;
  border-radius: 50%;
  background: rgba(9, 255, 0, 0.7);
  mix-blend-mode: difference;
  filter: blur(3.5em);
  transform: rotate(-17deg);
  pointer-events: none;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.gallery .glowGaBottom.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .gallery .glowGaBottom {
    aspect-ratio: 376/341;
    width: 23.5em;
    top: 23em;
    right: -11em;
  }
}
.gallery__box {
  position: relative;
  top: 0;
  left: 10.2em;
  z-index: 10;
}
@media (max-width: 540px) {
  .gallery__box {
    left: -31.2em;
  }
}
.gallery__box__item {
  position: absolute;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.gallery__box__item, .gallery__box__item__pic {
  transform-origin: 0 0;
}
.gallery__box__item__pic {
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.gallery__box__item img {
  display: block;
  position: absolute;
  width: auto;
  height: 100%;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.gallery__box__item img.fx {
  opacity: 1;
  transform: none;
}
.gallery__box__item img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.gallery__box__item:nth-child(1), .gallery__box__item:nth-child(2), .gallery__box__item:nth-child(6), .gallery__box__item:nth-child(7), .gallery__box__item:nth-child(8) {
  aspect-ratio: 196/211;
  width: 19.6em;
  height: auto;
  transform: skewX(-44.1deg);
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(1), .gallery__box__item:nth-child(2), .gallery__box__item:nth-child(6), .gallery__box__item:nth-child(7), .gallery__box__item:nth-child(8) {
    width: 16.5em;
  }
}
.gallery__box__item:nth-child(1) .gallery__box__item__pic, .gallery__box__item:nth-child(2) .gallery__box__item__pic, .gallery__box__item:nth-child(6) .gallery__box__item__pic, .gallery__box__item:nth-child(7) .gallery__box__item__pic, .gallery__box__item:nth-child(8) .gallery__box__item__pic {
  transform: skewX(44.1deg);
  left: -20.5em;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(1) .gallery__box__item__pic, .gallery__box__item:nth-child(2) .gallery__box__item__pic, .gallery__box__item:nth-child(6) .gallery__box__item__pic, .gallery__box__item:nth-child(7) .gallery__box__item__pic, .gallery__box__item:nth-child(8) .gallery__box__item__pic {
    left: -17.3em;
  }
}
.gallery__box__item:nth-child(1) .gallery__box__item__pic img, .gallery__box__item:nth-child(2) .gallery__box__item__pic img, .gallery__box__item:nth-child(6) .gallery__box__item__pic img, .gallery__box__item:nth-child(7) .gallery__box__item__pic img, .gallery__box__item:nth-child(8) .gallery__box__item__pic img {
  aspect-ratio: 1076/567;
}
.gallery__box__item:nth-child(1) {
  left: 0;
  top: 6.45em;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(1) {
    display: none;
  }
}
.gallery__box__item:nth-child(2) {
  left: 26.2em;
  top: 2.12em;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(2) {
    left: 31.1em;
  }
}
.gallery__box__item:nth-child(3) {
  left: 5.7em;
  top: 24.89em;
  aspect-ratio: 1817/2100;
  width: 18.17em;
  height: auto;
  transform: skewX(-41.87deg);
}
.gallery__box__item:nth-child(3) .gallery__box__item__pic {
  transform: skewX(41.87deg);
  left: -18em;
}
.gallery__box__item:nth-child(3) .gallery__box__item__pic img {
  aspect-ratio: 998/567;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(3) {
    display: none;
  }
}
.gallery__box__item:nth-child(4) {
  left: 50.1em;
  top: 0;
  aspect-ratio: 2756/1417;
  width: 27.56em;
  height: auto;
  transform: skewX(-44.19deg);
  overflow: hidden;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(4) {
    width: 23.7em;
    left: 50.9em;
    transform: skewX(-43deg);
  }
}
.gallery__box__item:nth-child(4) .gallery__box__item__pic {
  transform: skewX(44.19deg);
  left: -13.8em;
}
.gallery__box__item:nth-child(4) .gallery__box__item__pic img {
  aspect-ratio: 1119/384;
}
.gallery__box__item:nth-child(5) {
  left: 35em;
  top: 16.56em;
  aspect-ratio: 2739/2945;
  width: 27.39em;
  height: auto;
  transform: skewX(-43.68deg);
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(5) {
    top: 14.25em;
    width: 22.55em;
    left: 38.1em;
  }
}
.gallery__box__item:nth-child(5) .gallery__box__item__pic {
  transform: skewX(43.68deg);
  left: -28.5em;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(5) .gallery__box__item__pic {
    left: -22.5em;
  }
}
.gallery__box__item:nth-child(5) .gallery__box__item__pic img {
  aspect-ratio: 1505/794;
}
.gallery__box__item:nth-child(6) {
  left: 79.7em;
  top: 2.12em;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(6) {
    display: none;
  }
}
.gallery__box__item:nth-child(7) {
  left: 57.7em;
  top: 25em;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(7) {
    top: 20.75em;
  }
}
.gallery__box__item:nth-child(8) {
  left: 84.4em;
  top: 20.78em;
}
@media (max-width: 540px) {
  .gallery__box__item:nth-child(8) {
    display: none;
  }
}

.reviews {
  position: relative;
  z-index: 8;
  overflow: hidden;
  padding-bottom: 9.5em;
}
@media (max-width: 540px) {
  .reviews {
    overflow: visible;
    padding-bottom: 24em;
  }
}
.reviews .arrowDn {
  top: 3.62em;
  left: 24.45em;
}
@media (max-width: 540px) {
  .reviews .arrowDn {
    left: 2.75em;
    top: 2em;
  }
}
.reviews .sectionHeaderFrame {
  z-index: 10;
  top: 6.67em;
  left: 17.5em;
  aspect-ratio: 372/141;
  background-image: url(/wp-content/uploads/reviewsHeaderFrame.svg);
}
@media (max-width: 540px) {
  .reviews .sectionHeaderFrame {
    top: 7em;
    left: 1.375em;
  }
  .reviews .sectionHeaderFrame h2 {
    margin-left: 0.75em;
    margin-right: 0.75em;
  }
}
.reviewsLight1 {
  position: absolute;
  z-index: 9;
  bottom: 27.5em;
  right: 0;
  width: 69.56em;
  height: auto;
  aspect-ratio: 1252/821;
  pointer-events: none;
}
.reviewsLight1 img {
  opacity: 0;
}
.reviewsLight1 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
.reviewsLight1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewsLight1 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .reviewsLight1 img:nth-of-type(1) {
    display: none;
  }
  .reviewsLight1 img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .reviewsLight1 {
    aspect-ratio: 390/471;
    width: 100%;
    top: -12.18em;
  }
}
.reviewsLight2 {
  position: absolute;
  z-index: 9;
  top: 28.17em;
  left: 1.56em;
  width: 83.67em;
  height: auto;
  aspect-ratio: 1506/821;
  pointer-events: none;
}
.reviewsLight2 img {
  opacity: 0;
}
.reviewsLight2 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
.reviewsLight2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .reviewsLight2 {
    display: none;
  }
}
.reviewsStripesL {
  position: absolute;
  z-index: 2;
  top: 14.95em;
  left: 0;
  width: 63.95em;
  height: auto;
  aspect-ratio: 1151/963;
  pointer-events: none;
}
.reviewsStripesL img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(-5em);
}
.reviewsStripesL img.fx {
  opacity: 1;
  transform: none;
}
.reviewsStripesL img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewsStripesL img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .reviewsStripesL img:nth-of-type(1) {
    display: none;
  }
  .reviewsStripesL img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .reviewsStripesL {
    aspect-ratio: 85/221;
    width: 5.32em;
    top: 3.44em;
  }
}
.reviewsStripeOver {
  position: absolute;
  z-index: 11;
  bottom: 5.2em;
  left: 0;
  width: 38.39em;
  height: auto;
  aspect-ratio: 691/67;
  pointer-events: none;
}
.reviewsStripeOver img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.reviewsStripeOver img.fx {
  opacity: 1;
  transform: none;
}
.reviewsStripeOver img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.reviewsStripeOver img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewsStripeOver img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .reviewsStripeOver img:nth-of-type(1) {
    display: none;
  }
  .reviewsStripeOver img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .reviewsStripeOver {
    width: 100%;
    aspect-ratio: 390/103;
    top: 53.8em;
    bottom: auto;
    z-index: 9;
  }
}
.reviewsStripesR {
  position: absolute;
  z-index: 1;
  bottom: 23em;
  right: 0;
  width: 28em;
  height: auto;
  aspect-ratio: 504/537;
  pointer-events: none;
}
.reviewsStripesR img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(5em);
}
.reviewsStripesR img.fx {
  opacity: 1;
  transform: none;
}
.reviewsStripesR img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewsStripesR img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .reviewsStripesR img:nth-of-type(1) {
    display: none;
  }
  .reviewsStripesR img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .reviewsStripesR {
    aspect-ratio: 198/162;
    width: 12.4em;
    top: 0.18em;
  }
}
.reviewsGlow1 {
  position: absolute;
  z-index: 1;
  left: -9.06em;
  top: 33.95em;
  width: 38.67em;
  height: auto;
  aspect-ratio: 696/317;
  border-radius: 45.34em;
  background: #048910;
  filter: blur(8.34em);
  mix-blend-mode: difference;
  transform: rotate(-17deg);
  pointer-events: none;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.reviewsGlow1.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .reviewsGlow1 {
    display: none;
  }
}
.reviewsGlow2 {
  position: absolute;
  z-index: 1;
  right: 3em;
  bottom: -20em;
  width: 30.95em;
  height: auto;
  aspect-ratio: 557/874;
  border-radius: 50%;
  background: #00AB52;
  filter: blur(7em);
  mix-blend-mode: difference;
  transform: rotate(76.24deg);
  pointer-events: none;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.reviewsGlow2.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .reviewsGlow2 {
    aspect-ratio: 568/268;
    width: 35.5em;
    transform: rotate(-17deg);
    background: #09FF00;
    border-radius: 50%;
    top: 66em;
    left: -4.87em;
    filter: blur(5.5em);
  }
}
.reviewsDotsL {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 46.28em;
  width: 13.23em;
  height: auto;
  aspect-ratio: 238/556;
  pointer-events: none;
}
.reviewsDotsL img {
  opacity: 0;
}
.reviewsDotsL img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
.reviewsDotsL img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .reviewsDotsL {
    display: none;
  }
}
.reviewsDotsR {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 17em;
  width: 68.56em;
  height: auto;
  aspect-ratio: 1234/565;
  pointer-events: none;
}
.reviewsDotsR img {
  opacity: 0;
}
.reviewsDotsR img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "1s";
}
.reviewsDotsR img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviewsDotsR img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .reviewsDotsR img:nth-of-type(1) {
    display: none;
  }
  .reviewsDotsR img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .reviewsDotsR {
    aspect-ratio: 336/208;
    width: 21em;
    top: 1.56em;
  }
}
.reviews__board {
  position: relative;
  z-index: 10;
  margin-top: 13.5em;
  left: 25.78em;
  width: 56.56em;
  height: 44.6em;
  background: #fff;
  transform: skewY(-7deg) translateY(7em);
  padding: 1px 0 0 0;
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.reviews__board.fx {
  opacity: 1;
  transform: skewY(-7deg) translateY(0);
}
@media (max-width: 540px) {
  .reviews__board {
    top: 15.5em;
    left: 1.375em;
    width: calc(100% - 2.75em);
    height: 45em;
  }
}
.reviews__board__widget {
  position: relative;
  overflow: hidden;
  margin: 4em auto 1em auto;
  width: 42.34em;
  height: calc(100% - 9.5em);
  background: #f5f5f5;
  transform: skewY(7deg);
}
@media (max-width: 1919px) {
  .reviews__board__widget {
    width: 54em;
    max-width: 95%;
  }
}
.reviews__board__widget iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contacts {
  position: relative;
  z-index: 9;
  background: #fff;
  padding-top: 7.5em;
  padding-bottom: 3.5em;
  color: #000;
}
@media (max-width: 540px) {
  .contacts {
    padding-bottom: 4.8em;
  }
}
.contacts__skew {
  position: absolute;
  top: -11.34em;
  left: 0;
  z-index: 1;
  width: 107em;
  height: auto;
  aspect-ratio: 1920/204;
  background: url(/wp-content/uploads/contactsSkew.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .contacts__skew {
    width: 100%;
    top: 0;
    transform: translateY(-99%);
    background-image: url(/wp-content/uploads/contactsSkew-m.svg);
    aspect-ratio: 390/79;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
  }
}
.contacts__skew2 {
  position: absolute;
  bottom: -11.34em;
  left: 0;
  z-index: 1;
  width: 107em;
  height: auto;
  aspect-ratio: 1920/204;
  background: url(/wp-content/uploads/contactsSkew.svg) no-repeat;
  background-size: 100%;
  transform: scale(-1);
}
@media (max-width: 540px) {
  .contacts__skew2 {
    width: 100%;
    bottom: 0;
    transform: scale(-1) translateY(-100%);
    background-image: url(/wp-content/uploads/contactsSkew-m.svg);
    aspect-ratio: 390/79;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
  }
}
.contacts .arrowDn {
  top: 3.84em;
  left: 24.45em;
}
@media (max-width: 540px) {
  .contacts .arrowDn {
    top: 1.81em;
    left: 2.75em;
    width: 1.875em;
  }
}
.contacts .sectionHeaderFrame {
  z-index: 10;
  top: 6.67em;
  left: 17.5em;
  aspect-ratio: 441/124;
  background-image: url(/wp-content/uploads/contactsHeaderFrame.svg);
}
.contacts .sectionHeaderFrame h2 {
  color: #1E2223;
}
@media (max-width: 540px) {
  .contacts .sectionHeaderFrame {
    left: 1.375em;
    top: 5em;
    background-image: url(/wp-content/uploads/contactsHeaderFrame-m.svg);
    aspect-ratio: 290/93;
  }
}
.contacts .content {
  display: flex;
  padding-left: 354px;
  padding-right: 256px;
}
@media (max-width: 1919px) {
  .contacts .content {
    padding-left: calc(100vw / (1920 / 354));
    padding-right: calc(100vw / (1920 / 256));
  }
}
@media (max-width: 540px) {
  .contacts .content {
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
    flex-direction: column;
  }
}
.contacts__left {
  padding-top: 5.95em;
  flex: 1 1 auto;
}
@media (max-width: 540px) {
  .contacts__left {
    padding-top: 4.3em;
  }
}
.contacts__right {
  flex: 0 0 auto;
  margin-left: 7.12em;
}
@media (max-width: 540px) {
  .contacts__right {
    margin-left: 0;
    margin-top: 3.75em;
  }
}
.contacts__list__item {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.contacts__list__item.fx {
  opacity: 1;
  transform: none;
}
.contacts__list__item.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.contacts__list__item h3 {
  font-size: 1.12em;
  font-weight: 600;
  line-height: 120%;
  margin: 1em 0 0.5em 0;
  color: #09A956;
}
@media (max-width: 540px) {
  .contacts__list__item h3 {
    font-size: 1.25em;
    font-weight: 500;
    margin-top: 1.25em;
  }
}
.contacts__list__item p {
  margin: 0.5em 0;
}
.contacts__list__item a {
  font-size: 1.12em;
  font-weight: 600;
  line-height: 130%;
  color: #000;
}
.contacts__list__item a:hover {
  color: #09A956;
}
@media (max-width: 540px) {
  .contacts__list__item a {
    font-size: 1.25em;
    font-weight: 500;
  }
}
.contacts__button {
  display: inline-block;
  margin-top: 2.78em;
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.contacts__button.fx {
  opacity: 1;
  transform: none;
}
.contacts__button.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
@media (max-width: 540px) {
  .contacts__button {
    margin-top: 2.5em;
  }
}
.contacts__button .button {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
}
@media (max-width: 540px) {
  .contacts__button .button {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.contacts__button .button:hover {
  transform: scale(1.1);
}
.contacts__map {
  width: 32.89em;
  height: 37.45em;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}
@media (max-width: 540px) {
  .contacts__map {
    width: 100%;
    height: auto;
    aspect-ratio: 346/370;
  }
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contactsStripe1 {
  position: absolute;
  z-index: 1;
  top: 5.3em;
  left: 16em;
  width: 2.06em;
  height: auto;
  aspect-ratio: 37/308;
  pointer-events: none;
}
.contactsStripe1 img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.contactsStripe1 img.fx {
  opacity: 1;
  transform: none;
}
.contactsStripe1 img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.contactsStripe1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contactsStripe1 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .contactsStripe1 img:nth-of-type(1) {
    display: none;
  }
  .contactsStripe1 img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .contactsStripe1 {
    aspect-ratio: 34/2;
    width: 2.125em;
    top: 2.68em;
    left: 0;
  }
}
.contactsStripe2 {
  position: absolute;
  z-index: 1;
  top: 4.9em;
  left: 42em;
  width: 42em;
  height: auto;
  aspect-ratio: 756/42;
  pointer-events: none;
}
.contactsStripe2 img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.contactsStripe2 img.fx {
  opacity: 1;
  transform: none;
}
.contactsStripe2 img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.contactsStripe2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contactsStripe2 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .contactsStripe2 img:nth-of-type(1) {
    display: none;
  }
  .contactsStripe2 img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .contactsStripe2 {
    aspect-ratio: 175/41;
    width: 10.94em;
    top: -0.25em;
    left: auto;
    right: 0;
  }
}
.contactsStripe3 {
  position: absolute;
  z-index: 1;
  top: 37.25em;
  left: 67.67em;
  width: 28.5em;
  height: auto;
  aspect-ratio: 513/198;
  pointer-events: none;
}
.contactsStripe3 img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.contactsStripe3 img.fx {
  opacity: 1;
  transform: none;
}
.contactsStripe3 img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.contactsStripe3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contactsStripe3 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .contactsStripe3 img:nth-of-type(1) {
    display: none;
  }
  .contactsStripe3 img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .contactsStripe3 {
    aspect-ratio: 151/182;
    width: 9.44em;
    top: auto;
    left: auto;
    right: 0;
    bottom: 31.6em;
  }
}
@media (max-width: 540px) {
  .contacts::after {
    content: "";
    position: absolute;
    z-index: 1;
    background: url("/wp-content/uploads/contactsStripe4-m.svg");
    background-size: 100%;
    aspect-ratio: 222/37;
    width: 13.87em;
    left: 0;
    bottom: 1.5em;
  }
}

footer {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2.78em 0 4.36em 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #1E2223;
}
@media (max-width: 540px) {
  footer {
    padding: 5.625em 0 9.625em 0;
  }
}
footer .footerStripe {
  position: absolute;
  z-index: 1;
  bottom: 1.25em;
  left: -0.23em;
  width: 107.56em;
  height: auto;
  aspect-ratio: 1920/51;
  pointer-events: none;
}
footer .footerStripe img {
  animation-duration: 0.4s;
  animation-timing-function: linear;
}
footer .footerStripe img.fx {
  animation-name: stroboAppear;
}
footer .footerStripe img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .footerStripe img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  footer .footerStripe img:nth-of-type(1) {
    display: none;
  }
  footer .footerStripe img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  footer .footerStripe {
    aspect-ratio: 390/51;
    width: 100%;
    left: 0;
    bottom: 2em;
  }
}
footer .footer {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 540px) {
  footer .footer {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
footer .footer__logo {
  width: 14.56em;
  height: auto;
  aspect-ratio: 262/60;
  pointer-events: none;
  pointer-events: all;
}
footer .footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  footer .footer__logo {
    width: 16.375em;
    margin-bottom: 3.125em;
  }
}
footer .footer__socials {
  display: flex;
  gap: 0.56em;
}
@media (max-width: 540px) {
  footer .footer__socials {
    gap: 0.625em;
  }
}
footer .footer__socials a {
  display: block;
  width: 2.78em;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #09FF00;
  box-shadow: 0 0 0.23em #09FF00;
  transition: transform 0.3s;
  pointer-events: none;
  pointer-events: all;
}
footer .footer__socials a:hover {
  transform: scale(1.1);
}
footer .footer__socials a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  footer .footer__socials a {
    width: 3.125em;
  }
}

.footerWrapper {
  position: relative;
}

.footerGlows {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 32em;
  overflow: hidden;
}
@media (max-width: 540px) {
  .footerGlows {
    height: 37em;
  }
}
.footerGlows__l {
  position: absolute;
  left: 0;
  bottom: 7em;
  z-index: 0;
  aspect-ratio: 627/68;
  width: 34.84em;
  border-radius: 50%;
  background: #00AB52;
  mix-blend-mode: difference;
  filter: blur(4em);
  transition: opacity 5s ease-out;
  opacity: 0;
}
.footerGlows__l.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .footerGlows__l {
    display: none;
  }
}
.footerGlows__r {
  position: absolute;
  right: -12.67em;
  bottom: -2em;
  z-index: 0;
  aspect-ratio: 852/295;
  width: 47.34em;
  border-radius: 50%;
  background: linear-gradient(148deg, #00AB52, #218E59, #CEF4A2 64%);
  mix-blend-mode: difference;
  filter: blur(4em);
  transform: rotate(-8.8deg);
  transition: opacity 5s ease-out;
  opacity: 0;
}
.footerGlows__r.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .footerGlows__r {
    right: 3.125em;
    bottom: 13em;
    aspect-ratio: 399/173;
    width: 24.9em;
    transform: rotate(159deg);
  }
}

.loadbar {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 0.05em;
  font-size: 3em;
  background: #018305;
  animation: pulse 1s linear infinite;
  transition: width 0.25s;
}
@media (max-width: 540px) {
  .loadbar {
    font-size: 1em;
    height: 0.1em;
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

[data-gravity] {
  transition: transform 0.15s;
}

.crumbs {
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.3em;
}
@media (max-width: 1919px) {
  .crumbs {
    max-width: calc(100vw / (1920 / 1450));
  }
}
@media (max-width: 540px) {
  .crumbs {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}
@media (max-width: 540px) {
  .crumbs {
    margin-top: 4.5em;
  }
}
.crumbs__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375em;
  font-size: 0.89em;
}
.crumbs__items__item {
  text-decoration: none;
  color: #fff;
  line-height: 1.2em;
}
.crumbs__items__item[href] {
  color: rgba(255, 255, 255, 0.6);
}
.crumbs__items__item[href]:hover {
  color: #fff;
}
.crumbs__items__item:not(:first-child) {
  display: flex;
  align-items: center;
  gap: 0.375em;
}
.crumbs__items__item:not(:first-child)::before {
  content: "/";
  color: rgba(255, 255, 255, 0.6);
}

.news {
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3.34em;
  padding-bottom: 6.67em;
  display: flex;
  gap: 3.89em;
}
@media (max-width: 1919px) {
  .news {
    max-width: calc(100vw / (1920 / 1450));
  }
}
@media (max-width: 540px) {
  .news {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}
@media (max-width: 540px) {
  .news {
    padding-top: 2.2em;
  }
}
@media (max-width: 540px) {
  .news {
    gap: 2.5em;
  }
}
@media (max-width: 540px) {
  .news {
    flex-direction: column;
  }
}
.news__left {
  flex: 1 1 auto;
}
.news__right {
  flex: 0 0 auto;
  width: 32.73em;
}
@media (max-width: 540px) {
  .news__right {
    flex: 1 1 auto;
    width: 100%;
  }
}
.news .article__headerAndDate {
  border-left: 0.12em solid #fff;
  padding-left: 1.12em;
}
.news .article__header {
  font-size: 1.78em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 120%;
  margin: 0;
}
@media (max-width: 540px) {
  .news .article__header {
    font-size: 1.125em;
  }
}
.news .article__date {
  font-size: 0.78em;
  color: #C7C8C8;
  margin-top: 0.7em;
}
@media (max-width: 540px) {
  .news .article__date {
    font-size: 0.875em;
  }
}
.news .article__pic {
  position: relative;
  margin-top: 1.67em;
  aspect-ratio: 783/395;
}
@media (max-width: 540px) {
  .news .article__pic {
    margin-top: 1.5em;
  }
}
.news .article__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .article__pic::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -0.28em;
  bottom: -0.34em;
  aspect-ratio: 1;
  width: 5.56em;
  background: url(/wp-content/uploads/aboutProdCorner.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .news .article__pic::after {
    width: 2.625em;
    right: 0;
    bottom: 0;
  }
}
.news .article__content {
  margin-top: 1.5em;
}
.news .newslist {
  display: flex;
  flex-direction: column;
  gap: 2.23em;
}
@media (max-width: 540px) {
  .news .newslist {
    gap: 2.5em;
  }
}
.news .newslist__item {
  display: flex;
  gap: 1.34em;
}
@media (max-width: 540px) {
  .news .newslist__item {
    flex-direction: column;
  }
}
.news .newslist__item__pic {
  flex: 0 0 auto;
  width: 12.23em;
  height: auto;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 540px) {
  .news .newslist__item__pic {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 783/395;
  }
}
.news .newslist__item__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .newslist__item__text__headerAndDate {
  border-left: 0.12em solid #fff;
  padding-left: 1.12em;
}
.news .newslist__item__text__header {
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 130%;
  margin: 0;
}
.news .newslist__item__text__date {
  margin-top: 0.71em;
  font-size: 0.78em;
  color: #C7C8C8;
}
@media (max-width: 540px) {
  .news .newslist__item__text__date {
    font-size: 0.875em;
  }
}
.news .newslist__item__text__content {
  margin-top: 1.25em;
  font-size: 0.89em;
}
@media (max-width: 540px) {
  .news .newslist__item__text__content {
    font-size: 1em;
  }
}
.news .nav {
  margin-top: 2.78em;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 540px) {
  .news .nav {
    justify-content: flex-end;
  }
}
@media (max-width: 540px) {
  .news .nav__home {
    display: none;
  }
}
.news .nav__home a {
  font-size: 0.89em;
  display: flex;
  align-items: center;
  gap: 0.625em;
}
.news .nav__home a::before {
  content: "";
  display: block;
  width: 0.43em;
  height: auto;
  aspect-ratio: 6/11;
  background: url("/wp-content/uploads/buttonArrowGray.svg") no-repeat;
  background-size: 100%;
  transform: scaleX(-1);
}
.news .nav__btns {
  display: flex;
  gap: 3.89em;
}
@media (max-width: 540px) {
  .news .nav__btns {
    width: 100%;
    gap: 1.56em;
    justify-content: space-between;
  }
}
@media (max-width: 540px) {
  .news .nav__btns__next, .news .nav__btns__prev {
    flex: 1 1 auto;
  }
}
.news .nav__btns__next a, .news .nav__btns__prev a {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
  height: 2.85em;
  font-size: 0.78em;
  display: flex;
  align-items: center;
  gap: 0.36em;
}
@media (max-width: 540px) {
  .news .nav__btns__next a, .news .nav__btns__prev a {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.news .nav__btns__next a:hover, .news .nav__btns__prev a:hover {
  transform: scale(1.1);
}
@media (max-width: 540px) {
  .news .nav__btns__next a, .news .nav__btns__prev a {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
.news .nav__btns__next a::after {
  content: "";
  display: block;
  width: 0.43em;
  height: auto;
  aspect-ratio: 6/11;
  background: url("/wp-content/uploads/buttonArrow.svg") no-repeat;
  background-size: 100%;
}
.news .nav__btns__prev a::before {
  content: "";
  display: block;
  width: 0.43em;
  height: auto;
  aspect-ratio: 6/11;
  background: url("/wp-content/uploads/buttonArrow.svg") no-repeat;
  background-size: 100%;
  transform: scaleX(-1);
}
.news__loadMore {
  display: flex;
  justify-content: center;
  margin-top: 3.75em;
}
.news__loadMore__button {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
  display: flex;
  align-items: center;
  gap: 0.625em;
}
@media (max-width: 540px) {
  .news__loadMore__button {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.news__loadMore__button:hover {
  transform: scale(1.1);
}
.news__loadMore__button--hidden {
  opacity: 0;
  animation: disappear 1s;
}
.news__loadMore__button::after {
  content: "";
  display: block;
  width: 0.43em;
  height: auto;
  aspect-ratio: 6/11;
  background: url("/wp-content/uploads/buttonArrow.svg") no-repeat;
  background-size: 100%;
  transform: rotate(90deg);
}

.pageGlowA {
  position: absolute;
  z-index: -1;
  top: 23.84em;
  left: 4.89em;
  aspect-ratio: 585/323;
  width: 32.5em;
  transform: rotate(164.27deg);
  background: linear-gradient(82deg, #00AB52, #218E59, #CEF4A2);
  border-radius: 50%;
  filter: blur(4em);
  mix-blend-mode: difference;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.pageGlowA.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .pageGlowA {
    aspect-ratio: 314/173;
    width: 19.625em;
    top: 19em;
    left: -3em;
  }
}

.pageGlowB {
  position: absolute;
  z-index: -1;
  top: 21em;
  right: -23em;
  aspect-ratio: 617/369;
  width: 32.5em;
  transform: rotate(-83.3deg);
  background: #00AB52;
  border-radius: 50%;
  filter: blur(4em);
  mix-blend-mode: difference;
  transition: opacity 7s ease-out;
  opacity: 0;
}
.pageGlowB.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .pageGlowB {
    display: none;
  }
}

.topBanner {
  width: 100%;
  aspect-ratio: 1920/519;
  margin-top: 1.23em;
  pointer-events: none;
}
.topBanner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topBanner img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .topBanner img:nth-of-type(1) {
    display: none;
  }
  .topBanner img:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 540px) {
  .topBanner {
    aspect-ratio: 390/179;
  }
}

.about {
  position: relative;
  z-index: 10;
  background: #fff;
  color: #000;
  padding-top: 5.12em;
  padding-bottom: 7.23em;
}
@media (max-width: 540px) {
  .about {
    padding-top: 5em;
    padding-bottom: 2.06em;
  }
}
.about::before {
  content: "";
  position: absolute;
  top: -1.3em;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/45;
  transform: skewY(-1.3deg);
  background: #1E2223;
}
@media (max-width: 540px) {
  .about::before {
    aspect-ratio: 390/24;
    transform: skewY(-0.5deg);
    top: -0.2em;
  }
}
.about::after {
  content: "";
  position: absolute;
  top: -1.3em;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/45;
  transform: skewY(-1.3deg);
  background: #1E2223;
  top: calc(100% - 1.3em);
  background: #fff;
}
@media (max-width: 540px) {
  .about::after {
    aspect-ratio: 390/24;
    transform: skewY(-0.5deg);
    top: -0.2em;
  }
}
@media (max-width: 540px) {
  .about::after {
    top: calc(100% - 1.3em);
  }
}
.about__company {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1919px) {
  .about__company {
    max-width: calc(100vw / (1920 / 1200));
  }
}
@media (max-width: 540px) {
  .about__company {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}
.about__company::before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  right: -2.5em;
  background: url(/wp-content/uploads/aboutCornerRT.svg);
  background-size: 100%;
  aspect-ratio: 350/89;
  height: auto;
  width: 19.45em;
}
@media (max-width: 540px) {
  .about__company::before {
    width: 21.875em;
    left: 3.4375em;
    right: auto;
    top: -2.5em;
  }
}
.about__company::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  bottom: -3em;
  right: -3.5em;
  background: url(/wp-content/uploads/aboutCornerRB.svg);
  background-size: 100%;
  aspect-ratio: 244/285;
  height: auto;
  width: 13.56em;
}
@media (max-width: 540px) {
  .about__company::after {
    display: none;
  }
}
.about__company__header {
  position: relative;
  padding-bottom: 1.12em;
  padding-top: 1.5em;
}
@media (max-width: 540px) {
  .about__company__header {
    padding-top: 1.4375em;
    padding-bottom: 1.5em;
    padding-left: 0.625em;
  }
}
.about__company__header h1 {
  font-size: 1.78em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 120%;
  color: #09A956;
  margin: 0;
}
@media (max-width: 540px) {
  .about__company__header h1 {
    font-size: 1.125em;
  }
}
@media (max-width: 540px) {
  .about__company__header h1 {
    font-size: 2em;
  }
}
.about__company__header::before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: -0.56em;
  background: url(/wp-content/uploads/aboutHeaderUnderline.svg);
  background-size: 100%;
  aspect-ratio: 359/15;
  height: auto;
  width: 19.95em;
}
@media (max-width: 540px) {
  .about__company__header::before {
    background-image: url(/wp-content/uploads/aboutHeaderUnderline-mobile.svg);
    left: -0.2em;
    aspect-ratio: 358/15;
    width: 22.375em;
  }
}
.about__company__header::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: -3.56em;
  background: url(/wp-content/uploads/aboutHeaderOverline.svg);
  background-size: 100%;
  aspect-ratio: 330/533;
  height: auto;
  width: 18.34em;
}
@media (max-width: 540px) {
  .about__company__header::after {
    background-image: url(/wp-content/uploads/aboutHeaderOverline-mobile.svg);
    left: -1.35em;
    aspect-ratio: 296/61;
    width: 18.5em;
  }
}
@media (max-width: 540px) {
  .about__company__intro {
    margin-top: 2.5em;
  }
}
.about__company__intro__button {
  display: none;
}
@media (max-width: 540px) {
  .about__company__intro__button {
    margin-top: 1.5em;
    display: flex;
    justify-content: center;
  }
  .about__company__intro__button a {
    cursor: pointer;
    transition: transform 0.3s;
    color: #fff;
    background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.78em;
    line-height: 1em;
    font-weight: 500;
    letter-spacing: 0.025em;
    height: 2.6em;
    padding: 0 2.857em 0 2.857em;
    display: flex;
    align-items: center;
    gap: 0.625em;
  }
}
@media (max-width: 540px) and (max-width: 540px) {
  .about__company__intro__button a {
    font-size: 0.875em;
    font-weight: 400;
  }
}
@media (max-width: 540px) {
  .about__company__intro__button a:hover {
    transform: scale(1.1);
  }
  .about__company__intro__button a::after {
    content: "";
    display: block;
    width: 0.43em;
    height: auto;
    aspect-ratio: 6/11;
    background: url("/wp-content/uploads/buttonArrow.svg") no-repeat;
    background-size: 100%;
    transform: rotate(90deg);
  }
  .about__company__intro__button--alt a::after {
    transform: rotate(-90deg);
  }
}
@media (max-width: 540px) {
  .about__company__intro__part2 {
    display: none;
  }
  .about__company__intro__part2--on {
    display: block;
  }
}

.aboutRichBg {
  position: relative;
  padding-top: 9em;
  padding-bottom: 6.67em;
}
@media (max-width: 540px) {
  .aboutRichBg {
    padding-top: 4.625em;
    padding-bottom: 0;
  }
}
.aboutRichBg .aboutLightL1 {
  position: absolute;
  z-index: 3;
  aspect-ratio: 464/552;
  width: 25.78em;
  left: 0;
  top: 34.78em;
  pointer-events: none;
}
.aboutRichBg .aboutLightL1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLightL1 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLightL1 img:nth-of-type(1) {
    display: none;
  }
  .aboutRichBg .aboutLightL1 img:nth-of-type(2) {
    display: block;
  }
}
.aboutRichBg .aboutLightL1 img {
  opacity: 0;
}
.aboutRichBg .aboutLightL1 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLightL1 {
    aspect-ratio: 252/380;
    width: 15.75em;
    top: 27.5em;
  }
}
.aboutRichBg .aboutLightL2 {
  position: absolute;
  z-index: 3;
  aspect-ratio: 173/391;
  width: 9.62em;
  left: 0;
  top: 54em;
  pointer-events: none;
}
.aboutRichBg .aboutLightL2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLightL2 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLightL2 img:nth-of-type(1) {
    display: none;
  }
  .aboutRichBg .aboutLightL2 img:nth-of-type(2) {
    display: block;
  }
}
.aboutRichBg .aboutLightL2 img {
  opacity: 0;
}
.aboutRichBg .aboutLightL2 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLightL2 {
    aspect-ratio: 236/353;
    width: 14.75em;
    top: 70.25em;
  }
}
.aboutRichBg .aboutLightL3 {
  position: absolute;
  z-index: 3;
  aspect-ratio: 282/380;
  width: 15.67em;
  left: 0;
  top: 106.06em;
  pointer-events: none;
}
.aboutRichBg .aboutLightL3 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLightL3 img {
  opacity: 0;
}
.aboutRichBg .aboutLightL3 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLightL3 {
    display: none;
  }
}
.aboutRichBg .aboutLightR1 {
  position: absolute;
  z-index: 3;
  aspect-ratio: 347/441;
  width: 19.28em;
  right: 0;
  top: 3em;
  pointer-events: none;
}
.aboutRichBg .aboutLightR1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLightR1 img {
  opacity: 0;
}
.aboutRichBg .aboutLightR1 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLightR1 {
    display: none;
  }
}
.aboutRichBg .aboutLightR2 {
  position: absolute;
  z-index: 3;
  aspect-ratio: 546/380;
  width: 30.34em;
  right: 0;
  top: 46.56em;
  pointer-events: none;
}
.aboutRichBg .aboutLightR2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLightR2 img {
  opacity: 0;
}
.aboutRichBg .aboutLightR2 img.fx {
  opacity: inherit;
  animation: stroboAppear 1.5s ease-out;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLightR2 {
    display: none;
  }
}
.aboutRichBg .aboutLinesL1 {
  position: absolute;
  z-index: 1;
  aspect-ratio: 713/858;
  width: 39.62em;
  left: 0;
  top: 28em;
  pointer-events: none;
}
.aboutRichBg .aboutLinesL1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLinesL1 img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(-5em);
}
.aboutRichBg .aboutLinesL1 img.fx {
  opacity: 1;
  transform: none;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLinesL1 {
    display: none;
  }
}
.aboutRichBg .aboutLinesL2 {
  position: absolute;
  z-index: 1;
  aspect-ratio: 671/629;
  width: 37.28em;
  left: 0;
  bottom: -4.17em;
  pointer-events: none;
}
.aboutRichBg .aboutLinesL2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLinesL2 img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(-5em);
}
.aboutRichBg .aboutLinesL2 img.fx {
  opacity: 1;
  transform: none;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLinesL2 {
    display: none;
  }
}
.aboutRichBg .aboutLinesR1 {
  position: absolute;
  z-index: 1;
  aspect-ratio: 595/562;
  width: 33.06em;
  right: 0;
  top: 0.6em;
  pointer-events: none;
}
.aboutRichBg .aboutLinesR1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLinesR1 img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(5em);
}
.aboutRichBg .aboutLinesR1 img.fx {
  opacity: 1;
  transform: none;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLinesR1 {
    display: none;
  }
}
.aboutRichBg .aboutLinesR2 {
  position: absolute;
  z-index: 1;
  aspect-ratio: 701/546;
  width: 38.95em;
  right: 0;
  top: 47.78em;
  pointer-events: none;
}
.aboutRichBg .aboutLinesR2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutLinesR2 img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(5em);
}
.aboutRichBg .aboutLinesR2 img.fx {
  opacity: 1;
  transform: none;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutLinesR2 {
    display: none;
  }
}
.aboutRichBg .aboutDotsL1 {
  position: absolute;
  z-index: 2;
  aspect-ratio: 450/690;
  width: 25em;
  left: 0;
  top: 36.89em;
  pointer-events: none;
}
.aboutRichBg .aboutDotsL1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutDotsL1 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutDotsL1 img:nth-of-type(1) {
    display: none;
  }
  .aboutRichBg .aboutDotsL1 img:nth-of-type(2) {
    display: block;
  }
}
.aboutRichBg .aboutDotsL1 img {
  opacity: 0;
}
.aboutRichBg .aboutDotsL1 img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
@media (max-width: 540px) {
  .aboutRichBg .aboutDotsL1 {
    aspect-ratio: 372/160;
    width: 23.25em;
    top: 33.1875em;
  }
}
.aboutRichBg .aboutDotsL2 {
  position: absolute;
  z-index: 2;
  aspect-ratio: 748/588;
  width: 41.56em;
  left: 0;
  bottom: -7.84em;
  pointer-events: none;
}
.aboutRichBg .aboutDotsL2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutDotsL2 img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutDotsL2 img:nth-of-type(1) {
    display: none;
  }
  .aboutRichBg .aboutDotsL2 img:nth-of-type(2) {
    display: block;
  }
}
.aboutRichBg .aboutDotsL2 img {
  opacity: 0;
}
.aboutRichBg .aboutDotsL2 img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
@media (max-width: 540px) {
  .aboutRichBg .aboutDotsL2 {
    aspect-ratio: 352/160;
    width: 22em;
    bottom: auto;
    top: 78.8em;
  }
}
.aboutRichBg .aboutDotsR1 {
  position: absolute;
  z-index: 2;
  aspect-ratio: 720/555;
  width: 40em;
  right: 0;
  top: 0;
  pointer-events: none;
}
.aboutRichBg .aboutDotsR1 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutDotsR1 img {
  opacity: 0;
}
.aboutRichBg .aboutDotsR1 img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
@media (max-width: 540px) {
  .aboutRichBg .aboutDotsR1 {
    display: none;
  }
}
.aboutRichBg .aboutDotsR2 {
  position: absolute;
  z-index: 2;
  aspect-ratio: 714/661;
  width: 39.67em;
  right: 0;
  top: 46.06em;
  pointer-events: none;
}
.aboutRichBg .aboutDotsR2 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutRichBg .aboutDotsR2 img {
  opacity: 0;
}
.aboutRichBg .aboutDotsR2 img.fx {
  opacity: inherit;
  animation: appear 3s ease-out, floatingH 9s linear infinite;
  animation-delay: "0";
}
@media (max-width: 540px) {
  .aboutRichBg .aboutDotsR2 {
    display: none;
  }
}
.aboutRichBg .aboutGlow1 {
  aspect-ratio: 1492/138;
  width: 82.89em;
  background: #00AB52;
  mix-blend-mode: difference;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 12.78em;
  left: 11.95em;
  transform: rotate(-171.2deg);
  filter: blur(4em);
  pointer-events: none;
  transition: opacity 4s ease-out;
  opacity: 0;
}
.aboutRichBg .aboutGlow1.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutGlow1 {
    aspect-ratio: 213/482;
    width: 13.3125em;
    top: 3.6875em;
    left: 5.3125em;
    transform: none;
  }
}
.aboutRichBg .aboutGlow2 {
  aspect-ratio: 758/424;
  width: 42.12em;
  background: #00AB52;
  mix-blend-mode: difference;
  border-radius: 50%;
  position: absolute;
  z-index: 0;
  top: 41.34em;
  left: 5.28em;
  transform: rotate(-167.63deg);
  filter: blur(4em);
  pointer-events: none;
  transition: opacity 4s ease-out;
  opacity: 0;
}
.aboutRichBg .aboutGlow2.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutGlow2 {
    aspect-ratio: 122/316;
    width: 7em;
    transform: rotate(-93deg);
    left: -6em;
    top: 39.5em;
  }
}
.aboutRichBg .aboutGlow3 {
  aspect-ratio: 345/974;
  width: 19.17em;
  background: #00AB52;
  mix-blend-mode: difference;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 44.45em;
  right: -25em;
  transform: rotate(-93.49deg);
  filter: blur(4em);
  pointer-events: none;
  transition: opacity 4s ease-out;
  opacity: 0;
}
.aboutRichBg .aboutGlow3.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutGlow3 {
    aspect-ratio: 340/240;
    width: 21.25em;
    transform: rotate(-149deg);
    right: auto;
    left: 0;
    top: 74em;
  }
}
.aboutRichBg .aboutBigArrow {
  aspect-ratio: 264/246;
  width: 14.67em;
  position: absolute;
  z-index: 3;
  top: 57.2em;
  right: 4.23em;
  pointer-events: none;
  pointer-events: all;
}
.aboutRichBg .aboutBigArrow img {
  opacity: 0;
}
.aboutRichBg .aboutBigArrow img.fx {
  opacity: 1;
  animation: appear 1.5s ease-out, floatingV 5s linear infinite;
}
.aboutRichBg .aboutBigArrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .aboutRichBg .aboutBigArrow {
    display: none;
  }
}

.certs {
  position: relative;
  z-index: 10;
}
.certs .certsList {
  display: flex;
  justify-content: center;
  gap: 7.89em;
}
@media (max-width: 540px) {
  .certs .certsList {
    position: relative;
    display: block;
    padding-left: 3.1875em;
    padding-right: 1.6875em;
  }
}
.certs .certsList__item {
  display: block;
  position: relative;
  width: 17.34em;
  color: #fff;
  transition: transform 1s ease-out, opacity 1s ease-out;
  opacity: 0;
  transform: translateY(5em);
  cursor: pointer;
}
.certs .certsList__item.fx {
  opacity: 1;
  transform: none;
}
.certs .certsList__item:hover {
  transition: transform 0.5s;
  transform: scale(1.05);
}
@media (max-width: 540px) {
  .certs .certsList__item {
    width: 100%;
  }
}
.certs .certsList__item:not(:last-child) {
  margin-right: 1.056em;
}
@media (max-width: 540px) {
  .certs .certsList__item:not(:last-child) {
    margin-right: 0;
  }
  .certs .certsList__item:not(:last-child):not(.slick-slide) {
    margin-bottom: 7em;
  }
}
.certs .certsList__item__pic {
  position: relative;
  width: 100%;
  aspect-ratio: 312/434;
  pointer-events: none;
  pointer-events: all;
}
.certs .certsList__item__pic img {
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  opacity: 0;
  transform: translateY(2em);
}
.certs .certsList__item__pic img.fx {
  opacity: 1;
  transform: none;
}
.certs .certsList__item__pic img.fx.fxOut {
  opacity: 0;
  transform: translateY(2em);
}
.certs .certsList__item__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.certs .certsList__item__pic::after {
  content: "";
  display: block;
  position: absolute;
  left: 0.95em;
  top: 16.17em;
  z-index: 1;
  width: 2.89em;
  height: auto;
  aspect-ratio: 1;
  background: url(/wp-content/uploads/aboutCertCorner.svg);
  background-size: 100%;
  pointer-events: none;
}
@media (max-width: 540px) {
  .certs .certsList__item__pic::after {
    top: 18.1875em;
  }
}
.certs .certsList__item__title {
  padding-left: 0.95em;
  padding-bottom: 1em;
  font-weight: 600;
  margin-top: -1em;
}
@media (max-width: 540px) {
  .certs .certsList__item__title {
    font-size: 1.0625em;
    margin-top: -2.3em;
  }
}
.certs .certsList__item__stripe {
  position: absolute;
  z-index: 1;
  left: -0.06em;
  top: 16.17em;
  width: 0.12em;
  height: 9.23em;
  background: #fff;
}
@media (max-width: 540px) {
  .certs .certsList__item__stripe {
    height: 10.375em;
    top: 18.1875em;
  }
}
@media (max-width: 540px) {
  .certs .certsList .slick-dots {
    position: relative;
    bottom: auto;
    margin-top: 2.5em;
    width: 19.56em;
    display: flex;
    justify-content: center;
    gap: 1em;
  }
  .certs .certsList .slick-dots li {
    margin: 0;
    width: 0.5em;
    height: 0.5em;
  }
  .certs .certsList .slick-dots li button {
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .certs .certsList .slick-dots li button::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
  }
  .certs .certsList .slick-dots li.slick-active button::before {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.production {
  margin-top: 8.89em;
}
@media (max-width: 540px) {
  .production {
    margin-top: 8.3em;
  }
}
.production__box {
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
  display: flex;
  gap: 4.45em;
}
@media (max-width: 1919px) {
  .production__box {
    max-width: calc(100vw / (1920 / 1450));
  }
}
@media (max-width: 540px) {
  .production__box {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}
@media (max-width: 540px) {
  .production__box {
    flex-direction: column;
    gap: 2em;
  }
}
.production__box__left {
  flex: 0 0 auto;
  width: 39.56em;
}
@media (max-width: 540px) {
  .production__box__left {
    flex: 1 1 auto;
    width: 100%;
    position: relative;
    z-index: 2;
  }
}
.production__box__right {
  flex: 1 1 auto;
}
@media (max-width: 540px) {
  .production__box__right {
    order: -1;
  }
}
.production__box__underline {
  aspect-ratio: 870/53;
  width: 48.34em;
  position: absolute;
  z-index: 1;
  bottom: -3.95em;
  left: 0;
  pointer-events: none;
}
.production__box__underline img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.production__box__underline img:nth-of-type(2) {
  display: none;
}
@media (max-width: 540px) {
  .production__box__underline img:nth-of-type(1) {
    display: none;
  }
  .production__box__underline img:nth-of-type(2) {
    display: block;
  }
}
.production__box__underline img {
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  opacity: 0;
  transform: translateX(-5em);
}
.production__box__underline img.fx {
  opacity: 1;
  transform: none;
}
@media (max-width: 540px) {
  .production__box__underline {
    aspect-ratio: 390/103;
    width: 100%;
    bottom: -2.2em;
  }
}
.production__pic {
  position: relative;
  pointer-events: none;
}
.production__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.production__pic::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -0.28em;
  bottom: -0.34em;
  aspect-ratio: 1;
  width: 5.56em;
  background: url(/wp-content/uploads/aboutProdCorner.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .production__pic::after {
    width: 2.625em;
    right: 0;
    bottom: 0;
  }
}
.production__header {
  position: relative;
}
@media (max-width: 540px) {
  .production__header {
    padding-left: 1.3em;
  }
}
.production__header h2 {
  font-size: 1.78em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 120%;
  color: #09A956;
  margin: 0;
  color: #09A956;
  position: relative;
}
@media (max-width: 540px) {
  .production__header h2 {
    font-size: 2em;
  }
}
.production__header h2::after {
  content: "";
  position: absolute;
  left: -0.875em;
  top: -0.7em;
  padding: 0;
  z-index: 1;
  aspect-ratio: 326/88;
  width: auto;
  height: 2.75em;
  background: url(/wp-content/uploads/about_prodHeaderFrame.png);
  background-size: 100%;
}
@media (max-width: 540px) {
  .production__header h2::after {
    height: 2.9em;
  }
}
.production__header::before {
  content: "";
  position: absolute;
  left: -6.3em;
  top: -2.7em;
  background: url(/wp-content/uploads/about_headerLineT.png);
  background-size: 100%;
  aspect-ratio: 169/34;
  width: 9.39em;
}
@media (max-width: 540px) {
  .production__header::before {
    left: -5.3em;
    top: -3em;
  }
}
.production__text {
  margin-top: 2.23em;
}
@media (max-width: 540px) {
  .production__text {
    margin-top: 4.375em;
  }
}

.partnership {
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12em;
}
@media (max-width: 1919px) {
  .partnership {
    max-width: calc(100vw / (1920 / 1450));
  }
}
@media (max-width: 540px) {
  .partnership {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}
@media (max-width: 540px) {
  .partnership {
    padding-left: 0;
    padding-right: 0;
    margin-top: 3.8em;
  }
}
.partnership__board {
  position: relative;
  z-index: 10;
  background: #fff;
  color: #000;
  padding-top: 3.67em;
  padding-left: 6.84em;
  padding-right: 6.84em;
  padding-bottom: 5em;
  transform: translateY(20em);
}
@media (max-width: 540px) {
  .partnership__board {
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
    padding-bottom: 3.4375em;
    padding-top: 8.5em;
  }
}
.partnership__board.fx {
  transform: translateY(0);
  animation: boardAppear 0.75s ease-out;
}
@keyframes boardAppear {
  0% {
    transform: translateY(20em);
  }
  70% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(1em);
  }
  90% {
    transform: translateY(0);
  }
  95% {
    transform: translateY(0.2em);
  }
  100% {
    transform: translateY(0);
  }
}
.partnership__board::before {
  content: "";
  position: absolute;
  top: -4.67em;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1446/84;
  background: url(/wp-content/uploads/partnershipSkew.png);
  background-size: 100%;
}
@media (max-width: 540px) {
  .partnership__board::before {
    top: -1.4em;
  }
}
.partnership__board__box {
  position: relative;
  display: flex;
  gap: 4.45em;
}
@media (max-width: 540px) {
  .partnership__board__box {
    flex-direction: column;
    padding-bottom: 2.7em;
    gap: 3.75em;
  }
}
.partnership__board__box__left {
  flex: 1 1 auto;
}
.partnership__board__box__right {
  flex: 0 0 auto;
  width: 29.45em;
}
@media (max-width: 540px) {
  .partnership__board__box__right {
    flex: 1 1 auto;
    width: 100%;
  }
}
.partnership__board__box::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -1.89em;
  top: -2em;
  aspect-ratio: 31/278;
  width: 1.73em;
  background: url(/wp-content/uploads/partnershipLineL.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .partnership__board__box::before {
    transform: scaleX(-1);
    left: auto;
    right: -1.5em;
    top: -4.5em;
  }
}
.partnership__board__box::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -3.67em;
  bottom: -2.4em;
  aspect-ratio: 269/205;
  width: 14.95em;
  background: url(/wp-content/uploads/partnershipLineRB.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .partnership__board__box::after {
    right: -1.9em;
  }
}
.partnership__header {
  position: relative;
}
@media (max-width: 540px) {
  .partnership__header {
    padding-left: 1.6875em;
  }
}
.partnership__header h2 {
  font-size: 1.78em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 120%;
  color: #09A956;
  margin: 0;
}
@media (max-width: 540px) {
  .partnership__header h2 {
    font-size: 2em;
  }
}
@media (min-width: 541px) {
  .partnership__header h2 br {
    display: none;
  }
}
.partnership__header::before {
  content: "";
  position: absolute;
  left: 8.3em;
  top: -2.6em;
  z-index: 1;
  aspect-ratio: 199/20;
  width: 11.06em;
  background: url(/wp-content/uploads/partnershipLineT.svg) no-repeat;
  background-size: 100%;
}
@media (max-width: 540px) {
  .partnership__header::before {
    left: 5.3125em;
    top: -5.875em;
  }
}
.partnership__header__frame {
  display: block;
  position: absolute;
  z-index: 0;
  width: 23.5em;
  height: auto;
  top: -1.2em;
  left: -0.8em;
  aspect-ratio: 425/74;
  pointer-events: none;
  background: url(/wp-content/uploads/partnershipHeaderFrame.svg);
  background-size: 100%;
}
@media (max-width: 540px) {
  .partnership__header__frame {
    left: 0;
    top: -2em;
    width: 18em;
    aspect-ratio: 272/123;
    background-image: url(/wp-content/uploads/partnershipHeaderFrame-m.svg);
  }
}
.partnership__text {
  margin-top: 1.6em;
}
@media (max-width: 540px) {
  .partnership__text {
    margin-top: 2.4em;
  }
}
.partnership__formHeader h2 {
  font-size: 1.78em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 120%;
  color: #09A956;
  margin: 0;
  color: #000;
  margin: 0;
}
@media (max-width: 540px) {
  .partnership__formHeader h2 {
    font-size: 2em;
  }
}
@media (max-width: 540px) {
  .partnership__formHeader h2 {
    font-size: 1.25em;
  }
}
.partnership__formSubheader {
  font-size: 1.12em;
  font-weight: 600;
  margin-top: 0.5em;
}
@media (max-width: 540px) {
  .partnership__formSubheader {
    font-size: 0.875em;
    margin-top: 0.72em;
    font-weight: 500;
  }
}
.partnership__form.wpforms-container {
  margin: 2.23em 0 0 0;
}
@media (max-width: 540px) {
  .partnership__form.wpforms-container {
    margin-top: 1.25em;
  }
}
.partnership__form .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.12em;
}
@media (max-width: 540px) {
  .partnership__form .wpforms-field-container {
    flex-direction: column;
    gap: 0.625em;
  }
}
.partnership__form .wpforms-field-container .wpforms-field {
  padding: 0;
}
.partnership__form .wpforms-field-container .wpforms-field input[type=text], .partnership__form .wpforms-field-container .wpforms-field input[type=email] {
  max-width: 100%;
  font-size: 1em;
  border-radius: 0;
  padding: 0.92em 1.12em;
  border: 1px solid #9AA6AB;
  color: #000;
}
.partnership__form .wpforms-field-container .wpforms-field input[type=text]::placeholder, .partnership__form .wpforms-field-container .wpforms-field input[type=email]::placeholder {
  color: #9AA6AB;
}
.partnership__form .wpforms-field-container .wpforms-field textarea {
  max-width: 100%;
  font-size: 1em;
  border-radius: 0;
  padding: 0.92em 1.12em;
  border: 1px solid #9AA6AB;
  color: #000;
}
.partnership__form .wpforms-field-container .wpforms-field textarea::placeholder {
  color: #9AA6AB;
}
.partnership__form__field {
  flex: 1 1 auto;
  width: 100%;
}
.partnership__form__field--email, .partnership__form__field--phone {
  flex: 0 0 auto;
  width: 47%;
}
@media (max-width: 540px) {
  .partnership__form__field--email, .partnership__form__field--phone {
    flex: 1 1 auto;
    width: 100%;
  }
}
.partnership__form__field--agree fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.partnership__form__field--agree fieldset ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.partnership__form__field--agree fieldset ul li {
  display: flex;
  align-items: center;
  gap: 0.84em;
}
@media (max-width: 540px) {
  .partnership__form__field--agree fieldset ul li {
    gap: 0.6em;
  }
}
.partnership__form__field--agree fieldset ul input[type=checkbox] {
  margin: 0;
  width: 0.8em;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
}
@media (min-width: 1024px) {
  .partnership__form__field--agree fieldset ul input[type=checkbox] {
    width: 16px;
  }
}
@media (max-width: 540px) {
  .partnership__form__field--agree fieldset ul input[type=checkbox] {
    width: 1em;
  }
}
.partnership__form__field--agree fieldset ul label {
  font-size: 0.75em;
  line-height: 1.2em;
  color: #9AA6AB;
}
@media (max-width: 540px) {
  .partnership__form__field--agree fieldset ul label {
    font-size: 0.75em;
  }
}
.partnership__form__field--submit {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
  width: 11.07em;
  height: 2.86em;
  border: none;
  margin-top: 2.85em;
}
@media (max-width: 540px) {
  .partnership__form__field--submit {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.partnership__form__field--submit:hover {
  transform: scale(1.1);
}
@media (max-width: 540px) {
  .partnership__form__field--submit {
    margin-top: 1.25em;
  }
}

.isaLightbox__tint {
  background: #000;
  opacity: 0;
  transition: opacity 0.7s;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  pointer-events: none;
}
.isaLightbox__tint--on {
  opacity: 0.75;
  pointer-events: all;
}
.isaLightbox__zoomed {
  position: fixed;
  z-index: 1001;
  height: 90%;
  width: auto;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
@media (max-width: 540px) {
  .isaLightbox__zoomed {
    width: 90%;
    height: auto;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
}
.isaLightbox__zoomed--fx {
  opacity: 1;
  animation: zoomIn 1s ease-out;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.catalogTint {
  background: #000;
  opacity: 0;
  transition: opacity 0.7s;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  pointer-events: none;
}
.catalogTint--on {
  opacity: 0.75;
  pointer-events: all;
}

.catalog {
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.95em;
  padding-bottom: 5em;
  display: flex;
  gap: 1.39em;
  position: relative;
}
@media (max-width: 1919px) {
  .catalog {
    max-width: calc(100vw / (1920 / 1450));
  }
}
@media (max-width: 540px) {
  .catalog {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}
@media (max-width: 540px) {
  .catalog {
    display: block;
    padding-bottom: 5.6875em;
    margin-top: 2.65em;
  }
}
.catalog__left {
  flex: 0 0 auto;
  width: 19.23em;
}
@media (max-width: 540px) {
  .catalog__left {
    position: absolute;
    z-index: 1001;
    right: 0;
    top: -4.5em;
    width: 100%;
    padding: 0 1.375em;
    box-sizing: border-box;
  }
}
.catalog__right {
  flex: 1 1 auto;
}
.catalog__snf {
  position: fixed;
  width: 19.23em;
  z-index: 1;
}
.catalog__snf--static {
  position: static;
}
@media (max-width: 540px) {
  .catalog__snf {
    position: static;
    width: inherit;
  }
}
.catalog__search {
  display: flex;
  justify-content: flex-end;
  transition: opacity 0.5s;
}
.catalog__search--dim {
  opacity: 0.3;
  pointer-events: none;
}
.catalog__search__input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  background: #fff;
  height: 2.34em;
  width: 100%;
  margin: 0;
  padding: 0 1.12em;
  font-size: 1em;
}
@media (max-width: 540px) {
  .catalog__search__input {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 0;
    height: 2.625em;
    visibility: hidden;
    opacity: 0;
    position: relative;
    z-index: 6;
  }
  .catalog__search__input--mexp {
    visibility: visible;
    opacity: 1;
    width: calc(100% - 3.0625em);
    animation: expand 0.5s;
  }
  .catalog__search__input--mcol {
    visibility: hidden;
    opacity: 0;
    width: 0;
    animation: collapse 0.5s;
  }
  @keyframes expand {
    0% {
      visibility: hidden;
      opacity: 0;
      width: 0;
    }
    100% {
      visibility: visible;
      opacity: 1;
      width: calc(100% - 3.0625em);
    }
  }
  @keyframes collapse {
    0% {
      visibility: visible;
      opacity: 1;
      width: calc(100% - 3.0625em);
    }
    100% {
      visibility: hidden;
      opacity: 0;
      width: 0;
    }
  }
}
.catalog__search__button {
  flex: 0 0 auto;
  width: 2.73em;
  background: linear-gradient(to bottom, #00AB52, #059500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 540px) {
  .catalog__search__button {
    width: 3.0625em;
    aspect-ratio: 49/42;
  }
}
.catalog__search__button img {
  display: block;
  width: 0.78em;
  aspect-ratio: 1;
}
@media (max-width: 540px) {
  .catalog__search__button img {
    width: 0.875em;
  }
}
.catalog__search__button:hover img {
  transform: scale(1.15);
}
.catalog__filterIcon {
  display: none;
}
@media (max-width: 540px) {
  .catalog__filterIcon {
    display: block;
    width: 1.5em;
    aspect-ratio: 1;
    background: url(/wp-content/uploads/catalogFilterIcon.svg);
    background-size: 100%;
    position: absolute;
    z-index: 5;
    top: 0.5em;
    right: 5.7em;
  }
}
.catalog__filter {
  position: relative;
  margin-top: 2.23em;
}
@media (max-width: 540px) {
  .catalog__filter {
    position: absolute;
    margin-top: 0.625em;
    right: 5.5625em;
    width: calc(100% - 5.5625em - 1.375em);
  }
}
.catalog__filter__item {
  background: rgba(76, 79, 80, 0.1882352941);
}
@media (max-width: 540px) {
  .catalog__filter__item {
    display: none;
    background: #fff;
  }
  .catalog__filter__item:first-child {
    position: relative;
  }
  .catalog__filter__item:first-child::before {
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: -1.375em;
    width: 0;
    height: 0;
    border-right: 1.375em solid #fff;
    border-top: 1.375em solid transparent;
  }
}
.catalog__filter__item:not(:last-child) {
  border-bottom: 1px solid #8B8D8D;
}
@media (max-width: 540px) {
  .catalog__filter__item:not(:last-child) {
    border-bottom-color: #E8E8E8;
  }
}
.catalog__filter__item a {
  display: block;
  padding: 1.78em 2.14em;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.78em;
  font-weight: bold;
  line-height: 1em;
}
@media (max-width: 540px) {
  .catalog__filter__item a {
    color: #000;
    font-weight: 400;
    font-size: 0.875em;
    padding: 1.178em 2.1428em;
  }
}
.catalog__filter__item--on {
  background: linear-gradient(to bottom, #00AB52, #059500);
}
.catalog__filter__item--on, .catalog__filter__item--on:not(:last-child) {
  border: none;
}
.catalog__filter__item--on:first-child::before {
  border-right-color: #01AB50;
}
@media (max-width: 540px) {
  .catalog__filter__item--on a {
    color: #FFF;
    font-weight: 600;
  }
}
.catalog__filter--mex .catalog__filter__item {
  display: block;
  animation: appear 0.5s;
}
.catalog__prods {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.12em;
  row-gap: 2.23em;
}
@media (max-width: 540px) {
  .catalog__prods {
    column-gap: 0.5em;
    row-gap: 2.5em;
  }
}
.catalog__prods__empty {
  width: 100%;
  text-align: center;
  margin-top: 5em;
}
.catalog__prods__item {
  flex: 0 1 auto;
  width: 19.23em;
  display: flex;
  flex-direction: column;
}
@media (max-width: 540px) {
  .catalog__prods__item {
    width: calc(50% - 0.25em);
  }
}
.catalog__prods__item__pic {
  position: relative;
  aspect-ratio: 1;
}
.catalog__prods__item__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog__prods__item__pic::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -0.28em;
  bottom: -0.28em;
  background: url(/wp-content/uploads/prodCorner.svg);
  background-size: 100%;
  aspect-ratio: 1;
  width: 3.23em;
}
@media (max-width: 540px) {
  .catalog__prods__item__pic::after {
    width: 1.75em;
    right: 0;
    bottom: 0;
  }
}
.catalog__prods__item__name {
  position: relative;
  margin-top: 1em;
  font-size: 1.12em;
  line-height: 1.3em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75em;
}
@media (max-width: 540px) {
  .catalog__prods__item__name {
    font-size: 0.875em;
    font-weight: 500;
    margin-top: 0.714em;
  }
}
.catalog__prods__item__name::before {
  content: "";
  width: 0.26em;
  height: 3.1em;
  background: #fff;
}
@media (max-width: 540px) {
  .catalog__prods__item__name::before {
    width: 0.27em;
  }
}
.catalog__prods__item__btns {
  margin-top: 1.12em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 540px) {
  .catalog__prods__item__btns {
    flex-direction: column;
    margin-top: 0.625em;
  }
}
.catalog__prods__item__btns__descr {
  flex: 0 1 auto;
  font-size: 0.78em;
  display: flex;
  align-items: center;
  gap: 0.89em;
  border-bottom: 1px solid #059500;
  padding: 0 1.07em 0 0.82em;
  height: 2.857em;
  cursor: pointer;
}
@media (max-width: 540px) {
  .catalog__prods__item__btns__descr {
    order: 1;
    box-sizing: border-box;
    width: 100%;
    padding: 0;
    margin-top: 0.57em;
    justify-content: center;
    gap: 0.928em;
  }
}
.catalog__prods__item__btns__descr:hover {
  animation: borderStyle 0.75s infinite;
}
@keyframes borderStyle {
  0% {
    border-bottom-style: solid;
  }
  50% {
    border-bottom-style: dashed;
  }
  100% {
    border-bottom-style: solid;
  }
}
.catalog__prods__item__btns__descr::after {
  content: "";
  width: 0.428em;
  aspect-ratio: 6/4;
  background: url("/wp-content/uploads/dd2.svg");
  background-size: 100%;
  transform: scaleY(-1);
}
.catalog__prods__item__btns__descr--on::after {
  transform: none;
}
.catalog__prods__item__btns__buy {
  flex: 0 1 auto;
  width: 8.73em;
}
@media (max-width: 540px) {
  .catalog__prods__item__btns__buy {
    width: 100%;
  }
}
.catalog__prods__item__btns__buy a {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
  padding: 0;
  height: 2.857em;
}
@media (max-width: 540px) {
  .catalog__prods__item__btns__buy a {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.catalog__prods__item__btns__buy a:hover {
  transform: scale(1.1);
}
.catalog__prods__item__descr {
  margin-top: 1.12em;
  display: none;
  flex-direction: column;
  gap: 0.56em;
}
.catalog__prods__item__descr--on {
  display: flex;
}
.catalog__prods__item__descr__row {
  display: flex;
  align-items: center;
  gap: 1.78em;
  padding-top: 0.15em;
  padding-bottom: 0.15em;
  animation: appear 0.7s;
}
@media (max-width: 540px) {
  .catalog__prods__item__descr__row {
    flex-direction: column;
    gap: 0.3125em;
    padding-left: 0.3125em;
  }
}
.catalog__prods__item__descr__row:nth-of-type(even) {
  background: rgba(67, 71, 73, 0.45);
}
.catalog__prods__item__descr__row:nth-of-type(1) {
  animation-duration: 0.1s;
}
.catalog__prods__item__descr__row:nth-of-type(2) {
  animation-duration: 0.2s;
}
.catalog__prods__item__descr__row:nth-of-type(3) {
  animation-duration: 0.3s;
}
.catalog__prods__item__descr__row:nth-of-type(4) {
  animation-duration: 0.4s;
}
.catalog__prods__item__descr__row:nth-of-type(5) {
  animation-duration: 0.5s;
}
.catalog__prods__item__descr__row:nth-of-type(6) {
  animation-duration: 0.6s;
}
.catalog__prods__item__descr__row > div {
  flex: 1 1 auto;
  width: 50%;
  font-size: 0.78em;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 540px) {
  .catalog__prods__item__descr__row > div {
    width: 100%;
  }
}
.catalog__prods__item__descr__row__name {
  color: #ABABAB;
}
.catalog__paginator {
  margin-top: 1.75em;
  margin-left: -0.5em;
  display: flex;
  align-items: center;
  gap: 0.2em;
}
@media (max-width: 540px) {
  .catalog__paginator {
    justify-content: center;
    margin-top: 3.75em;
    gap: 0.75em;
  }
}
.catalog__paginator__item {
  flex: 0 0 auto;
  width: 1.714em;
  aspect-ratio: 1;
  font-size: 0.89em;
  font-weight: 500;
  transition: transform 0.3s;
}
.catalog__paginator__item:hover {
  transform: scale(1.4);
}
.catalog__paginator__item--on {
  font-size: 1.34em;
  width: 1em;
}
.catalog__paginator__item--on a {
  cursor: default;
}
.catalog__paginator__item--on:hover {
  transform: none;
}
.catalog__paginator__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
.catalog__paginator__item--prev a, .catalog__paginator__item--next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.catalog__paginator__item--prev a::after, .catalog__paginator__item--next a::after {
  content: "";
  background: url(/wp-content/uploads/paginatorArrow.svg);
  background-size: 100%;
  width: 0.428em;
  aspect-ratio: 6/10;
}
.catalog__paginator__item--next a {
  transform: scaleX(-1);
}

.catalogGlow1 {
  aspect-ratio: 776/432;
  width: 43.12em;
  background: linear-gradient(149deg, #00AB52, #218E59, #CEF4A2);
  mix-blend-mode: difference;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 11.4em;
  left: -14em;
  transform: rotate(42.02deg);
  filter: blur(4em);
  pointer-events: none;
  transition: opacity 4s ease-out;
  opacity: 0;
}
.catalogGlow1.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .catalogGlow1 {
    display: none;
  }
}

.catalogGlow2 {
  aspect-ratio: 617/369;
  width: 34.28em;
  background: #00AB52;
  mix-blend-mode: difference;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 21em;
  right: -24em;
  transform: rotate(-83.3deg);
  filter: blur(4em);
  pointer-events: none;
  transition: opacity 4s ease-out;
  opacity: 0;
}
.catalogGlow2.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .catalogGlow2 {
    display: none;
  }
}

.whereToBuy {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.89em;
  padding-bottom: 6.67em;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1919px) {
  .whereToBuy {
    max-width: calc(100vw / (1920 / 1460));
  }
}
@media (max-width: 540px) {
  .whereToBuy {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}
@media (max-width: 540px) {
  .whereToBuy {
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.375em;
    padding-top: 6.625em;
    padding-bottom: 5.625em;
  }
}
.whereToBuy__left {
  flex: 0 0 auto;
  width: 27.28em;
  position: relative;
}
@media (max-width: 540px) {
  .whereToBuy__left {
    width: 100%;
  }
}
.whereToBuy__left::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -2.23em;
  bottom: -2.28em;
  background: url(/wp-content/uploads/wtbLinesLB.svg);
  background-size: 100%;
  aspect-ratio: 99/162;
  width: 5.5em;
}
@media (max-width: 540px) {
  .whereToBuy__left::before {
    display: none;
  }
}
.whereToBuy__right {
  flex: 0 0 auto;
  width: 47.23em;
  position: relative;
}
@media (max-width: 540px) {
  .whereToBuy__right {
    width: 100%;
  }
}
.whereToBuy__right::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -3.12em;
  top: -2.78em;
  background: url(/wp-content/uploads/wtbLinesRT.svg);
  background-size: 100%;
  aspect-ratio: 37/307;
  width: 2.06em;
}
@media (max-width: 540px) {
  .whereToBuy__right::before {
    display: none;
  }
}
.whereToBuy__right::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -2.23em;
  bottom: -2.84em;
  background: url(/wp-content/uploads/wtbLinesRB.svg);
  background-size: 100%;
  aspect-ratio: 400/155;
  width: 22.23em;
}
@media (max-width: 540px) {
  .whereToBuy__right::after {
    display: none;
  }
}
.whereToBuy__tabs {
  display: flex;
  width: 100%;
  justify-content: stretch;
  font-size: 0.78em;
  font-weight: 600;
  line-height: 1em;
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .whereToBuy__tabs {
    font-size: 0.875em;
  }
}
.whereToBuy__tabs__item {
  flex: 1 1 auto;
  text-align: center;
  padding: 1em 0;
  cursor: pointer;
  margin-top: 0.1428em;
  margin-bottom: 0.1428em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 540px) {
  .whereToBuy__tabs__item {
    padding-top: 1.07em;
    padding-bottom: 1.07em;
  }
}
.whereToBuy__tabs__item--on {
  margin-top: 0;
  margin-bottom: 0;
}
.whereToBuy__tabs__item:nth-child(1) {
  background: linear-gradient(to bottom, #00AB52, #059500);
}
@media (max-width: 540px) {
  .whereToBuy__tabs__item:nth-child(1) {
    position: absolute;
    z-index: 1;
    left: 0;
    top: -4.714em;
    width: 5.357em;
    aspect-ratio: 75/47;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
}
.whereToBuy__tabs__item:nth-child(2) {
  background: linear-gradient(to bottom, #FFED48, #E8820C);
}
.whereToBuy__tabs__item:nth-child(3) {
  background: linear-gradient(to bottom, #FB7800, #D74D00);
}
.whereToBuy__tabs__item:nth-child(4) {
  background: linear-gradient(to bottom, #FB3C00, #AE3C0B);
}
.whereToBuy__filials {
  border: 0.12em solid #059500;
  height: 31.95em;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-bottom: 0.56em;
  scrollbar-width: thin;
  scrollbar-color: #7C7C7C #383838;
  display: flex;
  flex-direction: column;
  gap: 0.56em;
  margin-top: 0.89em;
  box-sizing: border-box;
}
@media (max-width: 540px) {
  .whereToBuy__filials {
    gap: 0.625em;
    height: 29.25em;
  }
}
@media (max-width: 540px) {
  .whereToBuy__filials {
    margin-top: 2em;
  }
}
.whereToBuy__filials::-webkit-scrollbar {
  width: 0.5em;
}
.whereToBuy__filials::-webkit-scrollbar-track {
  background: #383838;
}
.whereToBuy__filials::-webkit-scrollbar-thumb {
  background: #7C7C7C;
  border-radius: 0.362em;
}
.whereToBuy__filials__item {
  padding: 1.67em;
  background: #fff;
  color: #000;
  position: relative;
}
.whereToBuy__filials__item--off {
  display: none;
}
.whereToBuy__filials__item--on {
  background-color: #059500;
}
.whereToBuy__filials__item--on,
.whereToBuy__filials__item--on .whereToBuy__filials__item__name,
.whereToBuy__filials__item--on .whereToBuy__filials__item__phone a {
  color: #fff;
}
.whereToBuy__filials__item--on .whereToBuy__filials__item__maplink {
  display: none;
}
@media (max-width: 540px) {
  .whereToBuy__filials__item {
    padding: 1.25em 1.125em;
  }
}
.whereToBuy__filials__item::after {
  content: "";
  background: url(/wp-content/uploads/whereToBuy_corner.svg);
  background-size: 100%;
  width: 2.5em;
  aspect-ratio: 1;
  position: absolute;
  z-index: 1;
  right: -0.12em;
  bottom: -0.12em;
}
.whereToBuy__filials__item__name {
  font-size: 1.12em;
  color: #00AB52;
  font-weight: 600;
}
@media (max-width: 540px) {
  .whereToBuy__filials__item__name {
    font-size: 1.25em;
  }
}
.whereToBuy__filials__item__addr {
  font-weight: 500;
  margin-top: 0.56em;
}
@media (max-width: 540px) {
  .whereToBuy__filials__item__addr {
    font-weight: 400;
  }
}
.whereToBuy__filials__item__pam {
  margin-top: 0.56em;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 540px) {
  .whereToBuy__filials__item__pam {
    flex-direction: column;
    gap: 0.9375em;
    margin-top: 0.625em;
  }
}
.whereToBuy__filials__item__phone {
  font-size: 1.12em;
  font-weight: 600;
}
@media (max-width: 540px) {
  .whereToBuy__filials__item__phone {
    font-size: 1.25em;
  }
}
.whereToBuy__filials__item__phone a {
  display: block;
  color: #000;
  transition: transform 0.25s;
}
.whereToBuy__filials__item__phone a:hover {
  transform: scale(1.05);
}
.whereToBuy__filials__item__maplink {
  font-size: 0.89em;
  color: #00AB52;
  display: flex;
  align-items: center;
  gap: 0.3125em;
  cursor: pointer;
}
@media (max-width: 540px) {
  .whereToBuy__filials__item__maplink {
    font-size: 1em;
  }
}
.whereToBuy__filials__item__maplink::before {
  content: "";
  background: url(/wp-content/uploads/geoPointer-whiteCenter.svg) no-repeat;
  background-size: 100%;
  width: 0.5625em;
  aspect-ratio: 10/15;
}
.whereToBuy__filials--tab1 .whereToBuy__filials__item--on {
  background-color: #ea9200;
}
.whereToBuy__filials--tab1 .whereToBuy__filials__item::after {
  background-image: url(/wp-content/uploads/whereToBuy_corner1.svg);
}
.whereToBuy__filials--tab2 .whereToBuy__filials__item--on {
  background-color: #db5a00;
}
.whereToBuy__filials--tab2 .whereToBuy__filials__item::after {
  background-image: url(/wp-content/uploads/whereToBuy_corner2.svg);
}
.whereToBuy__filials--tab3 .whereToBuy__filials__item--on {
  background-color: #de4200;
}
.whereToBuy__filials--tab3 .whereToBuy__filials__item::after {
  background-image: url(/wp-content/uploads/whereToBuy_corner3.svg);
}
.whereToBuy__map {
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 850/631;
}
@media (max-width: 540px) {
  .whereToBuy__map {
    aspect-ratio: 1;
  }
}

.wtbGlow1 {
  aspect-ratio: 762/318;
  width: 42.34em;
  background: linear-gradient(130deg, #00AB52, rgba(5, 149, 0, 0.4) 40%, #CEF4A2);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: -5.5em;
  transform: rotate(14.14deg);
  filter: blur(4em);
  pointer-events: none;
  transition: opacity 4s ease-out;
  opacity: 0;
}
.wtbGlow1.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .wtbGlow1 {
    display: none;
  }
}

.wtbGlow2 {
  aspect-ratio: 617/369;
  width: 34.28em;
  background: #00AB52;
  mix-blend-mode: difference;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: -7em;
  right: -23.5em;
  transform: rotate(-83.3deg);
  filter: blur(4em);
  pointer-events: none;
  transition: opacity 4s ease-out;
  opacity: 0;
}
.wtbGlow2.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .wtbGlow2 {
    display: none;
  }
}

.forum {
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
  padding-bottom: 10em;
  position: relative;
  z-index: 10;
}
@media (max-width: 1919px) {
  .forum {
    max-width: calc(100vw / (1920 / 1450));
  }
}
@media (max-width: 540px) {
  .forum {
    max-width: none;
    padding-left: calc(100vw / (390 / 22));
    padding-right: calc(100vw / (390 / 22));
  }
}
@media (max-width: 540px) {
  .forum {
    flex-direction: column;
    gap: 2.5em;
    margin-top: 0.75em;
    padding-bottom: 5.625em;
  }
}
.forum__left {
  flex: 0 0 auto;
  width: 32.78em;
}
@media (max-width: 540px) {
  .forum__left {
    flex: 1 1 auto;
    width: 100%;
  }
}
.forum__right {
  flex: 0 0 auto;
  width: 40em;
}
@media (max-width: 540px) {
  .forum__right {
    flex: 1 1 auto;
    width: 100%;
  }
}
.forum__board {
  position: absolute;
  top: 0;
  left: 0;
  width: 32.78em;
  z-index: 10;
  background: #fff;
  color: #000;
  padding: 2.78em;
  transform: translateY(2.23em);
  box-sizing: border-box;
  transition: top 0.1s;
}
@media (max-width: 540px) {
  .forum__board {
    position: relative;
    width: 100%;
    padding: 2.5em 1.25em;
    transform: none;
    margin-top: 2em;
  }
}
.forum__board::before {
  content: "";
  position: absolute;
  top: -2.23em;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 592/41;
  background: url(/wp-content/uploads/forumSkew.png);
  background-size: 100%;
}
@media (max-width: 540px) {
  .forum__board::before {
    top: -1.48em;
  }
}
.forum__formHeader h2 {
  font-size: 1.78em;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 120%;
  color: #09A956;
  margin: 0;
  color: #000;
  margin: 0;
}
@media (max-width: 540px) {
  .forum__formHeader h2 {
    font-size: 2em;
  }
}
@media (max-width: 540px) {
  .forum__formHeader h2 {
    font-size: 1.25em;
  }
}
.forum__formSubheader {
  font-size: 1.12em;
  font-weight: 600;
  margin-top: 0.5em;
}
@media (max-width: 540px) {
  .forum__formSubheader {
    font-size: 0.875em;
    margin-top: 0.72em;
    font-weight: 500;
  }
}
.forum__form.wpforms-container {
  margin: 2.23em 0 0 0;
}
@media (max-width: 540px) {
  .forum__form.wpforms-container {
    margin-top: 1.25em;
  }
}
.forum__form .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.12em;
}
@media (max-width: 540px) {
  .forum__form .wpforms-field-container {
    flex-direction: column;
    gap: 0.625em;
  }
}
.forum__form .wpforms-field-container .wpforms-field {
  padding: 0;
}
.forum__form .wpforms-field-container .wpforms-field input[type=text], .forum__form .wpforms-field-container .wpforms-field input[type=email] {
  max-width: 100%;
  font-size: 1em;
  border-radius: 0;
  padding: 0.92em 1.12em;
  border: 1px solid #9AA6AB;
  color: #000;
}
.forum__form .wpforms-field-container .wpforms-field input[type=text]::placeholder, .forum__form .wpforms-field-container .wpforms-field input[type=email]::placeholder {
  color: #9AA6AB;
}
.forum__form .wpforms-field-container .wpforms-field textarea {
  max-width: 100%;
  font-size: 1em;
  border-radius: 0;
  padding: 0.92em 1.12em;
  border: 1px solid #9AA6AB;
  color: #000;
}
.forum__form .wpforms-field-container .wpforms-field textarea::placeholder {
  color: #9AA6AB;
}
.forum__form__field {
  flex: 1 1 auto;
  width: 100%;
}
.forum__form__field--email, .forum__form__field--phone {
  flex: 0 0 auto;
  width: 47%;
}
@media (max-width: 540px) {
  .forum__form__field--email, .forum__form__field--phone {
    flex: 1 1 auto;
    width: 100%;
  }
}
.forum__form__field--agree fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.forum__form__field--agree fieldset ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.forum__form__field--agree fieldset ul li {
  display: flex;
  align-items: center;
  gap: 0.84em;
}
@media (max-width: 540px) {
  .forum__form__field--agree fieldset ul li {
    gap: 0.6em;
  }
}
.forum__form__field--agree fieldset ul input[type=checkbox] {
  margin: 0;
  width: 0.8em;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
}
@media (min-width: 1024px) {
  .forum__form__field--agree fieldset ul input[type=checkbox] {
    width: 16px;
  }
}
@media (max-width: 540px) {
  .forum__form__field--agree fieldset ul input[type=checkbox] {
    width: 1em;
  }
}
.forum__form__field--agree fieldset ul label {
  font-size: 0.75em;
  line-height: 1.2em;
  color: #9AA6AB;
}
@media (max-width: 540px) {
  .forum__form__field--agree fieldset ul label {
    font-size: 0.75em;
  }
}
.forum__form__field--submit {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
  width: 11.07em;
  height: 2.86em;
  border: none;
  margin-top: 2.85em;
}
@media (max-width: 540px) {
  .forum__form__field--submit {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.forum__form__field--submit:hover {
  transform: scale(1.1);
}
@media (max-width: 540px) {
  .forum__form__field--submit {
    margin-top: 1.25em;
  }
}
.forum__form .wpforms-field-container .wpforms-field textarea {
  height: 9.06em;
}
.forum__qna {
  display: flex;
  flex-direction: column;
  gap: 1.73em;
}
.forum__qna__item__question {
  background: linear-gradient(to bottom, #00AB52, #059500);
  font-size: 1.12em;
  font-weight: 500;
  padding: 1em 1.5em;
  position: relative;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 540px) {
  .forum__qna__item__question {
    font-size: 1.25em;
    padding: 1em;
  }
}
.forum__qna__item__question::after {
  flex: 0 0 auto;
  content: "";
  background: url(/wp-content/uploads/qnaArrow.svg);
  background-size: 100%;
  aspect-ratio: 16/11;
  width: 0.8em;
  transform: scaleY(-1);
}
.forum__qna__item__question--on::after {
  transform: none;
}
.forum__qna__item__answer {
  display: none;
}
.forum__qna__item__answer--on {
  display: flex;
  flex-direction: column;
  position: relative;
}
.forum__qna__item__answer--on::after {
  content: "";
  width: 100%;
  aspect-ratio: 712/34;
  background: url(/wp-content/uploads/qnaSkew.svg);
  background-size: 100%;
  display: block;
  margin-top: -0.05em;
}
.forum__qna__item__answer__box {
  padding: 1.67em;
  background: #fff;
  color: #000;
}
.forum__qna__item__answer__box > p:first-child {
  margin-top: 0;
}
.forum__loadMore {
  display: flex;
  justify-content: center;
  margin-top: 3.75em;
}
.forum__loadMore__button {
  cursor: pointer;
  transition: transform 0.3s;
  color: #fff;
  background: linear-gradient(180deg, #00AB52 0%, #059500 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.78em;
  line-height: 1em;
  font-weight: 500;
  letter-spacing: 0.025em;
  height: 2.6em;
  padding: 0 2.857em 0 2.857em;
  display: flex;
  align-items: center;
  gap: 0.625em;
}
@media (max-width: 540px) {
  .forum__loadMore__button {
    font-size: 0.875em;
    font-weight: 400;
  }
}
.forum__loadMore__button:hover {
  transform: scale(1.1);
}
.forum__loadMore__button--hidden {
  opacity: 0;
  animation: disappear 1s;
}
.forum__loadMore__button::after {
  content: "";
  display: block;
  width: 0.43em;
  height: auto;
  aspect-ratio: 6/11;
  background: url("/wp-content/uploads/buttonArrow.svg") no-repeat;
  background-size: 100%;
  transform: rotate(90deg);
}

.forumGlow2 {
  aspect-ratio: 617/369;
  width: 34.28em;
  background: #00AB52;
  mix-blend-mode: difference;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  top: 11em;
  right: -23em;
  transform: rotate(-83.3deg);
  filter: blur(4em);
  pointer-events: none;
  transition: opacity 4s ease-out;
  opacity: 0;
}
.forumGlow2.fx {
  opacity: 1;
}
@media (max-width: 540px) {
  .forumGlow2 {
    aspect-ratio: 240/141;
    width: 15em;
    transform: rotate(26deg);
    right: -2em;
    top: 79em;
  }
}

.forumBg {
  position: absolute;
  z-index: -2;
  left: 0;
  top: 16em;
  width: 100%;
  height: auto;
  aspect-ratio: 1920/1287;
  pointer-events: none;
}
.forumBg img {
  transition: opacity 7s ease-out;
  opacity: 0;
}
.forumBg img.fx {
  opacity: 1;
}
.forumBg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 540px) {
  .forumBg {
    display: none;
  }
}

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