@media screen and (max-width: 1440px) {
  .foo {
    bar: 'below'; } }

@media screen and (max-width: 1439px) {
  .foo {
    bar: 'below -1'; } }

@media screen and (max-width: 1250px) {
  .foo {
    bar: 'below'; } }

@media screen and (max-width: 1249px) {
  .foo {
    bar: 'below -1'; } }

@media screen and (max-width: 1100px) {
  .foo {
    bar: 'below'; } }

@media screen and (max-width: 1099px) {
  .foo {
    bar: 'below -1'; } }

@media screen and (max-width: 990px) {
  .foo {
    bar: 'below'; } }

@media screen and (max-width: 989px) {
  .foo {
    bar: 'below -1'; } }

@media screen and (max-width: 768px) {
  .foo {
    bar: 'below'; } }

@media screen and (max-width: 767px) {
  .foo {
    bar: 'below -1'; } }

@media screen and (max-width: 600px) {
  .foo {
    bar: 'below'; } }

@media screen and (max-width: 599px) {
  .foo {
    bar: 'below -1'; } }

@media screen and (max-width: 480px) {
  .foo {
    bar: 'below'; } }

@media screen and (max-width: 479px) {
  .foo {
    bar: 'below -1'; } }

@media screen and (min-width: 479px) {
  .foo {
    bar: 'above -1'; } }

@media screen and (min-width: 480px) {
  .foo {
    bar: 'above'; } }

@media screen and (min-width: 599px) {
  .foo {
    bar: 'above -1'; } }

@media screen and (min-width: 600px) {
  .foo {
    bar: 'above'; } }

@media screen and (min-width: 767px) {
  .foo {
    bar: 'above -1'; } }

@media screen and (min-width: 768px) {
  .foo {
    bar: 'above'; } }

@media screen and (min-width: 989px) {
  .foo {
    bar: 'above -1'; } }

@media screen and (min-width: 990px) {
  .foo {
    bar: 'above'; } }

@media screen and (min-width: 1099px) {
  .foo {
    bar: 'above -1'; } }

@media screen and (min-width: 1100px) {
  .foo {
    bar: 'above'; } }

@media screen and (min-width: 1249px) {
  .foo {
    bar: 'above -1'; } }

@media screen and (min-width: 1250px) {
  .foo {
    bar: 'above'; } }

@media screen and (min-width: 1439px) {
  .foo {
    bar: 'above -1'; } }

@media screen and (min-width: 1440px) {
  .foo {
    bar: 'above'; } }

html {
  box-sizing: border-box;
  line-height: 1.15; }

html, body {
  height: 100%; }

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

:root {
  -moz-tab-size: 4;
  tab-size: 4; }

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
  font-size: 0.9375rem;
  line-height: 1.86667;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

hr {
  height: 0; }

abbr[title] {
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bolder; }

code,
kbd,
samp,
pre {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1em; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
select {
  text-transform: none; }

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: 0.35em 0.75em 0.625em; }

legend {
  padding: 0; }

progress {
  vertical-align: baseline; }

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto; }

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

summary {
  display: list-item; }

:root {
  --black: #000;
  --white: #fff;
  --grey: #434343;
  --grey-light: #d8d8d8;
  --grey-light-2: #f2f2f2;
  --grey-light-3: #918E8E;
  --blue: #006ab6;
  --green: #009464;
  --red: #c40404;
  --aqua-dark: #146c8e;
  --aqua: #1fabbe;
  --aqua-light: #5ec0c9;
  --olive: #e6efd5;
  --yellow: #fffbd5;
  --text-color: var(--grey);
  --table-border: #F5F9FC;
  --button-bg: var(--green);
  --button-txt: var(--white);
  --button-bg-hover: var(--blue);
  --button-txt-hover: var(--white);
  --button-bg-disabled: #d2d2d2;
  --button-txt-disabled: var(--white);
  --gradient-aqua-yellow: linear-gradient(180deg, var(--aqua) 5%, var(--yellow) 100%);
  --gradient-aqua-yellow-alt: linear-gradient(180deg, var(--aqua) 5%, #CAE9D7 100%);
  --gradient-yellow-aqua: linear-gradient(180deg, var(--yellow) 5%, var(--aqua) 100%);
  --gradient-aqua-light: linear-gradient(180deg, var(--aqua-light) 0%, var(--aqua) 100%);
  --gradient-aqua-transparent: linear-gradient(180deg, rgba(31, 171, 190, 0) 0%, var(--aqua) 100%);
  --gradient-aqua-light-rev: linear-gradient(180deg, var(--aqua) 0%, var(--aqua-light) 100%);
  --gradient-aqua-dark: linear-gradient(180deg, var(--aqua) 28%, var(--aqua-dark) 100%);
  --gradient-aqua-dark-rev: linear-gradient(180deg, var(--aqua-dark) 28%, var(--aqua) 100%);
  --gradient-black: linear-gradient(180deg, rgba(0,0,0,0) 50%, var(--black) 100%);
  --gradient-glass: linear-gradient(-90deg, rgba(255,255,255,0) 48%, rgba(240,240,240,.19) 100%);
  --gradient-glass-rev: linear-gradient(90deg, rgba(255,255,255,0) 48%, rgba(240,240,240,.19) 100%);
  --gradient-glass-bottom: linear-gradient(169deg, rgba(255,255,255,0) 48%, rgba(240,240,240,.19) 100%);
  --glass-box-shadow: 1px 1px 2px 0 rgba(255,255,255,.30);
  --site-padding: 1.25rem;
  --site-negative-margin: calc(var(--site-padding) * -1);
  --section-margin: 2.5rem;
  --accordion-panel-padding: 1.875rem 1.875rem;
  --accordion-button-padding: 0.69231em 1.15385em;
  --grid-gap: 2.5rem;
  --grid-negative-margin: calc((var(--grid-gap) / 2) * -1);
  --grid-column-margin: calc(var(--grid-gap) / 2);
  --grid-column-full: 100%;
  --grid-column-half: 50%;
  --grid-column-third: 33.333%;
  --grid-column-two-third: 66.666%;
  --header-top-height: 4.0625rem;
  --header-height: var(--header-top-height);
  --hp-section-height: min(100vh - var(--header-height), 900px);
  --hp-section-full-height: calc(100vh - var(--header-height));
  --logo-width: 15.625rem;
  --logo-height: 2.125rem;
  --menu-item-margin: 0.9375rem;
  --default-transition-duration: .2s;
  --default-transition-easing: ease-out;
  --menu-transition-duration: var(--default-transition-duration);
  --menu-transition-easing: var(--default-transition-easing);
  --default-transition: all var(--default-transition-duration) var(--default-transition-easing); }

@media screen and (min-width: 600px) {
  :root {
    --logo-width: 18.75rem;
    --logo-height: 3.125rem; } }

@media screen and (min-width: 768px) {
  :root {
    --site-padding: 1.875rem;
    --site-negative-margin: calc(var(--site-padding) * -1);
    --section-margin: 4.6875rem;
    --accordion-panel-padding: 2.5rem 4.375rem;
    --accordion-button-padding: 0.69231em 1.53846em; } }

@media screen and (min-width: 990px) {
  :root {
    --header-top-height: 4.875rem;
    --header-height: 7.75rem;
    --hp-section-height: min(100vh - var(--header-height), 900px);
    --hp-section-full-height: calc(100vh - var(--header-height)); } }

@media screen and (min-width: 1100px) {
  :root {
    --menu-item-margin: 1.875rem; } }

.center {
  text-align: center; }

figure {
  margin: 0;
  position: relative; }
  figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: auto; }

figcaption {
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.38462;
  margin-top: 1em;
  padding-left: 1em; }

@media screen and (min-width: 768px) {
  .images-block[data-columns="2"] figcaption,
  .text-grid__column figcaption {
    position: absolute; } }

nav ul {
  padding: 0;
  margin: 0;
  list-style: none; }

.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700; }

h1, .h1 {
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--blue); }
  @media screen and (min-width: 768px) {
    h1, .h1 {
      font-size: 5rem; } }

h2, .h2 {
  font-size: 1.875rem;
  line-height: 1.25;
  color: var(--green); }
  @media screen and (min-width: 768px) {
    h2, .h2 {
      font-size: 2.5rem; } }

h3, .h3 {
  font-size: 1.125rem;
  line-height: 1.30769;
  color: var(--blue); }
  @media screen and (min-width: 768px) {
    h3, .h3 {
      font-size: 1.625rem; } }

h4, .h4 {
  font-size: 1rem;
  line-height: 1.55556;
  color: var(--blue); }
  @media screen and (min-width: 768px) {
    h4, .h4 {
      font-size: 1.125rem; } }

h5, .h5,
h6, .h6 {
  font-size: 0.9375rem;
  line-height: 1.86667;
  color: var(--green); }

a {
  transition: color var(--default-transition-duration) var(--default-transition-easing);
  color: var(--green); }
  a:hover {
    color: var(--blue); }

.wysiwyg figure {
  max-width: 100%; }

.wysiwyg > * {
  margin: 0; }
  .wysiwyg > * + * {
    margin-top: 1.5em; }

.btn, .cn-button {
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: var(--button-bg);
  color: var(--button-txt);
  min-height: 3.125rem;
  min-width: 13.625rem;
  font-size: 0.875rem;
  letter-spacing: 0.10714em;
  line-height: 1.28571;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.71429em 1.78571em;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  border: none; }
  .btn, .cn-button, .btn::after, .cn-button::after {
    border-radius: 1.5625rem 0 1.5625rem 0; }
  .btn::after, .cn-button::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    background-color: var(--button-bg-hover);
    margin-left: auto;
    margin-left: auto;
    width: 0;
    transition: var(--default-transition); }
  .btn > span, .cn-button > span {
    position: relative;
    z-index: 1; }
  .btn:hover, .cn-button:hover {
    color: var(--button-txt-hover); }
    .btn:hover::after, .cn-button:hover::after {
      width: 100%; }
  button.btn, button.cn-button {
    cursor: pointer;
    appearance: none;
    border: none; }
  a.btn, a.cn-button {
    text-decoration: none; }

.btn--invert {
  --button-bg: var(--blue);
  --button-bg-hover: var(--green); }

.btn--white {
  --button-bg: var(--white);
  --button-txt: var(--green);
  --button-bg-hover: var(--green); }

.btn--olive {
  --button-bg: var(--olive);
  --button-txt: var(--text-color);
  --button-bg-hover: var(--green); }

.btn--small {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  min-height: 2.1875rem;
  min-width: 0;
  padding: 0.33333em 1.66667em; }

.btn[disabled], .cn-button[disabled], .btn.disabled, .disabled.cn-button,
.btn--white[disabled],
.btn--white.disabled,
.btn--invert[disabled],
.btn--invert.disabled {
  --button-bg: var(--button-bg-disabled);
  --button-txt: var(--button-txt-disabled);
  cursor: not-allowed; }
  .btn[disabled]::after, .cn-button[disabled]::after, .btn.disabled::after, .disabled.cn-button::after,
  .btn--white[disabled]::after,
  .btn--white.disabled::after,
  .btn--invert[disabled]::after,
  .btn--invert.disabled::after {
    display: none; }

.close {
  appearance: none;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: inline-flex;
  margin: 0;
  cursor: pointer; }

.checkbox {
  display: inline-block; }
  .checkbox__input {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0); }
  .checkbox__label {
    padding-left: 1.625rem;
    position: relative;
    cursor: pointer; }
    .checkbox__label::before {
      width: 1rem;
      height: 1rem;
      content: '';
      display: block;
      position: absolute;
      left: 0;
      bottom: 0;
      border: 1px solid var(--grey-light);
      background-color: var(--white);
      transition: var(--default-transition);
      margin-top: 0.3125rem; }
  .checkbox__input:checked + .checkbox__label::before {
    background-color: var(--green); }

.radio {
  display: inline-block; }
  .radio__input {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0); }
  .radio__label::before {
    content: ''; }

.icn-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: inherit;
  border: 1px solid;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; }
  .icn-circle svg {
    display: block; }
    .icn-circle svg,
    .icn-circle svg path {
      fill: currentColor; }
  .icn-circle--glass {
    border: none;
    background-image: var(--gradient-glass);
    box-shadow: var(--glass-box-shadow); }

@media screen and (min-width: 768px) {
  .icn-circle--lrg {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%; } }

.icn-menu {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  position: relative; }
  .icn-menu__inner {
    top: 0.875rem;
    transition: background-color 0s var(--menu-transition-easing) calc(var(--menu-transition-duration) * 2); }
    .icn-menu__inner, .icn-menu__inner::before, .icn-menu__inner::after {
      display: block;
      width: 100%;
      height: 3px;
      position: absolute;
      background-color: var(--white); }
    .icn-menu__inner::before, .icn-menu__inner::after {
      content: '';
      transition: top var(--menu-transition-duration) var(--menu-transition-easing) calc(var(--menu-transition-duration) * 2), width var(--menu-transition-duration) var(--menu-transition-easing), transform var(--menu-transition-duration) var(--menu-transition-easing) var(--menu-transition-duration); }
    .icn-menu__inner::before {
      top: -0.625rem; }
    .icn-menu__inner::after {
      top: 0.625rem;
      width: 50%; }

.nav-toggle:hover .icn-menu__inner::after {
  width: 100%; }

