* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

body {
  line-height: 1;
  color: black;
  background: white;
}

ol,
ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input[type=submit],
input[type=reset] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/* work-sans-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/work-sans-v23-latin_latin-ext-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* work-sans-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/work-sans-v23-latin_latin-ext-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/**
 * ALGORITHM BY: walbo
 * https://github.com/walbo/font-size-clamp/blob/main/utils/clamp-builder.ts
 * -------------------------------------------------------------------------------

 * Generates the clamp for font-size.
 *
 * @param {Number} $minFont - Minimum font size (px)
 * @param {Number} $maxFont - Maximum font size (px)
 * @param {Number} $preferredVwHard - Hard setting the preferred VW part
 * @param {Number} $minWidth - Minimum viewport width for the minimum font size - defaulted to 360px
 * @param {Number} $maxWidth - Maximum viewport width for the maximum font size - defaulted to 1920px
 * @return {Number} - The clamp for font-size
 */
body {
  font-family: "Sora", sans-serif;
  overflow-x: clip;
  accent-color: #149c66;
}

html {
  overflow-x: clip;
}

h1 {
  font-size: 4.375rem;
  font-size: clamp(2.125rem, 1.606rem + 2.308vw, 4.375rem);
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 3.125rem;
  font-size: clamp(1.875rem, 1.587rem + 1.282vw, 3.125rem);
  font-weight: 700;
  line-height: 1.04;
}

.desc {
  font-size: 1.0625rem;
  line-height: 1.64;
  font-weight: 300;
}

.btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background-color: #046e5a;
  border-radius: 6.25rem;
  color: #ffffff;
  padding: 1.2em 2.3em;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 200ms ease-in-out;
}
.btn:hover {
  background-color: #035f4e;
}
.btn.light {
  background-color: #ffffff;
  color: #046e5a;
  font-weight: 700;
}
.btn.light:hover {
  background-color: #f7f7f7;
}

strong {
  font-weight: 700;
}

.nobreak {
  white-space: nowrap;
}

main.error {
  min-height: 60vh;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
  padding-block: 2.5rem;
  gap: 2.5rem;
}
main.error,
main.error .error-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main.error .error-details {
  gap: 1rem;
}
main.error h2 {
  font-size: 1.5rem;
  font-size: clamp(1.125rem, 1.038rem + 0.385vw, 1.5rem);
  line-height: 1;
  text-align: center;
  font-weight: 500;
}
main.error a {
  text-decoration: underline;
}

header {
  padding-inline: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
  background-color: #ffffff;
}
header .inner {
  max-width: 1400px;
  margin-inline: auto;
  gap: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .right {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.982rem + 7.143vw, 1.25rem);
}
header .right nav ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
header .right nav ul a {
  display: block;
  font-size: 1.0625rem;
  line-height: 1;
  padding: 5rem 1.25rem;
}
header .right nav ul a.active {
  position: relative;
}
header .right nav ul a.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.625rem;
  background-color: #046e5a;
  border-end-end-radius: 0.625rem;
  border-end-start-radius: 0.625rem;
}
header .cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
header .cta a {
  font-size: 0.75rem;
  line-height: 1.66;
}
header .logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
header .logo svg {
  width: 100%;
}
header .lang-switcher {
  position: relative;
  --bg-color: #046e5a;
  --bg-color-hover: #035f4e;
  --color: #ffffff;
  --color-hover: #ffffff;
  font-size: 1.125rem;
  line-height: 1.555;
}
header .lang-switcher button {
  padding: 0.625rem;
  margin: -0.625rem;
}
header .lang-switcher .other-langs {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.625rem;
  opacity: 0;
  pointer-events: none;
  transition: all 100ms ease-in-out;
  background-color: var(--bg-color);
  color: var(--color);
  box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  overflow: clip;
}
header .lang-switcher .other-langs a {
  padding-inline: 1.25rem;
  padding-block: 0.625rem;
  transition: all 100ms ease-in-out;
}
header .lang-switcher .other-langs a:hover {
  background-color: var(--bg-color-hover);
  color: var(--color-hover);
}
header .lang-switcher .other-langs.show {
  opacity: 1;
  pointer-events: all;
}
@media only screen and (max-width: 31.25rem) {
  header .lang-switcher .other-langs {
    left: 0;
  }
}
@media only screen and (max-width: 62.5rem) {
  header #mail {
    display: none;
  }
}
@media only screen and (max-width: 43.75rem) {
  header {
    padding-block: 0.625rem;
  }
  header .cta {
    display: none;
  }
  header .right nav ul a {
    font-size: 15px;
    text-align: right;
    line-height: 1.2;
    padding: clamp(0.25rem, -2.321rem + 11.429vw, 1.25rem);
  }
  header .right nav ul a.active::before {
    display: none;
  }
}

