@charset "UTF-8";
/*================ Libs ================*/
/*================ Mixins ================*/
/*================ Base ================*/
:root {
  --font-body-family: "Open Sans", sans-serif;
  --font-heading-family: "Outfit", sans-serif;
  --color-text: #1e1e1e;
  --color-text-white: #fafafa;
  --color-text-rgb: 0, 0, 0;
  --color-title-rgb: 0, 0, 0;
  --color-foreground: 30, 30, 30;
  --color-foreground-white: 255, 255, 255;
  --color-foreground-accent: 43, 126, 62;
  --color-red: #cc4444;
  --color-yel: #f7e700;
  --color-green: #6fc0b9;
  --color-accent: #2b7e3e;
  --color-accent-hover: #23a140;
  --color-primary: #42d392;
  --color-primary-rgb: 66, 211, 146;
  --color-secondary: #35a877;
  --color-secondary-rgb: 53, 168, 119;
  --color-danger: #d44d54;
  --color-danger-rgb: 208, 74, 81;
  --main-btn-color: #1e1e1e;
  --main-btn-color-hover: #fafafa;
  --main-btn-text-color: #fafafa;
  --main-btn-text-color-hover: #1e1e1e;
  --main-btn-outline: #000000;
  --main-border-radius: 1.5rem;
  --page-width: 144rem;
  --grid-desktop-vertical-spacing: 25px;
  --grid-desktop-horizontal-spacing: 14px;
  --grid-mobile-vertical-spacing: 16px;
  --grid-mobile-horizontal-spacing: 8px;
  --inputs-border-width: 1px;
}

:root {
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-medium: 300ms;
  --duration-long: 500ms;
  --duration-extra-long: 600ms;
  --ease-out-slow: cubic-bezier(0, 0, 0.3, 1);
  --animation-slide-in: slideIn var(--duration-extra-long) var(--ease-out-slow) forwards;
  --animation-fade-in: fadeIn var(--duration-extra-long) var(--ease-out-slow);
}

.animate--fixed {
  clip-path: inset(0);
}
.animate--fixed picture.media,
.animate--fixed picture.media.media--absolut,
.animate--fixed picture {
  position: fixed !important;
  height: 100vh;
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-trigger.animate--fade-in, .scroll-trigger.animate--slide-in {
    opacity: 0.01;
  }
  .scroll-trigger.animate--slide-in {
    transform: translateY(2rem);
  }
  .scroll-trigger:not(.scroll-trigger--offscreen).animate--fade-in {
    opacity: 1;
    animation: var(--animation-fade-in);
  }
  .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
    animation: var(--animation-slide-in);
    animation-delay: calc(var(--animation-order) * 75ms);
  }

  @keyframes slideIn {
    from {
      transform: translateY(2rem);
      opacity: 0.01;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0.01;
    }
    to {
      opacity: 1;
    }
  }
}
* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
  margin: 0;
  opacity: 1;
}

/* Focus ring - inset */
.focus-inset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.focused.focus-inset,
.no-js .focus-inset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.no-js .focus-inset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

