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

*:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

:root {
  --size-grid: 1650px;
  --padding-default: 75px;
  --padding-medium: calc(var(--padding-default) / 1.5);
  --padding-small: calc(var(--padding-default) / 2);
  --text-columns-gap: calc(var(--padding-default) / 2);
  --size-border-radius-default: 25px;
}

@media (max-width: 920px) {
  :root {
    --padding-default: 45px;
  }
}
:root {
  --color-dark: #000000;
  --color-highlight: #fcf4ee;
  --color-green: #82a48a;
  --color-red: #eb411e;
  --color-shine-red: #D1326A;
  --color-shine-orange: #EAAD7D;
  --color-shine-green: #88a581;
}

@font-face {
  font-family: "icons";
  font-display: block;
  src: url("/fonts/icons/icons.woff2?e3b4f6b954f27d80d4d843e41eb81f38") format("woff2");
}
.icon {
  line-height: 1;
}

.icon:before {
  font-family: icons !important;
  font-style: normal;
  font-weight: normal !important;
  vertical-align: top;
}

.icon-arrow-right:before {
  content: "\f101";
}

.icon-close:before {
  content: "\f102";
}

.icon-facebook:before {
  content: "\f103";
}

.icon-hamburger:before {
  content: "\f104";
}

.icon-instagram:before {
  content: "\f105";
}

.icon-linkedin:before {
  content: "\f106";
}

.icon-search:before {
  content: "\f107";
}

.icon-youtube:before {
  content: "\f108";
}

:root {
  --font-regular: "Inter",sans-serif;
  --font-lexend: 'Lexend', sans-serif;
  --font-size-small: 1.5rem;
  --font-size-regular: 2rem;
  --font-size-regular-medium: 2.5rem;
  --font-size-h1: 8rem;
  --font-size-h2: 5rem;
  --font-size-h3: 4rem;
  --font-size-lead: 3.7rem;
}

:root {
  --grid-full: 1 / span 12;
  --grid-reduced: 2 / span 10;
  --grid-container: 3 / span 8;
  --grid-small-container: 4 / span 6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 1rem;
  max-width: var(--size-grid);
  margin: 0 auto;
}
.grid--full {
  grid-column: var(--grid-full);
}
.grid--reduced {
  grid-column: var(--grid-reduced);
}
.grid--container {
  grid-column: var(--grid-container);
}
.grid--small-container {
  grid-column: var(--grid-small-container);
}

html {
  font-size: 62.5%;
}

body p, body span, body a, body strong,
body h1, body h2, body h3, body h4,
body li, body dt, body dd, body address,
body label, body input, body textarea, body select {
  font-family: var(--font-regular);
  font-size: var(--font-size-regular);
  font-style: normal;
  line-height: 140%;
}
body h1 {
  font-family: var(--font-lexend);
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 100%;
}
body h2 {
  font-size: var(--font-size-h2);
  padding-bottom: var(--padding-default);
  line-height: 120%;
}
body strong {
  font-weight: bold;
}
body > header #header-image img {
  width: 100%;
}
body > footer {
  position: relative;
  background-color: white;
  margin-top: calc(var(--padding-default) * 2) !important;
}
body > footer .inner {
  display: grid;
  grid-template-columns: subgrid;
  grid-gap: var(--padding-medium);
  padding: var(--padding-default) 0;
}
body > footer .inner address {
  grid-column: 1/span 6;
}
body > footer .inner address .logo {
  display: block;
  width: 100%;
  max-width: 400px;
}
body > footer .inner address .logo img {
  width: 100%;
}
body > footer .inner .legals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  grid-column: 7/span 6;
}
body > footer .inner .legals .legal-links {
  text-align: right;
}
body > footer .inner .legals .legal-links a {
  font-weight: bold;
}
body > footer .inner .copyright {
  grid-column: 1/-1;
  text-align: right;
}
@media (max-width: 920px) {
  body > footer .inner address {
    grid-column: 1/-1;
  }
  body > footer .inner .legals {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: flex-start;
  }
  body > footer .inner .legals .legal-links {
    text-align: left;
  }
}
@media (max-width: 800px) {
  body > footer .inner .legals {
    flex-direction: column;
    gap: var(--padding-small);
    text-align: left;
  }
  body > footer .inner .socials {
    text-align: left;
  }
}
body > footer:after {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
  z-index: -1;
  width: 800px;
  height: 800px;
  background: radial-gradient(50% 50% at 50% 50%, var(--color-shine-orange) 0%, rgba(255, 255, 255, 0.2) 100%);
  top: -250px;
}

