@import "vendors/fonts.css";
:root {
  --main-clr-primary: #29372c;
  --main-clr-secondary: #8abb79;
  --main-clr-hover: #c5ddbc;
  --main-clr-light: #e8f1e4;
  --hover-clr-hover: #c5ddbc;
  --neutral-clr-neutral: hsl(0, 0%, 50%);
  --neutral-clr-white: hsl(0, 0%, 100%);
  --neutral-clr-black: hsl(0, 0%, 0%);
  --status-clr-success: hsl(120, 75%, 40%);
  --status-clr-error: hsl(0, 75%, 50%);
  --status-clr-warning: hsl(36, 75%, 50%);
  --status-clr-info: hsl(192, 75%, 50%);
}

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

html {
  scrollbar-gutter: stable;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.1875rem;
  color: #29372c;
  background-color: #29372c;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: #8abb79;
  text-decoration: none;
}

a:is(:hover, :focus) {
  color: #c5ddbc;
}

strong {
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.0833333333vw, 1.875rem);
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: 0.03em;
  padding-top: 1.78125rem;
  padding-bottom: 1.125rem;
}

p + p {
  margin-top: 1em;
}

ul,
ol {
  padding-left: 1.25em;
}

ul li,
ol li {
  margin: 0 0 0.5rem;
}

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

.grid--full {
  width: 100%;
}

.grid--container {
  width: min(90%, 81.25rem);
  margin-inline: auto;
}

.grid__column {
  grid-column: span var(--phone-span, 12);
}