.nav-toggle[aria-expanded="true"] .icn-menu__inner {
  background-color: transparent;
  transition: background-color 0s var(--menu-transition-easing) var(--menu-transition-duration); }
  .nav-toggle[aria-expanded="true"] .icn-menu__inner::before, .nav-toggle[aria-expanded="true"] .icn-menu__inner::after {
    width: 100%;
    top: 0;
    transition: top var(--menu-transition-duration) var(--menu-transition-easing), width var(--menu-transition-duration) var(--menu-transition-easing), transform var(--menu-transition-duration) var(--menu-transition-easing) var(--menu-transition-duration); }
  .nav-toggle[aria-expanded="true"] .icn-menu__inner::before {
    transform: rotate(-45deg); }
  .nav-toggle[aria-expanded="true"] .icn-menu__inner::after {
    transform: rotate(45deg); }

.leaf {
  margin: 0;
  position: relative;
  width: 100%; }
  .leaf::before {
    display: block;
    padding-top: 68.06283%;
    width: 100%;
    content: ' '; }
  .leaf__inner {
    display: none; }
  .leaf img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    clip-path: url(#leaf-clippath); }

.leaf--bg .leaf__inner {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  clip-path: url(#leaf-clippath);
  background: var(--gradient-aqua-dark);
  overflow: hidden;
  transform: translateZ(1px); }

.leaf--olive .leaf__inner {
  background: var(--olive); }

.leaf--blue .leaf__inner {
  background: var(--aqua-dark); }

.leaf--light-gradient .leaf__inner {
  background: var(--gradient-aqua-yellow-alt); }

.contact-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  font-size: 1.125rem; }
  .contact-link .icn-circle {
    flex-shrink: 0; }
  .contact-link .icn-circle + span,
  .contact-link span + .icn-circle {
    margin-left: 0.4375rem; }
  .contact-link:hover {
    color: var(--green); }
  .contact-link--small {
    font-size: 0.8125rem;
    line-height: 1.23077; }

.back-link,
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.10714em;
  line-height: 2;
  text-transform: uppercase;
  font-weight: 700; }
  .back-link .icn-circle + span,
  .back-link span + .icn-circle,
  .read-more .icn-circle + span,
  .read-more span + .icn-circle {
    margin-left: 0.75rem; }
  .back-link:hover,
  .read-more:hover {
    color: var(--green); }

.mega-menu-post .read-more {
  font-size: 0.9375rem;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none; }

.back-link {
  color: var(--white); }
  .back-link:hover {
    color: var(--white); }

.logo {
  margin: 0;
  width: var(--logo-width);
  height: var(--logo-height);
  display: block;
  position: relative; }
  .logo__link {
    width: 100%;
    height: 100%;
    display: block;
    background-image: url("../img/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
    .logo__link span {
      position: absolute !important;
      overflow: hidden;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      border: 0;
      clip: rect(0 0 0 0); }

.clear-header .logo__link,
.mobile-header .logo__link {
  background-image: url("../img/logo-white.png"); }

.mobile-header .logo__link {
  background-position: center left; }

.menu-item a.has-icn {
  display: flex;
  align-items: center; }
  .menu-item a.has-icn.padding-left {
    padding-left: 0.625rem; }
  .menu-item a.has-icn span {
    margin-top: 0.25rem; }
  .menu-item a.has-icn img {
    display: block;
    margin: 0 0.5rem 0 0; }
    .menu-item a.has-icn img.livestock-icon {
      width: auto;
      height: 1.875rem; }
  .menu-item a.has-icn svg {
    display: block;
    margin: 0 0.5rem 0 0; }
    .menu-item a.has-icn svg, .menu-item a.has-icn svg path {
      fill: var(--blue); }

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  color: var(--white);
  position: absolute;
  right: var(--site-padding);
  top: 50%;
  margin-top: -1.25rem; }
  .nav-toggle__inner {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1; }

.scroll-down {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16667em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .scroll-down svg {
    display: block;
    margin-bottom: 0.625rem; }
    .scroll-down svg,
    .scroll-down svg path {
      fill: currentColor; }

.category-labels {
  margin: 0.625rem 0;
  margin-left: -0.3125rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.16667em; }
  .category-labels a {
    text-transform: uppercase;
    color: inherit;
    text-decoration: none;
    margin-left: 0.3125rem; }
    .category-labels a:hover {
      text-decoration: underline; }

.contact-details-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .contact-details-list__item + .contact-details-list__item {
    margin-top: 2.5rem; }

.contact-detail {
  display: flex; }
  .contact-detail svg {
    width: 1.9375rem; }
    .contact-detail svg, .contact-detail svg path {
      fill: var(--blue); }
  .contact-detail strong {
    display: block;
    color: var(--blue);
    font-size: 1.125rem; }
  .contact-detail__icon {
    width: 1.9375rem;
    margin-top: 0.5rem;
    margin-right: 0.9375rem;
    display: flex;
    justify-content: center; }
  .contact-detail__text {
    flex: 1; }

.contact-person {
  text-align: center; }
  .contact-person__visual {
    width: 13.125rem;
    margin: auto; }
  .contact-person__title {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem; }
  .contact-person__content p {
    margin: 0; }
  .contact-person__cta {
    margin-top: 1.25rem; }

@media screen and (min-width: 600px) {
  .contact-person {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 50rem;
    text-align: left; }
    .contact-person__content {
      padding-left: 2.5rem;
      flex: 1; }
      .contact-person__content p {
        margin: 0; }
    .contact-person__details {
      max-width: 16.875rem;
      width: 100%; } }

@media screen and (min-width: 768px) {
  .contact-person__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
  .contact-person__cta {
    margin-top: 0;
    margin-left: 1.25rem; }
  .contact-person__title {
    margin-top: 0;
    margin-bottom: 1.875rem; } }

.products-filters ul {
  list-style: none; }
  .products-filters ul li {
    position: relative; }

.products-filters .toggle-filter {
  position: absolute;
  right: 0; }

.filter-sections {
  padding: 0; }
  .filter-sections__item .toggle-filter {
    color: var(--blue); }
  .filter-sections__item + .filter-sections__item {
    margin-top: 1.25rem; }

.filters {
  border-top: 1px solid var(--grey-light-2);
  margin-top: 0.625rem;
  padding: 1.25rem 0; }
  .filters__item .toggle-filter {
    color: var(--green); }
  .filters__item label {
    line-height: 1; }
  .filters__item + .filters__item {
    margin-top: 0.3125rem; }

.filters-sub {
  padding: 0 0 0.625rem; }

.toggle-filter {
  width: auto;
  padding: 0;
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer; }

.toggle-filter[aria-expanded="false"] + ul {
  display: none; }

.input-field {
  width: 100%;
  margin-bottom: 1.5625rem; }
  .input-field select {
    display: block; }

.input-upload > label:not(.btn):not(.cn-button) {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16667em;
  text-transform: uppercase; }

.custom-upload {
  margin-top: 0.625rem; }
  .custom-upload label.btn, .custom-upload label.cn-button {
    cursor: pointer; }
  .custom-upload input[type="file"] {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0); }

@media screen and (min-width: 768px) {
  .fields-wrapper {
    display: flex;
    justify-content: space-between; }
  .input-field--half {
    width: calc(50% - 0.625rem); } }

.form-block .input-field:not(.input-upload) label {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0); }

.text-input,
.wpcf7-text,
.wpcf7-select,
textarea {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-size: 0.875rem;
  border: 1px solid var(--blue);
  width: 100%;
  height: 3.125rem;
  outline: none; }
  .text-input[aria-invalid="true"],
  .wpcf7-text[aria-invalid="true"],
  .wpcf7-select[aria-invalid="true"],
  textarea[aria-invalid="true"] {
    border-color: var(--red); }

textarea {
  padding: 1.25rem;
  height: 13.125rem; }

.form-block .text-input,
.form-block .wpcf7-text,
.form-block .wpcf7-select,
.form-block textarea {
  border-color: var(--white); }

.wpcf7-select {
  appearance: none;
  cursor: pointer; }

.wpcf7-form-control-wrap.contact-country, .wpcf7-form-control-wrap.contact-industry {
  position: relative; }
  .wpcf7-form-control-wrap.contact-country::after, .wpcf7-form-control-wrap.contact-industry::after {
    display: block;
    content: "";
    background: var(--blue);
    width: 0.5rem;
    height: 0.3125rem;
    position: absolute;
    top: calc(50% - 0.15625rem);
    right: 0.875rem;
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    pointer-events: none; }
  .wpcf7-form-control-wrap.contact-country::before, .wpcf7-form-control-wrap.contact-industry::before {
    display: block;
    content: "";
    background: var(--blue);
    width: 0.0625rem;
    height: 100%;
    position: absolute;
    top: 0;
    right: 2.25rem;
    pointer-events: none; }

.form-submit {
  margin-top: 1.25rem; }

.form-block .form-submit {
  text-align: center; }

.header-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .header-categories span {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    margin-right: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0.3125rem; }
    .header-categories span svg {
      flex-shrink: 0;
      margin-right: 0.3125rem; }
      .header-categories span svg, .header-categories span svg path {
        fill: currentColor; }
  .header-categories.has-location span:nth-last-child(2) {
    margin-right: 3.125rem; }

.page-header__title + .header-categories {
  margin-top: -0.625rem;
  margin-bottom: 1.5625rem; }

.wysiwyg ul,
.leaf-list {
  list-style: none;
  padding: 0; }
  .wysiwyg ul li,
  .leaf-list li {
    margin: 0.9375rem 0;
    padding-left: 2.375rem;
    position: relative; }
    .wysiwyg ul li::before,
    .leaf-list li::before {
      content: '';
      display: block;
      position: absolute;
      top: 0.46667em;
      left: 0;
      width: 1.3125rem;
      height: 0.875rem;
      background-image: url("../img/leaf.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }

.leaf-list--white li::before {
  background-image: url("../img/leaf-white.svg"); }

.no-posts-message {
  text-align: center;
  margin: 6.25rem 0;
  font-size: 1.125rem; }

.office {
  padding: 2.8125rem 2.1875rem;
  background-image: var(--gradient-glass-bottom);
  box-shadow: inset var(--glass-box-shadow); }
  .office__title {
    margin-top: 0;
    color: inherit; }

.plus-minus {
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
  margin-left: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center; }
  .plus-minus::before, .plus-minus::after {
    position: absolute;
    content: '';
    display: block;
    width: 3px;
    height: 12px;
    background-color: currentColor;
    transition: var(--default-transition); }
  .plus-minus::after {
    transform: rotate(90deg); }

[aria-expanded="true"] .plus-minus::before {
  height: 0; }

.post-meta {
  margin-top: var(--section-margin);
  margin-bottom: 10px;
  color: var(--green); }
  .post-meta + .section {
    margin-top: 0; }

.stat-number {
  font-size: 9.375rem;
  line-height: .8;
  color: var(--aqua);
  position: relative; }
  @supports (-webkit-background-clip: text) {
    .stat-number {
      background: var(--gradient-aqua-light);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; } }
  .stat-number__unit {
    font-size: 0.32em;
    font-weight: 700;
    margin-left: -.6em; }

@media screen and (min-width: 768px) {
  .stat-number {
    display: inline-block;
    font-size: 12.5rem;
    flex: 1; } }

@media screen and (min-width: 1100px) {
  .stat-number {
    font-size: 15.625rem; } }

.tag {
  font-size: 0.9375rem;
  color: var(--white);
  background-color: var(--green);
  padding: 0.33333em 1.33333em;
  line-height: 1.3;
  display: inline-flex;
  min-height: 2em;
  border-radius: 1em 0 1em 0;
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
  margin-right: 0.9375rem;
  text-decoration: none; }
  .tag:hover {
    color: var(--white); }
  .tag:last-child {
    margin-right: 0; }

.wpml-chevron, .header__lang .wpml-ls-legacy-dropdown li.wpml-ls-current-language:hover > a.wpml-ls-item-toggle::after,
.header__lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle::after, .wpml-custom::after {
  border: none;
  width: 0.375rem;
  height: 0.375rem;
  top: 50%;
  margin-top: -0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--blue);
  border-width: 0 0 1px 1px;
  transform: rotate(-45deg); }

.header__lang .wpml-ls-legacy-dropdown {
  width: auto;
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: left; }
  .header__lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle,
  .header__lang .wpml-ls-legacy-dropdown li.wpml-ls-current-language:hover > a,
  .header__lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu a {
    padding: 0.4375rem 0.4375rem;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--blue); }
  .header__lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu a {
    background-color: var(--white); }
  .header__lang .wpml-ls-legacy-dropdown li.wpml-ls-current-language:hover > a.wpml-ls-item-toggle,
  .header__lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
    padding-right: 1.5rem; }
  .header__lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
    border: none;
    padding-top: 0.1875rem;
    margin: 0; }
    .header__lang .wpml-ls-legacy-dropdown .wpml-ls-sub-menu a:hover {
      background-color: var(--blue);
      color: var(--white); }

.wpml-custom {
  position: relative; }
  .wpml-custom::after {
    z-index: 0;
    display: block;
    content: '';
    position: absolute;
    right: 0; }
  .wpml-custom-select {
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    background-color: transparent;
    border: none;
    appearance: none;
    color: var(--blue);
    outline: none; }

.clear-header .wpml-chevron, .clear-header .header__lang .wpml-ls-legacy-dropdown li.wpml-ls-current-language:hover > a.wpml-ls-item-toggle::after, .header__lang .wpml-ls-legacy-dropdown .clear-header li.wpml-ls-current-language:hover > a.wpml-ls-item-toggle::after,
.clear-header .header__lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle::after, .header__lang .wpml-ls-legacy-dropdown .clear-header a.wpml-ls-item-toggle::after, .clear-header .wpml-custom::after {
  border-color: var(--white); }

.clear-header .header__lang .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle, .clear-header .header__lang .wpml-ls-legacy-dropdown li.wpml-ls-current-language:hover > a {
  color: var(--white); }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.accordion-title {
  text-align: center; }