summary {
  position: relative;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

.page-width {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.max-width {
  max-width: 1920px;
  margin: 0 auto;
}

body {
  font-size: 1.5rem;
  line-height: 1.4;
  font-family: var(--font-body-family);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

.h1, .h2, .h3, .h4, .h5,
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading-family);
  color: var(--color-base-title);
  line-height: 1.2;
}

h1, .h1 {
  font-size: 3.8rem;
  text-transform: none;
}
@media screen and (min-width: 990px) {
  h1, .h1 {
    font-size: 5rem;
  }
}

h2, .h2 {
  font-size: 3rem;
  text-transform: none;
}
@media screen and (min-width: 990px) {
  h2, .h2 {
    font-size: 3.6rem;
  }
}

h3, .h3 {
  font-size: 2.5rem;
}

h4, .h4 {
  font-size: 2rem;
  text-transform: none;
}

h5, .h5 {
  font-size: 18px;
  text-transform: none;
}

.fw-4 {
  font-weight: 400;
}

.fw-5 {
  font-weight: 500;
}

.fw-6 {
  font-weight: 600;
}

.fw-7 {
  font-weight: 700;
}

.fw-9 {
  font-weight: 900;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-nowrap {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.text-pre {
  white-space: pre;
}

.ellipsis {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a {
  text-decoration: none;
  outline: 0;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}

.rte.rte--post {
  font-size: 1.4rem;
  font-weight: 500;
}
.rte.rte--post ul {
  padding-left: 3rem;
  margin-left: 0;
}
.rte.rte--post ul li {
  position: relative;
  padding-left: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.rte.rte--post ul li::marker {
  content: "✔";
  color: var(--color-secondary);
}
.rte.rte--post ul li:not(:last-child):after {
  content: "";
  position: absolute;
  left: -3rem;
  bottom: 0;
  width: 6rem;
  height: 1px;
  background: rgba(var(--color-secondary-rgb), 0.8);
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.hidden {
  display: none;
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}
@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}
.overflow-hidden-mobile,
.overflow-hidden-tablet,
.overflow-hidden-desktop {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .overflow-hidden-mobile {
    overflow: auto;
  }
}
@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}
@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
}
.truncated {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 15rem;
}

.ratio {
  display: flex;
  position: relative;
  align-items: stretch;
}
.ratio::before {
  content: "";
  width: 0;
  height: 0;
  padding-bottom: var(--ratio-percent);
}

.media {
  display: block;
  position: relative;
  overflow: hidden;
}
.media.media--absolut {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
.media > img {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.icon-wrap {
  display: block;
  width: 2rem;
  white-space: nowrap;
  transition: transform var(--duration-medium) ease;
  overflow: hidden;
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}

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

/*================ Global ================*/
.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
}
.grid:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 750px) {
  .grid {
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing);
  }
}

.grid__item {
  width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}
@media screen and (min-width: 750px) {
  .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

.grid--gapless.grid {
  column-gap: 0;
  row-gap: 0;
}

@media screen and (max-width: 749px) {
  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 5);
  }
}
.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--3-col .grid__item {
  width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
}

@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
}
.grid--2-col .grid__item {
  width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--4-col-tablet .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-tablet .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}
@media screen and (max-width: 989px) {
  .grid--1-col-tablet-down .grid__item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 990px) {
  .grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
  }

  .grid--5-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }

  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}
@media screen and (min-width: 990px) {
  .grid--1-col-desktop {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid--1-col-desktop .grid__item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 749px) {
  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}
/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  .grid {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .grid__item {
    padding-left: var(--grid-mobile-horizontal-spacing);
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }

  @media screen and (min-width: 750px) {
    .grid {
      margin-left: -8px;
    }

    .grid__item {
      padding-left: 8px;
      padding-bottom: 8px;
    }
  }
}
.card.card--default {
  max-width: 48rem;
}

.card-service {
  position: relative;
}
.card-service .card-service__heading {
  margin-top: 0;
  margin-bottom: 2rem;
}
.card-service .card-service__description {
  margin-bottom: 2rem;
}
.card-service .card-service__link {
  color: var(--color-accent);
}
.card-service .card-service__link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  outline-offset: 0.3rem;
}
@media screen and (min-width: 990px) {
  .card-service .card-service__heading,
.card-service .card-service__description {
    margin-bottom: 2.5rem;
  }
}

.card-indicator {
  text-align: center;
}
.card-indicator.card-indicator--plus .card-indicator__heading:after {
  content: "+";
}
.card-indicator .card-indicator__heading {
  margin-top: 0;
}
@media screen and (min-width: 990px) {
  .card-indicator .card-indicator__description {
    max-width: 28rem;
    margin: 0 auto;
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  padding-left: 2rem;
  padding-right: 2rem;
}
.post-card .post-card__media {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border-radius: var(--main-border-radius);
  font-size: 0;
}
.post-card .post-card__title {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}
.post-card .post-card__link {
  margin-top: auto;
}
.post-card .post-card__link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  outline-offset: 0.3rem;
}
@media screen and (max-width: 479px) {
  .post-card {
    padding-left: 0;
    padding-right: 0;
  }
}

.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-list .social-list__link {
  display: inline-flex;
  font-size: 0;
  line-height: 0;
  font-weight: 0;
  transition: all 0.25s ease-in-out;
  color: rgba(var(--color-foreground), 0.6);
}
.social-list .social-list__link:hover {
  color: rgba(var(--color-foreground), 0.9);
}
.social-list .social-list__link .icon {
  width: 30px;
  height: 30px;
}
.social-list .social-list__link .icon.icon-instagram {
  width: 34px;
  height: 34px;
}
.social-list .social-list__link .icon.icon-telegram {
  width: 31px;
  height: 31px;
}