footer {
  background: #046e5a;
  color: #ffffff;
}
footer .inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
  padding-block: 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
footer .inner .left {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
footer .inner .left .cta {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem 1.25rem;
}
footer .inner .left a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
footer .inner .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem 0.75rem;
  font-weight: 700;
}
@media only screen and (max-width: 31.25rem) {
  footer .inner .right {
    flex-direction: column;
  }
}
@media only screen and (max-width: 64rem) {
  footer .inner {
    flex-direction: column;
  }
}
footer svg.logo > * {
  fill: #ffffff;
}
@media only screen and (max-width: 52.1875rem) {
  footer .inner .left {
    flex-direction: column;
  }
}

main.home section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
  align-items: center;
}
main.home section:not(:first-child) {
  margin-block-start: clamp(2.5rem, 1.635rem + 3.846vw, 6.25rem);
}
main.home section:last-child {
  margin-block-end: clamp(2.5rem, 1.635rem + 3.846vw, 6.25rem);
}
@media only screen and (max-width: 48rem) {
  main.home section {
    grid-template-columns: 1fr;
  }
}
main.home section:not(.process) {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
}
main.home section.hero {
  gap: 2.5rem;
}
main.home section.hero h1 {
  margin-block-end: 1.25rem;
}
main.home section.hero h2 {
  font-size: 2.5rem;
  font-size: clamp(1.5rem, 1.269rem + 1.026vw, 2.5rem);
  line-height: 1;
  line-height: 1.2;
}
@media only screen and (max-width: 48rem) {
  main.home section.hero {
    padding-top: clamp(1.25rem, 0.673rem + 2.564vw, 3.75rem);
  }
  main.home section.hero .right {
    order: -1;
  }
}
main.home section.about .right {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
main.home section.benefits .left {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
main.home section.benefits .left li {
  display: grid;
  grid-template-columns: clamp(2.5rem, 2.356rem + 0.641vw, 3.125rem) 1fr;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.0625rem;
  line-height: 1.64;
  padding-block: 1.25rem;
}
main.home section.benefits .left li:not(:last-child) {
  border-bottom: 1px solid rgba(25, 23, 24, 0.1);
}
main.home section.benefits .left li svg {
  width: 100%;
  height: auto;
  max-width: clamp(3.125rem, 2.837rem + 1.282vw, 4.375rem);
}
@media only screen and (max-width: 48rem) {
  main.home section.benefits .left li {
    grid-template-columns: 1fr;
  }
}
main.home section.process {
  background: #046e5a;
  color: #ffffff;
  padding: clamp(3.75rem, 2.957rem + 3.526vw, 7.1875rem) 1.25rem;
  padding-inline: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
  grid-template-columns: 1fr;
}
main.home section.process .inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 2.5rem + 0vw, 2.5rem);
  align-items: center;
  max-width: 1400px;
  margin-inline: auto;
}
main.home section.process .inner .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media only screen and (max-width: 64rem) {
  main.home section.process .inner .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 48rem) {
  main.home section.process .inner .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 37.5rem) {
  main.home section.process .inner .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.home section.process .inner .cards .card {
  background-color: #ffffff;
  color: #191718;
  padding: 1.25rem;
  border-radius: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: 100%;
}
main.home section.process .inner .cards .card .index {
  font-size: 3.125rem;
  font-size: clamp(1.875rem, 1.587rem + 1.282vw, 3.125rem);
  font-weight: 700;
  line-height: 1.04;
  font-weight: 700;
  color: #149c66;
}
main.home section.contact .left {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
main.home section.contact .left .content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-weight: 300;
}
main.home section.contact .left .content .info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main.home section.contact .left .cta {
  font-size: 1.875rem;
  font-size: clamp(1.375rem, 1.26rem + 0.513vw, 1.875rem);
  line-height: 1;
  color: #046e5a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  text-align: center;
  line-height: 1.2;
}
main.home section.contact .right {
  background-color: #faf8f8;
  border-radius: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem clamp(1.25rem, -1.964rem + 14.286vw, 2.5rem);
}
main.home section.contact .right h2 {
  font-size: 1.875rem;
  font-size: clamp(1.375rem, 1.26rem + 0.513vw, 1.875rem);
  line-height: 1;
}
main.home section.contact .right form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
main.home section.contact .right form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
main.home section.contact .right form .form-group input,
main.home section.contact .right form .form-group textarea {
  font: inherit;
  border: 1px solid #149c66;
  border-radius: 0.5rem;
  padding: 0.625rem 0.9375rem;
}
main.home section.contact .right form .form-group textarea {
  min-height: 8.75rem;
  resize: vertical;
}
main.home section.contact .right form .form-group.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  line-height: 1.2;
  font-size: 0.75rem;
  line-height: 1.66;
}
main.home section.contact .right form .form-group.checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1;
  border: 1px solid #149c66;
  padding: 0;
  border-radius: 0.25rem;
  position: relative;
  overflow: clip;
}
main.home section.contact .right form .form-group.checkbox input::after {
  content: "";
  position: absolute;
  width: 0.8125rem;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.125rem;
  opacity: 0;
  scale: 0.8;
  transform-origin: top left;
  transition: all 100ms;
  background-color: #149c66;
}
main.home section.contact .right form .form-group.checkbox input:checked::after {
  opacity: 1;
  scale: 1;
}
main.home section.contact .right form .form-group.checkbox a {
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 0.1em;
  color: #149c66;
}
main.home section.contact .right form .btn {
  margin-left: auto;
  font-weight: 700;
}
@media only screen and (max-width: 31.25rem) {
  main.home section.contact .right {
    margin-inline: -25px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 64rem) {
  main.home section.contact {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.home dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100%, 50rem);
  padding: 1.25rem;
  border: none;
  background: #046e5a;
  color: #ffffff;
  font-size: 2.5rem;
  font-size: clamp(1.5rem, 1.269rem + 1.026vw, 2.5rem);
  line-height: 1;
  line-height: 1.35;
  text-align: center;
  transition: all 200ms;
  display: none;
  animation: fadeOut 500ms ease-in-out forwards;
  box-shadow: 2px 2px 7px 7px rgba(255, 255, 255, 0.1);
}
main.home dialog[open] {
  display: block;
  animation: fadeIn 300ms ease-in-out forwards;
}
main.home dialog[open]::backdrop {
  opacity: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    display: block;
  }
  to {
    opacity: 0;
    display: none;
  }
}