.accordion__section[data-expanded="true"] {
  background: var(--white);
  box-shadow: 0 0.125rem 0.1875rem 0 rgba(0, 0, 0, 0.1); }

.accordion__title {
  color: var(--green);
  margin: 1rem 0 0;
  text-align: left; }

.accordion__button {
  appearance: none;
  width: 100%;
  padding: var(--accordion-button-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  color: inherit;
  outline: none;
  cursor: pointer;
  border: none;
  text-align: left;
  background-color: var(--grey-light-2); }

.accordion__panel {
  padding: var(--accordion-panel-padding); }

.addtoany_list.a2a_kit_size_32 a,
.addtoany_list.a2a_kit_size_32 a.addtoany_share,
.addtoany_share {
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.16667em;
  color: inherit;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 1.25rem;
  display: flex;
  align-items: center; }
  .addtoany_list.a2a_kit_size_32 a::before,
  .addtoany_list.a2a_kit_size_32 a.addtoany_share::before,
  .addtoany_share::before {
    content: '';
    width: 1rem;
    height: 0.875rem;
    background-image: url("../img/share-white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 0.3125rem; }

.icn-circle .addtoany_shortcode {
  width: 100%;
  height: 100%;
  overflow: hidden; }

.icn-circle .addtoany_list.a2a_kit_size_32 a,
.icn-circle .addtoany_list.a2a_kit_size_32 a.addtoany_share,
.icn-circle .addtoany_share {
  display: block;
  width: 100%;
  height: 100%;
  margin-left: 0;
  padding: 0; }
  .icn-circle .addtoany_list.a2a_kit_size_32 a::before,
  .icn-circle .addtoany_list.a2a_kit_size_32 a.addtoany_share::before,
  .icn-circle .addtoany_share::before {
    display: block;
    width: 100% !important;
    height: 100% !important;
    margin: 0;
    background-size: 1rem 0.875rem; }
  .icn-circle .addtoany_list.a2a_kit_size_32 a .a2a_img_text,
  .icn-circle .addtoany_list.a2a_kit_size_32 a.addtoany_share .a2a_img_text,
  .icn-circle .addtoany_share .a2a_img_text {
    display: none; }

.archive-subheader {
  text-align: center;
  margin-bottom: 1.875rem; }
  .archive-subheader__title {
    margin: 0; }
  .archive-subheader__subtitle {
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.16667em;
    margin-top: 1em; }

@media screen and (min-width: 768px) {
  .archive-subheader {
    margin-bottom: 3.125rem; } }

.article-footer {
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  overflow: hidden;
  background-color: var(--aqua-dark); }
  .article-footer .wysiwyg a {
    color: inherit; }
  .article-footer .leaf-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute; }
    .article-footer .leaf-overlay .leaf {
      width: 121.875rem;
      top: 50%;
      left: 50%;
      transform: translate(-40%, -50%); }
  .article-footer__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    flex: 1; }
  .article-footer__title {
    color: inherit;
    margin: 0 0 .5em; }
  .article-footer__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0; }
    .article-footer__visual::before, .article-footer__visual::after {
      content: '';
      opacity: 0.3;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 2;
      background-image: var(--gradient-black); }
    .article-footer__visual::after {
      transform: scale(-1); }
    .article-footer__visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      position: relative;
      z-index: 0;
      opacity: .32; }
  .article-footer__column + .article-footer__column {
    margin-top: 1.25rem; }
  .article-footer__bottom {
    position: relative;
    z-index: 1;
    margin-top: 2.5rem;
    margin-bottom: -1.25rem;
    display: flex;
    align-items: center; }

@media screen and (min-width: 768px) {
  .article-footer .leaf-overlay .leaf {
    top: 50%;
    left: calc(50% - 9.375rem);
    transform: translateY(-50%);
    bottom: auto; }
  .article-footer__inner {
    display: flex;
    flex: 1; }
  .article-footer__column {
    width: 50%; }
    .article-footer__column__inner {
      max-width: 21.25rem; }
  .article-footer__column + .article-footer__column {
    margin-top: 0;
    padding-left: 1.25rem; }
  .article-footer__bottom {
    margin-top: 3.75rem; } }

@media screen and (min-width: 1100px) {
  .article-footer__column + .article-footer__column {
    padding-left: 5.625rem; }
  .article-footer__bottom {
    margin-top: 5rem; } }

@media screen and (min-width: 768px) {
  .text-block[data-columns="2"] .wysiwyg {
    columns: 2;
    column-gap: var(--grid-gap); } }

blockquote {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.5;
  color: var(--blue); }
  blockquote p::before {
    content: open-quote; }
  blockquote p::after {
    content: close-quote; }

cite {
  font-size: 0.9375rem;
  line-height: 1.55556;
  font-weight: 700;
  font-style: normal;
  margin-top: 1.38889em;
  display: block; }

.blockquote {
  text-align: center;
  max-width: 44.375rem;
  margin: 0 auto;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 0 1.89286em; }
  .blockquote p {
    color: var(--blue); }
  .blockquote p::before,
  .blockquote p::after,
  .blockquote cite {
    color: var(--green); }
  .blockquote p::before,
  .blockquote p::after {
    position: absolute;
    font-size: 2.85714em;
    line-height: 1;
    font-weight: 700; }
  .blockquote p::before {
    left: 0; }
  .blockquote p::after {
    right: 0; }

@media screen and (min-width: 480px) {
  .blockquote {
    font-size: 1.375rem; } }

@media screen and (min-width: 768px) {
  .blockquote {
    font-size: 1.75rem; }
    .blockquote cite {
      font-size: 1.125rem; } }

.case-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(10px);
  overflow: hidden;
  background-color: rgba(20, 108, 142, 0.4);
  z-index: -1;
  opacity: 0;
  transition: all var(--default-transition-duration) var(--default-transition-easing) var(--default-transition-duration); }
  .case-popup__inner {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(100%);
    transition: transform var(--default-transition-duration) var(--default-transition-easing); }
  .case-popup__article {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    overflow-y: auto;
    max-width: calc(100% - 90px); }
    .case-popup__article__tools {
      color: var(--white);
      width: 3.125rem;
      margin-left: -1.25rem;
      margin-top: 2.5rem;
      position: fixed;
      transform: translateX(-100%); }
      .case-popup__article__tools > * + * {
        margin-top: 1.25rem; }
      .case-popup__article__tools a,
      .case-popup__article__tools button {
        color: inherit; }

body.show-case-popup {
  overflow: hidden;
  padding-right: 0.9375rem; }
  body.show-case-popup .case-popup {
    z-index: 99999;
    opacity: 1;
    transition-delay: 0; }
    body.show-case-popup .case-popup__inner {
      transform: translateX(0);
      transition-delay: var(--default-transition-duration); }

.case-popup__article {
  margin: auto; }
  .case-popup__article h2 {
    margin-bottom: 0; }
  .case-popup__article .category-labels {
    margin-bottom: 1.25rem; }
  .case-popup__article .article-footer,
  .case-popup__article .used-products {
    margin-left: var(--site-negative-margin);
    margin-right: var(--site-negative-margin);
    padding-left: var(--site-padding);
    padding-right: var(--site-padding); }
  .case-popup__article .case-subject-intro__inner.constrict, .case-popup__article .case-subject-intro__inner.case-subject-intro, .case-popup__article .case-subject-intro__inner.constrict-xs, .case-popup__article .case-subject-intro__inner.constrict-sm, .case-popup__article .case-subject-intro__inner.constrict-md, .case-popup__article .case-subject-intro__inner.constrict-lrg {
    padding-left: 0;
    padding-right: 0; }
  .case-popup__article .case-subject-intro__grid {
    max-width: 100%; }

.case-popup__intro {
  margin-bottom: 2.5rem; }
  .case-popup__intro .wysiwyg {
    font-weight: 500; }

.case-subject-intro__inner {
  border-bottom: 1px solid var(--grey-light);
  padding-bottom: 2.5rem; }

.case-subject-intro__grid {
  display: grid;
  grid-gap: calc(var(--grid-gap) / 2);
  grid-template-columns: 3.125rem 1fr;
  margin: auto;
  max-width: 50.8125rem; }

.case-subject-intro__visual {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  overflow: hidden;
  grid-row: 1;
  grid-column: 1; }
  .case-subject-intro__visual img {
    height: 100%;
    object-fit: cover;
    object-position: center; }

.case-subject-intro .wysiwyg {
  grid-row: 2;
  grid-column: 1 / 3; }
  .case-subject-intro .wysiwyg p {
    margin-bottom: 0; }

.case-subject-intro__title {
  margin: 0;
  color: var(--blue);
  grid-row: 1;
  grid-column: 2;
  display: grid;
  align-content: center; }

@media screen and (min-width: 600px) {
  .case-subject-intro__grid {
    grid-template-columns: 1fr 6.25rem;
    grid-row-gap: 0; }
  .case-subject-intro__visual {
    width: 6.25rem;
    height: 6.25rem; }
  .case-subject-intro__title {
    grid-row: 1;
    grid-column: 1; }
  .case-subject-intro .wysiwyg {
    grid-row: 2;
    grid-column: 1; }
  .case-subject-intro__visual {
    grid-row: 1 / 3;
    grid-column: 2; } }

.category-nav {
  margin-bottom: 3.125rem; }
  .category-nav__list-item {
    margin-right: 1.875rem;
    display: inline-block; }
    .category-nav__list-item:last-child {
      margin-right: 0; }
    .category-nav__list-item a {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--blue);
      transition: 200ms;
      text-decoration: none;
      text-transform: uppercase; }
    .category-nav__list-item a:hover,
    .category-nav__list-item.is-active a {
      color: var(--green); }

.category-nav--sub {
  margin-top: -2.5rem; }
  .category-nav--sub .category-nav__list-item a {
    font-size: 0.9375rem; }

.contact-person-block {
  background-color: var(--grey-light-2);
  padding: 1.875rem 0; }

@media screen and (min-width: 768px) {
  .contact-person-block {
    padding: 2.8125rem 0; } }

.contact__grid {
  display: grid;
  grid-gap: 1.25rem; }

.contact__form {
  max-width: 50.75rem; }

.contact__aside {
  margin-top: 1.25rem; }

@media screen and (min-width: 768px) {
  .contact__grid {
    grid-template-columns: auto minmax(18.125rem, 25%); }
  .contact .wpcf7 .contact-form p {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem; }
    .contact .wpcf7 .contact-form p .message, .contact .wpcf7 .contact-form p .consent {
      grid-column: span 2; }
    .contact .wpcf7 .contact-form p .btn, .contact .wpcf7 .contact-form p .cn-button {
      width: fit-content; } }

.cta-block__inner {
  overflow: hidden;
  position: relative; }

.cta-block__content {
  position: relative;
  z-index: 2;
  padding: 3.75rem 1.25rem; }

.cta-block__content__inner {
  width: 80%;
  color: var(--white); }

.cta-block .btn, .cta-block .cn-button {
  margin-top: 1.25rem; }

.cta-block__title {
  color: inherit;
  margin: 0 0 1.25rem; }

.cta-block__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-70%, -50%, 0);
  z-index: 1;
  width: 76.25rem;
  opacity: .8; }

@media screen and (min-width: 1100px) {
  .full-width .cta-block__bg {
    width: 100%;
    left: auto;
    right: 30%; } }

.cta-block__visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0; }
  .cta-block__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

@media screen and (min-width: 768px) {
  .cta-block__bg {
    top: auto;
    transform: none;
    bottom: -25%;
    left: 50%;
    margin-left: -61.25rem;
    opacity: .8; }
  .cta-block__content {
    display: flex;
    align-items: center;
    min-height: 29.375rem;
    padding: 3.125rem; }
  .cta-block__content__inner {
    width: 50%; } }

.error-page {
  padding-top: clamp(3.125rem, 8.68056vw, 7.8125rem); }
  .error-page__title {
    max-width: 26.875rem;
    margin: 3.125rem auto 0;
    text-align: center; }

.featured-post {
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 3.75rem; }
  .featured-post .scroll-down {
    display: none; }
  .clear-header .featured-post {
    padding-top: var(--header-height);
    margin-top: calc(var(--header-height) * -1); }
  .featured-post__inner {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    height: 100%;
    flex: 1; }
  .featured-post__title {
    color: inherit;
    margin: 0; }
  .featured-post__intro {
    padding: 5rem 0 1.875rem; }
  .featured-post__intro__bg {
    width: 66.875rem;
    position: absolute;
    top: -3.125rem;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    z-index: 0;
    opacity: .8; }
  .featured-post__intro__inner {
    position: relative;
    z-index: 1; }
  .featured-post__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0; }
    .featured-post__visual::before, .featured-post__visual::after {
      content: '';
      opacity: 0.27;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
      background-image: var(--gradient-black); }
    .featured-post__visual::after {
      transform: scale(-1); }
    .featured-post__visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      position: relative;
      z-index: 0; }

@media screen and (min-width: 480px) {
  .featured-post__intro {
    max-width: 25rem; } }

@media screen and (min-width: 768px) {
  .featured-post {
    min-height: 36.5625rem; }
    .featured-post .scroll-down {
      display: flex;
      position: absolute;
      bottom: 1.875rem;
      left: 50%;
      transform: translate3d(-50%, 0, 0); }
    .featured-post__inner {
      align-items: center; }
    .featured-post__intro {
      padding: 0; }
    .featured-post__intro__bg {
      top: calc((var(--header-height) - 13px) * -1);
      right: -23.75rem;
      left: unset;
      transform: unset; } }