/*================ UI ================*/
.button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  min-width: 200px;
  padding: 10px 20px;
  font: inherit;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  background-color: var(--main-btn-color);
  color: var(--main-btn-text-color);
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 3px;
  outline: 1px solid transparent;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.25s ease-in-out;
  /* outline and border styling for Windows High Contrast Mode */
}
.button.button--secondary {
  background-color: var(--main-btn-color-hover);
  color: var(--main-btn-text-color-hover);
  border-color: var(--main-btn-color-hover);
}
.button.button--accent {
  background-color: var(--color-accent);
  color: var(--main-btn-text-color);
  border-color: var(--color-accent);
}
.button.button--full-width {
  display: flex;
  width: 100%;
}
.button.button--swipe {
  color: var(--main-btn-color);
  background-color: transparent;
}
.button.button--swipe:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  transition: 0.3s ease-in-out;
}
.button:not([disabled]):hover {
  background-color: var(--main-btn-color-hover);
  color: var(--main-btn-text-color-hover);
  border-color: var(--main-btn-color-hover);
}
.button:not([disabled]).button--secondary:hover {
  background-color: var(--main-btn-color);
  color: var(--main-btn-text-color);
  border-color: var(--main-btn-color);
}
.button:not([disabled]).button--accent:hover {
  background-color: var(--color-accent-hover);
  color: var(--main-btn-text-color);
  border-color: var(--color-accent-hover);
}
.button:not([disabled]).button--swipe:hover {
  background-color: transparent;
  border-color: transparent;
}
.button:not([disabled]).button--swipe:hover:after {
  z-index: -5;
  width: 0;
  transition-duration: 0.5s;
}
.button::selection {
  background-color: rgba(var(--main-btn-color), 0.3);
}
.button:disabled, .button[aria-disabled=true], .button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.button:focus-visible, .button:focus, .button.focused {
  outline-color: var(--main-btn-accent-outline);
}
@media (forced-colors: active) {
  .button {
    border: transparent solid 1px;
  }
  .button:focus-visible, .button:focus, .button.focused {
    outline: solid transparent 1px;
  }
}
.link.link--arrow .icon-arrow path {
  transform: translateX(-0.25rem);
  transition: transform var(--duration-short) ease;
}
.link.link--arrow:hover .icon-arrow path {
  transform: translateX(-0.05rem);
}
.link:hover {
  cursor: pointer;
}

:root {
  --inputs-border-width: 1px;
}

.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow var(--duration-short) ease;
}

.text-area {
  min-height: 10rem;
  resize: none;
}

.field__input,
.field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin: var(--inputs-border-width);
  transition: box-shadow var(--duration-short) ease;
}

.field__label {
  position: relative;
  width: 100%;
  padding-bottom: 2rem;
}
.field__label .wpcf7-form-control-wrap {
  position: initial;
  display: flex;
  flex-direction: column;
}
.field__label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: var(--color-danger);
}

a {
  transition: all 0.25s ease-in-out;
}

.bg-default {
  background-color: #fff;
}
.bg-default:not([style*=background-]) + .bg-default:not([style*=background-]) {
  padding-top: 0;
}

/*================ Blocks ================*/
.section-header {
  position: sticky;
  z-index: 3;
  top: 0;
  margin-bottom: 0;
}

.header-wrapper {
  position: relative;
  overflow-x: clip;
  display: block;
  background-color: #fff;
  background-attachment: fixed;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.2);
}

.header {
  display: grid;
  grid-template-areas: "heading navigation";
  grid-template-columns: 1fr auto;
  align-items: center;
}
.header .header__heading {
  grid-area: heading;
}
.header .header__inline-menu {
  grid-area: navigation;
}
.header .header__logo {
  width: 75px;
}
.header .header__logo .custom-logo-link {
  display: flex;
}
.header .header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 990px) {
  .header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 75px;
  }
  .header .header__logo {
    position: absolute;
    top: 0;
    left: 2rem;
  }
  .header .header__inline-menu {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 2rem;
  }
}

header-drawer {
  justify-self: flex-end;
}
@media screen and (min-width: 990px) {
  header-drawer {
    display: none;
  }
}

.header__heading {
  margin: 0;
}

.menu-drawer-container {
  display: flex;
}