button,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 25px;
  background: var(--color-dark);
  border-radius: var(--size-border-radius-default);
  color: white;
}
button i,
.button i {
  color: white;
  font-size: 15px;
}
button.round,
.button.round {
  padding: 10px;
}
a {
  color: var(--color-dark);
  text-decoration: none;
}

blockquote {
  font-size: var(--font-size-h2);
  font-family: serif;
  font-style: italic;
  font-weight: 500;
  line-height: 110%;
  text-align: center;
}

ul {
  position: relative;
  display: block;
  list-style: none;
  padding-left: 0;
}

dl dt {
  font-weight: bold;
}
dl dd {
  margin-bottom: var(--padding-small);
}
dl dd a {
  text-decoration: underline;
}

body header #topbar {
  display: grid;
  grid-template-columns: subgrid;
  padding: 55px 0;
  position: relative;
  z-index: 3;
}
body header #topbar .logo {
  grid-column: 1/span 3;
}

#lead {
  position: relative;
  display: flex;
  height: 45vh;
  min-height: 300px;
  flex-direction: column;
  align-items: stretch;
  background-repeat: no-repeat;
  background-size: 100vh;
  background-position: center;
}
#lead .inner {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
#lead .inner h1 {
  margin-bottom: 6.5vh;
}
#lead .inner .lead-text {
  font-size: var(--font-size-lead);
}
#lead .language {
  position: relative;
  display: flex;
  height: 120px;
  justify-content: center;
  align-items: center;
}
#lead .color-shine {
  bottom: -550px;
  left: -120px;
  transform: none;
  z-index: -1;
}
#lead.tick {
  background-image: url("/assets/images/headers/tick.png");
}
#lead.arrow {
  background-image: url("/assets/images/headers/arrow.png");
  background-size: 60vh;
  background-position: right;
}
#lead.rectangle {
  background-image: url("/assets/images/headers/rectangle.png");
  background-size: 60vh;
  background-position: right;
}

.language {
  --symbol-size: 35px;
}
.language a {
  position: relative;
  display: inline-flex;
  width: auto;
  gap: 15px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 100px;
  background-color: white;
}
.language a span {
  font-size: var(--font-size-small);
  max-width: 120px;
  text-align: right;
  line-height: 125%;
}
.language a .symbol {
  position: relative;
  display: block;
  width: var(--symbol-size);
  height: var(--symbol-size);
  border-radius: var(--symbol-size);
  background: linear-gradient(90deg, #E00069 0.07%, #E1086A 1.28%, #F08D80 26.19%, #F7B082 37.26%, #F2B182 42.61%, #E2B184 50.6%, #C6B086 60.25%, #9CAB87 71.09%, #78A587 78%, #78A587 99.88%);
}

.navigation {
  grid-column: 4/span 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5rem;
  z-index: 3;
}
.navigation li {
  position: relative;
}
.navigation li.is-open a {
  font-weight: 600;
  color: var(--color-green);
}
.navigation li.is-open:after {
  position: absolute;
  display: block;
  bottom: -10px;
  width: calc(100% + 20px);
  height: 5px;
  left: -10px;
  background-color: var(--color-green);
  content: "";
}
.navigation > li.action.jobs {
  right: -10px;
}
.navigation > li.action .button {
  height: 45px;
}
.navigation > li.action .button.round {
  width: 45px;
}

.color-shine.orange {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  z-index: -1;
  width: 800px;
  height: 800px;
  background: radial-gradient(50% 50% at 50% 50%, var(--color-shine-orange) 0%, rgba(255, 255, 255, 0.2) 100%);
}
.color-shine.red {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
  z-index: -1;
  width: 800px;
  height: 800px;
  background: radial-gradient(50% 50% at 50% 50%, var(--color-shine-red) 0%, rgba(255, 255, 255, 0) 100%);
}

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