.footer {
  padding-top: 8.75rem;
  padding-bottom: 1.25rem;
  overflow: hidden;
  position: relative; }
  .footer__bg {
    position: absolute;
    z-index: 0;
    top: -8.75rem;
    width: 146.5625rem;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    z-index: -1; }
  .footer__keep-reading {
    margin-bottom: auto;
    min-height: 15.625rem; }
  .footer__legal, .footer__inner {
    color: var(--white); }
  .footer__inner > div {
    margin-bottom: 1.875rem; }
  .footer p, .footer ul {
    line-height: 2.53333; }
  .footer ul {
    list-style: none;
    padding: 0; }
  .footer .menu-item a {
    color: inherit;
    text-decoration: none; }
    .footer .menu-item a:hover {
      text-decoration: underline; }
  .footer__legal {
    font-size: 0.8125rem;
    line-height: 2.15385; }
  .footer__title {
    color: inherit;
    margin: 0 0 0.3125rem; }

.footer--has-post-block {
  padding-top: 3.75rem; }
  .footer--has-post-block .footer__bg {
    top: 0; }

@media screen and (min-width: 600px) {
  .footer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }
    .footer__inner {
      display: flex;
      flex-wrap: wrap; }
      .footer__inner > div {
        flex: 1 0 18.75rem;
        max-width: 100%; } }

@media screen and (min-width: 768px) {
  .footer {
    min-height: 31.25rem; }
    .footer__bg {
      top: -6.25rem;
      left: calc(50% - 100px); }
    .footer__inner {
      justify-content: flex-end; }
      .footer__inner > div {
        flex-grow: 0;
        max-width: 33.333%;
        margin-bottom: 0; }
  .footer--has-post-block {
    min-height: 37.5rem; }
    .footer--has-post-block .footer__bg {
      top: 0; } }

@media screen and (min-width: 1100px) {
  .footer {
    min-height: 37.5rem;
    padding-top: 3.75rem; }
    .footer__bg {
      top: 0;
      left: 50%; } }

.form-wrapper {
  background-image: var(--gradient-aqua-dark);
  padding: var(--site-padding);
  color: var(--white); }
  .form-wrapper__inner {
    width: 100%;
    max-width: 50.75rem;
    margin: auto; }
  .form-wrapper__title, .form-wrapper__text {
    text-align: center;
    margin: 0 0 1.25rem;
    color: inherit; }
  .form-wrapper__form {
    margin-top: 2.5rem; }

@media screen and (min-width: 768px) {
  .form-wrapper {
    padding: 3.125rem; } }

.thumbs-slider .slick-track,
.gallery-slider .slick-track {
  display: flex !important; }

.thumbs-slider .slick-slide,
.thumbs-slider .slick-slide > div,
.gallery-slider .slick-slide,
.gallery-slider .slick-slide > div {
  display: flex;
  width: 100%;
  height: inherit !important;
  justify-content: center;
  align-items: center; }

.thumbs-slider img,
.gallery-slider img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: auto; }

.thumbs-slider:not(.slick-initialized) .slide:not(:first-child),
.gallery-slider:not(.slick-initialized) .slide:not(:first-child) {
  display: none; }

.thumbs-slider {
  margin-top: 1.25rem; }
  .thumbs-slider:not(.slick-initialized) {
    visibility: hidden; }
  .thumbs-slider .slick-slide {
    margin: 0.3125rem; }
    .thumbs-slider .slick-slide.slick-current {
      outline: 2px solid var(--grey-light); }

.slick-dots {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  text-align: center; }
  .slick-dots li {
    margin: 0;
    display: inline-block; }
    .slick-dots li > button {
      width: 1.875rem;
      height: 1.875rem;
      overflow: hidden;
      background-color: transparent;
      appearance: none;
      border: none;
      position: relative;
      cursor: pointer; }
      .slick-dots li > button::before {
        content: '';
        width: 100%;
        height: 100%;
        display: block; }
      .slick-dots li > button::after {
        content: '';
        width: 0.625rem;
        height: 0.625rem;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -0.3125rem;
        margin-left: -0.3125rem;
        background-color: var(--grey-light);
        transition: var(--default-transition); }
  .slick-dots li:hover > button::after {
    background-color: var(--grey-light-2); }
  .slick-dots li.slick-active > button::after {
    background-color: var(--blue); }

@media screen and (min-width: 768px) {
  .thumbs-slider img,
  .gallery-slider img {
    width: auto; } }

.gallery__thumbs {
  display: none; }

@media screen and (min-width: 768px) {
  .gallery__thumbs {
    display: block; } }

.header {
  display: none; }

@media screen and (min-width: 990px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: 500;
    background-color: var(--white);
    transition: background var(--default-transition-duration) var(--default-transition-easing); }
    .admin-bar .header {
      top: 32px; }
    .home .header {
      position: fixed; }
    .clear-header .header {
      background-color: transparent; }
    .header__top {
      height: var(--header-top-height);
      position: relative;
      z-index: 1;
      background-color: var(--white); }
      .clear-header .header__top {
        background-color: transparent; }
      .header__top__inner {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        height: 100%; }
    .header__right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: calc(50% - (var(--logo-width) / 2));
      text-align: right; }
    .header__mega-nav {
      position: relative;
      z-index: 0; }
    .header__logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%); } }

.highlighted-case {
  max-width: 63.75rem;
  margin: 0 auto; }
  .highlighted-case__blockquote {
    margin: 1.25rem 0 1.875rem; }
  .highlighted-case__visual {
    position: relative; }
    .highlighted-case__visual .stat-number {
      position: relative;
      z-index: 1;
      margin-top: -.4em; }
  .highlighted-case__img {
    margin-left: 1.25rem;
    margin-right: 1.25rem; }
  .highlighted-case__content {
    position: relative;
    z-index: 1; }
    .highlighted-case__content .stat-number {
      display: none; }
  .highlighted-case__cta {
    margin-top: 1.25rem; }
  .highlighted-case .categories {
    position: absolute;
    top: 20%;
    z-index: 1; }

@media screen and (min-width: 768px) {
  .highlighted-case {
    display: flex;
    justify-content: space-between; }
    .highlighted-case__blockquote {
      max-width: 26.25rem;
      margin: 1.25rem 0 0; }
    .highlighted-case__visual {
      width: calc(50% - 0.625rem); }
      .highlighted-case__visual .stat-number {
        display: none; }
    .highlighted-case__img {
      margin-right: -6vw; }
    .highlighted-case__content {
      width: calc(50% - 0.625rem); }
      .highlighted-case__content .stat-number {
        display: block; } }

@media screen and (min-width: 1100px) {
  .highlighted-case__visual {
    width: calc(70% - 0.625rem); }
  .highlighted-case__content {
    position: relative;
    z-index: 1;
    width: calc(30% - 0.625rem);
    display: flex;
    flex-direction: column;
    align-items: flex-end; }
    .highlighted-case__content .stat-number {
      white-space: nowrap; }
  .highlighted-case__img {
    margin-left: 0.9375rem;
    margin-right: 2.5rem; } }

.images-block.text-overlay {
  position: relative; }
  .images-block.text-overlay img {
    position: relative;
    z-index: 0; }
  .images-block.text-overlay .text-overlay__text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3); }
  .images-block.text-overlay .text-overlay__title {
    color: var(--white); }

.job-intro__location {
  color: var(--green); }

.job-intro .btn, .job-intro .cn-button {
  margin-top: 1.25rem; }

.keep-reading {
  color: var(--green); }
  .keep-reading:hover {
    color: var(--blue); }
  .keep-reading__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    color: inherit; }
  .keep-reading__title {
    margin: 0;
    color: inherit; }
  .keep-reading__head {
    margin-right: 1.875rem; }
  .keep-reading i {
    color: var(--blue); }

.list-icns ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.list-icns li {
  display: flex;
  align-items: center; }

.list-icns li + li {
  margin-top: 1rem; }

.list-icns .icn {
  max-width: 3.125rem;
  margin-right: 1rem;
  flex-shrink: 0; }
  .list-icns .icn img {
    display: block;
    width: 100%;
    height: auto; }

.mega-menu {
  display: none; }

@media screen and (min-width: 990px) {
  .mega-menu {
    position: relative;
    display: block; } }

@media screen and (min-width: 990px) {
  .mega-menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(10px);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
    opacity: 0;
    transition: all var(--default-transition-duration) var(--default-transition-easing); }
    .menu-shown .mega-menu-backdrop {
      z-index: 499;
      opacity: 1; }
  .mega-menu-dropdown__close {
    width: 3.125rem;
    height: 3.125rem;
    border-radius: 50%;
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    appearance: none;
    border: none;
    cursor: pointer;
    background-color: var(--blue);
    color: var(--white);
    transition: var(--default-transition);
    z-index: 1; }
    .mega-menu-dropdown__close span {
      position: absolute !important;
      overflow: hidden;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      border: 0;
      clip: rect(0 0 0 0); }
    .mega-menu-dropdown__close svg {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
      .mega-menu-dropdown__close svg,
      .mega-menu-dropdown__close svg path {
        fill: currentColor; }
    .mega-menu-dropdown__close:hover {
      background-color: var(--green); }
  .mega-menu-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 1.25rem 1.25rem rgba(0, 0, 0, 0.1);
    padding: 1.875rem 0 1.25rem; }
    .mega-menu-dropdown .contact-link {
      position: relative;
      margin-top: 2.5rem; }
    .mega-menu-dropdown__panel {
      position: relative; }
      .mega-menu-dropdown__panel__inner {
        display: flex;
        margin-left: -0.625rem;
        margin-right: -0.625rem; }
    .mega-menu-dropdown__column {
      padding: 0 0.625rem; }
      .mega-menu-dropdown__column.expanded_menu {
        flex: 0 1 25rem; }
      .mega-menu-dropdown__column.simple_menu {
        flex: 0 1 33.333%; }
      .mega-menu-dropdown__column.post_menu {
        flex: 0 1 33.333%; }
        .mega-menu-dropdown__column.post_menu + .simple_menu,
        .mega-menu-dropdown__column.post_menu + .simple_menu + .simple_menu {
          display: flex;
          justify-content: center; }
    .mega-menu-dropdown.hide, .mega-menu-dropdown__panel.hide {
      display: none; }
    .mega-menu-dropdown.show, .mega-menu-dropdown__panel.show {
      display: block; }
    .mega-menu-dropdown__title {
      margin-top: 0; } }

.expanded-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  .expanded-menu__item {
    width: calc(50% - 0.625rem); }
  .expanded-menu__link {
    display: block;
    color: inherit;
    text-decoration: none; }
  .expanded-menu__label {
    display: block;
    margin: 1em 0; }
  .expanded-menu img {
    display: block;
    width: 100%;
    height: auto; }

@media screen and (min-width: 990px) {
  .mega-menu-items {
    display: flex;
    justify-content: center;
    background-color: var(--aqua-dark);
    padding-left: var(--site-padding);
    padding-right: var(--site-padding);
    transition: background var(--default-transition-duration) var(--default-transition-easing);
    position: relative;
    z-index: 1; }
    .clear-header .mega-menu-items {
      background-color: transparent; }
  .mega-menu-item {
    margin: 0 1.5625rem;
    font-weight: 700; }
    .mega-menu-item span,
    .mega-menu-item a {
      color: var(--white);
      display: inline-block;
      line-height: 3.06667;
      text-decoration: none;
      cursor: pointer; }
      .mega-menu-item span:hover,
      .mega-menu-item a:hover {
        text-decoration: underline;
        color: var(--white); }
    .menu-shown .mega-menu-item span:hover,
    .menu-shown .mega-menu-item.is-active span {
      text-decoration: none;
      position: relative; }
      .menu-shown .mega-menu-item span:hover::after,
      .menu-shown .mega-menu-item.is-active span::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 8px 8px 8px;
        border-color: transparent transparent #ffffff transparent;
        left: 50%;
        margin-left: -10px; }
    .mega-menu-item.current-page-ancestor a, .mega-menu-item.current-menu-item a, .mega-menu-item.current_page_item a {
      text-decoration: underline; } }

.mega-menu-post > a {
  text-decoration: none; }

.mega-menu-post__visual {
  height: 15.625rem;
  position: relative; }
  .mega-menu-post__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }

.mega-menu-post__cta {
  display: flex; }
  .mega-menu-post__cta > * + * {
    margin-left: auto;
    margin-right: auto; }

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; }
  .admin-bar .mobile-header {
    top: 46px; }
    @media screen and (min-width: 783px) {
      .admin-bar .mobile-header {
        top: 32px; } }
  .mobile-header__top {
    height: var(--header-top-height);
    background-color: var(--aqua-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; }
  .mobile-header__menu {
    position: fixed;
    top: var(--header-top-height);
    height: calc(100% - var(--header-top-height));
    left: -100vw;
    width: 100%;
    display: flex;
    color: var(--blue);
    background-color: var(--white);
    overflow-y: auto;
    transition: left .3s ease-out;
    z-index: 9999; }
    .mobile-header__menu.show {
      left: 0; }
    .mobile-header__menu .submodule.back,
    .mobile-header__menu .back,
    .mobile-header__menu a {
      text-decoration: none;
      color: var(--blue); }
      .mobile-header__menu .submodule.back:hover,
      .mobile-header__menu .back:hover,
      .mobile-header__menu a:hover {
        color: var(--green); }

.mobile-secondary-nav a {
  font-size: 1.125rem;
  line-height: 2.22222; }

@media screen and (min-width: 990px) {
  .mobile-header {
    display: none; } }

.mobile-menu__inner {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column; }

.mobile-menu__primary {
  overflow: hidden;
  flex: 1 0 auto; }

.mobile-menu__secondary {
  flex-shrink: 0; }

.mobile-menu__bottom {
  border-top: 1px solid var(--grey-light);
  padding: var(--site-padding);
  display: flex;
  justify-content: space-between;
  align-items: center; }

.mobile-menu__secondary-nav {
  padding: var(--site-padding); }

[data-level] {
  white-space: nowrap; }
  [data-level] ul {
    position: relative; }
  [data-level] > ul {
    padding: calc(var(--site-padding) * 2.5) var(--site-padding) var(--site-padding); }

[data-level="2"],
[data-level="3"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all .3s ease-out;
  left: 100%;
  opacity: 0; }
  [data-level="2"].show,
  [data-level="3"].show {
    left: 0;
    opacity: 1; }

[data-level="1"] > ul > li > a,
[data-level="1"] > ul > li > span {
  position: relative;
  transition: all .3s ease-out;
  opacity: 1;
  transform: translateX(0); }

[data-level="1"].hide > ul > li > a,
[data-level="1"].hide > ul > li > span {
  transform: translateX(-100vw); }

[data-level="2"] {
  z-index: 1; }
  [data-level="2"] > ul > li > a,
  [data-level="2"] > ul > li > span {
    position: relative;
    transition: all .3s ease-out;
    opacity: 1;
    transform: translateX(0); }
  [data-level="2"].sub-active > ul > li > a,
  [data-level="2"].sub-active > ul > li > span {
    transform: translateX(-100vw); }

[data-level="3"] {
  z-index: 2; }

.mobile-sub-menu li:not(.back) + .mobile-sub-menu li:not(.back),
.mobile-menu-item + .mobile-sub-menu li:not(.back), .mobile-sub-menu li:not(.back) +
.mobile-menu-item,
.mobile-menu-item +
.mobile-menu-item {
  margin-top: 0.9375rem; }

.mobile-sub-menu li:not(.back) > a,
.mobile-sub-menu li:not(.back) > span,
.mobile-sub-menu li:not(.back) > span a,
.mobile-menu-item > a,
.mobile-menu-item > span,
.mobile-menu-item > span a {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  flex: 1;
  width: 100%;
  white-space: normal; }

.submodule {
  display: block;
  width: 100%; }

.submodule.back,
.back {
  position: absolute;
  top: var(--site-padding);
  left: var(--site-padding); }
  .submodule.back span,
  .back span {
    display: inline-flex;
    justify-content: start;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    width: auto; }
    .submodule.back span svg,
    .back span svg {
      display: block;
      margin-right: 0.375rem; }
      .submodule.back span svg path,
      .back span svg path {
        fill: currentColor; }

.mobile-menu-button {
  width: 2.5rem;
  height: 2.5rem;
  color: inherit;
  appearance: none;
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  outline: none;
  cursor: pointer; }
  .mobile-menu-button svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block; }
    .mobile-menu-button svg path {
      fill: currentColor; }
  .mobile-menu-button:hover {
    color: var(--green); }

.mobile-sub-menu ul ul {
  margin: 0; }
  .mobile-sub-menu ul ul .mobile-menu-item > a {
    font-size: 1.125rem;
    line-height: 2.22222em; }
  .mobile-sub-menu ul ul .mobile-menu-item + .mobile-menu-item {
    margin-top: 0; }

.offices {
  background-image: var(--gradient-aqua-dark);
  color: var(--white);
  padding: 3.125rem 0; }
  .offices__inner {
    display: grid;
    grid-gap: 1.25rem; }

@media screen and (min-width: 600px) {
  .offices__inner {
    grid-template-columns: repeat(2, 1fr); } }

@media screen and (min-width: 768px) {
  .offices__inner {
    grid-template-columns: repeat(3, 1fr); } }

.featured-post,
.page-header {
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 3.75rem; }
  .featured-post .back-link,
  .page-header .back-link {
    margin-bottom: 1.875rem; }
  .featured-post .wysiwyg a,
  .page-header .wysiwyg a {
    color: inherit; }
  .featured-post .scroll-down,
  .page-header .scroll-down {
    display: none; }
  .featured-post .btn, .featured-post .cn-button,
  .page-header .btn,
  .page-header .cn-button {
    margin-top: 1.875rem; }
  .clear-header .featured-post, .clear-header
  .page-header {
    padding-top: var(--header-height);
    margin-top: calc(var(--header-height) * -1); }
  .clear-header .featured-post + .featured-post, .clear-header
  .page-header + .featured-post, .clear-header .featured-post +
  .page-header, .clear-header
  .page-header +
  .page-header {
    padding-top: 0;
    margin-top: 0; }
  .featured-post__inner,
  .page-header__inner {
    display: flex;
    position: relative;
    z-index: 1;
    height: 100%;
    flex: 1;
    padding-top: 3.125rem;
    padding-bottom: 3.125rem; }
  .featured-post__title,
  .page-header__title {
    color: inherit;
    margin: 0 0 .5em; }
    .featured-post__title.with-icons,
    .page-header__title.with-icons {
      display: flex; }
    .featured-post__title .icons,
    .page-header__title .icons {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      margin-left: 0.625rem; }
      .featured-post__title .icons .icon,
      .page-header__title .icons .icon {
        height: 2.875rem; }
      .featured-post__title .icons img,
      .page-header__title .icons img {
        height: 2.875rem; }
  .featured-post__intro p,
  .page-header__intro p {
    margin: 0; }
  .featured-post__intro__inner,
  .page-header__intro__inner {
    position: relative;
    z-index: 1; }
  .featured-post__visual,
  .page-header__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0; }
    .featured-post__visual::before, .featured-post__visual::after,
    .page-header__visual::before,
    .page-header__visual::after {
      content: '';
      opacity: 0.3;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 2;
      background-image: var(--gradient-black); }
    .featured-post__visual::after,
    .page-header__visual::after {
      transform: scale(-1); }
    .featured-post__visual img,
    .page-header__visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      position: relative;
      z-index: 0; }

@media screen and (min-width: 768px) {
  .featured-post .scroll-down,
  .page-header .scroll-down {
    display: flex;
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translate3d(-50%, 0, 0); }
  .page-header--has-scroll .page-header__inner {
    padding-bottom: 6.25rem; }
  .featured-post .page-header__inner,
  .page-header--content-right .page-header__inner {
    align-items: center;
    justify-content: flex-end; }
  .featured-post .page-header__intro,
  .page-header--content-right .page-header__intro {
    max-width: 25rem; }
  .page-header--content-left-top .page-header__intro,
  .page-header--content-left-bottom .page-header__intro {
    max-width: 50%; }
  .page-header--content-left-top .page-header__inner {
    align-items: center; }
  .page-header--content-left-bottom .page-header__inner {
    align-items: flex-end; } }

@media screen and (min-width: 1100px) {
  .featured-post,
  .page-header--content-right {
    min-height: 36.5625rem; }
  .page-header--content-left-top,
  .page-header--content-left-bottom {
    min-height: 43.75rem; }
  .page-header--content-left-bottom .page-header__intro {
    max-width: 40%; } }

.featured-post .leaf-overlay,
.page-header .leaf-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute; }
  .featured-post .leaf-overlay__inner,
  .page-header .leaf-overlay__inner {
    position: relative;
    height: 100%; }
  .featured-post .leaf-overlay .leaf,
  .page-header .leaf-overlay .leaf {
    position: absolute;
    width: 66.875rem;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    z-index: 0;
    opacity: .8; }
  .featured-post .leaf-overlay .bg-lines,
  .page-header .leaf-overlay .bg-lines {
    background-image: url("../img/bg-lines.svg");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1; }

@media screen and (min-width: 768px) {
  .featured-post .leaf-overlay .leaf,
  .page-header .leaf-overlay .leaf {
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    transform: unset; }
  .featured-post .leaf-overlay .leaf,
  .page-header--content-right .leaf-overlay .leaf {
    top: -0.625rem;
    right: -18.75rem; }
  .page-header--content-left-top .leaf-overlay .leaf,
  .page-header--content-left-bottom .leaf-overlay .leaf {
    width: 117.1875rem;
    bottom: -50%;
    left: calc(50% - 84.375rem); } }

@media screen and (min-width: 1100px) {
  .page-header--content-left-top .leaf-overlay .leaf {
    left: calc(50% - 100rem); }
  .page-header--content-left-bottom .leaf-overlay .leaf {
    width: 89.0625rem;
    top: 0;
    right: calc(50% - 13.125rem);
    bottom: unset;
    left: unset; }
  .clear-header .page-header--content-left-bottom .page-header__inner {
    padding-top: 6.875rem; }
  .clear-header .page-header--content-left-bottom .leaf-overlay .leaf {
    top: 6.25rem; } }

.pagination {
  text-align: center;
  margin-top: var(--grid-gap);
  margin-bottom: var(--grid-gap); }
  .pagination li {
    width: 1.5625rem;
    height: 2.5rem;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.3125rem; }
    .pagination li.first, .pagination li.last, .pagination li.prev, .pagination li.next {
      margin: 0;
      width: 1.5625rem; }
    .pagination li > a, .pagination li > span {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 0.875rem;
      text-decoration: none;
      color: var(--text-color); }
    .pagination li > a:hover {
      color: var(--green); }
    .pagination li.current > a, .pagination li.current > span {
      color: var(--green);
      font-weight: 700; }
    .pagination li svg,
    .pagination li svg path {
      fill: currentColor; }
    .pagination li.disabled {
      opacity: .4; }

@media screen and (min-width: 768px) {
  .pagination {
    text-align: center;
    margin-top: calc(var(--grid-gap) * 2); } }

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);
  overflow: hidden;
  background-color: rgba(20, 108, 142, 0.4);
  z-index: 99999;
  opacity: 1;
  transition-delay: 0;
  transition: all var(--default-transition-duration) var(--default-transition-easing) var(--default-transition-duration);
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center; }
  .popup-close {
    z-index: 999;
    position: absolute;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    padding: 0.3125rem;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
    .popup-close .icn-circle {
      background-color: white; }
  .popup.hide {
    display: none;
    visibility: hidden;
    z-index: -1;
    opacity: 1; }
  .popup__content {
    z-index: 2;
    padding: 2.5rem 1.875rem;
    background: white;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    position: relative; }
    @media screen and (min-width: 768px) {
      .popup__content {
        max-width: 60vw; } }
    .popup__content .btn, .popup__content .cn-button {
      margin-top: 1.25rem; }
  .popup__images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem; }
    .popup__images picture {
      max-height: 20rem;
      width: auto;
      height: auto; }
      .popup__images picture img {
        width: 100%;
        height: 100%;
        object-fit: contain; }

.posts-block__inner {
  position: relative; }

.posts-block__title {
  margin-top: 0;
  margin-bottom: 2.5rem;
  text-align: center; }

.posts-block:not(.posts-block--hp) .posts-block__cta {
  display: none; }

.posts-block--hp .posts-block__title {
  color: var(--white); }

.posts-block--hp .posts-block__cta {
  text-align: center;
  margin-top: 2.5rem; }

@media screen and (min-width: 768px) {
  .posts-block:not(.posts-block--hp) .posts-block__cta {
    display: block;
    position: absolute;
    top: 0;
    right: var(--site-padding); } }

.product-benefits {
  background-color: var(--grey-light-2);
  padding-top: 1.875rem;
  padding-bottom: 1.875rem; }
  .product-benefits__info {
    font-size: 0.75rem;
    color: var(--grey-light-3);
    margin-top: 1.25rem; }
  .product-benefits__title {
    margin-bottom: 1em; }

@media screen and (min-width: 768px) {
  .product-benefits {
    padding-top: 4.375rem;
    padding-bottom: 2.5rem; }
    .product-benefits__list {
      columns: 2; }
      .product-benefits__list li {
        padding-right: 6.25rem; } }

.product-containers {
  margin-top: 2.5rem; }
  .product-containers__title {
    color: inherit;
    font-size: 0.9375rem;
    font-weight: 400;
    margin: 0 0 0.625rem; }

.product-container-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; }
  .product-container-list__item {
    margin-right: 0.625rem; }
    .product-container-list__item:last-child {
      margin-right: 0; }

.product-container {
  position: relative;
  display: block;
  color: inherit; }
  .product-container__visual {
    width: auto;
    height: 5.3125rem;
    display: flex;
    justify-content: center;
    align-items: flex-end; }
  .product-container__label {
    margin-top: 0.3125rem;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.16667em;
    font-weight: 700;
    text-transform: uppercase; }
  .product-container img {
    width: auto;
    height: 100%;
    display: block;
    margin: 0; }
  .product-container svg {
    width: 100%;
    height: 100%;
    display: block; }
    .product-container svg, .product-container svg path {
      fill: currentColor; }

.product-details {
  padding: 3.125rem 0;
  overflow: hidden; }
  .product-details__content {
    position: relative;
    position: relative;
    z-index: 1;
    color: var(--white); }
    .product-details__content__inner__cat-icons_wrapper {
      display: flex;
      gap: 0.625rem;
      align-items: center; }
    .product-details__content .icons {
      display: flex;
      gap: 0.625rem; }
      .product-details__content .icons .icon {
        height: 2.875rem; }
      .product-details__content .icons img {
        height: 2.875rem; }
  .product-details__gallery {
    margin: 3.75rem var(--site-negative-margin) 0;
    position: relative;
    z-index: 0; }
  .product-details__title {
    color: inherit;
    margin: .6em 0 .3em; }
  .product-details__bg {
    width: 89.0625rem;
    position: absolute;
    bottom: -3.125rem;
    left: calc(50% - 43.75rem);
    z-index: -1;
    opacity: .8;
    pointer-events: none; }
  .product-details .contact-link {
    color: inherit;
    margin-top: 1.875rem; }

@media screen and (min-width: 768px) {
  .product-details {
    margin: 3.75rem 0; }
    .product-details__gallery {
      max-width: 31.25rem;
      margin-left: auto;
      margin-right: auto; } }

