<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* primary */
/* primary hover */
/* dark */
/* light */
/* light hover */
/* accent */
/* accent hover */
.banner {
  width: 100%;
  height: 100%;
}

.banner__link {
  display: block;
  width: 100%;
  height: 100%;
}

.banner__background-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .banner__background-image {
    max-height: 200px;
    margin: 0 auto;
  }
}
.banners {
  display: flex;
  justify-content: space-between;
}

.banners_col {
  flex-direction: column;
  gap: 16px;
  height: 100%;
  /* stylelint-disable-next-line block-no-empty */
}
.banners_col .banners__item {
  width: 100%;
  flex-grow: 1;
}
.banners_less {
  justify-content: space-around;
}

/* stylelint-disable-next-line no-descending-specificity */
.banners__item {
  text-align: center;
  width: 30%;
  overflow: hidden;
  border-radius: 15px;
}

@media (max-width: 1023px) {
  .banners {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -10px;
  }
  .banners__item {
    width: 45%;
    margin-top: 10px;
  }
  .banners__item:nth-of-type(2) {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .banners__item {
    width: 100%;
  }
}
.home-block {
  background-color: #fff;
}

.home-block_size_l {
  padding: var(--padding);
  --padding: 30px 0;
  --gray-padding: 50px 0 60px;
}

.home-block_style_gray {
  background: #fafafa;
  padding: var(--gray-padding);
}

@media (max-width: 1023px) {
  .home-block_size_l {
    --padding: 15px 0;
    --gray-padding: 30px 0;
  }
}
@media (max-width: 1023px) {
  .home-description {
    padding-bottom: 30px;
  }
  .home-description.content-decorator * + h1,
  .home-description.content-decorator * + h2,
  .home-description.content-decorator * + h3,
  .home-description.content-decorator * + h4,
  .home-description.content-decorator * + h5 {
    margin-top: 25px;
  }
  .home-description.content-decorator h2 {
    font-size: 18px;
    line-height: 21px;
  }
  .home-description.content-decorator h3,
  .home-description.content-decorator h4,
  .home-description.content-decorator h5 {
    font-size: 16px;
    line-height: 21px;
  }
  .home-description.content-decorator p {
    margin-bottom: 25px;
  }
  .home-description.content-decorator p:last-child {
    margin-bottom: 0;
  }
}
.home-slider {
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
}

.home-slider__slider {
  min-width: 0;
  flex: auto;
}

.home-slider__banners {
  display: flex;
  max-width: 255px;
  flex: 0 0 255px;
  flex-flow: column nowrap;
  justify-content: space-between;
  gap: 16px;
}

.home-slider__banner {
  flex: 100%;
  overflow: hidden;
}

.home-slider_offset-sidebar {
  flex-flow: column nowrap;
}
.home-slider_offset-sidebar .home-slider__banners {
  flex-flow: row nowrap;
  max-width: initial;
  flex: initial;
}

.home-slider__mobile {
  gap: 32px;
}

@media (max-width: 1023px) {
  .home-slider {
    flex-flow: column nowrap;
  }
  .home-slider__banners {
    flex-flow: column nowrap;
    max-width: initial;
    flex: initial;
  }
  .home-slider__banner_image {
    padding: 0;
  }
  .home-slider_offset-sidebar .home-slider__banners {
    flex-flow: column nowrap;
  }
  .home-slider_hide-banners-adaptive .home-slider__banners {
    display: none;
  }
}
@media (min-width: 450px) and (max-width: 700px) {
  .home-slider__banners_row .home-slider__banner:nth-child(3) {
    display: none;
  }
}
@media (min-width: 450px) {
  .home-slider__banners_row {
    flex-direction: row;
  }
}
.home-slider-banner {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  padding: 16px;
  color: #fff;
  text-decoration: none;
}

.home-slider-banner__image {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}
.home-slider-banner__image img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.home-slider-banner__header {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.home-slider-banner__text {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.home-slider-banner__header + .home-slider-banner__text {
  margin-top: 8px;
}

@media (max-width: 1023px) {
  .home-slider-banner_image {
    padding: 0;
  }
  .home-slider-banner_image .home-slider-banner__image {
    position: relative;
  }
}</pre></body></html>