.header-drawer__summary {
  display: block;
  position: initial;
  height: 4.4rem;
  width: 4.4rem;
}
.header-drawer__summary span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.header-drawer__summary span .icon {
  display: block;
  position: absolute;
  opacity: 1;
  height: 2rem;
  width: 2rem;
  fill: none;
  vertical-align: middle;
  transform: scale(1);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

details:not([open]) > .header-drawer__summary .icon-close,
details[open] > .header-drawer__summary .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

details[open].menu-opening > .menu-drawer {
  transform: translate(0);
  visibility: visible;
  transition: transform 0.25s ease, visibility 0.25s ease;
}
details[open].menu-opening .header-drawer__summary[aria-expanded=true]:before {
  content: "";
  top: 100%;
  left: 0;
  height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
  width: 100%;
  display: block;
  position: absolute;
  background: rgba(18, 18, 18, 0.5);
}

.menu-drawer {
  position: absolute;
  right: 0;
  top: 100%;
  transform: translate(100%);
  visibility: hidden;
  overflow: hidden;
  z-index: 3;
  width: 85%;
  height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
  padding: 0;
  background-color: #fff;
  transition: transform 0.25s ease, visibility 0.25s ease;
}
.menu-drawer .menu-drawer__inner-container {
  position: relative;
  height: 100%;
}
.menu-drawer .menu-drawer__navigation-container {
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: space-between;
  overflow-y: auto;
  height: 100%;
}
.menu-drawer .menu-drawer__navigation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.menu-drawer .menu-drawer__menu li {
  border-bottom: 1px solid rgba(var(--color-foreground), 0.2);
}
@media screen and (min-width: 750px) {
  .menu-drawer {
    width: 40rem;
  }
}

.list-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-menu.list-menu--inline {
  display: inline-flex;
  flex-wrap: wrap;
}
.list-menu.list-menu--footer a {
  font-size: 1.5rem;
  padding: 0.5rem;
  font-weight: 400;
}
.list-menu a {
  position: relative;
  display: block;
  padding: 1rem 2rem;
  font-family: var(--font-heading-family);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  color: rgba(var(--color-foreground), 0.9);
  text-decoration: none;
}
.list-menu a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 0;
  height: 1px;
  background: rgba(var(--color-foreground), 0.7);
  transition: 0.3s ease-in-out;
}
.list-menu a:focus-visible {
  outline: 0.1rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.1rem;
  box-shadow: 0 0 0.1rem 0 rgba(var(--color-foreground), 0.3);
}
.list-menu a[aria-current=page] {
  font-weight: 700;
}
.list-menu a[aria-current=page]:after {
  width: 100%;
  transition-duration: 0.5s;
}
@media screen and (min-width: 990px) {
  .list-menu a {
    display: inline-block;
    padding: 2rem 1rem;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .list-menu a::after {
    opacity: 0;
    width: 100%;
  }
  .list-menu a[aria-current=page]:after, .list-menu a:hover:after {
    opacity: 1;
  }
}

.lang-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  align-self: center;
  justify-content: center;
}
.lang-list li {
  position: relative;
}
.lang-list a {
  display: flex;
  text-transform: uppercase;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(var(--color-foreground), 0.9);
  padding: 0.5rem;
}
@media (min-width: 992px) {
  .lang-list a {
    font-size: 1.4rem;
  }
}
.lang-list a:hover {
  color: var(--color-accent-hover);
}
.lang-list li + li:before {
  content: "|";
  position: absolute;
  left: -0.9rem;
  font-size: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(var(--color-foreground), 0.9);
}
.lang-list li.current-lang a {
  color: var(--color-accent-hover);
}

.footer .footer__heading {
  margin-bottom: 0;
}
.footer .footer__heading svg {
  width: 20px;
}
.footer .footer__contact {
  display: flex;
  flex-direction: column;
}
.footer .footer__contact-phone {
  margin-bottom: 2rem;
}
.footer .footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer .footer__info p {
  max-width: 504px;
}
.footer .footer__bottom {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(var(--color-foreground), 0.2);
}
@media screen and (min-width: 750px) {
  .footer .footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px 20px;
    grid-template-areas: ". .";
  }
  .footer .footer__nav {
    display: flex;
    justify-content: center;
  }
  .footer .footer__nav li.menu-item {
    display: flex;
    align-items: center;
  }
  .footer .footer__nav li.menu-item:not(:last-child):after {
    content: "/";
  }
}
@media screen and (max-width: 749px) {
  .footer .footer__contact,
.footer .footer__info {
    max-width: 504px;
    margin: 0 auto;
  }
}

