@charset "UTF-8";
:root {
  /* Colors */
  --color-black: #1e1e1e;
  --color-white: #ffffff;
  --color-white-transparent: rgba(255, 255, 255, 0.48);
  --color-white-transparent-2: rgba(255, 255, 255, 0.64);
  --color-graphite: #414042;
  --color-grey-1: #86878a;
  --color-grey-2: #e6e7e8;
  --color-grey-3: #bdbfc6;
  --color-orange: #f04923;
  --color-orange-light: #ff894e;
  --color-blue-light: #daf4ff;
  --color-emerald: #00504e;
  /* Gradients */
  --gradient-lined: repeating-linear-gradient(-45deg, transparent 0 8px, var(--color-grey-3) 8px 10px);
  --gradient-emerald: linear-gradient(transparent 0, var(--color-emerald) 135%);
  /* Borders */
  --border-grey-3: 1px solid var(--color-grey-3);
  /* Fonts */
  --font-geologica: 'Geologica';
  --font-size-xs: 9px;
  --font-size-s: 12px;
  --font-size-m: 16px;
  --font-size-l: 20px;
  --font-size-xl: 24px;
  --font-size-h1-extra: 40px;
  --font-size-h1: 40px;
  --font-size-h2: 32px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --line-height-xs: 11px;
  --line-height-s: 14px;
  --line-height-m: 22px;
  --line-height-l: 28px;
  --line-height-xl: 32px;
  --line-height-h1-extra: 42px;
  --line-height-h1: 42px;
  --line-height-h2: 36px;
  --line-height-h3: 32px;
  --line-height-h4: 28px;
  --line-height-h5: 28px;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --letter-spacing-m: 0.008em;
  --letter-spacing-h1: -0.03em;
  --letter-spacing-h2: -0.01em;
  --letter-spacing-h3: 0;
  --letter-spacing-h4: 0;
  --letter-spacing-h5: -0.001em;
  /* z-indexes */
  --z-index-debug: 10000;
  /* Transitions */
  --easings: cubic-bezier(0.42, 0, 0.58, 1);
  --duration-fast: 0.2s;
  --duration: 0.4s;
  --duration-slow: 0.6s;
  --transition-fast: var(--duration-fast) var(--easings);
  --transition: var(--duration) var(--easings);
  --transition-slow: var(--duration-slow) var(--easings);
}
@media screen and (min-width: 768px) {
  :root {
    --font-size-h1-extra: 56px;
    --font-size-h1: 56px;
    --font-size-h2: 48px;
    --font-size-h3: 36px;
    --font-size-h4: 32px;
    --line-height-h1-extra: 56px;
    --line-height-h1: 62px;
    --line-height-h2: 54px;
    --line-height-h3: 42px;
    --line-height-h4: 36px;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --font-size-h1-extra: 80px;
    --font-size-h1: 72px;
    --line-height-h1-extra: 80px;
    --line-height-h1: 78px;
  }
}
@media screen and (min-width: 1440px) {
  :root {
    --font-size-h1-extra: 96px;
    --font-size-h1: 80px;
    --font-size-h2: 64px;
    --font-size-h3: 44px;
    --font-size-h5: 24px;
    --line-height-h1-extra: 96px;
    --line-height-h1: 88px;
    --line-height-h2: 70px;
    --line-height-h3: 50px;
    --letter-spacing-h1: -0.02em;
  }
}

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

html,
body {
  max-width: 100%;
  min-width: 375px;
  background-color: var(--color-white);
}

html,
body,
input,
button,
textarea {
  font:
    var(--font-weight-light) var(--font-size-m) / var(--line-height-m) var(--font-geologica),
    sans-serif;
  letter-spacing: var(--letter-spacing-m);
  color: var(--color-black);
}

input,
button,
textarea {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

i,
em {
  font-style: italic;
}

hr {
  height: 1px;
  border: none;
  background-color: var(--color-grey-3);
}
hr._white-transparent {
  background-color: var(--color-white-transparent);
}

b,
strong {
  font-weight: var(--font-weight-normal);
}

img {
  display: block;
}

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

h1,
[role='heading'][aria-level='1'] {
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-h1);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
}
h1._extra,
[role='heading'][aria-level='1']._extra {
  font-size: var(--font-size-h1-extra);
  line-height: var(--line-height-h1-extra);
}

h2 {
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-h2);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
}

h3 {
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-h3);
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
}

h4 {
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-h4);
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
}

h5 {
  font-size: var(--font-size-h5);
  line-height: var(--line-height-h5);
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--letter-spacing-h5);
}

@media screen and (min-width: 0px) {
  .min-up-hide {
    display: none !important;
  }
}

@media screen and (max-width: 319px) {
  .min-down-hide {
    display: none !important;
  }
}

