@charset "UTF-8";
/**
* Підключення шрифтів локально з папки "./src/fonts"
*/
@font-face {
  font-family: e-Ukraine;
  font-display: swap;
  src: url("../fonts/e-Ukraine-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: e-Ukraine;
  font-display: swap;
  src: url("../fonts/e-Ukraine-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: e-Ukraine;
  font-display: swap;
  src: url("../fonts/e-Ukraine-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
/** Підключення змінних */
:root {
  --bs-font-family: e-Ukraine;
  --bs-subhead: #ccd2be;
  --bs-font-size: rem(18);
  --bs-font-weight: 400;
  --bs-line-height: 27px;
  --bs-font-color: #0b0b0b;
  --bs-transition: 0.3s ease-in-out;
  --bs-radius: 10px;
  --primary-color: #f5f5dc;
  --button-color: #ff6f00;
  --secondary-color: #e2e0d9;
  --white-color: #fff;
  --black-color: #000000;
  --background-color: #2f4f4f;
  --bs-shadow: 0px 2px 3px rgba(#000, 10%), 0px 8px 3px rgba(#000, 10%);
  --hover-shadow: 0 0 5px 0 rgba(#000, 10%), 0 0 10px 0 rgba(#000, 10%),
      0 0 15px 0 rgba(#000, 10%);
  --mobile-header-height: 65px;
  --desktop-header-height: 68px;
}

/**
* sass function і mixins і extends стилів
*/
/* Шаблоны (заготовки)
* @extend %имя шаблона;
*/
/** Reset */
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
/*   opacity: 0; */
  scroll-behavior: smooth;
  transition: opacity 0.8s ease-in-out;
}
html.loaded {
  opacity: 1;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html {
  width: 100%;
  height: 100%;
  min-width: 320px;
}

body {
  width: 100%;
  min-width: 320px;
}

body {
  overscroll-behavior: none;
  font-size: var(--bs-font-size);
  font-family: var(--bs-font-family);
  font-weight: var(--bs-font-weight);
  line-height: var(--bs-line-height);
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  user-select: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  user-select: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

/**
* Libs
*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/** Підключення іконок */
.icon {
  display: inline-block;
  background-color: var(--black-color);
  mask-repeat: no-repeat;
  mask-size: 100%;
  mask-position: center;
  position: relative;
  transition: all 0.2s ease;
}
.icon-tag {
  width: 16px;
  height: 16px;
}
.icon-video {
  -webkit-mask-image: url("../images/tags/video.svg");
  mask-image: url("../images/tags/video.svg");
}
.icon-photo {
  -webkit-mask-image: url("../images/tags/photo.svg");
  mask-image: url("../images/tags/photo.svg");
}
.icon-button {
  width: 32px;
  height: 10px;
  -webkit-mask-image: url("../images/icons/button.svg");
  mask-image: url("../images/icons/button.svg");
}
.icon-search {
  -webkit-mask-image: url("../images/icons/search.svg");
  mask-image: url("../images/icons/search.svg");
}
.icon-close {
  -webkit-mask-image: url("../images/icons/close.svg");
  mask-image: url("../images/icons/close.svg");
}
.icon-arrow-left {
  -webkit-mask-image: url("../images/icons/arrow-left.svg");
  mask-image: url("../images/icons/arrow-left.svg");
}
.icon-arrow-right {
  -webkit-mask-image: url("../images/icons/arrow-right.svg");
  mask-image: url("../images/icons/arrow-right.svg");
}
.icon-arrow-down {
  -webkit-mask-image: url("../images/icons/arrow-down.svg");
  mask-image: url("../images/icons/arrow-down.svg");
}
.icon-copy {
  -webkit-mask-image: url("../images/icons/copy.svg");
  mask-image: url("../images/icons/copy.svg");
}
.icon-donation {
  -webkit-mask-image: url("../images/icons/donation.svg");
  mask-image: url("../images/icons/donation.svg");
}
.icon-facebook {
  -webkit-mask-image: url("../images/icons/facebook.svg");
  mask-image: url("../images/icons/facebook.svg");
}
.icon-linkedin {
  -webkit-mask-image: url("../images/icons/linkedin.svg");
  mask-image: url("../images/icons/linkedin.svg");
}
.icon-telegram {
  -webkit-mask-image: url("../images/icons/telegram.svg");
  mask-image: url("../images/icons/telegram.svg");
}
.icon-tiktok {
  -webkit-mask-image: url("../images/icons/tiktok.svg");
  mask-image: url("../images/icons/tiktok.svg");
}
.icon-instagram {
  -webkit-mask-image: url("../images/icons/instagram.svg");
  mask-image: url("../images/icons/instagram.svg");
}
.icon-twitter {
  -webkit-mask-image: url("../images/icons/twitter.svg");
  mask-image: url("../images/icons/twitter.svg");
}
.icon-viber {
  -webkit-mask-image: url("../images/icons/viber.svg");
  mask-image: url("../images/icons/viber.svg");
}
.icon-whatsapp {
  -webkit-mask-image: url("../images/icons/whatsapp.svg");
  mask-image: url("../images/icons/whatsapp.svg");
}
.icon-youtube {
  -webkit-mask-image: url("../images/icons/youtube.svg");
  mask-image: url("../images/icons/youtube.svg");
}
.icon-twitter-small {
  -webkit-mask-image: url("../images/icons/twitter-small.svg");
  mask-image: url("../images/icons/twitter-small.svg");
}
.icon-splide-arrow-left {
  height: 58px;
  -webkit-mask-image: url("../images/icons/splide-arrow-left.svg");
  mask-image: url("../images/icons/splide-arrow-left.svg");
}
.icon-splide-arrow-right {
  height: 58px;
  -webkit-mask-image: url("../images/icons/splide-arrow-right.svg");
  mask-image: url("../images/icons/splide-arrow-right.svg");
}
.icon-mail {
  height: 32px;
  -webkit-mask-image: url("../images/icons/mail.svg");
  mask-image: url("../images/icons/mail.svg");
}
.icon-phone {
  height: 32px;
  -webkit-mask-image: url("../images/icons/phone.svg");
  mask-image: url("../images/icons/phone.svg");
}
.icon-copyright {
  height: 40px;
  -webkit-mask-image: url("../images/icons/copyright.svg");
  mask-image: url("../images/icons/copyright.svg");
}
.icon-bulb {
  height: 40px;
  -webkit-mask-image: url("../images/icons/bulb.svg");
  mask-image: url("../images/icons/bulb.svg");
}
.icon-check {
  height: 40px;
  -webkit-mask-image: url("../images/icons/check.svg");
  mask-image: url("../images/icons/check.svg");
}
.icon-cyber {
  height: 40px;
  -webkit-mask-image: url("../images/icons/cyber.svg");
  mask-image: url("../images/icons/cyber.svg");
}
.icon-data {
  -webkit-mask-image: url("../images/icons/data.svg");
  mask-image: url("../images/icons/data.svg");
}
.icon-eco {
  height: 40px;
  -webkit-mask-image: url("../images/icons/eco.svg");
  mask-image: url("../images/icons/eco.svg");
}
.icon-network {
  height: 40px;
  -webkit-mask-image: url("../images/icons/network.svg");
  mask-image: url("../images/icons/network.svg");
}
.icon-hero {
  height: 40px;
  -webkit-mask-image: url("../images/icons/hero.svg");
  mask-image: url("../images/icons/hero.svg");
}
.icon-grid4 {
  height: 40px;
  -webkit-mask-image: url("../images/grid4.svg");
  mask-image: url("../images/grid4.svg");
}
.icon-grid-mobile {
  height: 40px;
  -webkit-mask-image: url("../images/grid-mobile.svg");
  mask-image: url("../images/grid-mobile.svg");
}

/**
* custom scrollbar
*/
* {
  scrollbar-width: 0.5rem;
  scrollbar-color: var(--background-color) #d6d6d6;
}
*::-webkit-scrollbar {
  width: 0.5rem;
  background-color: var(--white-color);
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: var(--primary-color);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-hover-color);
}

/**
* Спільні стилі
*/
/** Базовые анимации: */
@keyframes show-header {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fade-up-big {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/** Стили для полноэкранного блока: */
/*
* (i) Стили будут применяться ко
* всем классам содержащим *__container
* Например header__container, main__container и т.д.
*/
[class*=__container] {
  max-width: 81.875rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  /** Поменять на clip - если используется в проекте position: sticky */
  overflow: hidden;
}

.page {
  position: relative;
  flex: 1 1 auto;
}
.page [data-observ] {
  margin: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  pointer-events: none;
  transition: height 0.5s ease-out;
}

.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
.container[data-content=true] {
  max-width: 847px;
}
.container[data-content=about-us] {
  max-width: 1040px;
}
.container[data-slider=slider] {
  max-width: 887px;
}

@media (min-width: 576px) {
  .container {
    max-width: calc(100% - 20px);
  }
}
@media (max-width: 576px) {
  .container.borderless {
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: calc(100% - 20px);
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 80rem;
  }
}
.d-none {
  display: none;
}

/**
* БЕМ блоки
*/
.page__header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  margin-bottom: 40px;
  gap: 8px;
}
@media (max-width: 48em) {
  .page__header {
    margin: 16px 0;
  }
}
.page__heading {
  font-family: var(--title-ff);
  font-size: var(--bs-font-size);
  line-height: 130%;
  font-weight: 700;
}
@media (min-width: 80em) {
  .page__heading {
    font-size: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .page__heading {
      font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .page__heading {
      font-size: calc(
        1.5rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .page__heading {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.06125em) {
  .page__heading {
    letter-spacing: 0.64px;
  }
}
.page__content hr {
  margin: 40px 0;
}
.page__content h2,
.page__content h3,
.page__content h4,
.page__content h5,
.page__content h6 {
  margin-bottom: 16px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  z-index: 1;
}
.button--primary {
  color: #000;
  letter-spacing: -0.56px;
  background: var(--button-color);
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.button--primary:hover {
  background: #213737;
  color: var(--primary-color);
  box-shadow: 0px 4px 8px 0px rgba(33, 55, 55, 0.8);
}
a.link {
  display: inline-block;
  padding: 5px 10px;
  position: relative;
}
a.link--underline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: calc(100% - 20px);
  height: 2px;
  border-radius: 0 0 1px 1px;
  background-color: var(--primary-color);
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
}
.like-h1 {
  font-weight: 500;
}
@media (min-width: 80em) {
  .like-h1 {
    font-size: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .like-h1 {
      font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .like-h1 {
      font-size: calc(
        1.5rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .like-h1 {
    font-size: 1.5rem;
  }
}
@media (min-width: 80em) {
  .like-h1 {
    line-height: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .like-h1 {
      line-height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (line-height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .like-h1 {
      line-height: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .like-h1 {
    line-height: 2rem;
  }
}

.like-h3 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

h1 {
  font-family: var(--title-ff);
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.4rem;
}

@media (max-width: 48em) {
  h1 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
h2 {
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 80em) {
  h2 {
    font-size: 3rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 2.5rem , 2.3333333333rem  +  0.8333333333vw , 3rem )) {
    h2 {
      font-size: clamp( 2.5rem , 2.3333333333rem  +  0.8333333333vw , 3rem );
    }
  }
  @supports not (font-size: clamp( 2.5rem , 2.3333333333rem  +  0.8333333333vw , 3rem )) {
    h2 {
      font-size: calc(
        2.5rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 80em) {
  h2 {
    line-height: 3rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 2.75rem , 2.6666666667rem  +  0.4166666667vw , 3rem )) {
    h2 {
      line-height: clamp( 2.75rem , 2.6666666667rem  +  0.4166666667vw , 3rem );
    }
  }
  @supports not (line-height: clamp( 2.75rem , 2.6666666667rem  +  0.4166666667vw , 3rem )) {
    h2 {
      line-height: calc(
        2.75rem + 0.25 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  h2 {
    line-height: 2.75rem;
  }
}
@media (min-width: 80em) {
  h2 {
    letter-spacing: 0.00000625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    h2 {
      letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem );
    }
  }
  @supports not (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    h2 {
      letter-spacing: calc(
        0.00000625rem + -0.02 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  h2 {
    letter-spacing: 0.00000625rem;
  }
}

h4 {
  font-family: var(--title-ff);
  font-size: var(--bs-font-size);
  line-height: 120%;
  font-weight: 400;
  color: var(--primary-color);
}
@media (min-width: 80em) {
  h4 {
    font-size: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 3.5rem , 3rem  +  2.5vw , 5rem )) {
    h4 {
      font-size: clamp( 3.5rem , 3rem  +  2.5vw , 5rem );
    }
  }
  @supports not (font-size: clamp( 3.5rem , 3rem  +  2.5vw , 5rem )) {
    h4 {
      font-size: calc(
        3.5rem + 1.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  h4 {
    font-size: 3.5rem;
  }
}

h5 {
  font-family: var(--title-ff);
  font-size: 18px;
  line-height: 130%;
  font-weight: 500;
  color: var(--primary-color);
}

h6 {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 0.875rem;
}

small {
  text-transform: uppercase;
  color: var(--bs-subhead);
}
@media (min-width: 80em) {
  small {
    font-size: 0.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 0.75rem , 0.9166666667rem  +  -0.2083333333vw , 0.875rem )) {
    small {
      font-size: clamp( 0.75rem , 0.9166666667rem  +  -0.2083333333vw , 0.875rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.9166666667rem  +  -0.2083333333vw , 0.875rem )) {
    small {
      font-size: calc(
        0.875rem + -0.125 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  small {
    font-size: 0.875rem;
  }
}
@media (min-width: 80em) {
  small {
    line-height: 0.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 0.75rem , 0.9166666667rem  +  -0.2083333333vw , 0.875rem )) {
    small {
      line-height: clamp( 0.75rem , 0.9166666667rem  +  -0.2083333333vw , 0.875rem );
    }
  }
  @supports not (line-height: clamp( 0.75rem , 0.9166666667rem  +  -0.2083333333vw , 0.875rem )) {
    small {
      line-height: calc(
        0.875rem + -0.125 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  small {
    line-height: 0.875rem;
  }
}
@media (min-width: 80em) {
  small {
    letter-spacing: 0.00000625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    small {
      letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem );
    }
  }
  @supports not (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    small {
      letter-spacing: calc(
        0.00000625rem + 0.005 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  small {
    letter-spacing: 0.00000625rem;
  }
}

.home-auth-date {
  font-size: 12px;
  line-height: 133.333%;
  font-weight: 600;
  color: var(--primary-gray);
}

.to-link {
  color: var(--primary-color);
  font-size: var(--bs-font-size);
  line-height: 110%;
  font-weight: 700;
  position: relative;
  width: 115px;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
}
.to-link::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/icons/arrow-right.svg") no-repeat 100% center;
  position: absolute;
  right: 0px;
  top: 1px;
}
.to-link::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../images/icons/arrow-right.svg") no-repeat 100% center;
  position: absolute;
  right: 8px;
  top: 1px;
}
.to-link:hover {
  border-bottom: 3px solid var(--primary-purple);
}

.authors {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}

.reading-time,
.authors-name,
.authors-media,
.authors-link {
  display: inline-flex;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  color: var(--timestamp-color);
  white-space: nowrap;
}

.authors-name,
.authors-media,
.authors-link {
  transition: none;
}

.timestamps {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.75rem;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.24px;
  color: var(--timestamp-color);
  gap: 8px;
}
.timestamps time {
  display: inline-flex;
  gap: 8px;
}
.timestamps time span {
  display: inherit;
}
.timestamps time .timestamps__date {
  padding-right: 8px;
  border-right: 2px solid var(--timestamp-color);
}

.category-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.category-title__image-box {
  height: auto;
}
@media (min-width: 80em) {
  .category-title__image-box {
    width: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (width: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .category-title__image-box {
      width: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem );
    }
  }
  @supports not (width: clamp( 1.5rem , 1.3333333333rem  +  0.8333333333vw , 2rem )) {
    .category-title__image-box {
      width: calc(
        1.5rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .category-title__image-box {
    width: 1.5rem;
  }
}
.category-title__image {
  width: 100%;
}

.sep-v {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

section.post-2 {
  margin-bottom: 63px;
}
@media (max-width: 36em) {
  section.post-2 {
    margin-bottom: 0;
  }
}

@media (max-width: 36em) {
  section:last-child {
    margin-bottom: 0;
  }
}
section.articles, section.articles-category-main, section.subscription {
  padding: 48px 0;
}
section.banner {
  padding: 24px 0;
}
@media (max-width: 48em) {
  section.articles {
    padding: 0 0 24px;
  }
  section.articles-category-main {
    padding: 24px 0;
  }
  section.articles-category--page {
    margin: 16px 0 32px;
  }
}
@media (max-width: 48em) {
  section.banner .banner-primary {
    display: none;
  }
  section.banner .banner-secondary {
    margin: 0 auto;
  }
}
@media (min-width: 48.06125em) {
  section.banner .banner-secondary {
    display: none;
  }
}

.menu-dropdown {
  position: relative;
  display: inline-block;
}
.menu-dropdown__button {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
  font-size: var(--bs-font-size);
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  border: none;
  cursor: pointer;
}
.menu-dropdown__button .icon {
  width: 15px;
  height: 15px;
  background-color: var(--bs-font-color);
}
.menu-dropdown__button--icon-prepend .icon {
  margin-right: 8px;
}
.menu-dropdown__button--icon-append {
  margin-left: 8px;
}
.menu-dropdown__content {
  display: none;
  position: absolute;
  flex-direction: column;
  background-color: var(--white-color);
  min-width: 160px;
  padding: 0 16px 16px;
  left: -16px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.menu-dropdown__content .menu__item .menu__link {
  padding: 8px 0 !important;
  text-decoration: none;
  white-space: nowrap;
}
.menu-dropdown__content .menu__item.current-menu-item::before {
  content: "";
  position: absolute;
  left: -10px !important;
}
.menu-dropdown__content a:hover, .menu-dropdown__content a:focus, .menu-dropdown__content a:active {
  color: var(--primary-hover-color);
}
.menu-dropdown:hover .menu-dropdown__button, .menu-dropdown:focus .menu-dropdown__button, .menu-dropdown:active .menu-dropdown__button {
  color: var(--primary-hover-color);
}
.menu-dropdown:hover .menu-dropdown__button .icon, .menu-dropdown:focus .menu-dropdown__button .icon, .menu-dropdown:active .menu-dropdown__button .icon {
  background-color: var(--primary-hover-color);
}
.menu-dropdown:hover .menu-dropdown__content, .menu-dropdown:focus .menu-dropdown__content, .menu-dropdown:active .menu-dropdown__content {
  display: flex;
}

.breadcrumbs {
  padding: 24px 0;
}
@media (max-width: 48em) {
  .breadcrumbs {
    padding: 12px 0 16px;
  }
}
.breadcrumbs__list {
  display: block;
  white-space: nowrap;
  overflow: hidden;
}
.breadcrumbs__item {
  display: inline-block;
  padding-right: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: var(--timestamp-color);
}
.breadcrumbs__item a {
  color: var(--timestamp-color);
}
.breadcrumbs__item a:hover, .breadcrumbs__item a:focus, .breadcrumbs__item a:active {
  border-bottom: 1px solid var(--timestamp-color);
}
.breadcrumbs__item:not(:first-child) {
  padding-left: 8px;
  border-left: 1px solid var(--inactive-color);
}
.breadcrumbs__item--active {
  cursor: default;
}

.text-underline {
  border-bottom: 1px solid transparent;
}
@media (max-width: 48em) {
  .text-underline {
    border-bottom: 1px solid var(--white-color);
  }
}
.text-underline:hover, .text-underline:focus, .text-underline:active {
  border-color: inherit;
  border-bottom: 1px solid var(--white-color);
}

.no-wrap {
  white-space: nowrap;
}

.social-media-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.social-media-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 48px;
  height: 48px;
  border: 1px solid transparent;
  padding: 0 11px;
}
.social-media-list__link .icon {
  width: 100%;
}
.social-media-list__link:hover .icon, .social-media-list__link:focus .icon, .social-media-list__link:active .icon {
  transform: scale(1.15);
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid #0096c7;
  outline-offset: 2px;
}

/**
* Окремі блоки та секції
*/
.header {
  position: sticky;
  width: 100%;
  top: 0;
  transition: top var(--bs-transition);
  z-index: 50;
  background: var(--background-color);
  font-family: var(--bs-font-family);
}
.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 80em) {
  .header__logo {
    height: 1.9375rem;
  }
}
@media (min-width: 65.8125em) and (max-width: 80em) {
  @supports (height: clamp( 1.5rem , -0.5294603524rem  +  3.0837004405vw , 1.9375rem )) {
    .header__logo {
      height: clamp( 1.5rem , -0.5294603524rem  +  3.0837004405vw , 1.9375rem );
    }
  }
  @supports not (height: clamp( 1.5rem , -0.5294603524rem  +  3.0837004405vw , 1.9375rem )) {
    .header__logo {
      height: calc(
        1.5rem + 0.4375 * (100vw - 65.8125rem) / 14.1875
      );
    }
  }
}
@media (min-width: 20em) and (max-width: 65.75em) {
  @supports (height: clamp( 1.0625rem , 0.8712431694rem  +  0.956284153vw , 1.5rem )) {
    .header__logo {
      height: clamp( 1.0625rem , 0.8712431694rem  +  0.956284153vw , 1.5rem );
    }
  }
  @supports not (height: clamp( 1.0625rem , 0.8712431694rem  +  0.956284153vw , 1.5rem )) {
    .header__logo {
      height: calc(
        1.0625rem + 0.4375 * (100vw - 20rem) / 45.75
      );
    }
  }
}
@media (max-width: 20em) {
  .header__logo {
    height: 1.0625rem;
  }
}
.header__logo img {
  height: 100%;
}
.header__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 57.24875em) {
  .header__row {
    width: 100%;
  }
}
@media (max-width: 57.1875em) {
  .header__row {
    border-bottom: 1px solid rgba(245, 245, 220, 0.2);
  }
}
@media (min-width: 57.24875em) {
  .header__row:first-of-type {
    padding: 32px 0;
    width: auto;
    border-bottom: 1px solid rgba(245, 245, 220, 0.2);
  }
}
.header__row--nav {
  justify-content: center;
}
.header hr {
  margin: 12px 0 0 0;
}
.header__search {
  max-width: 340px;
  width: 100%;
}
.header__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}
.header .button--donation {
  display: none;
}
.header__language {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.header__language__link {
  text-transform: uppercase;
}
.header__language__link--current {
  font-weight: 500;
  cursor: default;
}
.header__language__link--current:hover, .header__language__link--current:focus, .header__language__link--current:active {
  color: var(--bs-font-color);
}
@media (max-width: 57.1875em) {
  .header__language {
    position: relative;
    display: block;
    width: 38px;
  }
  .header__language__link--current {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    cursor: pointer;
  }
  .header__language__link:not(.header__language__link--current) {
    display: none;
    position: absolute;
    width: 100%;
    background-color: var(--white-color);
    top: 100%;
    left: 0;
  }
  .header__language:hover .header__language__link:not(.header__language__link--current) {
    display: block;
    height: initial;
    padding: 4px 3px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  }
  .header__language:hover .header__language__link:not(.header__language__link--current):hover {
    color: var(--bs-font-color);
    background-color: var(--primary-hover-color);
  }
}
@media (max-width: 57.1875em) {
  .header .main-navigation {
    display: none;
  }
}
.header .main-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
@media (max-width: 57.1875em) {
  .header .main-navigation {
    display: none;
  }
}
.header .main-navigation .header-logo__box {
  max-width: 112px;
}
.header .main-navigation .header-logo__box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.header .main-navigation .header-logo {
  object-fit: contain;
  max-width: 42px;
  width: 100%;
}
.header .main-navigation .header-logo__text {
  color: var(--primary-color);
  font-size: var(--bs-font-size);
  line-height: 20px;
  font-weight: 400;
}
.header .main-navigation .menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
.header .main-navigation .menu__list .menu__item {
  position: relative;
}
.header .main-navigation .menu__list .menu__link {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  letter-spacing: -0.56px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.header .main-navigation .menu__list .menu__link:hover {
  border-bottom: 1px solid var(--primary-color);
}
.header .main-navigation .social-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
  transition: all var(--bs-transition);
}
.header .main-navigation .social-list__item {
  max-height: 48px;
  height: 100%;
}
.header .main-navigation .social-list__link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 48px;
  width: 48px;
  padding: 0 12px;
}
.header .main-navigation .social-list__link:hover .icon {
  transform: scale(1.15);
}
.header .main-navigation .social-list__link span {
  width: 100%;
}
.header .main-navigation .social-list-hidden {
  display: none;
}
@media (max-width: 57.1875em) {
  .header .search-bar {
    display: none;
  }
}

.menu-hamburger {
  cursor: pointer;
  padding: 22px 12px;
  position: absolute;
  right: 0;
  top: 150%;
  transition: var(--bs-transition);
  opacity: 0;
  z-index: -1;
}
.menu-hamburger__line {
  background: var(--black-color);
  display: block;
  height: 2px;
  position: relative;
  border-radius: var(--bs-radius);
  width: 24px;
  background: transparent;
}
.menu-hamburger__line::before, .menu-hamburger__line::after {
  background: var(--primary-color);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  left: 0;
  border-radius: var(--bs-radius);
}
.menu-hamburger__line::before {
  top: 0;
  transform: rotate(-45deg);
}
.menu-hamburger__line::after {
  top: 0;
  transform: rotate(45deg);
}

/* Toggle menu icon */
input#mobile-menu {
  display: none;
}
input#mobile-menu:checked ~ .mobile-menu {
  max-height: 100%;
}
input#mobile-menu:checked ~ .menu-hamburger {
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
input#mobile-menu:checked ~ .button-mobile {
  top: -100%;
}

.menu-hamburger2 {
  cursor: pointer;
}

/* Toggle menu icon */
input#mobile-menu2 {
  display: none;
}
input#mobile-menu2:checked ~ .mobile-menu {
  max-height: 100%;
}

/* Nav menu */
.mobile-menu {
  display: flex;
  justify-content: unset;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: calc(100% - var(--mobile-header-height));
  margin-left: -30px;
  background-color: var(--background-color);
  overflow: hidden;
  max-height: 0;
  position: fixed;
  z-index: 99;
  top: var(--mobile-header-height);
  transition: var(--bs-transition);
}
.mobile-menu__header {
  width: 100%;
  padding: 8px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.mobile-menu__logo-box {
  max-width: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 6.6px;
}
.mobile-menu__logo {
  object-fit: contain;
  max-width: 35px;
  width: 100%;
}
.mobile-menu__logo-text {
  color: var(--primary-color);
  font-size: 14.3px;
  line-height: 16.6px;
  font-weight: 300;
}
.mobile-menu .wrapper {
  width: 100%;
  padding: 0 26px 38px;
}
@media (max-width: 36em) {
  .mobile-menu {
    margin-left: -16px;
  }
  .mobile-menu .wrapper {
    padding: 0 16px 38px;
  }
}
.mobile-menu .mobile-search-bar {
  margin-bottom: 48px;
}
.mobile-menu__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-top: auto;
}
.mobile-menu__footer .contact-list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu__footer .contact-list__item {
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: -0.64px;
  text-transform: uppercase;
  display: flex;
}
.mobile-menu__footer .contact-list__item a {
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 18px;
}
.mobile-menu__footer .contact-list__item a span.icon {
  width: 32px;
  height: 32px;
  background: var(--primary-color);
}

@media (min-width: 57.24875em) {
  .menu-hamburger,
  .mobile-menu,
  .mobile-menu__header {
    display: none;
  }
}
.mobile-navigation .menu__list {
  width: 100%;
}
.mobile-navigation .menu__list-2 {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-navigation .menu__item {
  display: flex;
}
.mobile-navigation .menu__item.current-menu-item {
  position: relative;
}
.mobile-navigation .menu__item.current-menu-item .menu__link {
  text-decoration: underline;
}
.mobile-navigation .menu__link {
  position: relative;
  font-size: 20px;
  line-height: 26px;
  font-weight: 300;
  padding: 24px 0;
  border-bottom: 1px solid transparent;
  color: var(--primary-color);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245, 245, 220, 0.2);
  width: 100%;
  display: block;
}
.mobile-navigation .menu__link::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background: url(../images/icons/arrow-right.svg);
}
.button-mobile {
  position: absolute;
  right: 0;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--bs-transition);
}

.footer {
  position: relative;
  color: var(--primary-white);
  background: var(--primary-black);
  overflow: hidden;
}
@media (min-width: 80em) {
  .footer {
    padding-bottom: 8.125rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 4.5rem , 3.2916666667rem  +  6.0416666667vw , 8.125rem )) {
    .footer {
      padding-bottom: clamp( 4.5rem , 3.2916666667rem  +  6.0416666667vw , 8.125rem );
    }
  }
  @supports not (padding-bottom: clamp( 4.5rem , 3.2916666667rem  +  6.0416666667vw , 8.125rem )) {
    .footer {
      padding-bottom: calc(
        4.5rem + 3.625 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .footer {
    padding-bottom: 4.5rem;
  }
}
.footer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 40px 0;
  border-bottom: 1px solid rgba(245, 245, 220, 0.2);
}
@media (max-width: 71.875em) {
  .footer-navigation {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 41.0625em) {
  .footer-navigation {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
  }
}
.footer-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 41.0625em) {
  .footer-left {
    width: 100%;
  }
}
.footer-left__text {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.56px;
	color: var(--primary-color);
}
@media (max-width: 41.0625em) {
  .footer-left__text {
    max-width: 180px;
  }
}
.footer-info {
  color: var(--primary-color);
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  box-shadow: 10px 50px 40px rgba(47, 79, 79, 0.7);
}
@media (max-width: 41.0625em) {
  .footer-info {
    text-align: left;
    align-items: start;
  }
}
@media (max-width: 47.9375em) {
  .footer-info {
    box-shadow: 10px 100px 500px rgb(47, 79, 79) inset;
  }
}
.footer__rights {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  max-width: 674px;
}
.footer__rights-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.footer__rights-bottom span {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
}
.footer .footer-logo {
  object-fit: contain;
  max-width: 42px;
  width: 100%;
}
.footer .footer-logo__text {
  color: var(--primary-color);
  font-size: var(--bs-font-size);
  line-height: 20px;
  font-weight: 400;
}
.footer .footer-logo__box {
  max-width: 112px;
}
.footer .footer-logo__box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
.footer .menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 41.0625em) {
  .footer .menu__list {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    gap: 40px;
  }
}
.footer .menu__list .menu__item {
  display: flex;
}
.footer .menu__list .menu__link {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  letter-spacing: -0.56px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.footer .menu__list .menu__link:hover {
  border-bottom: 1px solid var(--primary-color);
}
.footer__grid {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 48em) {
  .footer__grid {
    display: none;
  }
}
.footer__grid span {
  width: 100%;
  height: 144px;
  background: linear-gradient(to bottom, rgb(47, 79, 79), rgba(47, 79, 79, 0.6)) 20px 0px, var(--primary-color);
}
.footer__grid-mobile {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0.4;
}
@media (min-width: 47.99875em) {
  .footer__grid-mobile {
    display: none;
  }
}
.footer__grid-mobile span {
  width: 100%;
  height: 144px;
  background: linear-gradient(to bottom, rgb(47, 79, 79), rgba(47, 79, 79, 0.7)) 20px 0px, var(--primary-color);
}
@media screen and (max-width: 1000px) {
  .footer .footer__grid {
    bottom: -30px;
  }
  .footer .footer__grid span {
    background: linear-gradient(to bottom, rgb(47, 79, 79), rgba(47, 79, 79, 0.7)) 0px 10px, var(--primary-color);
  }
}

.popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  /** Установить свои значения */
  padding: 1.875rem 0.625rem;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  transition: opacity 0.4s ease-in-out;
}
@media (max-width: 36em) {
  .popup {
    padding: 1.875rem 0;
  }
}
.popup.is-open {
  opacity: 1;
  pointer-events: auto;
}
.popup.is-open .popup__content {
  transform: translateY(0);
  opacity: 1;
}
.popup__wrapper {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.popup__content {
  position: relative;
  width: 100%;
  margin: 0 auto;
  /** Установить свои значения */
  padding: 1.875rem 3.125rem;
  max-width: 43.125rem;
  transform: translateY(-12.5rem);
  opacity: 0;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.popup__close {
  position: absolute;
  /** Установить свои значения */
  top: -2.875rem;
  right: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: end;
  align-items: end;
  color: var(--white-color);
  background-color: var(--dark-gray-color);
  opacity: 0.8;
  border-radius: 0.5rem;
  transition: all var(--bs-transition);
  font-size: 1rem;
}
.popup__close:hover {
  opacity: 1;
}
.popup--figure.popup .popup__content {
  max-width: max-content;
  padding: 0;
}
.popup--figure.popup .popup__body {
  background: gray;
}
.popup--figure.popup .popup__body figure figcaption {
  position: static;
  display: block;
  width: initial;
  margin-left: initial;
  padding: 0 8px;
  color: var(--white-color);
  background-color: transparent;
}

.home-page {
  color: var(--primary-color);
}
.home-page .main-title {
  text-transform: uppercase;
}
@media (min-width: 80em) {
  .home-page .main-title {
    padding-bottom: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem )) {
    .home-page .main-title {
      padding-bottom: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem );
    }
  }
  @supports not (padding-bottom: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem )) {
    .home-page .main-title {
      padding-bottom: calc(
        2rem + 2 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title {
    padding-bottom: 2rem;
  }
}
.home-page .main-title div.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 80em) {
  .home-page .main-title div.container {
    padding-top: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-top: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem )) {
    .home-page .main-title div.container {
      padding-top: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem );
    }
  }
  @supports not (padding-top: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem )) {
    .home-page .main-title div.container {
      padding-top: calc(
        2rem + 2 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title div.container {
    padding-top: 2rem;
  }
}
@media (min-width: 80em) {
  .home-page .main-title div.container {
    padding-bottom: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem )) {
    .home-page .main-title div.container {
      padding-bottom: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem );
    }
  }
  @supports not (padding-bottom: clamp( 2rem , 1.3333333333rem  +  3.3333333333vw , 4rem )) {
    .home-page .main-title div.container {
      padding-bottom: calc(
        2rem + 2 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title div.container {
    padding-bottom: 2rem;
  }
}
@media (max-width: 68.3125em) {
  .home-page .main-title div.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 32px;
  }
}
.home-page .main-title__title {
  font-weight: 400;
}
@media (min-width: 80em) {
  .home-page .main-title__title {
    font-size: 6.63925rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 3.5rem , 2.4535833333rem  +  5.2320833333vw , 6.63925rem )) {
    .home-page .main-title__title {
      font-size: clamp( 3.5rem , 2.4535833333rem  +  5.2320833333vw , 6.63925rem );
    }
  }
  @supports not (font-size: clamp( 3.5rem , 2.4535833333rem  +  5.2320833333vw , 6.63925rem )) {
    .home-page .main-title__title {
      font-size: calc(
        3.5rem + 3.13925 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 80em) {
  .home-page .main-title__title {
    line-height: 6.0625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 3.5rem , 2.6458333333rem  +  4.2708333333vw , 6.0625rem )) {
    .home-page .main-title__title {
      line-height: clamp( 3.5rem , 2.6458333333rem  +  4.2708333333vw , 6.0625rem );
    }
  }
  @supports not (line-height: clamp( 3.5rem , 2.6458333333rem  +  4.2708333333vw , 6.0625rem )) {
    .home-page .main-title__title {
      line-height: calc(
        3.5rem + 2.5625 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title__title {
    line-height: 3.5rem;
  }
}
@media (min-width: 80em) {
  .home-page .main-title__title {
    letter-spacing: 0.00000625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    .home-page .main-title__title {
      letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem );
    }
  }
  @supports not (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    .home-page .main-title__title {
      letter-spacing: calc(
        0.00000625rem + -0.1255625 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title__title {
    letter-spacing: 0.00000625rem;
  }
}
.home-page .main-title__description {
  font-weight: 300;
  max-width: 584px;
  position: relative;
}
@media (min-width: 80em) {
  .home-page .main-title__description {
    font-size: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1.25rem , 1.1666666667rem  +  0.4166666667vw , 1.5rem )) {
    .home-page .main-title__description {
      font-size: clamp( 1.25rem , 1.1666666667rem  +  0.4166666667vw , 1.5rem );
    }
  }
  @supports not (font-size: clamp( 1.25rem , 1.1666666667rem  +  0.4166666667vw , 1.5rem )) {
    .home-page .main-title__description {
      font-size: calc(
        1.25rem + 0.25 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title__description {
    font-size: 1.25rem;
  }
}
@media (min-width: 80em) {
  .home-page .main-title__description {
    line-height: 1.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 1.625rem , 1.5833333333rem  +  0.2083333333vw , 1.75rem )) {
    .home-page .main-title__description {
      line-height: clamp( 1.625rem , 1.5833333333rem  +  0.2083333333vw , 1.75rem );
    }
  }
  @supports not (line-height: clamp( 1.625rem , 1.5833333333rem  +  0.2083333333vw , 1.75rem )) {
    .home-page .main-title__description {
      line-height: calc(
        1.625rem + 0.125 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title__description {
    line-height: 1.625rem;
  }
}
@media (min-width: 80em) {
  .home-page .main-title__description {
    letter-spacing: 0.00000625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    .home-page .main-title__description {
      letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem );
    }
  }
  @supports not (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    .home-page .main-title__description {
      letter-spacing: calc(
        0.00000625rem + -0.01 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .main-title__description {
    letter-spacing: 0.00000625rem;
  }
}
.home-page .main-title__description::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: -28px;
  background: url(../images/icons/hero.svg);
}
@media (max-width: 68.3125em) {
  .home-page .main-title__description {
    margin-left: 28px;
  }
}
.home-page .main-title__photo-wrapper, .home-page .main-title__photo-wrapper > picture {
  max-height: 480px;
  overflow: hidden;
}
@media (min-width: 40.06125em) {
  .home-page .main-title__photo-wrapper, .home-page .main-title__photo-wrapper > picture {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
}
.home-page .main-title__photo {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.home-page .partnership__logo {
  width: 100%;
}
@media (min-width: 80em) {
  .home-page .partnership__logo {
    max-width: 13.25rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (max-width: clamp( 13.25rem , 14.25rem  +  -1.25vw , 14rem )) {
    .home-page .partnership__logo {
      max-width: clamp( 13.25rem , 14.25rem  +  -1.25vw , 14rem );
    }
  }
  @supports not (max-width: clamp( 13.25rem , 14.25rem  +  -1.25vw , 14rem )) {
    .home-page .partnership__logo {
      max-width: calc(
        14rem + -0.75 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .partnership__logo {
    max-width: 14rem;
  }
}
@media (min-width: 80em) {
  .home-page .partnership h2 {
    margin-top: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (margin-top: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem )) {
    .home-page .partnership h2 {
      margin-top: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem );
    }
  }
  @supports not (margin-top: clamp( 1.5rem , 1.1666666667rem  +  1.6666666667vw , 2.5rem )) {
    .home-page .partnership h2 {
      margin-top: calc(
        1.5rem + 1 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .partnership h2 {
    margin-top: 1.5rem;
  }
}
@media (min-width: 80em) {
  .home-page .partnership h2 {
    font-size: 3rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 2rem , 1.6666666667rem  +  1.6666666667vw , 3rem )) {
    .home-page .partnership h2 {
      font-size: clamp( 2rem , 1.6666666667rem  +  1.6666666667vw , 3rem );
    }
  }
  @supports not (font-size: clamp( 2rem , 1.6666666667rem  +  1.6666666667vw , 3rem )) {
    .home-page .partnership h2 {
      font-size: calc(
        2rem + 1 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .partnership h2 {
    font-size: 2rem;
  }
}
@media (min-width: 80em) {
  .home-page .partnership h2 {
    line-height: 3.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 2.25rem , 1.8333333333rem  +  2.0833333333vw , 3.5rem )) {
    .home-page .partnership h2 {
      line-height: clamp( 2.25rem , 1.8333333333rem  +  2.0833333333vw , 3.5rem );
    }
  }
  @supports not (line-height: clamp( 2.25rem , 1.8333333333rem  +  2.0833333333vw , 3.5rem )) {
    .home-page .partnership h2 {
      line-height: calc(
        2.25rem + 1.25 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .partnership h2 {
    line-height: 2.25rem;
  }
}
@media (min-width: 80em) {
  .home-page .partnership h2 {
    letter-spacing: 0.00000625rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    .home-page .partnership h2 {
      letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem );
    }
  }
  @supports not (letter-spacing: clamp( 0.00000625rem , 0.00000625rem  +  0vw , 0.00000625rem )) {
    .home-page .partnership h2 {
      letter-spacing: calc(
        0.00000625rem + -0.04 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .partnership h2 {
    letter-spacing: 0.00000625rem;
  }
}
@media (min-width: 80em) {
  .home-page .b2b {
    padding-top: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-top: clamp( 4.5rem , 4.3333333333rem  +  0.8333333333vw , 5rem )) {
    .home-page .b2b {
      padding-top: clamp( 4.5rem , 4.3333333333rem  +  0.8333333333vw , 5rem );
    }
  }
  @supports not (padding-top: clamp( 4.5rem , 4.3333333333rem  +  0.8333333333vw , 5rem )) {
    .home-page .b2b {
      padding-top: calc(
        4.5rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b {
    padding-top: 4.5rem;
  }
}
@media (min-width: 80em) {
  .home-page .b2b {
    padding-bottom: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 3.5rem , 3rem  +  2.5vw , 5rem )) {
    .home-page .b2b {
      padding-bottom: clamp( 3.5rem , 3rem  +  2.5vw , 5rem );
    }
  }
  @supports not (padding-bottom: clamp( 3.5rem , 3rem  +  2.5vw , 5rem )) {
    .home-page .b2b {
      padding-bottom: calc(
        3.5rem + 1.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b {
    padding-bottom: 3.5rem;
  }
}
.home-page .b2b h2 {
  padding-top: 16px;
}
@media (min-width: 80em) {
  .home-page .b2b h2 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .b2b h2 {
      padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .b2b h2 {
      padding-bottom: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b h2 {
    padding-bottom: 2rem;
  }
}
.home-page .b2b__subtitle {
  font-size: 16px;
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  letter-spacing: -0.64px;
  text-transform: uppercase;
}
@media (min-width: 80em) {
  .home-page .b2b__subtitle {
    line-height: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 1.125rem , 1.4916666667rem  +  -0.4583333333vw , 1.4rem )) {
    .home-page .b2b__subtitle {
      line-height: clamp( 1.125rem , 1.4916666667rem  +  -0.4583333333vw , 1.4rem );
    }
  }
  @supports not (line-height: clamp( 1.125rem , 1.4916666667rem  +  -0.4583333333vw , 1.4rem )) {
    .home-page .b2b__subtitle {
      line-height: calc(
        1.4rem + -0.275 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b__subtitle {
    line-height: 1.4rem;
  }
}
@media (min-width: 80em) {
  .home-page .b2b__subtitle {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .b2b__subtitle {
      padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .b2b__subtitle {
      padding-bottom: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b__subtitle {
    padding-bottom: 2rem;
  }
}
.home-page .b2b__cards-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 48em) {
  .home-page .b2b__cards-box {
    flex-direction: column;
  }
}
.home-page .b2b__cards-box span {
  background: var(--primary-color);
}
@media (min-width: 80em) {
  .home-page .b2b__cards-box span {
    width: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (width: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .b2b__cards-box span {
      width: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (width: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .b2b__cards-box span {
      width: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b__cards-box span {
    width: 2rem;
  }
}
@media (min-width: 80em) {
  .home-page .b2b__cards-box span {
    height: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .b2b__cards-box span {
      height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .b2b__cards-box span {
      height: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b__cards-box span {
    height: 2rem;
  }
}
.home-page .b2b__cards-box li {
  background: rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 80em) {
  .home-page .b2b__cards-box li {
    padding-right: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-right: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .b2b__cards-box li {
      padding-right: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem );
    }
  }
  @supports not (padding-right: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .b2b__cards-box li {
      padding-right: calc(
        1rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b__cards-box li {
    padding-right: 1rem;
  }
}
@media (min-width: 80em) {
  .home-page .b2b__cards-box li {
    padding-left: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-left: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .b2b__cards-box li {
      padding-left: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem );
    }
  }
  @supports not (padding-left: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .b2b__cards-box li {
      padding-left: calc(
        1rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b__cards-box li {
    padding-left: 1rem;
  }
}
@media (min-width: 80em) {
  .home-page .b2b__cards-box li {
    gap: 3.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem )) {
    .home-page .b2b__cards-box li {
      gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem );
    }
  }
  @supports not (gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem )) {
    .home-page .b2b__cards-box li {
      gap: calc(
        2.5rem + 1 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b__cards-box li {
    gap: 2.5rem;
  }
}
@media (max-width: 48em) {
  .home-page .b2b__cards-box li {
    max-width: inherit;
  }
}
.home-page .b2b__cards-description {
  text-transform: uppercase;
  font-size: var(--bs-font-size);
  line-height: 140%;
  font-weight: var(--bs-font-weight);
  max-width: 280px;
}
@media (min-width: 80em) {
  .home-page .b2b__cards-description {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem )) {
    .home-page .b2b__cards-description {
      font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem )) {
    .home-page .b2b__cards-description {
      font-size: calc(
        1rem + 0.25 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .b2b__cards-description {
    font-size: 1rem;
  }
}
@media (max-width: 48em) {
  .home-page .b2b__cards-description {
    max-width: inherit;
  }
}
.home-page .g2g {
  background: var(--primary-color);
  color: #000;
}
@media (min-width: 80em) {
  .home-page .g2g {
    padding-bottom: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 3.5rem , 3rem  +  2.5vw , 5rem )) {
    .home-page .g2g {
      padding-bottom: clamp( 3.5rem , 3rem  +  2.5vw , 5rem );
    }
  }
  @supports not (padding-bottom: clamp( 3.5rem , 3rem  +  2.5vw , 5rem )) {
    .home-page .g2g {
      padding-bottom: calc(
        3.5rem + 1.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g {
    padding-bottom: 3.5rem;
  }
}
@media (min-width: 80em) {
  .home-page .g2g {
    padding-top: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-top: clamp( 3.5rem , 3rem  +  2.5vw , 5rem )) {
    .home-page .g2g {
      padding-top: clamp( 3.5rem , 3rem  +  2.5vw , 5rem );
    }
  }
  @supports not (padding-top: clamp( 3.5rem , 3rem  +  2.5vw , 5rem )) {
    .home-page .g2g {
      padding-top: calc(
        3.5rem + 1.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g {
    padding-top: 3.5rem;
  }
}
.home-page .g2g small {
  color: #000;
}
.home-page .g2g h2 {
  padding-top: 16px;
}
@media (min-width: 80em) {
  .home-page .g2g h2 {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .g2g h2 {
      padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .g2g h2 {
      padding-bottom: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g h2 {
    padding-bottom: 2rem;
  }
}
.home-page .g2g__subtitle {
  font-size: 16px;
  line-height: var(--bs-line-height);
  font-weight: var(--bs-font-weight);
  letter-spacing: -0.64px;
  text-transform: uppercase;
  max-width: 811px;
}
@media (min-width: 80em) {
  .home-page .g2g__subtitle {
    line-height: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (line-height: clamp( 1.125rem , 1.4916666667rem  +  -0.4583333333vw , 1.4rem )) {
    .home-page .g2g__subtitle {
      line-height: clamp( 1.125rem , 1.4916666667rem  +  -0.4583333333vw , 1.4rem );
    }
  }
  @supports not (line-height: clamp( 1.125rem , 1.4916666667rem  +  -0.4583333333vw , 1.4rem )) {
    .home-page .g2g__subtitle {
      line-height: calc(
        1.4rem + -0.275 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g__subtitle {
    line-height: 1.4rem;
  }
}
@media (min-width: 80em) {
  .home-page .g2g__subtitle {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .g2g__subtitle {
      padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (padding-bottom: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .g2g__subtitle {
      padding-bottom: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g__subtitle {
    padding-bottom: 2rem;
  }
}
.home-page .g2g__cards-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  gap: 24px;
}
@media (max-width: 48em) {
  .home-page .g2g__cards-box {
    flex-direction: column;
  }
}
.home-page .g2g__cards-box span {
  background: #000;
}
@media (min-width: 80em) {
  .home-page .g2g__cards-box span {
    width: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (width: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .g2g__cards-box span {
      width: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (width: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .g2g__cards-box span {
      width: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g__cards-box span {
    width: 2rem;
  }
}
@media (min-width: 80em) {
  .home-page .g2g__cards-box span {
    height: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .g2g__cards-box span {
      height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem );
    }
  }
  @supports not (height: clamp( 2rem , 1.8333333333rem  +  0.8333333333vw , 2.5rem )) {
    .home-page .g2g__cards-box span {
      height: calc(
        2rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g__cards-box span {
    height: 2rem;
  }
}
.home-page .g2g__cards-box li {
  background: #ececc7;
  max-width: 400px;
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 80em) {
  .home-page .g2g__cards-box li {
    padding-right: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-right: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .g2g__cards-box li {
      padding-right: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem );
    }
  }
  @supports not (padding-right: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .g2g__cards-box li {
      padding-right: calc(
        1rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g__cards-box li {
    padding-right: 1rem;
  }
}
@media (min-width: 80em) {
  .home-page .g2g__cards-box li {
    padding-left: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-left: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .g2g__cards-box li {
      padding-left: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem );
    }
  }
  @supports not (padding-left: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .g2g__cards-box li {
      padding-left: calc(
        1rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g__cards-box li {
    padding-left: 1rem;
  }
}
@media (min-width: 80em) {
  .home-page .g2g__cards-box li {
    gap: 3.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem )) {
    .home-page .g2g__cards-box li {
      gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem );
    }
  }
  @supports not (gap: clamp( 2.5rem , 2.1666666667rem  +  1.6666666667vw , 3.5rem )) {
    .home-page .g2g__cards-box li {
      gap: calc(
        2.5rem + 1 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g__cards-box li {
    gap: 2.5rem;
  }
}
@media (max-width: 48em) {
  .home-page .g2g__cards-box li {
    max-width: inherit;
  }
}
.home-page .g2g__cards-description {
  text-transform: uppercase;
  font-size: var(--bs-font-size);
  line-height: 140%;
  font-weight: var(--bs-font-weight);
  max-width: 280px;
}
@media (min-width: 80em) {
  .home-page .g2g__cards-description {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem )) {
    .home-page .g2g__cards-description {
      font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9166666667rem  +  0.4166666667vw , 1.25rem )) {
    .home-page .g2g__cards-description {
      font-size: calc(
        1rem + 0.25 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .g2g__cards-description {
    font-size: 1rem;
  }
}
@media (max-width: 48em) {
  .home-page .g2g__cards-description {
    max-width: inherit;
  }
}
@media (min-width: 80em) {
  .home-page .products {
    padding-top: 8.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-top: clamp( 4rem , 2.4166666667rem  +  7.9166666667vw , 8.75rem )) {
    .home-page .products {
      padding-top: clamp( 4rem , 2.4166666667rem  +  7.9166666667vw , 8.75rem );
    }
  }
  @supports not (padding-top: clamp( 4rem , 2.4166666667rem  +  7.9166666667vw , 8.75rem )) {
    .home-page .products {
      padding-top: calc(
        4rem + 4.75 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .products {
    padding-top: 4rem;
  }
}
@media (min-width: 80em) {
  .home-page .products {
    padding-bottom: 8.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 4rem , 2.4166666667rem  +  7.9166666667vw , 8.75rem )) {
    .home-page .products {
      padding-bottom: clamp( 4rem , 2.4166666667rem  +  7.9166666667vw , 8.75rem );
    }
  }
  @supports not (padding-bottom: clamp( 4rem , 2.4166666667rem  +  7.9166666667vw , 8.75rem )) {
    .home-page .products {
      padding-bottom: calc(
        4rem + 4.75 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .products {
    padding-bottom: 4rem;
  }
}
.home-page .products h2 {
  margin: 16px 0 40px;
}
.home-page .products h3 {
  font-size: 24px;
  line-height: 28px;
  font-weight: var(--bs-font-weight);
  letter-spacing: -0.96px;
  text-transform: uppercase;
  margin: 28px 0;
}
.home-page .products p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: -0.64;
  color: var(--bs-subhead);
}
.home-page .products p:not(:first-child) {
  margin-top: 20px;
}
.home-page .products__cards-box {
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 53.375em) {
  .home-page .products__cards-box {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
}
.home-page .products__cards-box li {
  max-width: 397px;
  justify-self: center;
}
.home-page .products__image-box {
  background: #23221e;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.home-page .products__image {
  object-fit: contain;
  width: 100%;
}
.home-page .products a {
  display: block;
  margin: 0 auto;
  max-width: 183px;
}
.home-page .team h2 {
  margin-top: 16px;
}
@media (min-width: 80em) {
  .home-page .team h2 {
    margin-bottom: 4.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (margin-bottom: clamp( 2.5rem , 1.8333333333rem  +  3.3333333333vw , 4.5rem )) {
    .home-page .team h2 {
      margin-bottom: clamp( 2.5rem , 1.8333333333rem  +  3.3333333333vw , 4.5rem );
    }
  }
  @supports not (margin-bottom: clamp( 2.5rem , 1.8333333333rem  +  3.3333333333vw , 4.5rem )) {
    .home-page .team h2 {
      margin-bottom: calc(
        2.5rem + 2 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .team h2 {
    margin-bottom: 2.5rem;
  }
}
.home-page .team p {
  max-width: 256px;
  font-size: 14px;
  line-height: 18px;
  font-weight: var(--bs-font-weight);
  letter-spacing: -0.56px;
  text-transform: uppercase;
}
.home-page .team__count ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 59.25em) {
  .home-page .team__count ul {
    grid-template-columns: 1fr;
  }
}
.home-page .team__count ul li {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 80em) {
  .home-page .team__count ul li {
    padding-top: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-top: clamp( 3rem , 2.3333333333rem  +  3.3333333333vw , 5rem )) {
    .home-page .team__count ul li {
      padding-top: clamp( 3rem , 2.3333333333rem  +  3.3333333333vw , 5rem );
    }
  }
  @supports not (padding-top: clamp( 3rem , 2.3333333333rem  +  3.3333333333vw , 5rem )) {
    .home-page .team__count ul li {
      padding-top: calc(
        3rem + 2 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .team__count ul li {
    padding-top: 3rem;
  }
}
@media (min-width: 80em) {
  .home-page .team__count ul li {
    padding-bottom: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 3rem , 2.3333333333rem  +  3.3333333333vw , 5rem )) {
    .home-page .team__count ul li {
      padding-bottom: clamp( 3rem , 2.3333333333rem  +  3.3333333333vw , 5rem );
    }
  }
  @supports not (padding-bottom: clamp( 3rem , 2.3333333333rem  +  3.3333333333vw , 5rem )) {
    .home-page .team__count ul li {
      padding-bottom: calc(
        3rem + 2 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .team__count ul li {
    padding-bottom: 3rem;
  }
}
@media (min-width: 80em) {
  .home-page .team__count ul li {
    gap: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 2.5rem , 2rem  +  2.5vw , 4rem )) {
    .home-page .team__count ul li {
      gap: clamp( 2.5rem , 2rem  +  2.5vw , 4rem );
    }
  }
  @supports not (gap: clamp( 2.5rem , 2rem  +  2.5vw , 4rem )) {
    .home-page .team__count ul li {
      gap: calc(
        2.5rem + 1.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .team__count ul li {
    gap: 2.5rem;
  }
}
.home-page .team__count ul li:nth-child(1) {
  background: rgba(0, 0, 0, 0.1);
}
.home-page .team__count ul li:nth-child(2) {
  background: rgba(0, 0, 0, 0.3);
}
.home-page .team__count ul li:nth-child(3) {
  background: rgba(0, 0, 0, 0.5);
}
.home-page .team__count-wrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
@media (min-width: 80em) {
  .home-page .team__count-wrapper {
    gap: 4rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 2.5rem , 2rem  +  2.5vw , 4rem )) {
    .home-page .team__count-wrapper {
      gap: clamp( 2.5rem , 2rem  +  2.5vw , 4rem );
    }
  }
  @supports not (gap: clamp( 2.5rem , 2rem  +  2.5vw , 4rem )) {
    .home-page .team__count-wrapper {
      gap: calc(
        2.5rem + 1.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .team__count-wrapper {
    gap: 2.5rem;
  }
}
.home-page .team__photo-box, .home-page .team__photo-box > picture {
  max-height: 624px;
  overflow: hidden;
}
.home-page .team__photo {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (min-width: 40.06125em) {
  .home-page .team__photo {
    margin-top: -25px;
  }
}
.home-page .will {
  overflow: hidden;
}
@media (min-width: 80em) {
  .home-page .will {
    padding-bottom: 8.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-bottom: clamp( 5rem , 3.75rem  +  6.25vw , 8.75rem )) {
    .home-page .will {
      padding-bottom: clamp( 5rem , 3.75rem  +  6.25vw , 8.75rem );
    }
  }
  @supports not (padding-bottom: clamp( 5rem , 3.75rem  +  6.25vw , 8.75rem )) {
    .home-page .will {
      padding-bottom: calc(
        5rem + 3.75 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .will {
    padding-bottom: 5rem;
  }
}
@media (min-width: 80em) {
  .home-page .will {
    padding-top: 8.75rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (padding-top: clamp( 5rem , 3.75rem  +  6.25vw , 8.75rem )) {
    .home-page .will {
      padding-top: clamp( 5rem , 3.75rem  +  6.25vw , 8.75rem );
    }
  }
  @supports not (padding-top: clamp( 5rem , 3.75rem  +  6.25vw , 8.75rem )) {
    .home-page .will {
      padding-top: calc(
        5rem + 3.75 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .will {
    padding-top: 5rem;
  }
}
.home-page .will h2 {
  margin: 16px 0 40px;
}
.home-page .contact {
  background: var(--primary-color);
  color: #000;
  padding: 56px 0;
}
.home-page .contact small {
  color: #000;
}
.home-page .contact h2 {
  margin: 16px 0 32px;
  max-width: 800px;
}
.home-page .contact p {
  max-width: 752px;
  font-size: 16px;
  line-height: 24px;
  font-weight: var(--bs-font-weight);
  letter-spacing: -0.64px;
}
.home-page .contact__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 48em) {
  .home-page .contact__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    gap: 32px;
  }
}
.home-page .contact__contacts {
  max-width: 440px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 80em) {
  .home-page .contact__contacts {
    gap: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 1.5rem , 2.1666666667rem  +  -0.8333333333vw , 2rem )) {
    .home-page .contact__contacts {
      gap: clamp( 1.5rem , 2.1666666667rem  +  -0.8333333333vw , 2rem );
    }
  }
  @supports not (gap: clamp( 1.5rem , 2.1666666667rem  +  -0.8333333333vw , 2rem )) {
    .home-page .contact__contacts {
      gap: calc(
        2rem + -0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .contact__contacts {
    gap: 2rem;
  }
}
@media (max-width: 48em) {
  .home-page .contact__contacts {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
  }
}
.home-page .contact__contacts a {
  color: #000;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row;
}
@media (min-width: 80em) {
  .home-page .contact__contacts a {
    gap: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (gap: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .contact__contacts a {
      gap: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem );
    }
  }
  @supports not (gap: clamp( 1rem , 0.8333333333rem  +  0.8333333333vw , 1.5rem )) {
    .home-page .contact__contacts a {
      gap: calc(
        1rem + 0.5 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .home-page .contact__contacts a {
    gap: 1rem;
  }
}
.home-page .contact__contacts a .contact__mail-span,
.home-page .contact__contacts a .contact__phone-span {
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.home-page .contact__contacts a:hover .contact__mail-span,
.home-page .contact__contacts a:hover .contact__phone-span {
  border-bottom: 1px solid #000;
}
.home-page .contact__contacts span.icon {
  width: 32px;
  background: #000;
}
@media (max-width: 48em) {
  .home-page section {
    scroll-margin-top: 80px;
  }
}

.slider-list {
  cursor: pointer;
}
.slider-list__wrapper {
  overflow: visible;
}
.slider-list__item {
  background: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  padding: 32px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
}
@media (min-width: 80em) {
  .slider-list__item {
    max-width: 25.1875rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (max-width: clamp( 17.5rem , 14.9375rem  +  12.8125vw , 25.1875rem )) {
    .slider-list__item {
      max-width: clamp( 17.5rem , 14.9375rem  +  12.8125vw , 25.1875rem );
    }
  }
  @supports not (max-width: clamp( 17.5rem , 14.9375rem  +  12.8125vw , 25.1875rem )) {
    .slider-list__item {
      max-width: calc(
        17.5rem + 7.6875 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .slider-list__item {
    max-width: 17.5rem;
  }
}
@media (min-width: 80em) {
  .slider-list__item {
    height: 15rem;
  }
}
@media (min-width: 20em) and (max-width: 80em) {
  @supports (height: clamp( 14.125rem , 13.8333333333rem  +  1.4583333333vw , 15rem )) {
    .slider-list__item {
      height: clamp( 14.125rem , 13.8333333333rem  +  1.4583333333vw , 15rem );
    }
  }
  @supports not (height: clamp( 14.125rem , 13.8333333333rem  +  1.4583333333vw , 15rem )) {
    .slider-list__item {
      height: calc(
        14.125rem + 0.875 * (100vw - 20rem) / 60
      );
    }
  }
}
@media (max-width: 20em) {
  .slider-list__item {
    height: 14.125rem;
  }
}
.slider-list__subtitle {
  max-width: 248px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: -0.64px;
  align-self: end;
}
.slider-list__count {
  font-size: 12px;
  line-height: 18px;
  font-weight: var(--bs-font-weight);
  letter-spacing: -0.48px;
}

body {
  background: var(--background-color);
}
/*# sourceMappingURL=main.min.css.map */