@media screen and (min-width: 990px) {
  .product-details {
    overflow: visible; }
    .product-details__inner {
      display: flex;
      justify-content: space-between; }
    .product-details__gallery {
      width: 50%;
      margin: 0; }
    .product-details__content {
      width: 50%;
      padding-right: 2.5rem;
      position: relative; }
    .product-details__content__inner {
      max-width: 34.375rem; }
    .product-details__bg {
      right: unset;
      left: unset;
      top: -50%;
      bottom: unset;
      z-index: -1;
      opacity: .8;
      left: 40%;
      top: 25%;
      transform: translate(-50%, -50%); }
      .product-details__bg .leaf {
        position: relative;
        transform: rotate(-35deg); }
    .product-details .contact-link {
      color: inherit;
      margin-top: 3.75rem; } }

.product-legal .wysiwyg {
  font-size: 0.75rem; }

.product-properties {
  margin: 1.875rem 0; }

.product-properties-list {
  list-style: none;
  padding: 0; }
  .product-properties-list li {
    margin-top: 1.5625rem; }

.product-property {
  display: flex;
  align-items: center; }
  .product-property__visual {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.25rem; }
    .product-property__visual img {
      display: block;
      width: 100%;
      height: 100%; }
  .product-property__label {
    flex: 1;
    font-style: normal;
    display: block;
    font-size: 0.9375rem;
    line-height: 1.26667;
    color: var(--green); }

@media screen and (min-width: 480px) {
  .product-properties-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between; }
    .product-properties-list li {
      width: calc(50% - 15px);
      margin-top: 1.875rem; } }

@media screen and (min-width: 768px) {
  .product-properties {
    margin: 3.125rem 0; }
  .product-properties-list {
    flex-wrap: wrap;
    justify-content: center; }
    .product-properties-list li {
      width: 8.75rem;
      margin: 1.5625rem; }
  .product-property {
    flex-direction: column; }
    .product-property__visual {
      width: 8.75rem;
      height: 8.75rem;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: auto; }
    .product-property__label {
      text-align: center; } }

.products-block {
  --slider-bottom-padding: 3.125rem;
  --section-top-padding: 11.875rem;
  padding-top: var(--section-top-padding);
  overflow: hidden;
  position: relative; }
  .products-block.section {
    margin-top: calc((var(--section-top-padding) / 2) * -1); }
  .products-block__leaf {
    width: 135.9375rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(calc(-50% - 11.5rem), 0, 0);
    z-index: 0; }
  .products-block__slider {
    position: relative;
    z-index: 1; }
  .products-block__cta {
    display: block;
    text-align: center;
    padding-bottom: var(--site-padding); }
  .products-block__intro {
    text-align: center; }
    .products-block__intro__title {
      color: var(--white); }
    .products-block__intro .btn, .products-block__intro .cn-button {
      display: none;
      min-width: 0;
      max-width: 12.5rem;
      width: 100%; }

@media screen and (min-width: 768px) {
  .products-block {
    --section-top-padding: 14.0625rem;
    padding-bottom: 0; }
    .products-block__slider {
      padding-top: 5rem; }
    .products-block__intro {
      width: 12.5rem;
      padding-left: 0;
      padding-right: 1.25rem;
      padding-bottom: var(--slider-bottom-padding);
      margin-bottom: 0;
      text-align: left; }
      .products-block__intro .btn, .products-block__intro .cn-button {
        display: inline-flex;
        min-width: 0;
        max-width: 12.5rem;
        width: 100%; }
    .products-block__cta {
      display: none; } }

.product-slider-wrapper {
  padding-left: var(--site-padding); }

.product-slider {
  overflow-y: hidden;
  cursor: grab;
  flex: 1;
  margin-left: calc(var(--site-padding) * -1); }
  .product-slider:active {
    cursor: grabbing; }
  .product-slider__inner {
    margin-left: 0;
    margin-right: 0;
    padding-left: var(--site-padding);
    padding-right: var(--site-padding);
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: var(--slider-bottom-padding);
    margin-bottom: -1.25rem;
    white-space: nowrap; }
  .product-slider__track {
    display: flex;
    align-items: flex-end; }
  .product-slider__slide {
    white-space: normal; }

.product-slider-dragger {
  --dragger-size: 7.875rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  cursor: grab; }
  .product-slider-dragger:active {
    cursor: grabbing; }
  .product-slider-dragger__track {
    display: flex;
    justify-content: flex-end; }
  .product-slider-dragger__button {
    display: none;
    cursor: inherit; }

@media screen and (min-width: 768px) {
  .product-slider-wrapper {
    display: flex;
    align-items: flex-end; }
  .product-slider {
    margin: 0; }
    .product-slider__inner {
      padding-left: 0; }
  .product-slider-dragger__button {
    width: var(--dragger-size);
    height: var(--dragger-size);
    border-radius: 50%;
    appearance: none;
    border: none;
    background: var(--gradient-glass-bottom);
    box-shadow: inset var(--glass-box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 0.16667em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700; }
    .product-slider-dragger__button svg {
      margin: 0.625rem 0;
      display: block; }
      .product-slider-dragger__button svg, .product-slider-dragger__button svg path {
        fill: currentColor; } }

@media screen and (min-width: 1290px) {
  .product-slider-wrapper {
    padding-left: calc(50% - 615px); } }

.products {
  margin-top: 5rem; }
  .products__inner {
    position: relative; }

@media screen and (min-width: 768px) {
  .products__inner {
    display: grid;
    grid-gap: var(--grid-gap);
    grid-template-columns: 18.0625rem 1fr;
    grid-template-areas: "filters posts"; }
  .products__filters {
    grid-area: filters;
    padding-right: 1.25rem; }
  .products__grid {
    grid-area: posts; } }

.scroll-select__title {
  font-size: 1.375rem;
  text-align: center;
  margin-bottom: 1.25rem; }

.scroll-select__list {
  position: relative; }

.scroll-menu {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: right;
  user-select: none;
  scrollbar-width: none;
  /* Hide scrollbar in FF */ }
  .scroll-menu::-webkit-scrollbar {
    display: none; }
  .scroll-menu__item-inner {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    transform: scale(0.8);
    transform-origin: right;
    filter: blur(5px);
    opacity: .7;
    transition: var(--default-transition);
    line-height: 1.2;
    padding: .3em 0; }
    .scroll-menu__item-inner .icn-circle {
      color: var(--blue);
      opacity: 0;
      width: 1.875rem;
      height: 1.875rem;
      margin-left: 1.25rem;
      transform: translateX(-20px);
      transition: var(--default-transition); }
      .scroll-menu__item-inner .icn-circle svg {
        transform: scale(0.7); }
    .scroll-menu__item-inner:hover {
      color: var(--green); }
  .scroll-menu__item.active .scroll-menu__item-inner {
    transform: scale(1);
    filter: blur(0);
    opacity: 1; }
    .scroll-menu__item.active .scroll-menu__item-inner .icn-circle {
      opacity: 1;
      transform: translateX(0); }

@media screen and (min-width: 768px) {
  .scroll-select:not(.scroll-select-hp) {
    display: flex;
    align-items: center;
    justify-content: center; }
    .scroll-select:not(.scroll-select-hp) .scroll-select__title {
      flex-shrink: 0;
      margin-right: 1.875rem;
      font-size: 1.375rem;
      text-align: left;
      margin-bottom: 0; }
    .scroll-select:not(.scroll-select-hp) .scroll-select__list {
      position: relative; }
  .scroll-menu:not(.scroll-menu-hp) {
    align-items: flex-end; }
    .scroll-menu:not(.scroll-menu-hp) .scroll-menu__item-inner {
      font-size: 2.5rem; }
      .scroll-menu:not(.scroll-menu-hp) .scroll-menu__item-inner .icn-circle {
        width: 2.5rem;
        height: 2.5rem; }
        .scroll-menu:not(.scroll-menu-hp) .scroll-menu__item-inner .icn-circle svg {
          transform: scale(0.85); } }

@media screen and (min-width: 1100px) {
  .scroll-select:not(.scroll-select-hp) .scroll-select__title {
    margin-right: 3.75rem;
    font-size: 1.625rem; }
  .scroll-menu:not(.scroll-menu-hp) .scroll-menu__item-inner {
    font-size: 3.75rem; }
    .scroll-menu:not(.scroll-menu-hp) .scroll-menu__item-inner .icn-circle {
      width: 3.125rem;
      height: 3.125rem; }
      .scroll-menu:not(.scroll-menu-hp) .scroll-menu__item-inner .icn-circle svg {
        transform: none; } }

.secondary-nav {
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-right: var(--menu-item-margin); }
  .secondary-nav li {
    display: inline-block; }
  .secondary-nav li + li {
    margin-left: var(--menu-item-margin); }
  .secondary-nav a {
    font-weight: 500;
    color: var(--aqua-dark);
    text-decoration: none; }

.clear-header .secondary-nav a {
  color: var(--white); }

.simple-menu a {
  text-decoration: none;
  color: inherit; }
  .simple-menu a:hover {
    text-decoration: underline; }

.simple-menu > li + li {
  margin-top: 1.25rem; }

.simple-menu > li > a {
  font-weight: 700; }

.stat {
  overflow: hidden;
  min-height: 24rem;
  background-repeat: no-repeat;
  padding: 3.4375rem 0;
  margin-left: var(--site-negative-margin);
  margin-right: var(--site-negative-margin);
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
  position: relative; }
  .stat__bg {
    position: absolute;
    width: 32rem;
    top: 0;
    left: calc(50% + 7.5rem);
    transform: translate3d(-50%, 0, 0);
    z-index: -1; }
  .stat__text p {
    font-size: 1.375rem;
    line-height: 1.30769;
    font-weight: 700;
    color: var(--green); }
    .stat__text p br {
      display: none; }

@media screen and (min-width: 600px) {
  .stat__inner {
    display: flex; }
  .stat__text {
    flex: 1; }
  .stat__number {
    padding-right: 1.25rem;
    text-align: right;
    display: inline-block; }
  .stat .stat-number__unit {
    display: none; }
  .stat__text::before {
    content: attr(data-unit);
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--aqua);
    display: inline-block; }
  .stat__text p {
    font-size: 1.625rem;
    max-width: 25rem; }
    .stat__text p br {
      display: unset; } }

@media screen and (min-width: 768px) {
  .stat__number {
    flex: 1; }
  .stat__text::before {
    font-size: 4.375rem; } }

@media screen and (min-width: 1100px) {
  .stat__text::before {
    font-size: 5rem; } }

.subscribe-form-block {
  background-color: var(--grey-light-2);
  padding: 1.875rem 0; }
  .subscribe-form-block__form {
    margin-top: 1.25rem; }
  .subscribe-form-block__title {
    margin-top: 0; }

@media screen and (min-width: 768px) {
  .subscribe-form-block {
    padding: 2.8125rem 0; }
    .subscribe-form-block__content {
      display: flex; }
    .subscribe-form-block__intro {
      max-width: 18.125rem; }
    .subscribe-form-block__form {
      margin-top: 0;
      margin-left: 1.25rem;
      flex: 1; }
    .subscribe-form-block .newsletter-form p {
      display: flex;
      flex-direction: column;
      gap: 12px; }
      .subscribe-form-block .newsletter-form p .btn, .subscribe-form-block .newsletter-form p .cn-button {
        height: fit-content; }
        .subscribe-form-block .newsletter-form p .btn:hover, .subscribe-form-block .newsletter-form p .cn-button:hover {
          cursor: pointer; } }

.wysiwyg table {
  border-collapse: collapse; }
  .wysiwyg table td, .wysiwyg table th {
    height: 3.75rem;
    padding: 0.5rem 1rem; }
  .wysiwyg table td {
    border-bottom: 1px solid var(--table-border); }
  .wysiwyg table td + td {
    border-left: 1px solid var(--blue); }
  .wysiwyg table th {
    background-color: var(--blue);
    color: var(--white); }
  .wysiwyg table td[scope="colgroup"], .wysiwyg table td[scope="rowgroup"], .wysiwyg table th[scope="colgroup"], .wysiwyg table th[scope="rowgroup"] {
    background-color: var(--grey-light-2);
    color: var(--green);
    font-weight: 700; }

.tease__inner {
  display: flex;
  flex-direction: column;
  height: 100%; }
  .tease__inner, .tease__inner:hover {
    color: var(--text-color); }
  a.tease__inner {
    text-decoration: none; }

.tease__meta {
  color: var(--green); }

.tease__visual {
  position: relative;
  background-color: var(--grey-light-2); }
  .tease__visual::before {
    display: block;
    padding-top: 60%;
    width: 100%;
    content: ' '; }
  .tease__visual img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0; }

.tease__visual, .tease__foot {
  flex-shrink: 0; }

.tease__title {
  margin-top: 0; }

.tease__content {
  flex: 1 0 auto;
  margin: 1.25rem 0; }

.tease__foot {
  text-align: right; }

.tease--featured {
  background-color: var(--white); }
  .tease--featured .tease__inner {
    color: var(--text-color);
    position: relative; }
  .tease--featured .tease__visual::before {
    padding-top: 67.5%; }
  .tease--featured .tease__content {
    padding: 1.875rem;
    position: relative;
    margin-bottom: 0; }

.tease--featured:not(.tease--highlight) .tease__content {
  margin: 0; }
  .tease--featured:not(.tease--highlight) .tease__content .icn-circle {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    background-color: var(--white);
    color: var(--blue); }