/*================ Sections ================*/
.banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.banner .banner__media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner .banner__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  z-index: 2;
}
.banner .banner__box {
  position: relative;
  z-index: 1;
  width: 100%;
  height: fit-content;
  padding: 4rem 1rem;
  background-color: rgba(var(--color-foreground-white), 0.7);
  text-align: center;
  word-wrap: break-word;
  border-radius: var(--main-border-radius);
}
.banner .banner__caption {
  display: inline-block;
  margin-bottom: 2rem;
}
.banner .banner__heading {
  margin-top: 0;
  color: var(--color-text);
}
.banner .banner__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 45rem;
  margin-top: 2rem;
  word-break: break-word;
}
.banner.banner--stacked .banner__media-half {
  width: 50%;
}
.banner.banner--stacked .banner__media-half + .banner__media-half {
  right: 0;
  left: auto;
}
.banner.banner--half-small {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  grid-template-rows: auto auto;
  gap: 0 0;
  grid-template-areas: "img-first content img-last" "img-first content img-last";
}
.banner.banner--half-small .banner__content-small {
  grid-area: content;
}
.banner.banner--half-small .banner__media {
  position: relative;
  left: auto;
  top: auto;
  overflow: hidden;
}
.banner.banner--half-small .banner__media.banner__media--first {
  grid-area: img-first;
  background-color: rgba(var(--color-danger-rgb), 0.2);
}
.banner.banner--half-small .banner__media.banner__media--last {
  grid-area: img-last;
  background-color: rgba(var(--color-primary-rgb), 0.2);
}
.banner.banner--half-small .banner__heading {
  color: var(--color-secondary);
}
.banner.banner--parallax .banner__heading {
  margin-bottom: 0;
}
@media screen and (min-width: 750px) {
  .banner {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .banner.banner--small {
    min-height: 42rem;
  }
  .banner.banner--medium {
    min-height: 56rem;
  }
  .banner.banner--parallax.banner--medium {
    min-height: 45rem;
  }
  .banner .banner__content {
    padding: 5rem;
    align-items: flex-end;
  }
  .banner .banner__box {
    width: auto;
    max-width: 71rem;
    min-width: 40rem;
    padding: 4rem 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .banner .banner__box {
    max-width: 90rem;
    padding: 6rem 10rem;
  }
  .banner.banner--stacked .banner__content {
    max-width: 62rem;
  }
  .banner.banner--large {
    min-height: 66rem;
  }
}
@media screen and (min-width: 1600px) {
  .banner.banner--large {
    min-height: 86rem;
  }
  .banner.banner--large .banner__content {
    padding: 5rem;
    align-items: flex-end;
  }
}
@media screen and (max-width: 749px) {
  .banner.banner--half-small {
    grid-template-columns: auto auto;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "img-first img-first" "content content" "img-last img-last";
  }
  .banner.banner--medium {
    min-height: 50rem;
  }
  .banner.banner--parallax {
    justify-content: center;
  }
  .banner.banner--parallax.banner--medium {
    min-height: 40rem;
  }
  .banner.banner--large .banner__content {
    min-height: 48rem;
  }
  .banner.banner--stacked .banner__media {
    position: relative;
    height: 38rem;
  }
  .banner.banner--stacked .banner__media.banner__media-half {
    width: 100%;
  }
  .banner.banner--stacked .banner__media + .banner__media-half {
    order: 1;
  }
  .banner.banner--stacked .banner__box {
    padding-left: 0;
    padding-right: 0;
  }
}

.service-list {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.service-list .service-list__heading {
  margin-top: 0;
  margin-bottom: 4rem;
}
.service-list .service-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 990px) {
  .service-list {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .service-list .service-list__heading {
    margin-bottom: 6rem;
  }
  .service-list .service-list__wrap {
    max-width: 990px;
    margin-right: auto;
    margin-left: auto;
  }
}

.service-posts {
  --grid-desktop-vertical-spacing: 4rem;
  --grid-mobile-vertical-spacing: 4rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.service-posts .service-posts__heading {
  margin-top: 0;
  margin-bottom: 6rem;
}

.section-image-text {
  --section-padding: 4rem;
  position: relative;
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}
@media screen and (min-width: 750px) {
  .section-image-text {
    --section-padding: 8rem;
  }
}

.image-with-text {
  --img-radius: var(--main-border-radius);
  --content-radius: 0;
  --image-ratio: 70%;
  --flex-direction: row;
  --flex-direction-reverse: row-reverse;
  position: relative;
  z-index: 1;
}
.image-with-text.image-with-text--reverse {
  --image-ratio: 60%;
  --img-radius: 0 var(--main-border-radius) var(--main-border-radius) 0;
  --content-radius: var(--main-border-radius) 0 0 var(--main-border-radius);
  --flex-direction: row-reverse;
}
.image-with-text.image-with-text--reverse.inverse {
  --flex-direction: row;
  --img-radius: var(--main-border-radius) 0 0 var(--main-border-radius);
  --content-radius: 0 var(--main-border-radius) var(--main-border-radius) 0;
}
.image-with-text.image-with-text--reverse .image-with-text__content {
  background-color: rgba(var(--color-primary-rgb), 0.2);
}
.image-with-text.image-with-text--reverse .image-with-text__text {
  font-weight: 600;
}
.image-with-text .global-media-settings {
  overflow: hidden !important;
}
.image-with-text .image-with-text__title {
  margin-top: 0;
  margin-bottom: 4rem;
}
.image-with-text .image-with-text__sub-title {
  margin-top: 0;
  margin-bottom: 2rem;
}
.image-with-text .grid {
  margin-bottom: 0;
}
.image-with-text .grid__item {
  position: relative;
}
.image-with-text .image-with-text__grid {
  flex-direction: var(--flex-direction);
}
.image-with-text.reverse {
  flex-direction: row-reverse;
}
.image-with-text.reverse .image-with-text__grid {
  flex-direction: var(--flex-direction-reverse);
}
.image-with-text .image-with-text__media {
  min-height: 100%;
  overflow: visible;
  padding-bottom: var(--image-ratio);
  border-radius: var(--img-radius);
}
.image-with-text .image-with-text__content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  height: 100%;
  padding: 4rem 0;
  border-radius: var(--content-radius);
}
.image-with-text .image-with-text__heading {
  margin-top: 0;
}
.image-with-text .image-with-text__text {
  margin-bottom: 3rem;
}
.image-with-text .image-with-text__text p {
  margin-top: 0;
}
@media screen and (min-width: 750px) {
  .image-with-text .image-with-text__title,
.image-with-text .image-with-text__sub-title {
    text-align: center;
  }
  .image-with-text .image-with-text__title {
    margin-bottom: 6rem;
  }
  .image-with-text .image-with-text__content {
    padding: 4rem 4rem 5rem;
  }
  .image-with-text .image-with-text__media-item--small {
    flex-grow: 0;
  }
}
@media screen and (min-width: 990px) {
  .image-with-text {
    --image-ratio: 125%;
  }
  .image-with-text.image-with-text--reverse {
    --image-ratio: 90%;
  }
  .image-with-text .image-with-text__content {
    padding: 6rem 7rem 7rem;
  }
}
@media screen and (max-width: 749px) {
  .image-with-text {
    --img-radius: 0;
    --img-ratio: 60%;
  }
  .image-with-text.image-with-text--reverse, .image-with-text.image-with-text--reverse.inverse {
    --img-radius: 0;
    --content-radius: 0;
    --flex-direction: column-reverse;
  }
  .image-with-text.image-with-text--reverse .image-with-text__content, .image-with-text.image-with-text--reverse.inverse .image-with-text__content {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  .image-with-text .grid {
    margin-left: 0;
  }
}
.indicators {
  --achieved-padding: 4rem;
  padding-top: var(--achieved-padding);
  padding-bottom: var(--achieved-padding);
}
.indicators .indicators__heading {
  margin-top: 0;
}
@media screen and (min-width: 990px) {
  .indicators {
    --achieved-padding: 8rem;
  }
}

.contacts {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.contacts .contacts__heading {
  margin-top: 0;
  margin-bottom: 2.5rem;
}
.contacts .contacts__form {
  max-width: 990px;
  margin: 0 auto;
}
.contacts .contacts__form .wpcf7 form {
  display: flex;
  flex-direction: column;
}
.contacts .contacts__form .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}
.contacts .contacts__form .wpcf7 form .grid {
  margin-bottom: 0;
  row-gap: 0;
}
.contacts .contacts__form .wpcf7 form .grid, .contacts .contacts__form .wpcf7 form .field {
  order: 1;
}
.contacts .contacts__form .wpcf7 form .wpcf7-response-output {
  margin: 0 0 2rem;
  padding: 1rem 1.5rem;
  border-color: var(--color-danger);
  background-color: var(--color-danger);
  color: #fff;
}
@media screen and (min-width: 990px) {
  .contacts {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .contacts .contacts__heading {
    margin-bottom: 6rem;
  }
}

.section--collapsible {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 990px) {
  .section--collapsible {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.accordion summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 0;
}
.accordion summary .icon-caret {
  position: absolute;
  height: 0.6rem;
  right: 1.5rem;
  top: calc(50% - 0.2rem);
}
.accordion .summary__title {
  display: flex;
  flex: 1;
}
.accordion .summary__title + .icon-caret {
  height: calc(var(--font-heading-scale) * 0.6rem);
}
.accordion + .accordion {
  margin-top: 0;
  border-top: none;
}

.accordion {
  margin-top: 2.5rem;
  margin-bottom: 0;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}
.accordion .accordion__title {
  display: inline-block;
  max-width: calc(100% - 6rem);
  min-height: 1.6rem;
  margin: 0;
  padding-left: 10px;
  word-break: break-word;
}
.accordion details[open] > summary .icon-caret {
  transform: rotate(180deg);
}
.accordion .accordion__content {
  margin-bottom: 1.5rem;
  word-break: break-word;
  overflow-x: auto;
  padding: 0 0.6rem;
}

.collapsible-content {
  position: relative;
  z-index: 0;
}
.collapsible-content .collapsible-content__grid {
  --grid-desktop-horizontal-spacing: 0;
  --grid-desktop-vertical-spacing: 0;
}

.collapsible-section-layout {
  padding-bottom: 5rem;
  padding-top: 5rem;
}

@media screen and (min-width: 750px) {
  .collapsible-section-layout {
    padding-bottom: 7rem;
    padding-top: 7rem;
  }
}
/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
.collapsible-content__media {
  background: transparent;
}

.collapsible-content__media--small {
  height: 19.4rem;
}

.collapsible-content__media--large {
  height: 43.5rem;
}

@media screen and (min-width: 750px) {
  .collapsible-content__media--small {
    height: 31.4rem;
  }

  .collapsible-content__media--large {
    height: 69.5rem;
  }
}
.collapsible-content-wrapper-narrow {
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: 73.4rem;
}

.collapsible-content__header {
  word-break: break-word;
}

.collapsible-content__heading {
  margin-bottom: 2rem;
  margin-top: 0;
}

@media screen and (min-width: 750px) {
  .collapsible-content__heading {
    margin-bottom: 3rem;
  }
}
.collapsible-none-layout .accordion + .accordion {
  border-top: 0;
}

.collapsible-row-layout .accordion:not(:first-child):not(.color-scheme-1) {
  margin-top: 1rem;
}

.caption-with-letter-spacing + h2 {
  margin-top: 1rem;
}

@media screen and (min-width: 750px) {
  .collapsible-content .accordion {
    margin-top: 0;
  }
}
.collapsible-row-layout .accordion {
  border: var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
  margin-bottom: 1.5rem;
  /* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
  transform: perspective(0);
}

.collapsible-row-layout .accordion summary,
.collapsible-row-layout .accordion .accordion__content {
  padding: 1.5rem;
}

.collapsible-row-layout .accordion .accordion__content {
  padding-top: 0;
}

.collapsible-content summary:hover {
  background: rgba(var(--color-foreground), 0.04);
}

.collapsible-content summary:hover .accordion__title {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  @media screen and (min-width: 750px) {
    .collapsible-content__grid:not(.collapsible-content__grid--reverse) .grid__item:last-child,
.collapsible-content__grid--reverse .collapsible-content__grid-item {
      padding-left: 5rem;
      padding-right: 0;
    }
  }
  @media screen and (min-width: 990px) {
    .collapsible-content__grid:not(.collapsible-content__grid--reverse) .grid__item:last-child,
.collapsible-content__grid--reverse .collapsible-content__grid-item {
      padding-left: 7rem;
    }
  }
}
.section-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.error-404 {
  min-height: 50vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.error-404 span.error {
  font-weight: 700;
  line-height: 1;
  font-size: 120px;
}
@media (min-width: 768px) {
  .error-404 span.error {
    font-size: 140px;
  }
}
@media (min-width: 992px) {
  .error-404 span.error {
    font-size: 160px;
  }
}
.error-404 .page-width {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-404 p {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .error-404 p {
    font-size: 20px;
  }
}