@media screen and (max-width: 319px) {
  .min-hide {
    display: none !important;
  }
}

@media screen and (min-width: 320px) {
  .min-not-hide {
    display: none !important;
  }
}

@media screen and (min-width: 320px) {
  .xxs-up-hide {
    display: none !important;
  }
}

@media screen and (max-width: 374px) {
  .xxs-down-hide {
    display: none !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 374px) {
  .xxs-hide {
    display: none !important;
  }
}

@media screen and (max-width: 319px), screen and (min-width: 375px) {
  .xxs-not-hide {
    display: none !important;
  }
}

@media screen and (min-width: 375px) {
  .xs-up-hide {
    display: none !important;
  }
}

@media screen and (max-width: 424px) {
  .xs-down-hide {
    display: none !important;
  }
}

@media screen and (min-width: 375px) and (max-width: 424px) {
  .xs-hide {
    display: none !important;
  }
}

@media screen and (max-width: 374px), screen and (min-width: 425px) {
  .xs-not-hide {
    display: none !important;
  }
}

@media screen and (min-width: 425px) {
  .s-up-hide {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .s-down-hide {
    display: none !important;
  }
}

@media screen and (min-width: 425px) and (max-width: 767px) {
  .s-hide {
    display: none !important;
  }
}

@media screen and (max-width: 424px), screen and (min-width: 768px) {
  .s-not-hide {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .m-up-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .m-down-hide {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .m-hide {
    display: none !important;
  }
}

@media screen and (max-width: 767px), screen and (min-width: 1024px) {
  .m-not-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .l-up-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1439px) {
  .l-down-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .l-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1023px), screen and (min-width: 1440px) {
  .l-not-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1440px) {
  .xl-up-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1919px) {
  .xl-down-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .xl-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1439px), screen and (min-width: 1920px) {
  .xl-not-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1920px) {
  .xxl-up-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1920px) {
  .xxl-down-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1920px) and (max-width: 1920px) {
  .xxl-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1919px), screen and (min-width: 1921px) {
  .xxl-not-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1921px) {
  .max-up-hide {
    display: none !important;
  }
}

@media screen and (min-width: 1921px) {
  .max-hide {
    display: none !important;
  }
}

@media screen and (max-width: 1920px) {
  .max-not-hide {
    display: none !important;
  }
}

[data-motion='fade'],
[data-motion-element='fade'] {
  opacity: 0;
}

[data-motion='fade-up'],
[data-motion-element='fade-up'] {
  transform: translateY(50px);
  opacity: 0;
}

[data-motion='slide-left'],
[data-motion-element='slide-left'] {
  transform: translateX(120px);
}

[data-motion='slide-right'],
[data-motion-element='slide-right'] {
  transform: translateX(-120px);
}

[data-motion='slide-left-s'],
[data-motion-element='slide-left-s'] {
  transform: translateX(60px);
}

[data-motion='slide-right-s'],
[data-motion-element='slide-right-s'] {
  transform: translateX(-60px);
}

[data-spoiler-content] {
  overflow: visible;
  transition:
    height var(--transition),
    opacity var(--transition);
}
[data-spoiler-content]._collapsed {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 24px;
}

.row-2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 24px;
}

.row-3 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 80px;
}

.row-4 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 80px;
}

.col {
  padding: 20px;
  text-align: center;
  border: 1px solid #ccc;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

.col-3 {
  grid-column: span 3;
}

.col-12 {
  grid-column: span 12;
}

.extending-container {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.extending-container__column_v1 {
  flex: 0 0 calc(50% - 40px);
}
.extending-container__column_v2 {
  flex: 0 0 50%;
}
.extending-container__column_container-left {
  display: grid;
  grid-template-columns: 1fr 600px;
  margin: 80px 0 40px;
}
.extending-container__column_container-left:before {
  content: '';
}
.extending-container__column_container-right {
  display: grid;
  grid-template-columns: 600px 1fr;
}
.extending-container__column_container-right:after {
  content: '';
}

@media (max-width: 1440px) {
  .extending-container__column_container-right {
    display: grid;
    grid-template-columns: 1fr 80px;
  }
  .extending-container__column_container-left {
    display: grid;
    grid-template-columns: 80px 1fr;
  }
}
@media (max-width: 1439px) {
  .container {
    padding: 0 40px;
  }
  .row {
    grid-template-columns: repeat(6, 1fr);
  }
  .row-3 {
    gap: 0 64px;
  }
  .row-4 {
    gap: 0 64px;
  }
  .col-6 {
    grid-column: span 6;
  }
  .col-4 {
    grid-column: span 6;
  }
  .extending-container__column_container-left {
    display: grid;
    grid-template-columns: 40px 1fr;
    margin: 64px 0 40px;
  }
  .extending-container__column_container-right {
    display: grid;
    grid-template-columns: 1fr 40px;
  }
  .extending-container__column_v1 {
    flex: 0 0 calc(50% - 32px);
  }
}
@media (max-width: 1023px) {
  .row-2 {
    grid-template-columns: repeat(6, 1fr);
  }
  .row-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .extending-container {
    flex-direction: column;
  }
  .extending-container__column_container-left {
    display: block;
    margin: 40px;
  }
  .extending-container__column_container-right {
    display: block;
    margin: 0 40px;
  }
}
@media (max-width: 767px) {
  .row {
    grid-template-columns: repeat(1, 1fr);
  }
  .row-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .row-3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .row-4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 0;
  }
  .col-6,
  .col-4,
  .col-3 {
    grid-column: span 1;
  }
  .container {
    padding: 0 24px;
  }
  .extending-container__column_container-left {
    margin: 40px 24px 32px;
  }
  .extending-container__column_container-right {
    margin: 0 24px;
  }
}
@font-face {
  font-family: 'Geologica';
  src: url('/assets/fonts/Geologica_Cursive-ExtraLight.ttf');
  font-weight: 300;
  font-optical-sizing: auto;
  font-style: normal;
}
@font-face {
  font-family: 'Geologica';
  src: url('/assets/fonts/Geologica_Cursive-Regular.ttf');
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}
.caption {
  font-size: 12px;
  line-height: 18px;
}

.text-large {
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  display: inline-block;
}

.text-large_bold {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
}

.text-white {
  color: var(--color-white);
}

.text-black {
  color: var(--color-black);
}

.mr-4 {
  margin-right: 4px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-12 {
  margin-right: 12px;
}

.mr-16 {
  margin-right: 16px;
}

.mb-2 {
  margin-bottom: 2px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-6 {
  margin-left: 6px;
}

.block-mb {
  margin-bottom: 120px;
}

@media (max-width: 1024px) {
  .block-mb {
    margin-bottom: 96px;
  }
}
@media (max-width: 375px) {
  .block-mb {
    margin-bottom: 80px;
  }
}
.display-flex {
  display: flex;
}

.d-flex__ai-center {
  display: flex;
  align-items: center;
}

.text-xs {
  font-size: 16px;
  line-height: 22px;
}

.text-s {
  font-size: 16px;
  line-height: 22px;
}

.text-m {
  font-size: 20px;
  line-height: 26px;
}

.text-l {
  font-size: 24px;
  line-height: 32px;
}

@media (min-width: 1440px) {
  .text-m {
    font-size: 24px;
    line-height: 32px;
  }
  .text-s {
    font-size: 24px;
    line-height: 32px;
  }
}
.slider-arrow_path-bg {
  transition: all 0.2s;
}

.slider-arrow.swiper-button-disabled .slider-arrow_path-bg {
  fill: var(--color-grey-2);
}

.slider-arrow:hover .slider-arrow_path-bg {
  fill: var(--color-orange);
  transition: all 0.2s;
}

.slider-arrow.swiper-button-disabled {
  pointer-events: none;
}

.slider-arrow.swiper-button-disabled .slider-arrow_path-arrow {
  fill: var(--color-grey-1);
  transition: all 0.2s;
}

.slider-arrow:hover .slider-arrow_path-arrow {
  fill: var(--color-white);
  transition: all 0.2s;
}

.slider-arrow_left {
  margin-right: 3px;
}

.slider-arrow_right {
  margin-left: 3px;
}

.scroll-hidden {
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/старый Edge */
}
.scroll-hidden::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.swiper._no-overflow {
  overflow: visible;
}
.swiper._hide-inactive.swiper-fade .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  transition: opacity var(--transition-slow);
}

.swiper-wrapper {
  transition-timing-function: var(--easings);
}

.swiper-slide._height-auto {
  height: auto;
}

.block._size-l {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .block._size-l {
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 1024px) {
  .block._size-l {
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 1440px) {
  .block._size-l {
    margin-bottom: 120px;
  }
}
.block._size-m {
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .block._size-m {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .block._size-m {
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 1440px) {
  .block._size-m {
    margin-bottom: 120px;
  }
}
.block._size-s {
  margin-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .block._size-s {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .block._size-s {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1440px) {
  .block._size-s {
    margin-bottom: 80px;
  }
}
.block._size-xs {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .block._size-xs {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .block._size-xs {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .block._size-xs {
    margin-bottom: 64px;
  }
}
.block._overflow-hidden {
  overflow: hidden;
}
.block__title {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .block__title {
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1440px) {
  .block__title {
    margin-bottom: 80px;
  }
}
.block__title._tight {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .block__title._tight {
    margin-bottom: 48px;
  }
}
@media screen and (min-width: 1440px) {
  .block__title._tight {
    margin-bottom: 64px;
  }
}

.anchor-offset {
  scroll-margin-top: 100px;
}