.tease--highlight {
  --min-height: 35.625rem;
  position: relative; }
  .tease--highlight .tease__inner {
    display: block; }
  .tease--highlight .tease__visual {
    isolation: isolate;
    height: 100%;
    min-height: var(--min-height);
    position: relative; }
    .tease--highlight .tease__visual::before {
      display: none; }
    .tease--highlight .tease__visual::after {
      z-index: 1;
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: .8;
      background-image: linear-gradient(180deg, rgba(31, 171, 190, 0) 22%, #1fabbe 73%); }
  .tease--highlight .tease__content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column-reverse;
    color: var(--white); }
  .tease--highlight .tease__title {
    color: inherit; }

@media screen and (min-width: 990px) {
  .tease--highlight {
    --min-height: 38.75rem; } }

.tease--jobs {
  text-align: center; }
  .tease--jobs .tease__inner {
    display: block; }
  .tease--jobs .tease__title {
    font-weight: 400;
    color: inherit;
    margin-bottom: 0; }

.tease--products .tease__visual {
  background-color: transparent; }
  .tease--products .tease__visual::before {
    padding-top: 100%; }
  .tease--products .tease__visual img {
    object-fit: contain; }

.tease--products .tease__title {
  text-align: center;
  font-weight: 400; }

.tease--products .tease__inner {
  position: relative; }
  .tease--products .tease__inner_icons {
    position: absolute;
    top: 0.4375rem;
    left: 0.4375rem;
    z-index: 999;
    display: flex;
    gap: 0.3125rem; }
  .tease--products .tease__inner_icon {
    width: 1.875rem;
    height: 1.875rem; }

.product-slider .tease--products {
  height: 22.5rem;
  width: 15.625rem;
  position: relative;
  margin: 0 0.4375rem; }
  .product-slider .tease--products .tease__content {
    padding: 0 1.25rem; }
  .product-slider .tease--products .tease__title {
    font-weight: 700;
    font-size: 0.9375rem; }
  .product-slider .tease--products .tease__visual {
    height: 18.75rem; }
    .product-slider .tease--products .tease__visual img {
      object-position: center bottom; }
  .product-slider .tease--products .tease__inner {
    position: relative; }
    .product-slider .tease--products .tease__inner_icons {
      position: absolute;
      top: 16.5625rem;
      left: 0.4375rem;
      z-index: 999;
      display: flex;
      gap: 0.3125rem; }
    .product-slider .tease--products .tease__inner_icon {
      width: 1.875rem;
      height: 1.875rem; }
  .product-slider .tease--products::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 5rem;
    background-image: var(--gradient-glass-bottom);
    box-shadow: inset var(--glass-box-shadow);
    z-index: -1; }

.text-content {
  display: flex;
  flex-direction: column; }
  .text-content__text {
    flex: 1 0 auto; }
  .text-content__title, .text-content__cta {
    flex-shrink: 0; }
  .text-content__title {
    margin: 0 0 .5em; }
  .text-content__cta {
    margin-top: 1.875rem; }

@media screen and (min-width: 768px) {
  .text-grid--image .text-content {
    max-width: calc(34rem + var(--grid-gap));
    width: 100%;
    padding-left: var(--grid-gap);
    padding-right: 0; }
  .text-grid--image .text-grid__column--two_third .text-content {
    max-width: 100%; }
  .text-grid--image.text-grid--reverse .text-content {
    padding-left: 0;
    padding-right: var(--grid-gap); } }

.text-image-block .full-width .text-grid__column--txt .text-content {
  max-width: 100%;
  padding-left: var(--site-padding);
  padding-right: var(--site-padding); }
  @media screen and (min-width: 768px) {
    .text-image-block .full-width .text-grid__column--txt .text-content {
      max-width: 90%; } }

.text-image-block .full-width .text-grid__column--img figure {
  width: 100%; }

.used-products {
  background-color: var(--grey-light-2);
  padding: 3.125rem 0; }
  .used-products__title {
    margin: 0 0 1.25rem; }
  .used-products__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 3.75rem; }
    .used-products__grid .tease {
      width: calc(50% - 1.25rem); }
      .used-products__grid .tease .tease__title {
        font-size: 0.9375rem; }

@media screen and (min-width: 768px) {
  .used-products {
    padding: 4.375rem 0; }
    .used-products__intro {
      display: flex;
      align-items: center;
      max-width: 63.75rem;
      width: 100%;
      margin: auto; }
    .used-products__title {
      max-width: 100%;
      width: 26.25rem;
      padding-right: 1.25rem;
      margin: 0; }
    .used-products__text {
      width: calc(100% - 26.25rem); }
    .used-products__grid .tease {
      width: calc(25% - 1.25rem); }
  .used-products[data-product-count="1"] .used-products__inner,
  .used-products[data-product-count="2"] .used-products__inner {
    display: flex;
    align-items: center; }
  .used-products[data-product-count="1"] .used-products__intro,
  .used-products[data-product-count="2"] .used-products__intro {
    width: 50%;
    display: block; }
  .used-products[data-product-count="1"] .used-products__title,
  .used-products[data-product-count="2"] .used-products__title {
    margin: 0 0 1.25rem; }
  .used-products[data-product-count="1"] .used-products__title,
  .used-products[data-product-count="1"] .used-products__text,
  .used-products[data-product-count="2"] .used-products__title,
  .used-products[data-product-count="2"] .used-products__text {
    width: auto; }
  .used-products[data-product-count="1"] .used-products__grid,
  .used-products[data-product-count="2"] .used-products__grid {
    width: 50%;
    margin-top: 0;
    justify-content: center; }
    .used-products[data-product-count="1"] .used-products__grid .tease,
    .used-products[data-product-count="2"] .used-products__grid .tease {
      width: calc(50% - 1.25rem); } }

.vertical-select-slider-wrapper {
  position: relative;
  font-size: 3.75rem;
  display: inline-block; }
  .vertical-select-slider-wrapper .trigger {
    position: absolute;
    height: 1.16667em;
    width: 100%;
    z-index: 99;
    backdrop-filter: blur(2px); }
    .vertical-select-slider-wrapper .trigger--prev {
      bottom: 1.875rem;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%); }
    .vertical-select-slider-wrapper .trigger--next {
      top: 0;
      background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, white 100%); }

.vertical-select-slider {
  display: inline-block; }
  .vertical-select-slider div {
    font-size: inherit;
    line-height: 1.3; }

.video-block__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0; }
  .video-block__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

#cookie-notice {
  position: fixed;
  min-width: 100%;
  height: auto;
  z-index: 100000;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 20px;
  left: 0;
  text-align: center;
  /* border-top: 2px solid #fbb03b; */
  font-weight: normal;
  font-family: -apple-system, BlinkMacSystemFont, Arial, Roboto, "Helvetica Neue", sans-serif; }

#cookie-notice,
#cookie-notice * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

#cookie-notice.cn-animated {
  -webkit-animation-duration: 0.5s !important;
  animation-duration: 0.5s !important;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

#cookie-notice.cn-animated.cn-effect-none {
  -webkit-animation-duration: 0.001s !important;
  animation-duration: 0.001s !important; }

#cookie-notice .cookie-notice-container {
  display: block; }

#cookie-notice.cookie-notice-hidden .cookie-notice-container {
  display: none; }

#cookie-notice .cookie-revoke-container {
  display: block; }

#cookie-notice.cookie-revoke-hidden .cookie-revoke-container {
  display: none; }

.cn-position-top {
  top: 0; }

.cn-position-bottom {
  bottom: 0; }

.cookie-notice-container {
  padding: 15px 30px;
  text-align: center;
  width: 100%;
  z-index: 2; }

.cookie-revoke-container {
  padding: 15px 30px;
  width: 100%;
  z-index: 1; }

.cn-close-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  width: 15px;
  height: 15px;
  opacity: 0.5;
  padding: 10px;
  outline: none; }

.cn-close-icon:hover {
  opacity: 1; }

.cn-close-icon:before,
.cn-close-icon:after {
  position: absolute;
  content: " ";
  height: 15px;
  width: 2px;
  top: 3px;
  background-color: #fff; }

.cn-close-icon:before {
  transform: rotate(45deg); }

.cn-close-icon:after {
  transform: rotate(-45deg); }

#cookie-notice .cn-revoke-cookie {
  margin: 0; }

#cookie-notice .cn-button {
  margin: 0 0 0 10px;
  border: none; }

.cn-button:hover {
  box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, 0.05);
  text-decoration: none; }

.cn-button.wp-default,
.cn-button.bootstrap {
  text-decoration: none;
  padding: 8.5px 10px;
  line-height: 1; }

.cn-button.wp-default {
  color: #fff;
  background: #fbb03b; }

.cn-button.bootstrap {
  color: #fff;
  background: #20c19e; }

.cn-text-container {
  margin: 0 0 6px 0; }

.cn-text-container,
.cn-buttons-container {
  display: inline-block; }

#cookie-notice.cookie-notice-visible.cn-effect-none,
#cookie-notice.cookie-revoke-visible.cn-effect-none {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

#cookie-notice.cn-effect-none {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

#cookie-notice.cookie-notice-visible.cn-effect-fade,
#cookie-notice.cookie-revoke-visible.cn-effect-fade {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

#cookie-notice.cn-effect-fade {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

#cookie-notice.cookie-notice-visible.cn-effect-slide,
#cookie-notice.cookie-revoke-visible.cn-effect-slide {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

#cookie-notice.cn-effect-slide {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown; }

#cookie-notice.cookie-notice-visible.cn-position-top.cn-effect-slide,
#cookie-notice.cookie-revoke-visible.cn-position-top.cn-effect-slide {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

#cookie-notice.cn-position-top.cn-effect-slide {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@media all and (max-width: 900px) {
  .cookie-notice-container #cn-notice-text {
    display: block; }
  .cookie-notice-container #cn-notice-buttons {
    display: block; }
  #cookie-notice .cn-button {
    margin: 0 5px 5px 5px; } }

@media all and (max-width: 480px) {
  .cookie-notice-container,
  .cookie-revoke-container {
    padding: 15px 25px; } }

.cn-button {
  isolation: isolate;
  min-width: unset; }
  .cn-button::after {
    z-index: -1; }

.img-grid__column + .img-grid__column,
.text-grid__column + .img-grid__column, .img-grid__column +
.text-grid__column,
.text-grid__column +
.text-grid__column {
  margin-top: var(--grid-gap); }

.img-grid__column:only-child,
.text-grid__column:only-child {
  margin-bottom: 0; }

@media screen and (min-width: 768px) {
  .img-grid,
  .text-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: var(--grid-negative-margin);
    margin-right: var(--grid-negative-margin); }
    .img-grid__column + .img-grid__column,
    .text-grid__column + .img-grid__column, .img-grid__column +
    .text-grid__column,
    .text-grid__column +
    .text-grid__column {
      margin-top: 0; }
    .img-grid__column:nth-child(n+3), .img-grid__column--full,
    .img-grid__column--full + .img-grid__column,
    .text-grid__column:nth-child(n+3),
    .text-grid__column--full,
    .text-grid__column--full + .img-grid__column,
    .img-grid__column--full +
    .text-grid__column,
    .text-grid__column--full +
    .text-grid__column {
      margin-top: var(--grid-gap); }
    .img-grid__column,
    .text-grid__column {
      flex: 0 0 var(--grid-column-half);
      padding-left: var(--grid-column-margin);
      padding-right: var(--grid-column-margin); }
      .img-grid__column--full,
      .text-grid__column--full {
        flex: 1 0 var(--grid-column-full); }
      .img-grid__column--third,
      .text-grid__column--third {
        flex-basis: var(--grid-column-third); }
  .img-grid {
    --grid-gap: 3.75rem;
    --grid-negative-margin: calc((var(--grid-gap) / 2) * -1);
    --grid-column-margin: calc(var(--grid-gap) / 2); }
    .img-grid__column {
      flex-grow: 0; }
  .images-block[data-columns="1"] .img-grid__column {
    flex-basis: 100%;
    width: 100%; }
  .images-block[data-columns="1"] .img-grid__column + .img-grid__column {
    margin-top: 2.5rem; }
  .text-grid--image {
    --grid-gap: 1.25rem;
    --grid-negative-margin: calc((var(--grid-gap) / 2) * -1);
    --grid-column-margin: calc(var(--grid-gap) / 2);
    align-items: center; }
    .text-grid--image .text-grid__column {
      display: flex; }
      .text-grid--image .text-grid__column--img {
        justify-content: center; }
      .text-grid--image .text-grid__column--txt {
        justify-content: flex-end; }
  .text-grid--reverse {
    flex-direction: row-reverse; }
    .text-grid--reverse .text-grid__column {
      justify-content: flex-start; } }

@media screen and (min-width: 768px) {
  .text-grid__column--one_third {
    width: var(--grid-column-third);
    flex-basis: var(--grid-column-third); }
  .text-grid__column--two_third {
    flex-grow: 1;
    width: var(--grid-column-two-third);
    flex-basis: var(--grid-column-two-third); } }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow-x: hidden;
  width: 100%; }
  body.home {
    padding-top: 0; }
  body .header, body .mobile-header, body .footer {
    flex-shrink: 0; }
  body .content-wrapper {
    position: relative;
    z-index: 0;
    flex: 1 0 auto; }

.full-width {
  width: 100%; }

.constrict, .case-popup__article .case-subject-intro, .constrict-xs, .constrict-sm, .constrict-md, .constrict-lrg {
  max-width: calc(76.875rem + (var(--site-padding) * 2));
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-padding);
  padding-right: var(--site-padding); }

.constrict-xs {
  max-width: calc(51.875rem + (var(--site-padding) * 2)); }

.constrict-sm {
  max-width: calc(58.125rem + (var(--site-padding) * 2)); }

.constrict-md {
  max-width: calc(63.75rem + (var(--site-padding) * 2)); }

.constrict-lrg {
  max-width: 90rem; }