@media screen and (min-width: 48em) {
  .grid__column {
    grid-column: span var(--tablet-span, var(--phone-span, 12));
  }
}
@media screen and (min-width: 62em) {
  .grid__column {
    grid-column: span var(--span, var(--tablet-span, 12));
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 101;
  background-color: var(--header-bg);
  color: var(--header-color);
  transition: background-color 0.4s ease, color 0.4s ease;
}

.site-header__top {
  height: 3.125rem;
  padding-inline: clamp(1rem, 1.6666666667vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media screen and (max-width: 48em) {
  .site-header__top {
    display: none;
  }
}
.site-header__main {
  height: 3.75rem;
  padding-inline: clamp(1rem, 1.6666666667vw, 1.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 48em) {
  .site-header__main {
    height: 5rem;
  }
}
.site-header__logo {
  padding-left: clamp(0.5rem, 1.9791666667vw, 1.78125rem);
  margin-right: 1.4rem;
}

.site-header__logo img {
  height: clamp(1.25rem, 1.6666666667vw, 1.5rem);
  width: auto;
}

.site-header__logo-invert {
  display: none;
}

.site-header__burger {
  background: none;
  border: none;
  color: var(--header-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 0;
  margin-right: clamp(1rem, 4vw, 3.6rem);
  min-width: 2.5rem;
}

.site-header__burger-icon {
  width: 2.5rem;
  height: 1rem;
  margin-bottom: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-header__burger-line {
  display: block;
  width: 100%;
  height: 0.3125rem;
  background-color: currentColor;
  border-radius: 0.125rem;
  transition: transform 0.3s ease;
}

.site-header__burger-label {
  font-size: 0.75rem;
  color: var(--header-color);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
  display: block;
  text-align: center;
  min-width: 3rem;
}

body.menu-open .site-header__burger-line:first-child {
  transform: translateY(0.34375rem) rotate(45deg);
}

body.menu-open .site-header__burger-line:last-child {
  transform: translateY(-0.34375rem) rotate(-45deg);
}

body.menu-open.header-light {
  --header-bg: var(--main-clr-primary);
  --header-color: #8abb79;
  --header-active: hsl(0, 0%, 100%);
}

body.menu-open.header-light .site-header__logo-default {
  display: block;
}

body.menu-open.header-light .site-header__logo-invert {
  display: none;
}

body.header-dark {
  --header-bg: var(--main-clr-primary);
  --header-color: #8abb79;
  --header-active: hsl(0, 0%, 100%);
}

body.header-light {
  --header-bg: var(--main-clr-secondary);
  --header-color: #29372c;
  --header-active: #29372c;
}

body.header-light .site-header__logo-default {
  display: none;
}

body.header-light .site-header__logo-invert {
  display: block;
}

body.header-soft {
  --header-bg: var(--main-clr-hover);
  --header-color: #29372c;
  --header-active: #29372c;
}

body.header-soft .site-header__logo-default {
  display: none;
}

body.header-soft .site-header__logo-invert {
  display: block;
}

body.menu-open.header-soft {
  --header-bg: var(--main-clr-primary);
  --header-color: #8abb79;
  --header-active: hsl(0, 0%, 100%);
}

body.menu-open.header-soft .site-header__logo-default {
  display: block;
}

body.menu-open.header-soft .site-header__logo-invert {
  display: none;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.language-switch--mobile {
  display: none;
  margin-left: auto;
  margin-right: 1.5rem;
}

@media screen and (max-width: 48em) {
  .language-switch--mobile {
    display: flex;
  }
}
.language-switch--mobile .language-switch__link {
  font-size: 0.75rem;
}

.language-switch--mobile .language-switch__divider {
  font-size: 0.75rem;
}

.language-switch__link {
  color: var(--header-color);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 500;
}

.language-switch__link.is-active {
  color: var(--header-active, var(--header-color));
  font-weight: 700;
}

.language-switch__divider {
  color: var(--header-color);
  font-size: 0.875rem;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: #29372c;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  will-change: opacity, visibility;
}

.site-menu[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.site-menu__nav {
  width: 100%;
  padding-inline: clamp(1.5rem, 3.3333333333vw, 3rem);
}

.site-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 3.8888888889vw, 3.5rem);
}

@media screen and (max-width: 48em) {
  .site-menu__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.site-menu__item {
  text-align: center;
}

@media screen and (max-width: 48em) {
  .site-menu__item {
    text-align: left;
    width: 100%;
  }
}
.site-menu__link {
  font-size: clamp(1.5rem, 2.7777777778vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  color: #8abb79;
  text-decoration: none;
  letter-spacing: 0.05em;
  will-change: opacity;
}

.site-menu__link::after {
  content: attr(data-text);
  font-weight: 700;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.site-menu__link:hover {
  color: #8abb79;
  font-weight: 700;
}

.site-menu__link.is-active {
  font-weight: 700;
}

.site-menu__sublist {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-menu__sublink {
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  font-weight: 500;
  text-transform: uppercase;
  color: #8abb79;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.site-menu__sublink:hover {
  color: hsl(0, 0%, 100%);
}

.site-menu__sublink.is-active {
  color: hsl(0, 0%, 100%);
}

body.menu-open {
  overflow: hidden;
}

.footer-jobs {
  position: relative;
  background-color: var(--main-clr-primary);
  padding-top: 12vh;
}

.footer-jobs--overlap {
  --jobs-overlap: 8vh;
  background: transparent;
  padding-top: 0;
  margin-top: calc(var(--jobs-overlap) * -1);
}

.footer-jobs--overlap::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--jobs-overlap);
  background-color: var(--main-clr-primary);
  z-index: 0;
}

@media screen and (max-width: 48em) {
  .footer-jobs--overlap {
    margin-top: 0;
    background-color: var(--main-clr-primary);
    padding-top: 12vh;
  }
  .footer-jobs--overlap::before {
    display: none;
  }
}
.footer-jobs > * {
  position: relative;
  z-index: 1;
}

.footer-jobs__box {
  background-color: var(--main-clr-secondary);
  color: var(--main-clr-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vh clamp(2rem, 3.8888888889vw, 3.5rem);
}

@media screen and (max-width: 48em) {
  .footer-jobs__box {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(1.5rem, 2.2222222222vw, 2rem);
  }
}
.footer-jobs__line {
  border: none;
  width: 3.125rem;
  height: 0.125rem;
  background-color: var(--main-clr-primary);
  margin: 0 0 clamp(1rem, 1.6666666667vw, 1.5rem);
}

.footer-jobs__headline {
  font-size: clamp(1.5rem, 2.7777777778vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.footer-jobs__link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: clamp(0.25rem, 0.5555555556vw, 0.5rem);
  padding: 0.8em 0;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--main-clr-primary);
  transition: color 0.3s ease;
}

.footer-jobs__link::before {
  content: "";
  flex-shrink: 0;
  width: 2.2rem;
  height: 1.25rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 142 81'%3E%3Cg fill='none' stroke='%23000' stroke-width='5.7'%3E%3Cline x1='0' y1='40.5' x2='135' y2='40.5'/%3E%3Cpath d='M101.6.2c0 22.2 18 40.3 40.1 40.3'/%3E%3Cpath d='M101.6 80.8c0-22.2 18-40.3 40.1-40.3'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 142 81'%3E%3Cg fill='none' stroke='%23000' stroke-width='5.7'%3E%3Cline x1='0' y1='40.5' x2='135' y2='40.5'/%3E%3Cpath d='M101.6.2c0 22.2 18 40.3 40.1 40.3'/%3E%3Cpath d='M101.6 80.8c0-22.2 18-40.3 40.1-40.3'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.footer-jobs__link:hover {
  color: var(--main-clr-white);
}

.footer-jobs__action {
  flex-shrink: 0;
}

.footer-jobs--light {
  background-color: var(--main-clr-secondary);
  padding-bottom: 12vh;
}

.footer-jobs--light .footer-jobs__box {
  background-color: var(--main-clr-primary);
  color: var(--main-clr-secondary);
}

.footer-jobs--light .footer-jobs__line {
  background-color: var(--main-clr-secondary);
}

.footer-jobs--light .footer-jobs__link {
  color: var(--main-clr-secondary);
}

.footer-jobs--light .footer-jobs__link:hover {
  color: var(--main-clr-white);
}

.footer-cta {
  background-color: var(--main-clr-primary);
  color: var(--main-clr-secondary);
  overflow: hidden;
  padding-top: 12vh;
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 48em) {
  .footer-cta__inner {
    grid-template-columns: 1fr;
  }
}
.footer-cta__slider {
  overflow: hidden;
}

.footer-cta__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.footer-cta__track > img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.footer-cta__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 4.4444444444vw, 4rem) calc((100% - min(90%, 81.25rem)) / 2) clamp(2rem, 4.4444444444vw, 4rem) clamp(1.5rem, 3.3333333333vw, 3rem);
}

@media screen and (max-width: 48em) {
  .footer-cta__content {
    padding: clamp(1.5rem, 2.7777777778vw, 2.5rem);
  }
}
.footer-cta__headline {
  font-size: clamp(1.5rem, 2.7777777778vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.footer-cta .cta-button {
  margin-top: clamp(1.5rem, 2.7777777778vw, 2.5rem);
}

.footer-cta__text {
  margin-top: clamp(1rem, 1.6666666667vw, 1.5rem);
  font-size: clamp(0.9375rem, 1.1111111111vw, 1rem);
  line-height: 1.5;
}

.footer-cta--light {
  background-color: var(--main-clr-secondary);
  color: var(--main-clr-primary);
}

.site-footer {
  background-color: var(--main-clr-primary);
  color: var(--main-clr-secondary);
  padding-block: clamp(1.5rem, 2.2222222222vw, 2rem);
}

.site-footer a {
  color: var(--main-clr-secondary);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--main-clr-hover);
}

.site-footer__line {
  border: none;
  border-top: 1px solid var(--main-clr-secondary);
  margin-block: 3.5625rem;
}

.site-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media screen and (max-width: 48em) {
  .site-footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.site-footer__logo img {
  width: 11.875rem;
  height: auto;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__social img {
  width: 2.125rem;
  height: 2.125rem;
  transition: opacity 0.2s ease;
}

.site-footer__social a:hover img {
  opacity: 0.7;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: clamp(0.8125rem, 1.0416666667vw, 0.9375rem);
  text-align: right;
}

@media screen and (max-width: 48em) {
  .site-footer__contact {
    text-align: left;
  }
}
.site-footer__legal {
  font-size: clamp(0.75rem, 0.9027777778vw, 0.8125rem);
  text-align: right;
}

@media screen and (max-width: 48em) {
  .site-footer__legal {
    text-align: left;
  }
}
.site-footer__sep {
  margin-inline: 0.5em;
  opacity: 0.5;
}

.layout-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--block-gap, 2.25rem);
  overflow-x: clip;
  max-width: 100vw;
  padding-top: calc(var(--overlap-offset, 0px) + var(--section-padding, 0px));
  padding-bottom: calc(var(--section-padding, 0px) + var(--footer-space, 0px));
}

.layout-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--section-bg, transparent);
  z-index: -1;
}

.layout-section > * {
  position: relative;
}

.layout-section--overlap {
  margin-top: calc(var(--layout-overlap) * -1);
}

.layout-section--contentoverlap {
  margin-top: calc(var(--content-overlap) * -1);
}

.layout-section--contentoverlap::before {
  top: var(--content-overlap);
}

@media screen and (max-width: 62em) {
  .layout-section {
    --overlap-offset: calc(var(--layout-overlap, 0px) * 0.4) !important;
  }
  .layout-section--overlap {
    margin-top: calc(var(--layout-overlap) * -0.4);
  }
  .layout-section--contentoverlap {
    margin-top: calc(var(--content-overlap) * -0.4);
  }
  .layout-section--contentoverlap::before {
    top: calc(var(--content-overlap) * 0.4);
  }
}
@media screen and (max-width: 48em) {
  .layout-section {
    --overlap-offset: calc(var(--layout-overlap, 0px) * 0.25) !important;
  }
  .layout-section--overlap {
    margin-top: calc(var(--layout-overlap) * -0.25);
  }
  .layout-section--contentoverlap {
    margin-top: calc(var(--content-overlap) * -0.25);
  }
  .layout-section--contentoverlap::before {
    top: calc(var(--content-overlap) * 0.25);
  }
}
.layout-section:last-child {
  --footer-space: 12vh;
}

.no-footer-space .layout-section:last-child {
  --footer-space: 0px;
}

.layout-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: clamp(1.5rem, 3.3333333333vw, 3rem);
  column-gap: clamp(3rem, 6.6666666667vw, 6rem);
  align-items: var(--grid-valign, center);
}

.layout-grid__col {
  grid-column: span var(--col-span, 12);
  display: flex;
  flex-direction: column;
  gap: var(--block-gap, 2.25rem);
}

@media screen and (max-width: 48em) {
  .layout-grid {
    grid-template-columns: 1fr;
  }
  .layout-grid__col {
    grid-column: span 1;
    min-width: 0;
  }
}
.hero {
  width: 100%;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: var(--hero-align, start);
  --hero-gap: clamp(1.5rem, 3.4722222222vw, 3.125rem);
  gap: var(--hero-gap);
  width: min(90%, 81.25rem);
  margin-inline: auto;
}

.hero__content {
  padding-top: var(--hero-offset, 0);
  padding-bottom: 3rem;
}

.hero__line {
  display: block;
  width: 4.375rem;
  height: 0.125rem;
  background-color: var(--hero-color);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(2rem, 4.8611111111vw, 4.375rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1em;
  color: var(--hero-color);
}

.hero__spacer {
  height: var(--hero-space, 2rem);
}

.hero__text {
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--hero-color);
  line-height: 1.6;
}

.hero__image {
  width: var(--hero-bleed, 100%);
  min-width: 0;
  max-width: calc(50vw - var(--hero-gap) / 2 - 1rem);
}

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

.hero__slider {
  overflow: hidden;
}

.hero__slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease;
}

.hero__slider-track > img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 48em) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__content {
    padding-inline: 2.5%;
  }
  .hero__image {
    width: 100%;
    max-width: 100%;
  }
}
.icon-block {
  display: flex;
  justify-content: var(--icon-align, center);
}

.icon-block svg {
  width: 100%;
  max-width: var(--icon-maxwidth, 3.75rem);
  height: auto;
}

@media screen and (max-width: 48em) {
  .icon-block svg {
    max-width: calc(var(--icon-maxwidth, 3.75rem) * 0.8);
  }
}
.spacer {
  height: calc(var(--spacer-desktop, 3rem) - var(--block-gap, 1.5rem));
}

@media screen and (max-width: 48em) {
  .spacer {
    height: calc(var(--spacer-mobile, 2rem) - var(--block-gap, 1.5rem));
  }
}
.image-block img {
  width: 100%;
  aspect-ratio: var(--image-ratio, 16/9);
  object-fit: cover;
}

.image-slider {
  overflow: clip;
  width: 100%;
  min-width: 0;
}

.image-slider__track {
  display: flex;
  width: calc(var(--slide-total) * 100%);
}

.image-slider__track img {
  width: calc(100% / var(--slide-total));
  flex-shrink: 0;
  aspect-ratio: var(--image-ratio, 16/9);
  object-fit: cover;
}

.linkimage {
  display: block;
}

.linkimage img {
  width: 100%;
  aspect-ratio: var(--image-ratio, 16/9);
  object-fit: cover;
  object-position: var(--image-position, center);
}

.linkimage--center {
  margin-inline: auto;
}

.linkimage--right {
  margin-left: auto;
}

a.linkimage {
  transition: opacity 0.2s ease;
}

a.linkimage:hover {
  opacity: 0.85;
}

.arrow-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

@media screen and (min-width: 48em) {
  .arrow-list--2col {
    grid-template-columns: 1fr 1fr;
    column-gap: 0.75rem;
  }
}
.arrow-list--horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}

@media screen and (max-width: 48em) {
  .arrow-list--horizontal {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.arrow-list--mobile-2col {
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
}

.arrow-list--uppercase {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.arrow-list a {
  color: currentColor;
  text-decoration: none;
}

.arrow-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.arrow-list li::before {
  content: "";
  flex-shrink: 0;
  width: 2.2rem;
  height: 1.25rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 142 81'%3E%3Cg fill='none' stroke='%23000' stroke-width='5.7'%3E%3Cline x1='0' y1='40.5' x2='135' y2='40.5'/%3E%3Cpath d='M101.6.2c0 22.2 18 40.3 40.1 40.3'/%3E%3Cpath d='M101.6 80.8c0-22.2 18-40.3 40.1-40.3'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 142 81'%3E%3Cg fill='none' stroke='%23000' stroke-width='5.7'%3E%3Cline x1='0' y1='40.5' x2='135' y2='40.5'/%3E%3Cpath d='M101.6.2c0 22.2 18 40.3 40.1 40.3'/%3E%3Cpath d='M101.6 80.8c0-22.2 18-40.3 40.1-40.3'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 0.8em;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-transform: uppercase;
  background-color: var(--btn-bg);
  color: var(--btn-color);
  border: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--btn-color);
  color: var(--btn-bg);
  border-color: var(--btn-bg);
}

.cta-button::after {
  content: "";
  flex-shrink: 0;
  width: 2.2rem;
  height: 1.25rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 142 81'%3E%3Cg fill='none' stroke='%23000' stroke-width='5.7'%3E%3Cline x1='0' y1='40.5' x2='135' y2='40.5'/%3E%3Cpath d='M101.6.2c0 22.2 18 40.3 40.1 40.3'/%3E%3Cpath d='M101.6 80.8c0-22.2 18-40.3 40.1-40.3'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 142 81'%3E%3Cg fill='none' stroke='%23000' stroke-width='5.7'%3E%3Cline x1='0' y1='40.5' x2='135' y2='40.5'/%3E%3Cpath d='M101.6.2c0 22.2 18 40.3 40.1 40.3'/%3E%3Cpath d='M101.6 80.8c0-22.2 18-40.3 40.1-40.3'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.75rem, 1.6666666667vw, 1.5rem);
}

@media screen and (max-width: 48em) {
  .spectrum-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 36em) {
  .spectrum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.spectrum-grid__cta {
  align-self: center;
  margin-bottom: calc(clamp(1rem, 1.875vw, 1.6875rem) * 1.2 + 0.75rem);
  grid-column: span 2;
  justify-self: end;
}

.spectrum-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--card-color);
}

.spectrum-card__letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 0.72em;
  font-size: clamp(3.5rem, 7.7777777778vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  border: 2px solid var(--card-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.spectrum-card__label {
  font-size: clamp(1rem, 1.875vw, 1.6875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0em;
  text-align: center;
  line-height: 1.2em;
}

.spectrum-card:hover {
  color: var(--card-color);
}

.spectrum-card:hover .spectrum-card__letter {
  background-color: var(--card-color);
  color: var(--card-bg);
}

.spectrum-detail {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.2222222222vw, 2rem);
  margin-top: calc(clamp(2.975rem, 6.6111111111vw, 5.95rem) * var(--sd-offset, 0) * -1);
}

@media screen and (max-width: 48em) {
  .spectrum-detail {
    margin-top: 0;
  }
}
.spectrum-detail__letter {
  font-size: clamp(3.5rem, 7.7777777778vw, 7rem);
  font-weight: 700;
  line-height: 0.85;
  flex-shrink: 0;
}

.spectrum-detail__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0;
}

.spectrum-detail__title {
  font-size: clamp(1.25rem, 2.0833333333vw, 1.875rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}

.spectrum-detail__text {
  font-size: 1.1875rem;
  line-height: 1.6;
  margin: 0;
}

.spectrum-detail__accordion {
  margin-top: 0.5rem;
}

.spectrum-detail__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.375rem 0;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-size: 1.375rem;
  font-weight: 600;
}

.spectrum-detail__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
}

.spectrum-detail__icon::before, .spectrum-detail__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.spectrum-detail__icon::after {
  transform: translate(-50%, -50%);
}

.spectrum-detail__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.spectrum-detail__accordion.is-open .spectrum-detail__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.spectrum-detail__accordion.is-open .spectrum-detail__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.spectrum-detail__details {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.spectrum-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.spectrum-detail__list li {
  display: flex;
}

.spectrum-detail__list li::before {
  content: "_";
  flex-shrink: 0;
  margin-right: 0.5em;
}

.clients-slider {
  --slider-gap: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.clients-slider__headline {
  color: var(--main-clr-secondary);
  margin-bottom: clamp(1rem, 2.2222222222vw, 2rem);
}

.clients-slider__viewport {
  width: min(90%, 81.25rem);
  max-width: 100%;
  flex-shrink: 1;
  overflow: clip;
}

.clients-slider__track {
  display: flex;
  gap: var(--slider-gap);
  width: 100%;
  transition: transform 0.4s ease;
}

.clients-slider__item {
  flex: 0 0 calc((100% - 3 * var(--slider-gap)) / 4);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 48em) {
  .clients-slider__item {
    flex: 0 0 calc((100% - var(--slider-gap)) / 2);
  }
}
.clients-slider img {
  max-height: var(--logo-height, 12.5rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.clients-slider__prev, .clients-slider__next {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.clients-slider__prev:hover, .clients-slider__next:hover {
  opacity: 1;
}

.clients-slider__prev svg, .clients-slider__next svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (min-width: 48em) {
  .clients-slider__prev, .clients-slider__next {
    display: flex;
  }
}
.clients-slider--no-nav .clients-slider__prev, .clients-slider--no-nav .clients-slider__next {
  visibility: hidden;
}

.counter {
  font-size: clamp(5.625rem, 9.0277777778vw, 8.125rem);
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat", system-ui, sans-serif;
}

.contacts {
  display: grid;
  gap: clamp(2rem, 3.3333333333vw, 3rem) clamp(1rem, 2.2222222222vw, 2rem);
}

.contacts--3col {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .contacts--3col {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 62em) {
  .contacts--3col {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.contacts--2col {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 48em) {
  .contacts--2col {
    grid-template-columns: 1fr 1fr;
  }
}
.contacts__card {
  display: flex;
  flex-direction: column;
}

.contacts__portrait {
  width: 100%;
  aspect-ratio: 360/466;
  object-fit: cover;
  margin-bottom: clamp(1rem, 1.6666666667vw, 1.5rem);
}

.contacts__name {
  text-transform: uppercase;
  font-size: clamp(1rem, 1.3888888889vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.contacts__info {
  font-size: clamp(0.8125rem, 1.0416666667vw, 0.9375rem);
  line-height: 1.6;
}

.contacts__position {
  margin: 0 0 0.25rem;
}

.contacts__phone, .contacts__email {
  display: block;
  color: inherit;
  text-decoration: none;
}

.contacts__phone:is(:hover, :focus), .contacts__email:is(:hover, :focus) {
  color: inherit;
  opacity: 0.5;
}

.job-cta__line, .job-body__aside-line, .job-body__line, .job-hero__line {
  content: "";
  display: block;
  width: 4.375rem;
  height: 0.125rem;
  background-color: var(--main-clr-secondary);
}

.job-hero {
  padding-top: 12vh;
  padding-bottom: 9vh;
  color: var(--main-clr-primary);
  text-align: left;
}

.job-hero__line {
  background-color: var(--main-clr-primary);
  margin-bottom: 3vh;
}

.job-hero__title {
  color: inherit;
  hyphens: auto;
}

.job-hero__icon {
  display: block;
  width: clamp(8rem, 13.1944444444vw, 11.875rem);
  height: auto;
  margin-top: 6vh;
}

.job-hero__mwd {
  color: inherit;
  font-size: 1.875rem;
  margin-top: 1rem;
}

.job-body {
  padding-block: clamp(2rem, 4.4444444444vw, 4rem);
  color: var(--main-clr-secondary);
}

.job-body__arrow {
  display: block;
  width: 3.75rem;
  height: auto;
  margin-bottom: clamp(1.5rem, 3.3333333333vw, 3rem);
}

.job-body__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(1.5rem, 3.3333333333vw, 3rem);
}

@media screen and (max-width: 48em) {
  .job-body__grid {
    grid-template-columns: 1fr;
  }
}
.job-body__main {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.2222222222vw, 2rem);
}

.job-body__line {
  margin-bottom: 1.5vh;
}

.job-body__aside {
  padding-top: 10vh;
}

@media screen and (max-width: 48em) {
  .job-body__aside {
    padding-top: 0;
  }
}
.job-body__claim {
  color: var(--main-clr-secondary);
  line-height: 1;
}

.job-body__aside-line {
  margin-top: 3vh;
}

.job-meta__item {
  font-size: 1.1875rem;
  line-height: 1.6;
}

.job-meta__label {
  display: inline-block;
  width: 8.75rem;
  font-weight: 700;
}

.job-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.375rem 0;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.job-accordion__title {
  font-size: 1.375rem;
  font-weight: 600;
}

.job-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
}

.job-accordion__icon::before, .job-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--main-clr-secondary);
  transition: transform 0.3s ease;
}

.job-accordion__icon::after {
  transform: translate(-50%, -50%);
}

.job-accordion__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.job-accordion__body {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.job-accordion.is-open .job-accordion__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.job-accordion.is-open .job-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.job-content ul {
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.job-content p {
  margin-bottom: 1rem;
}

.job-content p:last-child {
  margin-bottom: 0;
}

.job-content strong {
  display: block;
  font-weight: inherit;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.job-offer {
  margin-top: clamp(1rem, 2.2222222222vw, 2rem);
}

.job-offer__title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.job-cta {
  padding-block: clamp(3rem, 5.5555555556vw, 5rem);
  color: var(--main-clr-secondary);
}

.job-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3.3333333333vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1rem, 2.2222222222vw, 2rem);
}

@media screen and (max-width: 48em) {
  .job-cta__grid {
    grid-template-columns: 1fr;
  }
}
.job-cta__headline {
  color: var(--main-clr-secondary);
}

.job-cta__subline-wrap {
  padding-left: 20%;
}

@media screen and (max-width: 48em) {
  .job-cta__subline-wrap {
    padding-left: 0;
  }
}
.job-cta__line {
  margin-bottom: 1.5vh;
}

.job-cta__subline {
  color: inherit;
  font-size: clamp(1.25rem, 2.0833333333vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.job-cta__label {
  color: var(--main-clr-secondary);
  font-size: clamp(1.25rem, 2.0833333333vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: clamp(1rem, 2.2222222222vw, 2rem);
  margin-bottom: clamp(1rem, 2.2222222222vw, 2rem);
}

.job-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--main-clr-primary);
}

.job-form__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media screen and (max-width: 48em) {
  .job-form__row {
    grid-template-columns: 1fr;
  }
}
.job-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.job-form__field input[type=text],
.job-form__field input[type=email],
.job-form__field input[type=tel],
.job-form__field select {
  padding: 0.625rem 0.75rem;
  font-size: inherit;
  font-family: inherit;
  color: var(--main-clr-primary);
  background-color: transparent;
  border: 1px solid var(--main-clr-primary);
}

.job-form__field input[type=text]::placeholder,
.job-form__field input[type=email]::placeholder,
.job-form__field input[type=tel]::placeholder,
.job-form__field select::placeholder {
  color: var(--neutral-clr-neutral);
}

.job-form__field input[type=text]:focus,
.job-form__field input[type=email]:focus,
.job-form__field input[type=tel]:focus,
.job-form__field select:focus {
  outline: 2px solid var(--main-clr-secondary);
  outline-offset: -2px;
}

.job-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2329372c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
}

.job-form__upload {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.job-form__dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.5rem 1.5rem;
  border: 1.5px dashed var(--main-clr-secondary);
  text-align: center;
  color: var(--main-clr-primary);
  transition: background-color 0.2s ease;
}

.job-form__dropzone svg {
  opacity: 0.6;
}

.job-form__dropzone span {
  font-size: 0.9375rem;
}

.job-form__dropzone.is-dragover {
  background-color: rgba(138, 187, 121, 0.15);
}

.job-form__upload-btn {
  margin-top: 0.25rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--neutral-clr-white);
  background-color: var(--main-clr-primary);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.job-form__upload-btn:hover {
  opacity: 0.85;
}

.job-form__filelist {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.job-form__file {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background-color: rgba(138, 187, 121, 0.15);
  border-left: 3px solid var(--main-clr-secondary);
  font-weight: 500;
}

.job-form__file svg {
  flex-shrink: 0;
  color: var(--main-clr-secondary);
}

.job-form__check label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
}

.job-form__check input[type=checkbox] {
  flex-shrink: 0;
  margin-top: 0.2em;
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--main-clr-secondary);
}

.job-form__check a {
  color: var(--main-clr-primary);
}

.job-form__submit {
  margin-top: 0.5rem;
}

.job-form__success {
  padding: 1.5rem;
  background-color: var(--main-clr-secondary);
  color: var(--main-clr-primary);
  font-weight: 600;
}

.job-form__error {
  padding: 1rem;
  background-color: var(--status-clr-error);
  color: var(--neutral-clr-white);
  margin-top: 0.5rem;
}

.contactform {
  color: var(--main-clr-secondary);
}

.contactform__info {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(2rem, 3.3333333333vw, 3rem);
}

.contactform__line {
  border: none;
  border-top: 1px solid var(--main-clr-secondary);
  margin: 0;
}

.contactform__info-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(1rem, 2.2222222222vw, 2rem);
  padding: clamp(1.5rem, 3.3333333333vw, 3rem) 0;
}

.contactform__info-row + .contactform__info-row {
  padding-top: 0;
}

@media screen and (max-width: 48em) {
  .contactform__info-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.contactform__heading {
  color: var(--main-clr-secondary);
}

.contactform__link {
  display: block;
  color: var(--main-clr-secondary);
  text-decoration: none;
  line-height: 1.8;
}

.contactform__link:is(:hover, :focus) {
  color: var(--hover-clr-hover);
}

.contactform__office-name {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contactform__info-content p {
  margin: 0;
}

.contactform__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(3rem, 5.5555555556vw, 5rem);
}

.contactform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media screen and (max-width: 48em) {
  .contactform__row {
    grid-template-columns: 1fr;
  }
}
.contactform__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contactform__field label {
  font-size: inherit;
}

.contactform__field input[type=text],
.contactform__field input[type=email],
.contactform__field input[type=tel],
.contactform__field textarea {
  padding: 0.625rem 0.75rem;
  font-size: inherit;
  font-family: inherit;
  color: var(--main-clr-secondary);
  background-color: transparent;
  border: 1px solid var(--main-clr-secondary);
}

.contactform__field input[type=text]::placeholder,
.contactform__field input[type=email]::placeholder,
.contactform__field input[type=tel]::placeholder,
.contactform__field textarea::placeholder {
  color: rgba(138, 187, 121, 0.5);
}

.contactform__field input[type=text]:focus,
.contactform__field input[type=email]:focus,
.contactform__field input[type=tel]:focus,
.contactform__field textarea:focus {
  outline: 2px solid var(--main-clr-secondary);
  outline-offset: -2px;
}

.contactform__field textarea {
  resize: vertical;
}

.contactform__check label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
}

.contactform__check input[type=checkbox] {
  appearance: none;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 7px;
  background-image: url("../img/formular-checkbox.svg");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contactform__check input[type=checkbox]:checked {
  background-image: url("../img/formular-checkbox-checked.svg");
}

.contactform__check a {
  color: var(--main-clr-secondary);
  text-decoration: none;
}

.contactform__check a:is(:hover, :focus) {
  color: var(--hover-clr-hover);
}

.contactform__submit {
  margin-top: 0.5rem;
}

.contactform__success {
  padding: 1.5rem;
  background-color: var(--main-clr-secondary);
  color: var(--main-clr-primary);
  font-weight: 600;
}

.contactform__error {
  padding: 1rem;
  background-color: var(--status-clr-error);
  color: var(--neutral-clr-white);
  margin-top: 0.5rem;
}

.contactform__map-wrap {
  margin-top: clamp(3rem, 6.6666666667vw, 6rem);
  width: 100%;
  height: clamp(20rem, 41.6666666667vw, 37.5rem);
}

.contactform__map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #c5ddbc;
  text-align: center;
  gap: 1.5rem;
  padding: 2rem;
}

.contactform__map-consent p {
  margin: 0;
  color: var(--main-clr-primary);
}

.contactform__map {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.contactform__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #c5ddbc;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 300;
}

.contactform__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.accordion {
  color: var(--accordion-color);
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.375rem 0;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.accordion__title {
  font-size: clamp(1.125rem, 1.5277777778vw, 1.375rem);
  font-weight: 600;
}

.accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin-left: 1rem;
}

.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.accordion__icon::after {
  transform: translate(-50%, -50%);
}

.accordion__icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__body {
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__content {
  padding-bottom: 1.375rem;
}

.accordion__item.is-open .accordion__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.accordion__item.is-open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.flipbox-grid {
  --flipbox-front-bg: var(--main-clr-primary);
  --flipbox-front-color: var(--main-clr-secondary);
  --flipbox-back-bg: var(--main-clr-primary);
  --flipbox-back-color: var(--main-clr-secondary);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.6666666667vw, 1.5rem);
}

@media screen and (max-width: 48em) {
  .flipbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.flipbox-grid--light {
  --flipbox-front-bg: var(--main-clr-secondary);
  --flipbox-front-color: var(--main-clr-primary);
  --flipbox-back-bg: var(--main-clr-secondary);
  --flipbox-back-color: var(--main-clr-primary);
}

.flipbox-grid--soft {
  --flipbox-front-color: var(--main-clr-hover);
  --flipbox-back-color: var(--main-clr-hover);
}

.flipbox {
  perspective: 1000px;
}

.flipbox__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.1;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.flipbox:hover .flipbox__inner {
  transform: rotateX(180deg);
}

.flipbox__front, .flipbox__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 1.6666666667vw, 1.5rem);
}

.flipbox__front {
  background-color: var(--flipbox-front-bg);
  color: var(--flipbox-front-color);
}

.flipbox__back {
  background-color: var(--flipbox-back-bg);
  color: var(--flipbox-back-color);
  transform: rotateX(180deg);
}

.flipbox__letter {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(3.75rem, 6.9444444444vw, 6.25rem);
  font-weight: 700;
  line-height: 1;
}

.flipbox__subtitle {
  font-size: clamp(0.875rem, 1.25vw, 1.125rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.flipbox__title {
  font-size: clamp(1.125rem, 1.6666666667vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.flipbox__text {
  text-align: center;
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
}

.jobgrid {
  display: grid;
  gap: 0.375rem;
}

.jobgrid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.jobgrid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.jobgrid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 62em) {
  .jobgrid--4, .jobgrid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 36em) {
  .jobgrid--4, .jobgrid--3, .jobgrid--2 {
    grid-template-columns: 1fr;
  }
}
.jobgrid__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 7rem;
  padding: clamp(1rem, 1.6666666667vw, 1.5rem);
  border: 1px solid var(--main-clr-secondary);
  color: var(--main-clr-primary);
  text-decoration: none;
  background-image: linear-gradient(to bottom, var(--main-clr-secondary) 50%, transparent 50%);
  background-size: 100% 200%;
  background-position: center bottom;
  transition: background-position 0.5s ease-in-out, color 0.3s ease;
}

.jobgrid__tile:hover {
  background-position: center top;
  color: var(--main-clr-primary);
}

.jobgrid__title {
  font-size: clamp(1rem, 1.3194444444vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.4;
}

.processsteps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: clamp(1rem, 2.2222222222vw, 2rem);
}

.processsteps__headline {
  grid-column: 1/3;
  grid-row: 1;
  margin-bottom: clamp(1rem, 2.2222222222vw, 2rem);
}

.processsteps__image {
  grid-column: 3;
  grid-row: 1/-1;
  display: flex;
  align-items: center;
}

.processsteps__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.processsteps__col {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3.3333333333vw, 3rem);
}

.processsteps__step .heading-counter {
  margin-bottom: 0.75rem;
}

.processsteps__step .heading-3 {
  margin-bottom: 1rem;
}

.processsteps__text {
  font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
  line-height: 1.5;
}

@media screen and (max-width: 62em) {
  .processsteps {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .processsteps__headline {
    grid-column: 1/-1;
  }
  .processsteps__image {
    grid-column: 1/-1;
    grid-row: 3;
  }
  .processsteps__col {
    grid-row: 2;
  }
}
@media screen and (max-width: 36em) {
  .processsteps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .processsteps__col {
    grid-row: auto;
  }
  .processsteps__image {
    grid-column: 1;
    grid-row: auto;
  }
}
.consent-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  max-width: min(90%, 81.25rem);
  z-index: 9999;
  background-color: #8abb79;
  color: #29372c;
  padding: 1.5rem;
  box-shadow: 0 0.25rem 2rem rgba(0, 0, 0, 0.3);
}

.consent-banner.is-hidden {
  display: none;
}

.consent-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.consent-banner__text {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}

.consent-banner__text a {
  color: #29372c;
  font-weight: 700;
  text-decoration: none;
}

.consent-banner__text a:hover {
  color: hsl(0, 0%, 100%);
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

@media screen and (min-width: 48em) {
  .consent-banner__actions {
    flex-wrap: nowrap;
  }
}
.consent-banner__actions .cta-button {
  font-size: 0.875rem;
  white-space: nowrap;
}

.consent-banner__actions .cta-button::after {
  display: none;
}

.consent-banner__accept,
.consent-banner__reject {
  flex: 1 1 100%;
}

@media screen and (min-width: 48em) {
  .consent-banner__accept,
  .consent-banner__reject {
    flex: 0 0 auto;
  }
}
.consent-banner__reject {
  background-color: transparent;
  color: #29372c;
  border: 1px solid #29372c;
}

.consent-banner__reject:hover {
  background-color: #29372c;
  color: #8abb79;
}

.consent-banner__toggle {
  background: none;
  border: none;
  color: #29372c;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  white-space: nowrap;
}

.consent-banner__toggle:hover {
  color: hsl(0, 0%, 100%);
}

.consent-banner__settings {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.consent-banner__settings.is-open {
  display: flex;
}

.consent-banner__option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.consent-banner__option strong {
  display: block;
  font-size: 0.9375rem;
}

.consent-banner__option small {
  display: block;
  font-size: 0.8125rem;
  opacity: 0.75;
  margin-top: 0.25rem;
}

.consent-banner__switch {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 1.5rem;
  cursor: pointer;
}

.consent-banner__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-banner__slider {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 1.5rem;
  transition: background-color 0.25s ease;
}

.consent-banner__slider::before {
  content: "";
  position: absolute;
  left: 0.1875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background-color: #29372c;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.consent-banner__switch input:checked + .consent-banner__slider {
  background-color: #29372c;
}

.consent-banner__switch input:checked + .consent-banner__slider::before {
  transform: translateY(-50%) translateX(1.25rem);
}

.consent-banner__save {
  align-self: flex-start;
  font-size: 0.875rem;
}

.fair-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.fair-overlay__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.fair-overlay__dialog {
  position: relative;
  background-color: #8abb79;
  color: #29372c;
  max-width: clamp(42rem, 48.8888888889vw, 44rem);
  width: 100%;
  padding: clamp(3rem, 4.4444444444vw, 4rem) clamp(2rem, 3.3333333333vw, 3rem) clamp(2rem, 3.3333333333vw, 3rem);
}

.fair-overlay__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #29372c;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.fair-overlay__close:hover {
  opacity: 0.6;
}

.fair-overlay__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fair-overlay__badge {
  flex-shrink: 0;
  font-size: clamp(0.875rem, 1.3888888889vw, 1.25rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.35em;
  background-color: #29372c;
  color: #8abb79;
  padding: 0.65rem 1.25rem;
  outline: 2px solid #8abb79;
  outline-offset: -0.5rem;
  transform: rotate(-4deg);
}

.fair-overlay__header-left {
  flex: 1;
}

.fair-overlay__line {
  width: 4rem;
  height: 2px;
  background-color: #29372c;
  margin-bottom: 1.5rem;
}

.fair-overlay__title.heading-2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
}

.fair-overlay__text {
  margin-bottom: 2rem;
  line-height: 1.6;
}

.fair-overlay__text a {
  color: #29372c;
  font-weight: 700;
}

.fair-overlay__cta {
  display: inline-flex;
}

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

.text-right {
  text-align: right;
}

@media screen and (max-width: 48em) {
  .br-desktop {
    display: none;
  }
}
.container {
  width: min(90%, 81.25rem);
  margin-inline: auto;
}

.flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.heading-1 {
  font-size: clamp(2rem, 4.8611111111vw, 4.375rem);
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: 0.03em;
}

.heading-2 {
  font-size: clamp(1.5rem, 2.7777777778vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: normal;
}

.heading-3 {
  font-size: clamp(1.25rem, 2.0833333333vw, 1.875rem);
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: 0.03em;
}

.heading-4 {
  font-size: clamp(1.1rem, 1.3888888889vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
}

.heading-counter {
  font-size: clamp(5.625rem, 9.0277777778vw, 8.125rem);
  font-weight: 600;
  line-height: 1;
}

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