@font-face {
  font-family: Lexend Deca;
  src: url(../fonts/LexendDeca-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Lexend Deca;
  src: url(../fonts/LexendDeca-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Lexend Deca;
  src: url(../fonts/LexendDeca-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "Lexend Deca", sans-serif;
  --font-size: clamp(15px, 1.354167rem, 30px);
  --font-size-h1-rem: 5.25rem;
  --font-size-h1: clamp(50px, var(--font-size-h1-rem), 140px);
  --font-size-h3: clamp(24px, 2.604167rem, 60px);
  --font-size-h4: clamp(24px, 1.875rem, 41px);
  --font-size-h5: clamp(15px, 1.354167rem, 31px);
  --font-size-h6: clamp(18px, 1.041667rem, 22px);
  --font-size-bigger: clamp(50px, 3.90625rem, 85px);
  --font-size-small: clamp(14px, 1.041667rem, 22px);
  --font-size-smaller: clamp(13px, 0.9375rem, 20px);
  --font-size-smallest: clamp(12px, 0.729167rem, 16px);
  --font-weight: 300;
  --line-height: 1.27em;
  --layout-container-width: 85.416667rem;
  --layout-container-margin: calc((100rem - var(--layout-container-width)) / 2);
  --layout-grid-columns-gap: 0.833333rem;
  --layout-grid-rows-gap: 0.833333rem;
  --layout-sections-gap: 5.208333rem;
  --hero-height: 48rem;
  --top-height: 120px;
  --mobilemenu-height: 100dvh;
  --color-dark: #000;
  --color-dark-rgb: 0, 0, 0;
  --color-light: #fff;
  --color-light-rgb: 255, 255, 255;
  --color-beauty-bush: #ecc0c9;
  --color-beauty-bush-rgb: 236, 192, 201;
  --color-brown-derby: #4c1715;
  --color-brown-derby-rgb: 76, 23, 21;
  --color-background: var(--color-light);
  --color-background-rgb: var(--color-light-rgb);
  --color-text: var(--color-dark);
  --color-text-inverse: var(--color-light);
  --color-top: var(--color-dark);
  /* --color-footer-background: var(--color-dark);
  --color-footer-text: var(--color-dark);
  --plyr-color-main: var(--color-footer-background); */
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  
}
@media (min-width: 1025px) and (max-width: 1440px) {
  :root {
    --font-size-h3: clamp(24px, 2.213542rem, 60px);
    --font-size-h4: clamp(24px, 1.59375rem, 41px);
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  :root {
    --layout-container-width: 90rem;
  }
}
@media (min-width: 761px) and (max-width: 1024px) {
  :root {
    --layout-container-width: 95rem;
  }
}
@media (max-width: 760px) {
  :root {
    --font-size-h1-rem: clamp(30px, 15rem, 75px);
    --font-size-h1: 40px;
    --layout-container-width: 80.53333333333333rem;
    --layout-grid-columns-gap: 10px;
    --layout-grid-rows-gap: 10px;
    --top-height: 73px;
    --layout-sections-gap: 50px;
    --hero-height: clamp(600px, 80vh, 80vh);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 1vw;
}
body {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: var(--font-size);
  line-height: var(--line-height);
  background-color: var(--color-background);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ::selection {
  background-color: var(--color-footer-background);
  color: var(--color-footer-text);
} */
/* a {
  color: var(--color-text);
} */
svg {
  pointer-events: none;
}
picture {
  display: block;
}
picture img {
  display: block;
  width: 100%;
  height: auto;
}
div.grecaptcha-badge {
  display: none;
}
h1,
.text-h1 {
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.15em;
}
h2,
.text-h2 {
  font-size: var(--font-size-h2);
  font-weight: 700;
  line-height: 1.15em;
}
h3,
.text-h3 {
  font-size: var(--font-size-h3);
  font-weight: 700;
  line-height: 1.2em;
}
h4,
.text-h4 {
  font-size: var(--font-size-h4);
  font-weight: 700;
  line-height: 1.2em;
}
h5,
.text-h5 {
  font-size: var(--font-size-h5);
  font-weight: 400;
  line-height: 1.2em;
}
h6,
.text-h6 {
  font-size: var(--font-size-h6);
  font-weight: 400;
  line-height: 1.1em;
}
.text-bigger {
  font-size: var(--font-size-bigger);
  line-height: 1.1em;
}
.text-small {
  font-size: var(--font-size-small);
  line-height: 1.25em;
}
.text-smaller {
  font-size: var(--font-size-smaller);
  line-height: 1.25em;
}
.text-smallest {
  font-size: var(--font-size-smallest);
  line-height: 1.25em;
}
.text-content > * + * {
  margin-top: var(--line-height);
}
.layout-wrapper {
  overflow: hidden;
}
.layout-container {
  display: block;
  width: var(--layout-container-width);
  margin-left: auto;
  margin-right: auto;
}
.layout-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--layout-grid-columns-gap);
  row-gap: var(--layout-grid-rows-gap);
}
.layout-grid.layout-grid--nocolumnsgap {
  column-gap: 0;
}
.layout-grid.layout-grid--norowsgap {
  row-gap: 0;
}
.layout-grid.layout-grid--1 {
  grid-template-columns: 1fr;
}
.layout-grid.layout-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.layout-grid.layout-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.layout-grid.layout-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.layout-grid.layout-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.layout-grid.layout-grid--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.layout-grid.layout-grid--7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.layout-grid.layout-grid--8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.layout-grid.layout-grid--9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.layout-grid.layout-grid--10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}
.layout-grid.layout-grid--11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}
.layout-unscrollable {
  overflow: hidden;
  height: 100%;
}
.layout-block + .layout-block {
  margin-top: var(--layout-sections-gap);
}
.ui-iconlink {
  display: inline-flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 15px;
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-user-select: none;
  user-select: none;
  font-weight: 400;
  background-color: transparent;
  border-width: 0;
  cursor: pointer;
}

.ui-iconlink.ui-iconlink--arrow svg {
  display: block;
  position: relative;
  transform: translate(-30%) translateZ(0);
  transition: transform 0.3s var(--ease-in-out-circ);
  width: clamp(21.1085px, 2.198802rem, 42.217px);
  height: auto;
}
@media (max-width: 760px) {
  .ui-iconlink.ui-iconlink--arrow svg {
    transform: unset;
    width: 21.1085px;
    height: 8.417px;
  }
}
.ui-iconlink.ui-iconlink--arrow span:nth-of-type(2) {
  display: inline-block;
  overflow: hidden;
}
@media (hover: hover) {
  .ui-iconlink.ui-iconlink--arrow:hover svg {
    transform: translate(0) translateZ(0);
  }
}
.ui-iconlink svg {
  display: inline-block;
}
.ui-iconlink:active svg {
  opacity: 0.5;
}
button.ui-iconlink {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
.ui-indexes {
  list-style-type: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 7px;
  font-weight: 400;
}
.ui-indexes[data-active] {
  transition: color 0.5s var(--ease-in-out-cubic);
}
.ui-indexes li {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0;
  transition: column-gap 0.5s var(--ease-in-out-cubic);
}
.ui-indexes li[data-active="1"] {
  column-gap: 7px;
}
.ui-indexes li[data-active="1"] span {
  width: 45px;
  transform: scaleX(1);
}
.ui-indexes li:active {
  opacity: 0.5;
}
.ui-indexes li span {
  position: relative;
  display: block;
  height: 1px;
  background-color: transparent;
  transition: all 0.5s var(--ease-in-out-cubic);
  transform: scaleX(0);
  transform-origin: 0 0;
  width: 23px;
  will-change: transform;
}
.ui-input-field {
  position: relative;
}
.ui-input-field input {
  display: block;
  width: 100%;
  border-width: 0;
  border-bottom: 1px solid var(--color-text);
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  padding: 10px 0;
}
.ui-input-field input.text-smaller {
  font-size: var(--font-size-smaller);
}
.ui-input-field .ui-iconlink {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.ui-input-field.ui-input-field--checkbox {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 9px;
  margin-top: 16px;
}
.ui-input-field.ui-input-field--checkbox input[type="checkbox"],
.ui-input-field.ui-input-field--checkbox input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--color-text);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}
.ui-input-field.ui-input-field--checkbox input[type="checkbox"]:after,
.ui-input-field.ui-input-field--checkbox input[type="radio"]:after {
  content: "";
  display: block;
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: var(--color-text);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s var(--ease-out-quad);
}
.ui-input-field.ui-input-field--checkbox input[type="checkbox"]:checked:after,
.ui-input-field.ui-input-field--checkbox input[type="radio"]:checked:after {
  transform: translate(-50%, -50%) scale(1);
}
.ui-input-field.ui-input-field--checkbox label {
  flex-grow: 1;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.ui-underline,
.ui-underline-parent a {
  display: inline-block;
  position: relative;
  -webkit-text-decoration: none;
  text-decoration: none;
}
:is(.ui-underline, .ui-underline-parent a):after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
  background-color: var(--color-text);
  transform-origin: 0 0;
  transition: transform 0.3s var(--ease-in-out-quad);
}
@media (hover: hover) {
  :is(.ui-underline, .ui-underline-parent a):hover:after {
    transform: scaleX(0);
    transform-origin: 100% 0;
  }
}
:is(
  .ui-underline.ui-underline--reverse,
  .ui-underline-parent.ui-underline-parent--reverse a
):after {
  transform: scaleX(0);
  transform-origin: 100% 0;
}
@media (hover: hover) {
  :is(
      .ui-underline.ui-underline--reverse,
      .ui-underline-parent.ui-underline-parent--reverse a
    ):hover:after {
    transform: scaleX(1);
    transform-origin: 0 0;
  }
}
.ui-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--layout-grid-columns-gap);
  row-gap: 0;
}
.ui-form
  .ui-form-field:not(:nth-child(1)):not(:nth-child(2)):not(
    .ui-form-field--checkbox
  ):not(.ui-form-field--submit) {
  padding-top: calc(var(--layout-grid-rows-gap) * 2);
}
.ui-form .ui-form-field.ui-form-field--full {
  grid-column: 1 / 3;
}
.ui-form .ui-form-field.ui-form-field--checkbox {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  padding-top: var(--layout-grid-rows-gap);
}
.ui-form .ui-form-field.ui-form-field--submit {
  text-align: right;
  padding-top: var(--layout-grid-rows-gap);
}
.ui-form input[type="text"],
.ui-form input[type="number"],
.ui-form input[type="password"],
.ui-form input[type="tel"],
.ui-form input[type="email"],
.ui-form textarea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border-width: 0;
  background-color: transparent;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  padding: 10px 5px;
  border-bottom: 1px solid var(--color-footer-background);
  min-width: 100%;
  max-width: 100%;
  color: var(--color-footer-background);
  resize: none;
}
:is(
  .ui-form input[type="text"],
  .ui-form input[type="number"],
  .ui-form input[type="password"],
  .ui-form input[type="tel"],
  .ui-form input[type="email"],
  .ui-form textarea
)::placeholder {
  color: var(--color-footer-background);
}
.ui-form textarea {
  border: 1px solid var(--color-footer-background);
  padding: 10px;
  margin-top: 15px;
}
.ui-form input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-footer-background);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-out-quad);
}
@media (max-width: 760px) {
  .ui-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
}
.ui-form input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--color-footer-background);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.3s var(--ease-out-quad);
}
@media (max-width: 760px) {
  .ui-form input[type="checkbox"]:before {
    width: 9px;
    height: 9px;
  }
}
.ui-form input[type="checkbox"]:checked:before {
  transform: translate(-50%, -50%) scale(1);
}
@media (hover: hover) {
  .ui-form input[type="checkbox"]:hover,
  .ui-form input[type="checkbox"]:active {
    border-color: var(--color-footer-background);
  }
}
.ui-form label {
  cursor: pointer;
}
@font-face {
  font-family: swiper-icons;
  src: url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: none;
}
.glightbox-container.inactive {
  display: none;
}
.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}
.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translateZ(0);
}
.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}
.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}
.glightbox-container .gslide-inner-content {
  width: 100%;
}
.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}
.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}
@media (width > 768px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
}
.glightbox-container .ginner-container.desc-bottom,
.glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-left,
.glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}
@media (width > 768px) {
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
  .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
}
@media (width > 768px) {
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
}
.gslide iframe,
.gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}
.gslide:not(.current) {
  pointer-events: none;
}
.gslide-image {
  align-items: center;
}
.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}
@media (width > 768px) {
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
}
.desc-top :is(.gslide-image img),
.desc-bottom :is(.gslide-image img) {
  width: auto;
}
.desc-left :is(.gslide-image img),
.desc-right :is(.gslide-image img) {
  width: auto;
  max-width: 100%;
}
.gslide-image img.zoomable {
  position: relative;
}
@media (width > 768px) {
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed :is(.gslide-image img.zoomable) {
    cursor: grab;
  }
}
.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}
.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}
.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}
.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}
.gslide-video:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}
.gslide-video.playing:before {
  display: none;
}
.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}
.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}
.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}
@media (width > 768px) {
  .gslide-inline {
    max-height: 95vh;
  }
}
.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}
.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}
.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}
.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}
@media (width > 768px) {
  .gslide-external {
    max-height: 100vh;
  }
}
.gslide-media {
  display: flex;
  width: auto;
}
.zoomed .gslide-media {
  box-shadow: none !important;
}
.desc-top .gslide-media,
.desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}
.gslide-description {
  position: relative;
  flex: 1 0 100%;
}
.gslide-description.description-left,
.gslide-description.description-right {
  max-width: 100%;
}
@media (width > 768px) {
  .gslide-description.description-left,
  .gslide-description.description-right {
    max-width: 275px;
  }
}
.gslide-description.description-bottom,
.gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}
.gslide-description p {
  margin-bottom: 12px;
}
.gslide-description p:last-child {
  margin-bottom: 0;
}
.zoomed .gslide-description,
.glightbox-button-hidden {
  display: none;
}
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px 50px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  transition: opacity 0.3s linear;
}
.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}
.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}
.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}
.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}
.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}
.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}
.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}
.greset {
  transition: all 0.3s ease;
}
.gabsolute {
  position: absolute;
}
.grelative {
  position: relative;
}
.glightbox-desc {
  display: none !important;
}
.glightbox-open {
  overflow: hidden;
}
@media (width > 768px) {
  .glightbox-open {
    height: auto;
  }
}
.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}
.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}
.glightbox-mobile .goverlay {
  background: #000;
}
@media (width > 768px) {
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}
.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}
.gbtn.focused {
  outline: 2px solid #0f3d81;
}
iframe.wait-autoplay {
  opacity: 0;
}
.glightbox-closing .gnext,
.glightbox-closing .gprev,
.glightbox-closing .gclose {
  opacity: 0 !important;
}
@media (width > 768px) {
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px #000000a6;
  }
}
.glightbox-clean .gslide-description {
  background: #fff;
}
.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}
@media (width > 768px) {
  .glightbox-clean .description-left .gdesc-inner,
  .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
}
.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}
.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}
.glightbox-clean .gslide-video {
  background: #000;
}
.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
  background-color: #000000bf;
  border-radius: 4px;
}
@media (width > 768px) {
  .glightbox-clean .gprev,
  .glightbox-clean .gnext,
  .glightbox-clean .gclose {
    background-color: #00000052;
  }
  .glightbox-clean .gprev:hover,
  .glightbox-clean .gnext:hover,
  .glightbox-clean .gclose:hover {
    background-color: #000000b3;
  }
}
.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}
.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}
@media (width > 768px) {
  .glightbox-clean .gprev {
    top: 45%;
  }
}
.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}
@media (width > 768px) {
  .glightbox-clean .gnext {
    top: 45%;
  }
}
.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}
.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}
@media (width >=992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
.glightbox-clean .gclose:hover {
  opacity: 1;
}
.gfadeIn {
  animation: gfadeIn 0.5s ease;
}
.gfadeOut {
  animation: gfadeOut 0.5s ease;
}
.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}
.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}
.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}
.gslideInRight {
  animation: gslideInRight 0.3s ease;
}
.gzoomIn {
  animation: gzoomIn 0.5s ease;
}
.gzoomOut {
  animation: gzoomOut 0.5s ease;
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes gfadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gslideInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes gslideOutLeft {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideInRight {
  0% {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes gslideOutRight {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateZ(0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gzoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
/* .footer {
  margin-top: 7.552083rem;
  background-color: var(--color-footer-background);
  color: var(--color-footer-text);
}
@media (max-width: 760px) {
  .footer {
    margin-top: var(--layout-sections-gap);
  }
}
.footer a {
  color: var(--color-footer-text);
}
.footer-container.layout-grid {
  padding: 3.385417rem 0 2.083333rem;
  row-gap: 4.166667rem;
}
@media (max-width: 760px) {
  .footer-container.layout-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: var(--layout-sections-gap) 0;
    row-gap: 30px;
  }
}
.footer-info {
  grid-column: 1 / 5;
}
@media (max-width: 760px) {
  .footer-info {
    grid-column: 1 / 2;
  }
}
.footer-info h5 + p {
  margin-top: 1.354167rem;
}
@media (max-width: 760px) {
  .footer-info h5 + p {
    margin-top: 10px;
  }
}
.footer-icons {
  grid-column: 5 / 8;
}
@media (max-width: 760px) {
  .footer-icons {
    grid-column: 1 / 2;
  }
}
.footer-newsletter {
  grid-column: 8 / 13;
}
@media (max-width: 760px) {
  .footer-newsletter {
    grid-column: 1 / 2;
  }
}
:is(.footer-newsletter h5) + * {
  margin-top: 1.354167rem;
}
@media (max-width: 760px) {
  :is(.footer-newsletter h5) + * {
    margin-top: 10px;
  }
}
.footer-icons-items {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 8px;
  margin-top: 1.354167rem;
}
@media (max-width: 760px) {
  .footer-icons-items {
    margin-top: 10px;
    column-gap: 10px;
  }
}
.footer-icons-items svg {
  display: block;
  width: 24px;
  height: 24px;
}
.footer-icons-items svg path {
  fill: var(--color-footer-text);
}
.footer-bottom {
  grid-column: 1 / 13;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  column-gap: var(--line-height);
}
@media (max-width: 760px) {
  .footer-bottom {
    grid-column: 1 / 2;
    align-items: center;
    flex-flow: column nowrap;
    justify-content: flex-start;
    text-align: center;
    row-gap: var(--line-height);
  }
}
.footer-bottom a {
  font-weight: 400;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.footer-credits {
  white-space: nowrap;
}
.footer .ui-input-field input {
  border-color: var(--color-footer-text);
  color: var(--color-footer-text);
}
.footer .ui-input-field input::placeholder {
  color: var(--color-footer-text);
  opacity: 1;
}
.footer .ui-input-field.ui-input-field--checkbox input {
  border-color: var(--color-footer-text);
}
.footer .ui-input-field.ui-input-field--checkbox input:after {
  background-color: var(--color-footer-text);
} */
.mobilemenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--mobilemenu-height, 100vh);
  z-index: 9;
  background-color: var(--color-beauty-bush);
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  opacity: 0;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transform: scale(0.9);
  transform-origin: 50% 25%;
  transition: all 0.5s var(--ease-in-out-circ);
}
.mobilemenu[data-active] {
  opacity: 1;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transform: scale(1);
  pointer-events: auto;
}
.mobilemenu nav {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
}
.mobilemenu nav:after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--color-brown-derby);
  bottom: 0;
  left: calc(50% - 12px);
}
.mobilemenu nav a {
  display: block;
  font-weight: 300;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: var(--color-brown-derby);
}
:is(.mobilemenu nav a) + a {
  margin-top: 15px;
}
.mobilemenu-links {
  margin-top: 30px;
}
.mobilemenu-links a {
  display: block;
  text-align: center;
  font-weight: 300;
  -webkit-text-decoration: none;
  text-decoration: none;
}
:is(.mobilemenu-links a) + a {
  margin-top: 15px;
}
.mobilemenu-languages {
  margin-top: 15px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}
.mobilemenu-languages a {
  text-transform: uppercase;
}
.postsgrid.layout-grid {
  display: grid;
  position: relative;
  row-gap: 0;
}
.postsgrid-scroller {
  position: absolute;
  top: calc(var(--top-height) * -1);
  left: 0;
  width: 100%;
  pointer-events: none;
}
.postsgrid-filters {
  position: relative;
  grid-column: 1 / 13;
}
.postsgrid-filters h4 {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 760px) {
  .postsgrid-filters h4 {
    font-size: 18px;
  }
}
@media (max-width: 760px) {
  .postsgrid-filters h4 svg {
    width: 8px;
    height: 8px;
  }
}
.postsgrid-filters-wrapper {
  margin-left: 16.8%;
  height: 0;
  overflow: hidden;
}
@media (max-width: 760px) {
  .postsgrid-filters-wrapper {
    margin-left: 0;
    width: 100%;
    padding-top: 36px;
  }
}
.postsgrid-filters-items {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 760px) {
  .postsgrid-filters-items {
    flex-flow: row wrap;
    justify-content: flex-start;
    row-gap: 10px;
  }
}
.postsgrid-filters-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 760px) {
  .postsgrid-filters-item {
    width: 33.333%;
  }
}
.postsgrid-filters-item[data-active="1"] span:after {
  transform: scale(1);
}
.postsgrid-filters-item span {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--color-text);
}
.postsgrid-filters-item span:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-text);
  transform: scale(0);
  transition: all 0.3s var(--ease-in-out-quad);
}
.postsgrid-filters-actions {
  text-align: right;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition: clip-path 0.4s var(--ease-in-out-circ);
  margin-top: 1.5625rem;
  padding-bottom: 3.5rem;
}
.postsgrid-filters-actions a {
  display: inline-block;
  font-weight: 400;
}
:is(.postsgrid-filters-actions a) + a {
  margin-left: 1rem;
}
.postsgrid-items.layout-grid {
  grid-column: 3 / 13;
  row-gap: 3.90625rem;
}
@media (max-width: 760px) {
  .postsgrid-items.layout-grid {
    grid-column: 1 / 13;
    grid-template-columns: 1fr;
    margin-top: 48px;
    row-gap: 40px;
  }
}
.postsgrid-item a:has(picture) {
  display: block;
}
@media (hover: hover) {
  .postsgrid-item:hover .ui-iconlink.ui-iconlink--arrow svg {
    transform: translate(0) translateZ(0);
  }
}
.postsgrid-item picture img {
  aspect-ratio: 1/1.113;
  object-fit: cover;
}
.postsgrid-item h4 {
  margin-top: 1.145833rem;
}
@media (max-width: 760px) {
  .postsgrid-item h4 {
    margin-top: 13px;
  }
}
.postsgrid-item > p {
  margin-top: 1.145833rem;
}
@media (max-width: 760px) {
  .postsgrid-item > p {
    margin-top: 13px;
  }
}
.postsgrid-item > p.text-small {
  font-weight: 400;
}
@media (max-width: 760px) {
  .postsgrid-item > p.text-small {
    margin-top: 18px;
    font-size: var(--font-size-smaller);
    font-weight: 400;
  }
}
.postsgrid-item a:has(svg) {
  display: inline-block;
  margin-top: 0.625rem;
}
@media (max-width: 760px) {
  .postsgrid-item a:has(svg) {
    margin-top: 13px;
  }
}
.postsgrid-pagination {
  grid-column: 3 / 13;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  column-gap: 10px;
}
@media (max-width: 760px) {
  .postsgrid-pagination {
    grid-column: 1 / 13;
    column-gap: 50px;
    font-size: 15px;
  }
}
.postsgrid-page {
  position: relative;
  display: inline-block;
}
.postsgrid-page.postsgrid-page--current {
  padding-right: calc(2.34375rem + 10px);
}
.postsgrid-page.postsgrid-page--current:before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 2.34375rem;
  background-color: var(--color-text);
  right: 0;
  top: 50%;
}
@media (max-width: 760px) {
  .postsgrid-page.postsgrid-page--current:before {
    width: 42px;
    right: -46px;
  }
}
.post {
  position: relative;
  min-height: var(--hero-height);
  background-color: var(--color-footer-text);
}
@media (max-width: 760px) {
  .post {
    background-color: transparent;
    min-height: auto;
  }
}
.post:before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background-color: var(--color-footer-text);
}
@media (max-width: 760px) {
  .post:before {
    display: block;
  }
}
.post-container.layout-grid {
  position: relative;
  height: 100%;
  padding-top: 8.333333rem;
  padding-bottom: 3rem;
}
@media (max-width: 760px) {
  .post-container.layout-grid {
    padding-top: 75px;
    padding-bottom: 0;
  }
}
.post-content {
  grid-column: 1 / 6;
  color: var(--color-footer-background);
}
@media (max-width: 760px) {
  .post-content {
    grid-column: 1 / 13;
  }
}
.post-content a {
  color: var(--color-footer-background);
}
.post-content a svg line,
.post-content a svg path {
  stroke: var(--color-footer-background);
}
.post-content .text-small {
  font-weight: 400;
}
@media (max-width: 760px) {
  .post-content .text-small {
    margin-top: 18px;
    font-size: var(--font-size-smaller);
    font-weight: 400;
  }
}
.post-content h1 {
  margin-top: 1.302083rem;
}
@media (max-width: 760px) {
  .post-content h1 {
    margin-top: 23px;
    font-size: 33px;
  }
}
.post-content .text-content {
  margin-top: 25px;
}
@media (max-width: 760px) {
  .post-content .text-content {
    margin-top: 32px;
  }
}
.post-content > picture {
  display: none;
}
@media (max-width: 760px) {
  .post-content > picture {
    display: block;
    margin-top: 40px;
  }
}
@media (max-width: 760px) {
  .post-content > picture img {
    width: calc(100% + var(--layout-container-margin));
    object-fit: cover;
    max-height: 100vw;
  }
}
.post-picture {
  grid-column: 7 / 13;
  margin-top: 3.2rem;
  padding-left: 3.5rem;
}
.post-picture picture {
  width: 100%;
}
.post-picture picture img {
  width: calc(100% + var(--layout-container-margin));
  object-fit: cover;
  max-height: 50vw;
}
@media (max-width: 760px) {
  .post-picture {
    display: none;
  }
}
.postrelated {
  margin-top: 14.583333rem;
}
@media (max-width: 760px) {
  .postrelated {
    margin-top: 36px;
  }
}
.postrelated h4 {
  grid-column: 1 / 3;
}
@media (max-width: 760px) {
  .postrelated h4 {
    grid-column: 1 / 13;
  }
}
.postrelated-posts.layout-grid {
  grid-column: 3 / 13;
}
@media (max-width: 760px) {
  .postrelated-posts.layout-grid {
    grid-column: 1 / 13;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.product {
  display: block;
}
.product-intro-content {
  grid-column: 1 / 7;
  align-self: center;
}
@media (max-width: 760px) {
  .product-intro-content {
    padding-top: 0;
    grid-column: 1 / 13;
  }
}
.product-intro-content picture {
  display: none;
}
@media (max-width: 760px) {
  .product-intro-content picture {
    display: block;
    width: calc(100rem - var(--layout-container-margin));
  }
}
@media (max-width: 760px) {
  .product-intro-content h3 + * {
    margin-top: 50px;
  }
}
.product-intro-content .text-content {
  margin-top: 3.75rem;
}
@media (max-width: 760px) {
  .product-intro-content .text-content {
    margin-top: 30px;
  }
}
.product-intro-image {
  grid-column: 7 / 13;
  direction: rtl;
}
@media (max-width: 760px) {
  .product-intro-image {
    display: none;
  }
}
.product-intro-image picture {
  max-width: 28.125rem;
  aspect-ratio: 1/1.255;
}
.product-intro-image picture img {
  object-fit: cover;
  height: 100%;
}
.product-info {
  margin-top: 60px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 760px) {
  .product-info {
    margin-top: 40px;
  }
}
.product-info-label {
  position: relative;
  font-size: var(--font-size-h4);
  line-height: 1.15em;
  font-weight: 700;
}
@media (max-width: 760px) {
  .product-info-label {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 5px;
    font-size: var(--font-size-smaller);
    width: 100%;
    line-height: 1.5em;
  }
}
@media (max-width: 760px) {
  .product-info-label:nth-child(2),
  .product-info-label:nth-child(3) {
    display: none;
  }
}
.product-info-label.product-datasheets-mobile,
.product-info-label.product-finishes-mobile {
  display: none;
}
@media (max-width: 760px) {
  .product-info-label.product-datasheets-mobile,
  .product-info-label.product-finishes-mobile {
    display: block;
  }
}
@media (max-width: 760px) {
  .product-info-label + a {
    margin-top: 10px;
  }
}
@media (max-width: 760px) {
  .product-info-label svg {
    width: 8px;
    height: 8px;
  }
}
.product-datasheets-mobile {
  flex-wrap: wrap;
}
.product-datasheets-mobile[data-active="1"] .product-datasheets {
  -webkit-clip-path: unset;
  clip-path: unset;
  pointer-events: auto;
  height: auto;
}
.product-datasheets-mobile[data-active="1"] svg path:last-child {
  opacity: 0;
}
.product-datasheets-mobile .product-datasheets {
  position: relative;
  width: 100%;
  -webkit-clip-path: unset;
  clip-path: unset;
  height: 0;
  overflow: hidden;
  transition: unset;
  padding: 0;
}
.product-datasheets-mobile .product-datasheets a:first-child {
  margin-top: 5px;
}
:is(.product-datasheets-mobile .product-datasheets a) + a {
  margin-top: 10px;
}
.product-datasheets-mobile .product-datasheets a:last-child {
  margin-bottom: 5px;
}
.product-info-finishes[data-active="1"] svg path:last-child {
  opacity: 0;
}
.product-info-datasheets {
  position: relative;
}
.product-info-datasheets[data-active="1"] .product-datasheets {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
.product-info-datasheets[data-active="1"] svg path:last-child {
  opacity: 0;
}
.product-datasheets {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1;
  background-color: var(--color-background);
  font-size: var(--font-size);
  padding: 1rem 0 0;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition: clip-path 0.5s var(--ease-in-out-quart);
}
.product-datasheets a {
  white-space: nowrap;
  display: block;
}
:is(.product-datasheets a) + a {
  margin-top: 5px;
}
.product-finishes-wrapper {
  width: 100%;
  flex-shrink: 0;
  margin-top: 1rem;
  height: 0;
  overflow: hidden;
}
@media (max-width: 760px) {
  .product-finishes-wrapper {
    margin-top: 0;
  }
}
.product-finishes-wrapper[data-active="1"] {
  height: auto;
}
.product-finishes-wrapper > ul {
  list-style-type: none;
}
@media (max-width: 760px) {
  .product-finishes-wrapper > ul > li {
    padding: 5px 0;
  }
}
:is(.product-finishes-wrapper > ul > li) + li {
  margin-top: 10px;
}
@media (max-width: 760px) {
  :is(.product-finishes-wrapper > ul > li) + li {
    margin-top: 0;
  }
}
@media (max-width: 760px) {
  .product-finishes-wrapper + * {
    margin-top: 10px;
  }
}
.product-finish-label {
  font-weight: 400;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.product-finish-category {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  height: 0;
  overflow: hidden;
}
@media (max-width: 760px) {
  .product-finish-category {
    flex-flow: column nowrap;
  }
}
.product-finish-category > p {
  width: 15rem;
  flex-shrink: 0;
  margin-top: 0.520833rem;
}
@media (max-width: 760px) {
  .product-finish-category > p {
    width: 100%;
    margin-top: 5px;
  }
}
.product-finish-category > ul {
  list-style-type: none;
  margin-left: 2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  column-gap: 1.145833rem;
  row-gap: 1.145833rem;
  margin-top: 0.520833rem;
}
@media (max-width: 760px) {
  .product-finish-category > ul {
    margin: 10px 0 0;
    flex-flow: row nowrap;
    overflow: scroll;
    width: 100%;
    column-gap: 10px;
    padding-bottom: 10px;
  }
}
.product-finish-category > ul li {
  width: 5.8rem;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .product-finish-category > ul li {
    width: 70px;
  }
}
.product-finish-category > ul li img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.product-finish-category > ul li p {
  text-align: center;
  font-weight: 700;
  margin-top: 0.520833rem;
}
.product-gallery.layout-grid {
  margin-top: 3.385417rem;
  row-gap: 0;
}
@media (max-width: 760px) {
  .product-gallery.layout-grid {
    margin-top: 40px;
  }
}
.product-gallery-image {
  width: 100%;
  aspect-ratio: 1/1.255;
}
.product-gallery-image img {
  object-fit: cover;
  height: 100%;
}
.product-gallery-image.product-gallery-image--1,
.product-gallery-image.product-gallery-image--5 {
  grid-column: 1 / 5;
}
@media (max-width: 760px) {
  .product-gallery-image.product-gallery-image--1,
  .product-gallery-image.product-gallery-image--5 {
    grid-column: 1 / 9;
  }
}
.product-gallery-image.product-gallery-image--5 {
  margin-top: 8.854167rem;
}
.product-gallery-image.product-gallery-image--2,
.product-gallery-image.product-gallery-image--6 {
  grid-column: 8 / 13;
  margin-top: 19.375rem;
}
@media (max-width: 760px) {
  .product-gallery-image.product-gallery-image--2,
  .product-gallery-image.product-gallery-image--6 {
    grid-column: 5 / 13;
    margin-top: 50px;
  }
}
@media (max-width: 760px) {
  .product-gallery-image.product-gallery-image--2 img,
  .product-gallery-image.product-gallery-image--6 img {
    width: calc(100% + var(--layout-container-margin));
  }
}
.product-gallery-image.product-gallery-image--3,
.product-gallery-image.product-gallery-image--7 {
  grid-column: 2 / 8;
  margin-top: 8.854167rem;
}
@media (max-width: 760px) {
  .product-gallery-image.product-gallery-image--3,
  .product-gallery-image.product-gallery-image--7 {
    grid-column: 1 / 13;
    margin-top: 50px;
  }
}
.product-gallery-image.product-gallery-image--4,
.product-gallery-image.product-gallery-image--8 {
  grid-column: 9 / 12;
  margin-top: 16.197917rem;
}
@media (max-width: 760px) {
  .product-gallery-image.product-gallery-image--4,
  .product-gallery-image.product-gallery-image--8 {
    grid-column: 5 / 13;
    margin-top: 50px;
  }
}
.product-collection {
  display: block;
  margin-top: 8.072917rem;
  background-color: var(--color-footer-background);
}
@media (max-width: 760px) {
  .product-collection {
    margin-top: 60px;
  }
}
.product-collection h4 {
  position: relative;
  z-index: 2;
}
.product-collection h4 span {
  display: block;
  position: relative;
}
.product-collection h4:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + var(--layout-container-margin));
  height: 101%;
  background-color: var(--color-footer-background);
}
@media (max-width: 760px) {
  .product-collection h4 {
    padding-right: 0;
    grid-column: 1 / 13;
  }
}
.product-collection-inner.layout-grid {
  color: var(--color-footer-text);
  padding-top: 8.072917rem;
  padding-bottom: 8.072917rem;
}
@media (max-width: 760px) {
  .product-collection-inner.layout-grid {
    padding-top: 50px;
    padding-bottom: 50px;
    row-gap: 30px;
  }
}
.product-collection-slider {
  grid-column: 2 / 5;
}
@media (max-width: 760px) {
  .product-collection-slider {
    grid-column: 1 / 13;
    overflow: visible;
  }
}
.product-collection-slider .swiper {
  overflow: visible;
}
@media (max-width: 760px) {
  .product-collection-slider-container {
    width: calc(100% + var(--layout-container-margin));
  }
}
.product-collection-slide {
  cursor: grab;
}
.product-collection-slide:active {
  cursor: grabbing;
}
.product-collection-slide picture {
  aspect-ratio: 1/1.25125;
}
.product-collection-slide p {
  margin-top: 1.25rem;
  text-transform: uppercase;
}
.product-collection-slide h5 {
  margin-top: 0.3rem;
}
.product-collection-slide img {
  display: block;
  height: 100%;
  object-fit: cover;
}
.product-category.layout-grid {
  margin-top: 8.072917rem;
}
@media (max-width: 760px) {
  .product-category.layout-grid {
    margin-top: 50px;
    row-gap: 30px;
  }
}
.product-category.layout-grid h4 {
  position: relative;
  z-index: 2;
  line-height: 1.1em;
  margin-top: -1px;
}
@media (max-width: 760px) {
  .product-category.layout-grid h4 {
    grid-column: 1 / 5;
  }
}
.product-category.layout-grid h4 span {
  display: block;
  position: relative;
}
.product-category.layout-grid h4:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + var(--layout-container-margin));
  height: 101%;
  background-color: var(--color-background);
}
.product-category-slider {
  position: relative;
  grid-column: 2 / 5;
}
@media (max-width: 760px) {
  .product-category-slider {
    grid-column: 1 / 5;
  }
}
.product-category-slider .swiper {
  overflow: visible;
}
.product-category-slide {
  cursor: grab;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.product-category-slide:active {
  cursor: grabbing;
}
.product-category-slide p {
  margin-top: 1.25rem;
  text-transform: uppercase;
}
:is(.product-category-slide p) + h5 {
  margin-top: 0.3rem;
}
.product-category-slide-pictures {
  position: relative;
  aspect-ratio: 1/1.25125;
  overflow: hidden;
}
@media (hover: hover) {
  .product-category-slide-pictures:hover picture:nth-child(2) {
    opacity: 1;
    transform: scale(1);
  }
}
.product-category-slide-pictures picture {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.product-category-slide-pictures picture:nth-child(2) {
  opacity: 0;
  transition: all 0.5s var(--ease-in-out-quart);
  transform: scale(1.05);
}
.product-category-slide-pictures picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.top {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.top[data-active="1"],
.top[data-active="1"] .top-container {
  transition: all 0.3s var(--ease-out-quad);
}
.top[data-active="1"] .top-container a {
  transition: color 0.3s var(--ease-out-quad);
}
.top[data-top="0"] {
  --color-top: var(--color-footer-background);
  background-color: var(--color-footer-text);
}
.top[data-top="0"][data-direction="down"] {
  transform: translateY(-100%);
}
.top[data-top="0"] .top-container {
  padding: 0.9114585rem 0;
}
@media (max-width: 760px) {
  .top[data-top="0"] .top-container {
    padding: 20px 0;
  }
}
.top[data-mobile-menu] {
  background-color: transparent;
}
.top[data-mobile-menu] .top-logo svg path,
.top[data-mobile-menu] .top-logo svg rect {
  fill: var(--color-brown-derby);
}
.top[data-mobile-menu] .top-mobilemenu svg line {
  stroke: var(--color-brown-derby);
}
.top-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.822917rem 0;
  color: var(--color-top);
}
@media (max-width: 760px) {
  .top-container {
    padding: 20px 0;
  }
}
.top-container a {
  color: var(--color-top);
}
.top-container a.ui-underline:after {
  background-color: var(--color-top);
}
.top-main {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
}
@media (min-width: 761px) and (max-width: 1024px) {
  .top-main.text-small {
    font-size: var(--font-size-smaller);
  }
}
.top-main nav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3.125rem;
}
@media (min-width: 761px) and (max-width: 1024px) {
  .top-main nav {
    column-gap: 2rem;
  }
}
@media (max-width: 760px) {
  .top-main nav {
    display: none;
  }
}
.top-main nav a {
  display: inline-block;
  -webkit-text-decoration: none;
  text-decoration: none;
  line-height: 1.25em;
  font-weight: 400;
}
.top-main nav a:after {
  height: 0.104167rem;
}
.top-logo svg {
  display: block;
}
@media (min-width: 761px) and (max-width: 1024px) {
  .top-logo svg {
    width: calc(7.247292rem * 1.5);
    height: calc(2.260156rem * 1.5);
  }
}
@media (max-width: 760px) {
  .top-logo svg {
    width: 102px;
    height: 32px;
  }
}
.top-logo svg path,
.top-logo svg rect {
  fill: var(--color-top);
  transition: fill 0.3s var(--ease-out-quad);
}
.top-actions {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
}
@media (min-width: 761px) and (max-width: 1024px) {
  .top-actions {
    column-gap: 2rem;
  }
}
@media (max-width: 760px) {
  .top-actions {
    display: none;
  }
}
.top-links {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 3rem;
  font-weight: 400;
}
@media (min-width: 761px) and (max-width: 1024px) {
  .top-links {
    column-gap: 1.5rem;
  }
}
.top-languages {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5em;
}
.top-languages a {
  display: inline-block;
  font-weight: 400;
  -webkit-text-decoration: none;
  text-decoration: none;
  text-transform: uppercase;
}
.top-languages a:not(:first-child):before {
  content: "|";
  display: inline-block;
  margin: 0 0.5em 0 0;
}
.top-languages a span:after {
  background-color: var(--color-top);
}
.top-mobilemenu {
  display: none;
  position: relative;
  width: 25px;
  height: 25px;
}
@media (max-width: 760px) {
  .top-mobilemenu {
    display: block;
  }
}
.top-mobilemenu[data-cross] svg:nth-child(1) {
  opacity: 0;
  transform: scale(0.5);
}
.top-mobilemenu[data-cross] svg:nth-child(2) {
  opacity: 1;
  transform: scale(1);
}
.top-mobilemenu svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: all 0.3s var(--ease-out-quad);
}
.top-mobilemenu svg line {
  stroke: var(--color-top);
}
.top-mobilemenu svg:nth-child(2) {
  opacity: 0;
  transform: scale(0.5);
  width: 18.385px;
  height: 18.385px;
  top: 3.3075px;
  left: 3.3075px;
}
.top-mobilemenu > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contacts {
  background-color: var(--color-footer-text);
  min-height: var(--hero-height);
}
.contacts-container {
  padding-top: 8.333333rem;
  color: var(--color-footer-background);
}
@media (max-width: 760px) {
  .contacts-container {
    padding-top: 75px;
  }
}
.contacts-form.layout-grid {
  margin-top: 2.239583rem;
}
@media (max-width: 760px) {
  .contacts-form.layout-grid {
    margin-top: 32px;
    row-gap: 25px;
    padding-bottom: 20px;
  }
}
.contacts-form.layout-grid h4 {
  grid-column: 1 / 4;
}
@media (max-width: 760px) {
  .contacts-form.layout-grid h4 {
    grid-column: 1 / 13;
  }
}
.contacts-form.layout-grid form.ui-form {
  grid-column: 5 / 13;
}
@media (max-width: 760px) {
  .contacts-form.layout-grid form.ui-form {
    grid-column: 1 / 13;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
@media (max-width: 760px) {
  .contacts-form.layout-grid form.ui-form .ui-form-field.ui-form-field--full {
    grid-column: 1 / 2;
  }
}
.layout-block + .focusbanner.layout-block {
  margin-top: 6.5rem;
}
:is(.layout-block + .focusbanner.layout-block) + .layout-block {
  margin-top: 6.5rem;
}
.focusbanner {
  padding: 6.25rem 0;
  background-color: var(--focusbanner-bkg-color);
}
@media (max-width: 760px) {
  .focusbanner {
    padding: 50px 0;
  }
}
.focusbanner-content {
  grid-column: 1 / 6;
  color: var(--focusbanner-txt-color);
}
@media (max-width: 760px) {
  .focusbanner-content {
    grid-column: 1 / 13;
  }
}
.focusbanner-content .text-content {
  margin-top: 2.083333rem;
}
@media (max-width: 760px) {
  .focusbanner-content .text-content {
    margin-top: 28px;
  }
}
.focusbanner-content .ui-iconlink {
  margin-top: 3.125rem;
  color: var(--focusbanner-txt-color);
}

.info5-text .ui-iconlink {
  /* margin-top: 3.125rem; */
  color: var(--focusbanner-txt-color);
}

.info2-column .ui-iconlink {
  /* margin-top: 3.125rem; */
  color: var(--focusbanner-txt-color);
}

@media (max-width: 760px) {
  .focusbanner-content .ui-iconlink {
    margin-top: 21px;
  }
}
.focusbanner-content .ui-iconlink svg path {
  stroke: var(--focusbanner-txt-color);
}
.focusbanner-image {
  grid-column: 8 / 13;
  padding: 0 2rem;
}
@media (max-width: 760px) {
  .focusbanner-image {
    display: none;
  }
}
.focusbanner-image.focusbanner-image--smallscreen {
  display: none;
  margin-top: 28px;
}
@media (max-width: 760px) {
  .focusbanner-image.focusbanner-image--smallscreen {
    grid-column: unset;
    display: block;
  }
}
.hero {
  position: relative;
  height: var(--hero-height);
  overflow: hidden;
}
.hero.hero--product {
  height: var(--hero-height);
  color: var(--color-footer-background);
}
.hero.hero--product picture.hero-image {
  position: absolute;
  top: 0;
  width: auto;
  aspect-ratio: 1/1;
  left: 4.5rem;
  height: 100%;
}
@media (max-width: 760px) {
  .hero.hero--product picture.hero-image {
    left: 0;
    top: unset;
    bottom: 0;
    height: auto;
    width: 100%;
  }
}
.hero.hero--product picture.hero-image img {
  height: 100%;
  object-fit: cover;
}
.hero.hero--default h1 {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  font-size: var(--font-size-h1-rem);
  color: #ecc0c9;
}
.hero.hero--default h1 div {
  width: 100%;
  padding: 0 5rem;
}
@media (max-width: 760px) {
  .hero.hero--default h1 div {
    display: none;
  }
}
.hero.hero--default h1 div:nth-of-type(2) {
  text-align: right;
}
.hero.hero--default h1 span {
  display: none;
  width: 100%;
  padding: 0 calc(var(--layout-container-margin) / 2);
}
@media (max-width: 760px) {
  .hero.hero--default h1 span {
    display: block;
  }
}
.hero.hero--default h1 span:nth-of-type(1),
.hero.hero--default h1 span:nth-of-type(4) {
  text-align: right;
}
.hero.hero--default picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero.hero--default picture img {
  height: 100%;
  object-fit: cover;
}
.hero-container {
  height: 100%;
}
.hero-product-title {
  grid-column: 8 / 13;
  align-self: center;
}
@media (max-width: 760px) {
  .hero-product-title {
    position: absolute;
    top: var(--top-height);
    left: var(--layout-container-margin);
  }
}
.hero-product-title h5 {
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 0.520833rem;
}
.hero.hero-news {
  background-color: var(--color-footer-text);
  color: var(--color-footer-background);
}
@media (max-width: 760px) {
  .hero.hero-news {
    height: auto;
  }
}
.hero-news-container.layout-grid {
  height: 100%;
  padding-top: 6.614583rem;
}
@media (max-width: 760px) {
  .hero-news-container.layout-grid {
    height: auto;
    padding-top: 75px;
    padding-bottom: 0;
    row-gap: 50px;
  }
}
.hero-news-content {
  grid-column: 1 / 5;
  padding-bottom: 3.385417rem;
}
@media (max-width: 760px) {
  .hero-news-content {
    grid-column: 1 / 13;
  }
}
.hero-news-image {
  grid-column: 5 / 13;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 760px) {
  .hero-news-image {
    grid-column: 1 / 13;
  }
}
.hero-news-image picture {
  display: block;
  width: 100%;
}
.hero-news-image img {
  object-position: center bottom;
  object-fit: cover;
  width: 100%;
  height: calc(var(--hero-height) - 6.614583rem);
}
@media (max-width: 760px) {
  .hero-news-image img {
    width: calc(100% + var(--layout-container-margin) * 2);
    height: auto;
    margin-left: calc(var(--layout-container-margin) * -1);
  }
}
.hero-news-text {
  padding-right: 2rem;
  margin-top: 4.166667rem;
}
@media (max-width: 760px) {
  .hero-news-text {
    margin-top: 30px;
  }
}
.hero-news-text .text-small {
  font-weight: 400;
}
@media (max-width: 760px) {
  .hero-news-text .text-small {
    font-size: var(--font-size-smaller);
    font-weight: 400;
  }
}
.hero-news-text h4 {
  margin-top: 1.041667rem;
}
@media (max-width: 760px) {
  .hero-news-text h4 {
    margin-top: 14px;
  }
}
:is(.hero-news-text h4) + p {
  margin-top: 1.041667rem;
}
@media (max-width: 760px) {
  :is(.hero-news-text h4) + p {
    margin-top: 14px;
  }
}
.hero-news-text a svg path {
  stroke: var(--color-footer-background);
}
.hero-news-link {
  display: inline-block;
  margin-top: 1.041667rem;
}
@media (max-width: 760px) {
  .hero-news-link {
    margin-top: 18px;
  }
}
.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroslider {
  display: block;
  position: relative;
  height: var(--hero-height);
  min-height: 650px;
  overflow: hidden;
}
@media (min-width: 761px) and (max-width: 1024px) {
  .heroslider {
    min-height: 600px;
  }
}
@media (max-width: 760px) {
  .heroslider {
    height: calc(var(--top-height) + 70rem + 485px);
    min-height: unset;
  }
}
.heroslider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--top-height) 0 40px var(--layout-container-margin);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: stretch;
  column-gap: var(--layout-sections-gap);
}
@media (max-width: 760px) {
  .heroslider-slide {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--top-height) 0 40px;
  }
}
.heroslider-slide[data-active="0"] {
  opacity: 0;
  pointer-events: none;
}
.heroslider-slide[data-next="1"] {
  z-index: 1;
}
.heroslider-slide-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .heroslider-slide-info {
    order: 1;
    padding: 40px var(--layout-container-margin) 0;
  }
}
@media (max-width: 760px) {
  .heroslider-slide-info h6 {
    display: none;
  }
}
.heroslider-slide-info h1 {
  font-size: var(--font-size-h1-rem);
}
@media (max-width: 760px) {
  .heroslider-slide-info h1 {
    font-size: 50px;
  }
}
@media (max-width: 760px) {
  .heroslider-slide-info-top {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .heroslider-slide-info-bottom {
    margin-top: 26px;
  }
}
.heroslider-slide-info-bottom picture {
  aspect-ratio: 1/1.275;
  height: 26.40625rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 760px) {
  .heroslider-slide-info-bottom picture {
    height: 285px;
  }
}
.heroslider-slide-info-bottom picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
:is(.heroslider-slide-info-bottom picture) + p {
  margin-top: 2.447917rem;
}
@media (max-width: 760px) {
  :is(.heroslider-slide-info-bottom picture) + p {
    margin-top: 60px;
  }
}
@media (max-width: 760px) {
  .heroslider-slide-image {
    order: 0;
    width: 100%;
  }
}
.heroslider-slide-image picture {
  width: 50rem;
  aspect-ratio: 1.57/1;
  overflow: hidden;
}
@media (max-width: 760px) {
  .heroslider-slide-image picture {
    width: 100%;
  }
}
.heroslider-slide-image picture img {
  height: 100%;
  object-fit: cover;
}
.heroslider .ui-indexes {
  position: absolute;
  bottom: 2.083333rem;
  right: var(--layout-container-margin);
  z-index: 5;
}
@media (max-width: 760px) {
  .heroslider .ui-indexes {
    bottom: 80px;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 760px) {
  .heroslider .ui-indexes li {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    row-gap: 0;
    transition: row-gap 0.5s var(--ease-in-out-cubic);
  }
}
@media (max-width: 760px) {
  .heroslider .ui-indexes li[data-active="1"] {
    column-gap: 0;
  }
}
@media (max-width: 760px) {
  .heroslider .ui-indexes li[data-active="1"] span {
    height: 42px;
    margin-top: 8px;
    margin-bottom: 8px;
    transform: scaleY(1);
  }
}
@media (max-width: 760px) {
  .heroslider .ui-indexes li span {
    width: 1px;
    height: 25px;
    transform: scaleY(0);
  }
}
@media (max-width: 760px) {
  .info1.layout-grid {
    row-gap: 50px;
  }
}
.info1-column.info1-column--1.layout-grid {
  grid-column: 1 / 7;
  row-gap: 7.708333rem;
}
@media (max-width: 760px) {
  .info1-column.info1-column--1.layout-grid {
    grid-column: 1 / 13;
    row-gap: var(--layout-grid-rows-gap);
  }
}
.info1-column.info1-column--1.layout-grid h3 {
  grid-column: 1 / 7;
}
@media (max-width: 760px) {
  .info1-column.info1-column--1.layout-grid h3 {
    grid-column: 1 / 7;
  }
}
.info1-column.info1-column--1.layout-grid > picture {
  grid-column: 1 / 6;
}
@media (max-width: 760px) {
  .info1-column.info1-column--1.layout-grid > picture {
    display: none;
  }
}
.info1-column.info1-column--2 {
  grid-column: 8 / 13;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .info1-column.info1-column--2 {
    grid-column: 1 / 13;
  }
}
.info1-column.info1-column--2 > picture {
  display: none;
}
@media (max-width: 760px) {
  .info1-column.info1-column--2 > picture {
    display: block;
  }
}
@media (max-width: 760px) {
  .info1-column.info1-column--2 > *:not(:first-child) {
    margin-top: 50px;
  }
}
.info1-notes {
  grid-column: 1 / 4;
  align-self: end;
}
@media (max-width: 760px) {
  .info1-notes {
    grid-column: 1 / 7;
  }
}
@media (max-width: 760px) {
  .info2.layout-grid {
    row-gap: 50px;
  }
}
.info2-column.info2-column--1 {
  grid-column: 1 / 6;
  align-self: center;
}
@media (max-width: 760px) {
  .info2-column.info2-column--1 {
    grid-column: 1 / 13;
    align-self: unset;
  }
}
.info2-column.info2-column--1 > picture {
  position: relative;
  display: none;
  direction: rtl;
}
@media (max-width: 760px) {
  .info2-column.info2-column--1 > picture {
    display: block;
    margin-top: 30px;
  }
}
.info2-column.info2-column--1 > picture img {
  display: block;
  width: calc(100% + var(--layout-container-margin));
}
.info2-column.info2-column--2 {
  grid-column: 1 / 6;
  margin-top: 7.8125rem;
}
@media (max-width: 760px) {
  .info2-column.info2-column--2 {
    grid-column: 5 / 13;
    margin-top: 0;
  }
}
.info2-column.info2-column--3 {
  grid-column: 8 / 13;
  margin-top: 17.03125rem;
}
@media (max-width: 760px) {
  .info2-column.info2-column--3 {
    grid-column: 1 / 13;
    margin-top: 0;
  }
}
.info2-column.info2-column--3 .info2-column-inner {
  grid-column: 1 / 6;
}
:is(.info2-column.info2-column--3 h3) + a {
  margin-top: 2.447917rem;
}
@media (max-width: 760px) {
  :is(.info2-column.info2-column--3 h3) + a {
    margin-top: 20px;
  }
}
.info2-column.info2-column--3 picture {
  grid-column: 2 / 6;
  margin-top: 6.770833rem;
}
@media (max-width: 760px) {
  .info2-column.info2-column--3 picture {
    grid-column: 1 / 5;
  }
}
.info2-column .text-content {
  margin-top: 2.083333rem;
}
@media (max-width: 760px) {
  .info2-column .text-content {
    margin-top: 30px;
  }
}
.info2-picture1 {
  grid-column: 7 / 13;
}
@media (max-width: 760px) {
  .info2-picture1 {
    display: none;
  }
}
.info2-logos {
  margin-top: var(--line-height);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1.75rem;
  row-gap: 1.75rem;
}
@media (max-width: 760px) {
  .info2-logos {
    column-gap: 20px;
    row-gap: 20px;
  }
}
.info2-logos img {
  display: block;
  width: 6.510417rem;
  height: 6.510417rem;
  object-fit: contain;
}
@media (max-width: 760px) {
  .info2-logos img {
    width: 75px;
    height: 75px;
  }
}
@media (max-width: 760px) {
  .info3-row.layout-grid {
    row-gap: 20px;
  }
}
.info3-row.layout-grid video {
  width: 100%;
  height: auto;
}
.info3-row.layout-grid + .info3-row {
  margin-top: 7.291667rem;
}
@media (max-width: 760px) {
  .info3-row.layout-grid + .info3-row {
    margin-top: 50px;
  }
}
.info3-row.layout-grid.info3-row--1 > div {
  grid-column: 1 / 6;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--1 > div {
    grid-column: 1 / 13;
  }
}
.info3-row.layout-grid.info3-row--1 picture,
.info3-row.layout-grid.info3-row--1 .info3-video {
  grid-column: 7 / 13;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--1 picture,
  .info3-row.layout-grid.info3-row--1 .info3-video {
    grid-column: 1 / 13;
  }
}
@media (max-width: 760px) {
  :is(
      .info3-row.layout-grid.info3-row--1 picture,
      .info3-row.layout-grid.info3-row--1 .info3-video
    )
    img {
    width: calc(100% + var(--layout-container-margin));
  }
}
.info3-row.layout-grid.info3-row--2 > div {
  order: 1;
  grid-column: 7 / 12;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--2 > div {
    order: unset;
    grid-column: 1 / 13;
  }
}
.info3-row.layout-grid.info3-row--2 picture,
.info3-row.layout-grid.info3-row--2 .info3-video {
  order: 0;
  grid-column: 1 / 5;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--2 picture,
  .info3-row.layout-grid.info3-row--2 .info3-video {
    order: unset;
    grid-column: 1 / 9;
  }
}
.info3-row.layout-grid.info3-row--3 > div {
  grid-column: 1 / 6;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--3 > div {
    grid-column: 1 / 13;
  }
}
.info3-row.layout-grid.info3-row--3 picture,
.info3-row.layout-grid.info3-row--3 .info3-video {
  grid-column: 8 / 12;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--3 picture,
  .info3-row.layout-grid.info3-row--3 .info3-video {
    grid-column: 5 / 13;
  }
}
@media (max-width: 760px) {
  :is(
      .info3-row.layout-grid.info3-row--3 picture,
      .info3-row.layout-grid.info3-row--3 .info3-video
    )
    img {
    width: calc(100% + var(--layout-container-margin));
  }
}
.info3-row.layout-grid.info3-row--4 > div {
  order: 1;
  grid-column: 8 / 13;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--4 > div {
    order: unset;
    grid-column: 1 / 13;
  }
}
.info3-row.layout-grid.info3-row--4 picture,
.info3-row.layout-grid.info3-row--4 .info3-video {
  order: 0;
  grid-column: 1 / 7;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--4 picture,
  .info3-row.layout-grid.info3-row--4 .info3-video {
    order: unset;
    grid-column: 1 / 13;
    direction: rtl;
  }
}
@media (max-width: 760px) {
  :is(
      .info3-row.layout-grid.info3-row--4 picture,
      .info3-row.layout-grid.info3-row--4 .info3-video
    )
    img {
    width: calc(100% + var(--layout-container-margin));
  }
}
.info3-row.layout-grid.info3-row--5 > div {
  grid-column: 1 / 6;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--5 > div {
    grid-column: 1 / 13;
  }
}
.info3-row.layout-grid.info3-row--5 picture,
.info3-row.layout-grid.info3-row--5 .info3-video {
  grid-column: 8 / 11;
}
@media (max-width: 760px) {
  .info3-row.layout-grid.info3-row--5 picture,
  .info3-row.layout-grid.info3-row--5 .info3-video {
    grid-column: 5 / 13;
  }
}
.info3-row.layout-grid > div {
  align-self: center;
}
.info3-row.layout-grid h3 + * {
  margin-top: 1.770833rem;
}
.info3-row.layout-grid * + h3 {
  margin-top: 4.166667rem;
}
.info4[data-layout="imageleft"] .info4-image {
  order: 0;
  grid-column: 1 / 6;
}
@media (max-width: 760px) {
  .info4[data-layout="imageleft"] .info4-image {
    order: 0;
    grid-column: 1 / 13;
  }
}
.info4[data-layout="imageleft"] .info4-text {
  order: 1;
  grid-column: 7 / 13;
}
@media (max-width: 760px) {
  .info4[data-layout="imageleft"] .info4-text {
    order: 1;
    grid-column: 1 / 13;
  }
}
.info4-text {
  grid-column: 1 / 7;
  padding: var(--line-height) 0;
}
@media (max-width: 760px) {
  .info4-text {
    order: 1;
    grid-column: 1 / 13;
  }
}
.info4-text * + .text-content {
  margin-top: var(--line-height);
}
.info4-image {
  grid-column: 8 / 13;
}
@media (max-width: 760px) {
  .info4-image {
    order: 0;
    grid-column: 1 / 13;
  }
}
.info4-image picture {
  position: relative;
  height: 100%;
  width: 100%;
}
@media (max-width: 760px) {
  .info4-image picture {
    width: 100%;
  }
}
.info4-image picture img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 760px) {
  .info4-image picture img {
    position: relative;
    top: unset;
    right: unset;
    height: auto;
  }
}
.info4-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: var(--line-height);
}
@media (max-width: 760px) {
  .info4-item {
    flex-flow: column nowrap;
    gap: calc(var(--line-height) * 0.25);
  }
}
.info4-item img {
  width: 5.5em;
  height: 5.5rem;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .info4-item img {
    object-position: top left;
    width: 50px;
    height: 50px;
  }
}
.info4-item + .info4-item {
  margin-top: var(--line-height);
}
.info4-item-text > * + * {
  margin-top: calc(var(--line-height) * 0.25);
}
.info5-title {
  grid-column: 1 / 7;
}
@media (max-width: 760px) {
  .info5-title {
    grid-column: 1 / -1;
  }
}
.info5-text {
  grid-column: 8 / 13;
}
@media (max-width: 760px) {
  .info5-text {
    grid-column: 1 / -1;
  }
}
.info5-text .ui-iconlink {
  margin-top: var(--line-height);
}
.info5-logos.layout-grid {
  margin-top: var(--line-height);
  gap: var(--line-height);
}
@media (max-width: 760px) {
  .info5-logos.layout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.info5-logo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.instagram {
  display: block;
  text-align: center;
}
.instagram h3 + .ui-iconlink {
  margin-top: 1.25rem;
}
@media (max-width: 760px) {
  .instagram h3 + .ui-iconlink {
    margin-top: 10px;
  }
}
.instagram-grid {
  margin-top: 3.541667rem;
}
@media (max-width: 760px) {
  .instagram-grid {
    display: none;
  }
}
.instagram-image {
  aspect-ratio: 1/1;
  background-color: #eee;
}
.instagram-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram-slider.swiper {
  position: relative;
  display: none;
  padding-bottom: 12px;
  overflow: visible;
  margin-top: 28px;
}
@media (max-width: 760px) {
  .instagram-slider.swiper {
    display: block;
  }
}
.instagram-slider.swiper .scrollbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 5;
}
.instagram-slider.swiper .scrollbar div {
  background-color: var(--color-footer-background);
  border-radius: 3px;
  height: 100%;
}
.instagram-slider-slide {
  width: 224px;
  height: 224px;
}
.instagram-slider-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heroslider.layout-block + .intro.layout-block {
  margin-top: 3.385417rem;
}
@media (max-width: 760px) {
  .heroslider.layout-block + .intro.layout-block {
    margin-top: 45px;
  }
}
.intro h1 div:nth-of-type(2) {
  text-align: right;
}
@media (max-width: 760px) {
  .intro h1 div {
    display: none;
  }
}
.intro h1 span {
  display: none;
}
.intro h1 span:nth-of-type(2) {
  text-align: right;
}
@media (max-width: 760px) {
  .intro h1 span {
    display: block;
  }
}
.intro-grid {
  margin-top: 5rem;
}
@media (max-width: 760px) {
  .intro-grid {
    margin-top: 44px;
  }
}
.intro-image1 {
  grid-column: 1 / 5;
}
@media (max-width: 760px) {
  .intro-image1 {
    grid-column: 5 / 13;
  }
}
.intro-text {
  grid-column: 6 / 12;
  padding-top: 3rem;
}
@media (max-width: 760px) {
  .intro-text {
    grid-column: 1 / 13;
    padding-top: 36px;
  }
}
.intro-text h3 + a {
  margin-top: 2.45rem;
}
@media (max-width: 760px) {
  .intro-text h3 + a {
    margin-top: 20px;
  }
}
.intro-image2 {
  grid-column: 7 / 13;
  margin-top: -7rem;
}
@media (max-width: 760px) {
  .intro-image2 {
    grid-column: 1 / 13;
    margin: 55px 0 0 calc(var(--layout-container-margin) * -1);
    width: 100rem;
  }
}
.intro-image2 img {
  margin-left: 3.854167rem;
}
@media (max-width: 760px) {
  .intro-image2 img {
    margin-left: 0;
  }
}
@media (max-width: 760px) {
  .map.layout-grid {
    row-gap: 40px;
  }
}
@media (max-width: 760px) {
  .map-content {
    grid-column: 1 / 4;
  }
}
:is(.map-content p) + h4 {
  margin-top: 3.489583rem;
}
@media (max-width: 760px) {
  :is(.map-content p) + h4 {
    margin-top: 40px;
  }
}
:is(.map-content h4) + p {
  margin-top: 1.927083rem;
}
@media (max-width: 760px) {
  :is(.map-content h4) + p {
    margin-top: 18px;
  }
}
.map-map {
  grid-column: 2 / 4;
}
@media (max-width: 760px) {
  .map-map {
    grid-column: 1 / 4;
  }
}
.map-map iframe {
  display: block;
  width: 100%;
  height: 29rem;
}
@media (max-width: 760px) {
  .map-map iframe {
    height: 110rem;
  }
}
.hero.layout-block + .productsgrid.layout-block {
  margin-top: calc(var(--layout-sections-gap) / 2);
}
.productsgrid {
  display: block;
  position: relative;
  min-height: 100vh;
}
.productsgrid-scroll {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  top: calc(var(--top-height) * -1);
}
.productsgrid-categories {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  column-gap: var(--layout-grid-columns-gap);
}
@media (max-width: 760px) {
  .productsgrid-categories {
    width: calc(100rem - var(--layout-container-margin));
    column-gap: 20px;
    padding-right: var(--layout-container-margin);
    padding-bottom: 15px;
    overflow: visible hidden;
  }
}
.productsgrid-category {
  display: inline-block;
  font-size: var(--font-size-h3);
  font-weight: 700;
  color: var(--color-footer-background);
  line-height: 1em;
}
.productsgrid-category a {
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: 0.3s color var(--ease-in-out-cubic);
}
.productsgrid-category a[data-active="1"] {
  color: var(--color-footer-text);
}
.productsgrid-category a[data-active="1"]:after {
  background-color: var(--color-footer-text);
}
.productsgrid-category a:after {
  height: 0.104167rem;
}
@media (hover: hover) {
  .productsgrid-category a:hover {
    color: var(--color-footer-text);
  }
}
.productsgrid-filters {
  margin-top: calc(var(--layout-sections-gap) / 2);
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .productsgrid-filters {
    margin-top: 30px;
  }
}
.productsgrid-filters[data-active="1"] > h4 svg path:last-child {
  opacity: 0;
}
.productsgrid-filters > h4 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  cursor: pointer;
  width: 13.541667rem;
  flex-shrink: 0;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 760px) {
  .productsgrid-filters > h4 {
    font-size: 18px;
    width: 100%;
  }
}
.productsgrid-filters > h4 svg {
  display: block;
}
@media (max-width: 760px) {
  .productsgrid-filters > h4 svg {
    width: 8px;
    height: 8px;
  }
}
.productsgrid-filters > h4 svg path:last-child {
  transition: opacity 0.4s var(--ease-in-out-circ);
}
.productsgrid-filters-wrapper {
  flex-grow: 1;
  height: 0;
  overflow: hidden;
}
.productsgrid-filters-items {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: var(--layout-grid-columns-gap);
}
@media (max-width: 760px) {
  .productsgrid-filters-items {
    flex-flow: row wrap;
    column-gap: 20px;
    margin-top: 24px;
  }
}
.productsgrid-filter {
  flex-grow: 1;
}
@media (max-width: 760px) {
  .productsgrid-filter {
    width: calc(50% - 10px);
  }
}
@media (max-width: 760px) {
  .productsgrid-filter:nth-child(3),
  .productsgrid-filter:nth-child(4) {
    margin-top: 20px;
  }
}
.productsgrid-filter strong {
  font-weight: 400;
}
.productsgrid-filter ul {
  margin-top: 0.5rem;
}
@media (max-width: 760px) {
  .productsgrid-filter ul {
    margin-top: 2.5px;
  }
}
@media (max-width: 760px) {
  .productsgrid-filter ul li {
    padding: 2.5px 0;
  }
}
.productsgrid-filter .ui-input-field.ui-input-field--checkbox {
  margin-top: 0.1rem;
  align-items: flex-start;
}
@media (max-width: 760px) {
  .productsgrid-filter .ui-input-field.ui-input-field--checkbox {
    margin-top: 3px;
  }
}
.productsgrid-filter .ui-input-field.ui-input-field--checkbox input {
  margin-top: 0.5rem;
}
.productsgrid-filters-actions {
  width: 100%;
  text-align: right;
  margin-top: 0.677083rem;
}
@media (max-width: 760px) {
  .productsgrid-filters-actions {
    margin-top: 20px;
  }
}
.productsgrid-filters-actions a {
  display: inline-block;
  font-weight: 400;
}
.productsgrid-filters-actions a:after {
  height: 0.104167rem;
}
:is(.productsgrid-filters-actions a) + a {
  margin-left: 1rem;
}
@media (max-width: 760px) {
  :is(.productsgrid-filters-actions a) + a {
    margin-left: 20px;
  }
}
.productsgrid-items.layout-grid {
  margin-top: calc(var(--layout-sections-gap) / 2);
  row-gap: 1.5625rem;
}
@media (max-width: 760px) {
  .productsgrid-items.layout-grid {
    margin-top: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.productsgrid-item {
  -webkit-text-decoration: none;
  text-decoration: none;
}
@media (hover: hover) {
  .productsgrid-item:hover h5,
  .productsgrid-item:hover .text-smallest {
    opacity: 1;
    transform: scale(1);
  }
}
.productsgrid-item[data-active="0"] {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
.productsgrid-item h5 {
  text-align: center;
  margin-top: 1.5625rem;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.3s var(--ease-in-out-quad);
}
@media (max-width: 760px) {
  .productsgrid-item h5 {
    display: none;
  }
}
.productsgrid-item .text-smallest {
  display: block;
  text-align: center;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.3s var(--ease-in-out-quad) 0.1s;
}
@media (max-width: 760px) {
  .productsgrid-item .text-smallest {
    display: none;
  }
}
.productsgrid-item-images {
  aspect-ratio: 1/1.5;
  position: relative;
  overflow: hidden;
}
.productsgrid-item-images picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.productsgrid-item-images picture:nth-child(2) {
  opacity: 0;
  transition: all 0.5s var(--ease-in-out-quart);
  transform: scale(1.05);
}
@media (hover: hover) {
  .productsgrid-item-images picture:nth-child(2):hover {
    opacity: 1;
    transform: scale(1);
  }
}
.productsgrid-item-images img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 760px) {
  .intro.layout-block + .slider.layout-block {
    margin-top: 0;
  }
}
.slider {
  --slider-margin-bar: 7.604167rem;
  --slider-mobile-height: 750px;
  position: relative;
  display: block;
  height: 49rem;
  overflow: hidden;
}
@media (max-width: 760px) {
  .slider {
    height: var(--slider-mobile-height);
    transition: height 0.4s var(--ease-in-out-cubic);
  }
}
.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
}
.slider-slide[data-active="0"] {
  opacity: 0;
  pointer-events: none;
}
.slider-slide[data-next="1"] {
  z-index: 2;
}
.slider-slide h2 {
  position: absolute;
  right: var(--layout-container-margin);
  top: 1.675rem;
  z-index: 1;
  color: var(--slider-color-slide-text);
}
@media (max-width: 760px) {
  .slider-slide h2 {
    top: 330px;
    left: var(--layout-container-margin);
    right: unset;
    color: var(--slider-color-slide-text);
  }
}
.slider-slide-bar {
  position: relative;
  margin-top: var(--slider-margin-bar);
  height: calc(100% - var(--slider-margin-bar));
  background-color: var(--slider-color-slide-background);
}
@media (max-width: 760px) {
  .slider-slide-bar {
    margin-top: 0;
    height: calc(var(--slider-mobile-height) - 80px);
  }
}
.slider-slide-column {
  position: absolute;
  left: var(--layout-container-margin);
  width: 42.291667rem;
  top: 0;
  height: 100%;
}
@media (max-width: 760px) {
  .slider-slide-column {
    z-index: 1;
    top: 410px;
    height: auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - var(--layout-container-margin) * 2);
  }
}
.slider-slide-column picture {
  width: 100%;
}
@media (max-width: 760px) {
  .slider-slide-column picture {
    order: 1;
    margin-top: 40px;
  }
}
:is(.slider-slide-column picture) + p {
  margin-top: 3.125rem;
}
@media (max-width: 760px) {
  :is(.slider-slide-column picture) + p {
    margin-top: 0;
  }
}
.slider-slide-column p {
  color: var(--slider-color-slide-text);
  max-width: 85%;
  height: calc(var(--line-height) * 6);
  overflow: hidden;
}
@media (max-width: 760px) {
  .slider-slide-column p {
    max-width: unset;
    height: unset;
    overflow: unset;
    order: 0;
  }
}
.slider-slide-column a {
  color: var(--slider-color-slide-text);
  margin-top: 1em;
}
.slider-slide-image {
  position: absolute;
  top: var(--slider-margin-bar);
  right: var(--layout-container-margin);
  width: 31.25rem;
  height: calc(100% - var(--slider-margin-bar));
}
@media (max-width: 760px) {
  .slider-slide-image {
    right: unset;
    left: 20px;
    aspect-ratio: 1/1.3247126436781609;
    width: auto;
    height: 350px;
    object-fit: contain;
  }
}
.slider-slide-image img {
  height: 100%;
  object-position: right top;
  object-fit: contain;
}
.slider .ui-indexes {
  position: absolute;
  top: 9.635417rem;
  right: var(--layout-container-margin);
  z-index: 5;
}
@media (max-width: 760px) {
  .slider .ui-indexes {
    right: var(--layout-container-margin);
    top: var(--layout-container-margin);
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (max-width: 760px) {
  .slider .ui-indexes li {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    row-gap: 0;
    transition: row-gap 0.5s var(--ease-in-out-cubic);
  }
}
@media (max-width: 760px) {
  .slider .ui-indexes li[data-active="1"] {
    column-gap: 0;
  }
}
@media (max-width: 760px) {
  .slider .ui-indexes li[data-active="1"] span {
    height: 42px;
    margin-top: 8px;
    margin-bottom: 8px;
    transform: scaleY(1);
  }
}
@media (max-width: 760px) {
  .slider .ui-indexes li span {
    width: 1px;
    height: 25px;
    transform: scaleY(0);
  }
}
.video {
  --video-color: black;
  display: block;
  position: relative;
  height: 44.375rem;
}
@media (max-width: 760px) {
  .video {
    height: 154.93333333333334rem;
  }
}
.video .video-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 760px) {
  .video .video-video {
    display: none;
  }
}
.video .video-video.video-video--mobile {
  display: none;
}
@media (max-width: 760px) {
  .video .video-video.video-video--mobile {
    display: block;
  }
}
.video > picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 760px) {
  .video > picture:nth-of-type(1) {
    display: none;
  }
}
.video > picture:nth-of-type(2) {
  display: none;
}
@media (max-width: 760px) {
  .video > picture:nth-of-type(2) {
    display: block;
  }
}
.video > picture img {
  height: 100%;
  object-fit: cover;
}
.video-content {
  position: absolute;
  top: 4.166667rem;
  left: 4.322917rem;
  width: calc(100% - 8.645833rem);
}
@media (max-width: 760px) {
  .video-content {
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
  }
}
.video-content svg {
  display: block;
  width: 9.583333rem;
  height: 3.020833rem;
}
@media (max-width: 760px) {
  .video-content svg {
    width: 100px;
    height: auto;
  }
}
.video-content svg path,
.video-content svg rect {
  fill: var(--video-color);
}
:is(.video-content svg) + h3 {
  margin-top: 0.625rem;
}
@media (max-width: 760px) {
  :is(.video-content svg) + h3 {
    margin-top: 10px;
  }
}
.video-content h3 {
  color: var(--video-color);
}
.video-content .text-content {
  margin-top: calc(var(--line-height) * 0.5);
}
.video-play {
  position: absolute;
  top: calc(50% - 3.1770835rem);
  left: calc(50% - 3.1770835rem);
  width: 6.354167rem;
  height: 6.354167rem;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 760px) {
  .video-play {
    top: calc(50% - 30.5px);
    left: calc(50% - 30.5px);
    width: 61px;
    height: 61px;
  }
}
@media (hover: hover) {
  .video-play:hover svg path {
    fill: var(--video-color);
  }
  .video-play:hover svg circle[fill="none"] {
    stroke: var(--video-color);
  }
}
.video-play:active svg path {
  opacity: 0.8;
}
.video-play svg {
  pointer-events: none;
  width: 100%;
  height: 100%;
}