.section {
  margin-top: var(--section-margin);
  margin-bottom: var(--section-margin);
  position: relative;
  z-index: 1; }
  .section:last-of-type {
    margin-bottom: 0; }
  .section.products-block {
    z-index: 0; }
  .section.images-block {
    margin-top: 0;
    margin-bottom: 0; }
  .section.images-block + .section.images-block {
    margin-top: var(--grid-gap); }
  .section.has-bg {
    background-color: var(--grey-light-2);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem; }
  .section.has-bg + .form-block {
    margin-top: calc(var(--section-margin) * -1); }
    .section.has-bg + .form-block::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 6.25rem;
      background-color: var(--grey-light-2);
      z-index: -1; }

.post-grid {
  --grid-gap: 1.25rem;
  --grid-columns: 1;
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(var(--grid-columns), 1fr); }
  .post-grid.slick-initialized {
    display: block;
    margin-right: var(--site-negative-margin); }
    .post-grid.slick-initialized .slick-slide {
      margin-right: var(--grid-gap); }

@media screen and (min-width: 480px) {
  .post-type-archive-jobs .post-grid {
    --grid-columns: 2; } }

@media screen and (min-width: 768px) {
  .post-grid {
    --grid-columns: 3;
    row-gap: calc(var(--grid-gap) * 2); }
  .post-type-archive-jobs .post-grid {
    --grid-columns: 2; } }

.products-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(1, 1fr); }

@media screen and (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr); } }

@media screen and (min-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr); } }

.home {
  overflow-x: hidden;
  width: 100vw; }
  .home .section.section-hp {
    margin: 0;
    width: 100vw; }

.section-swipe-container {
  isolation: isolate; }

#hp-intro__canvas {
  height: 100vh;
  position: relative;
  z-index: 3;
  display: block; }

#hp-intro__mask {
  position: absolute;
  pointer-events: none;
  top: 0;
  z-index: 4;
  height: 100vh;
  width: 100%;
  mask-image: url(/app/themes/timber/static/img/leaf-anim.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: -100vw 100vh; }
  #hp-intro__mask.animate {
    animation: maskRevealMobile 2s cubic-bezier(0.64, 0, 0.78, 0) 0s 1 normal forwards; }
  @media screen and (min-width: 768px) {
    #hp-intro__mask.animate {
      animation: maskRevealTablet 2s cubic-bezier(0.64, 0, 0.78, 0) 0s 1 normal forwards; } }
  @media screen and (min-width: 1100px) {
    #hp-intro__mask.animate {
      animation: maskReveal 2s cubic-bezier(0.64, 0, 0.78, 0) 0s 1 normal forwards; } }

#hp-intro__lines {
  position: absolute;
  top: 0;
  z-index: 2;
  height: 100vh;
  width: 100%;
  background-image: url(/app/themes/timber/static/img/bg-lines.png);
  background-size: cover;
  background-repeat: no-repeat; }

.hp-intro__title-wrap {
  position: absolute;
  left: 50%;
  text-align: center;
  top: 50%;
  transform: translate3d(-50%, -50%, 0); }
  .hp-intro__title-wrap h1,
  .hp-intro__title-wrap p {
    transition: transform .4s ease-out, opacity .5s ease-out; }
    .hp-intro__title-wrap h1.animate,
    .hp-intro__title-wrap p.animate {
      transform: translateY(-20px);
      opacity: 0; }
  .hp-intro__title-wrap h1 {
    text-align: left;
    max-width: 520px;
    margin: 0 auto;
    width: 85vw; }
    @media screen and (min-width: 768px) {
      .hp-intro__title-wrap h1 {
        width: auto; } }
  @media screen and (min-width: 768px) {
    .hp-intro__title-wrap p {
      font-size: 1.25rem; } }

#hp-intro__image {
  opacity: 0.6;
  position: absolute;
  z-index: 2;
  top: 0;
  height: 100vh;
  width: 100%;
  background-image: url(/app/themes/timber/static/img/leaf-anim.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: -100vw 100vh; }
  #hp-intro__image.animate {
    animation: imageRevealMobile 2s cubic-bezier(0.64, 0, 0.78, 0) 0s 1 normal forwards; }
  @media screen and (min-width: 768px) {
    #hp-intro__image.animate {
      animation: imageRevealTablet 2s cubic-bezier(0.64, 0, 0.78, 0) 0s 1 normal forwards; } }
  @media screen and (min-width: 1100px) {
    #hp-intro__image.animate {
      animation: imageReveal 2s cubic-bezier(0.64, 0, 0.78, 0) 0s 1 normal forwards; } }

@keyframes maskReveal {
  0% {
    mask-position: -100vw 100vh;
    mask-size: 100%; }
  100% {
    mask-position: -60vw -100vh;
    mask-size: 250%; } }

@keyframes maskRevealTablet {
  0% {
    mask-position: -100vw 100vh;
    mask-size: 100%; }
  100% {
    mask-position: -120vw -150vh;
    mask-size: 500%; } }

@keyframes maskRevealMobile {
  0% {
    mask-position: -100vw 100vh;
    mask-size: 100%; }
  100% {
    mask-position: -110vw -50vh;
    mask-size: 500%; } }

@keyframes imageReveal {
  0% {
    background-position: -100vw 100vh;
    background-size: 100%; }
  100% {
    background-position: -60vw -100vh;
    background-size: 250%; } }

@keyframes imageRevealTablet {
  0% {
    background-position: -100vw 100vh;
    background-size: 100%; }
  100% {
    background-position: -120vw -150vh;
    background-size: 500%; } }

@keyframes imageRevealMobile {
  0% {
    background-position: -100vw 100vh;
    background-size: 100%; }
  100% {
    background-position: -110vw -50vh;
    background-size: 500%; } }

#hp-intro__loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 100%;
  transform: translateY(-50%); }
  #hp-intro__loader > div {
    background-color: var(--aqua-dark);
    width: 1vw;
    height: 1vw;
    border-radius: 100%;
    margin: 1vw;
    background-image: linear-gradient(145deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    animation: bounce 1.5s 0.5s linear infinite; }
    #hp-intro__loader > div:nth-child(2) {
      animation-delay: 0.1s; }
    #hp-intro__loader > div:nth-child(3) {
      animation-delay: 0.2s; }
    #hp-intro__loader > div:nth-child(4) {
      animation-delay: 0.3s; }
  #hp-intro__loader.hidden {
    display: none; }

@keyframes bounce {
  0%, 50%, 100% {
    transform: scale(1); }
  25% {
    transform: scale(0.6); }
  75% {
    transform: scale(1.4); } }

#section-paralax {
  position: relative;
  isolation: isolate;
  z-index: 1; }
  #section-paralax .section-hp {
    position: relative;
    z-index: 1; }

.title-block, .hp-intro {
  display: grid;
  place-content: center; }
  @media screen and (min-width: 990px) {
    .title-block, .hp-intro {
      min-height: var(--hp-section-full-height); } }

.hp-intro {
  background-size: cover;
  width: 100vw !important;
  background-position: center top;
  height: 100vh;
  position: relative; }
  .hp-intro h1, .hp-intro p {
    color: var(--white); }

.section-swipe {
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1; }

.scrollmagic-pin-spacer:first-of-type {
  margin-top: 0 !important; }

.home .section.products-block {
  margin-bottom: 0; }

.home .section.posts-block {
  margin-top: 0;
  background-color: var(--white); }

.home .footer {
  position: relative;
  z-index: 9;
  background-color: var(--white); }

#hp-block-title-2 .dummy-leaf,
#hp-case .dummy-leaf {
  background: var(--gradient-aqua-light);
  clip-path: url(#leaf-clippath);
  position: absolute;
  left: 0;
  top: auto;
  bottom: auto;
  width: 100vw;
  width: 106.25rem;
  z-index: -1; }
  #hp-block-title-2 .dummy-leaf::before,
  #hp-case .dummy-leaf::before {
    display: block;
    padding-top: 68.06283%;
    width: 100%;
    content: ' '; }

#hp-case {
  display: block;
  overflow-x: hidden;
  isolation: isolate;
  padding-top: 30vw;
  margin-top: -30vw; }
  #hp-case::after {
    content: '';
    display: block;
    position: absolute;
    left: -50%;
    right: -200%;
    top: 0;
    bottom: 0;
    border-radius: 80% 100% 0 0;
    z-index: -1;
    background-color: var(--white); }
  #hp-case .dummy-leaf {
    display: none; }
  #hp-case .highlighted-case-block {
    position: relative;
    z-index: -1; }
    #hp-case .highlighted-case-block__inner {
      display: grid;
      place-items: center; }

@media screen and (min-width: 990px) {
  #hp-case {
    padding-top: unset;
    margin-top: -9.375rem; }
    #hp-case::after {
      content: unset;
      display: none; }
    #hp-case .dummy-leaf {
      display: block;
      background: var(--white);
      position: relative;
      left: 50%;
      transform: translate3d(-50%, 0, 0);
      width: 106.25rem; }
    #hp-case .highlighted-case-block__inner {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0; } }

.industries-block {
  display: flex;
  flex-direction: column-reverse;
  min-height: auto;
  width: 100vw;
  height: auto;
  overflow: hidden;
  background-color: var(--aqua-light);
  padding-bottom: 30vw; }
  .industries-block__visual, .industries-block__visual__inner {
    width: 100vw;
    height: 60vw; }
    .industries-block__visual img, .industries-block__visual__inner img {
      display: block;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center; }
  .industries-block .scroll-select__title {
    color: var(--white);
    text-align: left; }
  .industries-block .scroll-menu {
    align-items: flex-start; }
    .industries-block .scroll-menu__item-inner {
      color: var(--white);
      filter: blur(2px);
      transform-origin: left;
      text-align: left; }
      .industries-block .scroll-menu__item-inner .icn-circle {
        color: currentColor; }

@media screen and (min-width: 990px) {
  .industries-block {
    display: block;
    height: auto;
    background-color: unset;
    padding-bottom: unset; }
    .industries-block__inner {
      position: relative;
      display: flex;
      justify-content: flex-end;
      flex-direction: row; }
    .industries-block__select {
      flex: 1;
      padding-left: 1.25rem;
      max-width: calc(50% + 1.25rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: var(--hp-section-full-height); }
    .industries-block__visual {
      position: absolute;
      height: var(--hp-section-full-height);
      min-width: 31.25rem;
      width: auto;
      right: calc(50% + 3.75rem);
      top: 0;
      z-index: 1; }
      .industries-block__visual__inner {
        position: relative;
        position: relative;
        width: auto;
        height: auto;
        top: 50%;
        transform: translateY(-50%); }
        .industries-block__visual__inner:before {
          display: block;
          padding-top: 140%;
          width: 100%;
          content: ' '; }
        .industries-block__visual__inner > .industries-block__visual__inner__inner {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0; }
      .industries-block__visual img {
        position: absolute;
        top: 0;
        left: 0; } }

.hp-intro {
  background-color: var(--grey-light-3); }

#hp-posts-block {
  background-color: transparent;
  padding-bottom: 2.5rem; }

#hp-products-block {
  padding-bottom: 50rem;
  margin-bottom: -43.75rem;
  z-index: 1; }

@media screen and (min-width: 990px) {
  #hp-case + #hp-products-block {
    margin-top: -12.5rem; } }

.title-block {
  padding: 30vw 0;
  margin: 0; }
  .title-block .title {
    width: 100vw;
    max-width: 47.5rem;
    text-align: center;
    margin: auto;
    padding-left: var(--site-padding);
    padding-right: var(--site-padding); }

#hp-block-title-1 {
  background-color: var(--white); }

#hp-block-title-2 {
  margin-top: -3.125rem;
  overflow-x: hidden; }
  #hp-block-title-2::after {
    content: '';
    display: block;
    position: absolute;
    left: -50%;
    right: -100%;
    top: 0;
    bottom: 0;
    border-radius: 100% 100% 0 0;
    z-index: -1;
    background-color: var(--aqua-light); }
  #hp-block-title-2 .title-block__inner {
    position: relative;
    width: 100vw;
    display: grid;
    align-items: center; }
  #hp-block-title-2 .dummy-leaf {
    display: none; }
  #hp-block-title-2 .title {
    color: var(--white); }

#hp-block-title-3 {
  width: 100%;
  height: auto;
  min-height: 0;
  margin-bottom: -30vw; }

@media screen and (min-width: 990px) {
  #leaf-title {
    height: 150vh;
    position: relative; }
  .title-block {
    padding: unset; }
  #hp-block-title-2 {
    height: 200vh;
    margin-top: unset;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden; }
    #hp-block-title-2::after {
      content: unset;
      display: none; }
    #hp-block-title-2 .title-block__inner {
      position: absolute;
      height: var(--hp-section-full-height);
      left: 0;
      top: auto;
      bottom: auto; }
    #hp-block-title-2 .title-block__content {
      clip-path: url(#leaf-clippath);
      position: absolute;
      top: 0;
      bottom: auto;
      left: 50%;
      margin-left: -53.125rem;
      width: 106.25rem;
      overflow: hidden; }
      #hp-block-title-2 .title-block__content::before {
        display: block;
        padding-top: 68.06283%;
        width: 100%;
        content: ' '; }
    #hp-block-title-2.no-clip .title-block__content {
      clip-path: unset; }
    #hp-block-title-2 .dummy-leaf {
      display: block;
      left: 50%;
      margin-left: -53.125rem;
      width: 106.25rem;
      top: 0;
      bottom: unset; }
    #hp-block-title-2 .title-block__content__inner {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: var(--hp-section-full-height); }
  #hp-block-title-3 {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 6.25rem;
    margin-bottom: unset; } }

.page-template-page-plain h1 {
  font-size: 2.5rem;
  text-transform: none; }


/*# sourceMappingURL=../../../../../assets/maps/style.map*/