main.offers {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
}
main.offers section.hero {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  flex-direction: column;
  margin-block-end: clamp(2.5rem, 1.635rem + 3.846vw, 6.25rem);
  margin-block-start: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
}
main.offers section.hero h1 {
  color: #046e5a;
  text-align: center;
}
main.offers section.hero p {
  font-size: 1.5rem;
  font-size: clamp(1.125rem, 1.038rem + 0.385vw, 1.5rem);
  line-height: 1;
  line-height: 1.5;
  text-align: center;
}
main.offers section.jobs {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-block-end: clamp(2.5rem, 1.635rem + 3.846vw, 6.25rem);
}
main.offers section.jobs .job {
  padding-block-end: 2.5rem;
  display: grid;
  grid-template-columns: 4.5fr 9.16fr;
  gap: 1.875rem;
  border-bottom: 1px solid rgba(25, 23, 24, 0.1);
}
main.offers section.jobs .job .visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.5rem;
  min-height: 20rem;
}
main.offers section.jobs .job .content {
  padding-block-start: clamp(0rem, -3rem + 6.25vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.798rem + 0.897vw, 1.875rem);
  font-size: 1.0625rem;
  line-height: 1.64;
  font-weight: 300;
}
main.offers section.jobs .job .content h2 {
  font-size: 1.875rem;
  font-size: clamp(1.375rem, 1.26rem + 0.513vw, 1.875rem);
  line-height: 1;
  font-weight: unset;
}
main.offers section.jobs .job .content strong {
  color: #046e5a;
  font-weight: 700;
}
main.offers section.jobs .job .content .info {
  line-height: 1.6;
}
main.offers section.jobs .job .content .requirements,
main.offers section.jobs .job .content .contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
main.offers section.jobs .job .content .requirements .list {
  text-transform: lowercase;
}
main.offers section.jobs .job .content .requirements .list strong {
  color: #149c66;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
main.offers section.jobs .job .content .contact h3 {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  color: #046e5a;
}
main.offers section.jobs .job .content .contact strong {
  color: #149c66;
}
@media only screen and (max-width: 48rem) {
  main.offers section.jobs .job {
    grid-template-columns: repeat(1, 1fr);
  }
  main.offers section.jobs .job .visual img {
    border-radius: 1.25rem;
  }
}

main.simple {
  max-width: 77ch;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  padding-block-end: 1.875rem;
  margin-block-start: calc(1.875rem - clamp(0rem, -1.985rem + 8.824vw, 1.875rem));
}
main.simple h1 {
  font-size: 2.5rem;
  font-size: clamp(1.5rem, 1.269rem + 1.026vw, 2.5rem);
  line-height: 1;
}
main.simple .content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main.simple .content p {
  line-height: 1.45;
}
main.simple .content h2 {
  font-size: 1.25rem;
  line-height: 1;
  margin-block-start: 1.125rem;
}/*# sourceMappingURL=styles.css.map */