* {
  padding: 0;
  margin: 0;
  border: 0;
  scroll-margin-top: 130px;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
html,
body {
  height: 100%;
}
body {
  color: #15181f;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
body {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
}
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  font-weight: 400;
  border: none;
}
@media (max-width: 768px) {
  .btn {
    padding: 10px 21px;
  }
}
.btn--red {
  color: #fff;
  background-color: #ed1a3b;
  transition: color 0.25s, background-color 0.25s;
}
.btn--red:hover {
  background-color: #b22f3a;
  transition: color 0.25s, background-color 0.25s;
}
.btn--red:active {
  background-color: #b22f3a;
  transition: color 0.25s, background-color 0.25s;
}
.btn--red[disabled] {
  background-color: #c9c9c9;
  color: #808284;
}
.btn--red-border {
  color: #ed1a3b;
  background-color: #fff0;
  border: 1px solid #ed1a3b;
}
.btn--gray-border {
  color: #15181f;
  border: 1px solid rgb(21 24 31 / 0.1);
  background-color: #fff0;
}
.btn--white {
  color: #15181f;
  background-color: #fff;
  transition: color 0.25s, background-color 0.25s;
}
.btn--white[disabled] {
  background-color: #c9c9c9;
  color: #a1a3a5;
  cursor: default;
}
.btn--small {
  padding: 10px 20px;
}
.btn--small.btn--red-border {
  padding: 9px 20px;
}
.container,
[class*='__container'] {
  margin: 0 auto;
  max-width: 1256px;
  padding: 0 12px;
}
@media (max-width: 1200px) {
  .container,
  [class*='__container'] {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .container,
  [class*='__container'] {
    max-width: 100%;
    padding: 0 12px;
  }
}
[class*='__container--full'] {
  padding: 0 24px;
  max-width: none;
  width: 100%;
}
@media (max-width: 1200) {
  [class*='__container--full'] {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  [class*='__container--full'] {
    max-width: 100%;
    padding: 0 12px;
  }
}
.title > * {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
}
.subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .title > * {
    font-size: 24px;
  }
  .subtitle {
    font-size: 18px;
  }
}
.bg-gradient {
  background: linear-gradient(to bottom, #fff0 20%, #15181f 700%);
}
.bg-gray {
  background-color: #f3f3f3;
}
.white-corners {
  position: relative;
}
.white-corners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: #fff0;
  box-shadow: 100px 0 0 0 rgb(21 24 31 / 0.05);
  border-top-right-radius: 60px;
  transform: scaleX(-1);
}
.white-corners::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: #fff0;
  box-shadow: 100px 0 0 0 rgb(21 24 31 / 0.05);
  border-top-right-radius: 60px;
}
@media (max-width: 768px) {
  .white-corners::before {
    height: 32px;
  }
  .white-corners::after {
    height: 32px;
  }
}
@media (max-width: 600px) {
  .white-corners::before {
    height: 24px;
  }
  .white-corners::after {
    height: 24px;
  }
}
.gray-corners {
  border-radius: 60px 60px 0 0;
}
@media (max-width: 768px) {
  .gray-corners {
    border-radius: 32px 32px 0 0;
  }
}
@media (max-width: 600px) {
  .gray-corners {
    border-radius: 24px 24px 0 0;
  }
}
.slider-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-control__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgb(21 24 31 / 0.1);
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}
.slider-control__button svg path {
  transition: stroke-opacity 0.3s;
}
.slider-control__button[disabled] {
  cursor: default;
  background-color: rgb(21 24 31 / 0.05);
  transition: background-color 0.3s, border-color 0.3s;
  border-color: rgb(21 24 31 / 0.1);
}
.slider-control__button[disabled] svg path {
  stroke-opacity: 0.4;
  transition: stroke-opacity 0.3s;
}
main {
  margin-top: 150px;
}
.swiper-scrollbar {
  width: 100% !important;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgb(0 0 0 / 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgb(0 0 0 / 0.5), #fff0);
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgb(0 0 0 / 0.5), #fff0);
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgb(0 0 0 / 0.5), #fff0);
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgb(0 0 0 / 0.5), #fff0);
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: #fff0;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 4px;

  height: 4px;
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: #15181f;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.1);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #ed1a3b;
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 6px;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}
.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgb(0 0 0 / 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgb(0 0 0 / 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgb(0 0 0 / 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
.pristine-error {
  position: absolute;
  bottom: -14px;
  left: 0;
  color: #ed1a3b;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  margin-top: 8px;
}

.page__main {
  margin-top: 150px;
}

@media (max-width: 768px) {
  .page__main {
    padding-bottom: 0;
  }
}

/* request */

.request {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .request {
    padding: 28px 0;
  }
}
.request__wrapper {
  position: relative;
  display: flex;
  min-height: 196px;
  padding: 24px;
  background-color: rgb(21 24 31 / 0.05);
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .request__wrapper {
    display: flex;
    flex-direction: column;
    min-height: 244px;
    padding: 24px;
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .request__wrapper {
    padding: 16px;
  }
}
.request__wrapper::after {
  position: absolute;
  right: -429px;
  top: -80px;
  display: block;
  width: 1074px;
  height: 451px;
  background-image: url('data:image/svg+xml,%3Csvg width=%271075%27 height=%27451%27 viewBox=%270 0 1075 451%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath opacity=%270.2%27 fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M868.639 228.657C1025.99 410.56 1074.61 451 1074.61 451H848.14C786.418 451 729.467 421.403 684.038 371.699L636.402 317.147H332.92L380.103 260.359H588.465L497.136 155.125H466.868L595.933 0H684.434C684.434 0 711.212 46.7537 868.639 228.657ZM532.494 0L381.97 180.832L153.542 451H0L383.761 0H532.494Z%27 fill=%27white%27/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}
@media (max-width: 768px) {
  .request__wrapper::after {
    width: 657px;
    height: 276px;
    right: -146px;
    top: 20px;
  }
}
@media (max-width: 600px) {
  .request__wrapper::after {
    right: -292px;
  }
}
.request--gradient .request__wrapper {
  background: linear-gradient(rgb(21 24 31 / 0.1), rgb(21 24 31 / 0.1)),
    linear-gradient(135deg, #fff0 0%, rgb(21 24 31 / 0.2) 100%);
}
.request--dark .request__wrapper::after {
  background-image: url('data:image/svg+xml,%3Csvg width=%271076%27 height=%27451%27 viewBox=%270 0 1076 451%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath opacity=%270.06%27 fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M869.336 228.657C1026.69 410.56 1075.3 451 1075.3 451H848.837C787.115 451 730.163 421.403 684.734 371.699L637.099 317.147H333.617L380.799 260.359H589.162L497.832 155.125H467.565L596.63 0H685.13C685.13 0 711.909 46.7537 869.336 228.657ZM533.191 0L382.666 180.832L154.239 451H0.696777L384.458 0H533.191Z%27 fill=%27%2315181F%27/%3E%3C/svg%3E%0A');
}
.request__content,
.request__button {
  position: relative;
  z-index: 1;
}
.request__title {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
.request__form {
  margin-top: 16px;
  width: 588px;
  max-width: 100%;
}

.request__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}
.request__button {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  height: max-content;
  margin-left: auto;
  margin-top: auto;
}
.request__content {
  width: 50%;
}
@media (max-width: 768px) {
  .request__title {
    margin-bottom: 8px;
  }
  .request__button {
    margin-left: 0;
    margin-top: 24px;
  }

  .request__content {
    width: 100%;
    margin-bottom: auto;
  }

  .request__form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .request__button .btn + .btn {
    width: calc(50% - 27.7px);
    padding: 10px;
  }
  .request__button .btn {
    flex-grow: 1;
  }
}

:root {
  --cs-radius: 10px;
  --cs-border: 1px solid #e3e3e7;
  --cs-bg: #fff;
  --cs-bg-hover: #f6f6f8;
  --cs-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  --cs-text: #111;
  --cs-muted: #6b7280;
  --cs-accent: #ed1a3b;
  --cs-z: 40;
  --cs-maxh: 260px;
  --cs-pad: 10px 12px;
  --cs-gap: 8px;
  --cs-font: inherit;
}
.cs {
  position: relative;
  font: var(--cs-font);
}
.cs__native {
  display: none;
}
.cs__button {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  background: var(--cs-bg);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  cursor: pointer;
  color: var(--cs-text);
}
.cs__button:focus-visible {
  outline: 2px solid var(--cs-accent);
  outline-offset: 2px;
}
.cs__button[aria-disabled='true'] {
  opacity: 0.6;
  pointer-events: none;
}
.cs__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cs__caret {
  width: 20px;
  height: 20px;
  transition: transform 0.15s ease;
  border-radius: 0.5px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8.33334L9.41074 12.7441C9.73618 13.0695 10.2638 13.0695 10.5893 12.7441L15 8.33334' stroke='black' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.cs[data-open='true'] .cs__caret {
  transform: rotate(-180deg);
}
.cs__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--cs-shadow);
  z-index: var(--cs-z);
  max-height: var(--cs-maxh);
  overflow: auto;
  padding: 16px;
  margin: 0;
  list-style: none;
  display: none;
}
.cs[data-open='true'] .cs__list {
  display: block;
}
.cs__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}
.cs__option[aria-selected='true'] {
  background-color: #15181f0d;
}
.cs__option:hover {
  background-color: #15181f0d;
}
.cs__option[aria-disabled='true'] {
  opacity: 0.5;
  pointer-events: none;
}
.cs__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form__title {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
.form__text {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}
.form__row {
  display: flex;
  gap: 8px;
}
.form__field {
  position: relative;
  flex-grow: 1;
  width: 50%;
}

.pristine-error {
  position: absolute;
  bottom: -14px;
  left: 0;
  color: #ed1a3b;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  margin-top: 8px;
}
.form__top {
  margin-bottom: 16px;
}
.form__row + .form__row {
  margin-top: 16px;
}
.form__row--cols-2 .form__input {
  flex: 1;
}
.form__input {
  height: 48px;
  width: 100%;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  background-color: #fff;
  resize: vertical;
}
textarea.form__input {
  padding: 14px;
  resize: none;
}
.form__captcha {
  max-width: 500px;
  margin-top: 16px;
}
.form__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.form__submit {
  flex-shrink: 0;
}
.form__policy {
  max-width: 510px;
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
  color: #15181f66;
}
.form__policy a {
  text-decoration: underline;
  color: #ed1a3b;
}

@media (max-width: 768px) {
  .form__input {
    height: 40px;
  }

  .cs__button {
    padding: 10px 16px;
  }

  textarea.form__input {
    padding: 10px 16px;
  }
}

@media (max-width: 600px) {
  .form__row {
    flex-direction: column;
    gap: 16px;
  }

  .form__field {
    width: 100%;
  }

  textarea.form__input {
    height: 80px;
  }
}

/* price */

.free-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
  border-radius: 24px;
  width: 1232px;
}

.free-table__row {
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  border: 1px solid #15181f1a;
  border-radius: 20px;
  overflow: hidden;
}

.free-table__cell {
  padding: 24px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.free-table__row:not(.free-table__row--header) .free-table__cell:first-child {
  font-weight: 400;
}

.free-table__row--header {
  border: none;
  margin-bottom: 8px;
}

.free-table__header {
  padding: 16px 24px;
  color: #15181f66;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.free-table__row--header .free-table__cell {
  border-right: none;
}

@media (max-width: 768px) {
  .free-table__cell {
    padding: 20px 16px;
    font-size: 16px;
  }
  .free-table__header {
    padding: 16px;
  }
}

@media (max-width: 600px) {
  .free-table {
    padding-bottom: 32px;
  }
}

.price {
  padding-top: 40px;
}

.price__table {
  margin-top: 40px;
  overflow-y: auto;
}

.price__update {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 300;
  font-style: 300;
  font-size: 12px;
  line-height: 140%;
  color: #ed1a3b;
}

.price__update:before {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00001 10.6733V7.34001M8.00001 5.34001V5.33334M14.6667 8.00016C14.6667 11.6821 11.6819 14.6668 8.00001 14.6668C4.31811 14.6668 1.33334 11.6821 1.33334 8.00016C1.33334 4.31826 4.31811 1.3335 8.00001 1.3335C11.6819 1.3335 14.6667 4.31826 14.6667 8.00016Z' stroke='%23ED1A3B' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  content: '';
}

.price__under {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

.price__text {
  max-width: 634px;
}

.price__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.price__button {
  width: 282px;
  max-width: 50%;
}

.free-table__row:not(.free-table__row--header) .free-table__cell:last-child {
  color: #ed1a3b;
}

@media (min-width: 601px) {
  .free-table {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .price {
    padding-top: 28px;
  }

  .price__table {
    margin-top: 32px;
  }

  .price__buttons {
    margin-top: 32px;
  }

  .price__under {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 32px;
  }

  .price__button {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .price__buttons {
    flex-direction: column;
  }

  .price__button {
    width: 100%;
    max-width: 100%;
  }
  .price__container {
    padding-right: 0;
  }

  .free-table {
    margin-right: 12px;
  }
}

/* subject */

.subject {
  padding: 80px 0 40px 0;
}

.subject__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
}

.subject .swiper-scrollbar {
  position: static;
}

.subject__title {
  margin-bottom: 16px;
}

.subject__items .swiper-slide {
  width: 240px;
}

.subject__items,
.subject__scrollbar {
  margin-top: 40px;
}

.subject__item {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 23px;
  border-radius: 24px;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}
.subject__item:hover .subject__button {
  background-color: #ed1a3b;
  transition: background-color 0.3s;
}
.subject__item:hover svg path {
  stroke: #fff;
  transition: stroke 0.3s;
}
.subject__item + .subject__item {
  margin-top: 8px;
}
.subject__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: auto;
}
.subject__icon img {
  max-width: 100%;
  object-fit: cover;
}
.subject__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 8px;
  gap: 8px;
}
.subject__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  flex-shrink: 0;
  background-color: rgba(21, 24, 31, 0.05);
  border-radius: 999px;
  transition: background-color 0.3s;
}
.subject__button svg path {
  transition: stroke 0.3s;
}
.subject__hint {
  margin-top: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .subject {
    padding: 56px 0 28px 0;
  }
  .subject__container {
    padding-right: 0;
  }
  .subject__items {
    margin-top: 32px;
  }
  .subject__items .swiper-slide {
    width: 258px;
  }
  .subject__hint {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .subject__item {
    padding: 16px;
  }
  .subject__items .swiper-slide {
    width: 215px;
  }
  .subject__icon {
    width: 32px;
    height: 32px;
  }
}

/* account */

.account {
  padding: 40px 0;
  overflow: hidden;
}

.account__wrapper {
  display: flex;
  align-items: center;
}

.account__socials {
  position: relative;
  width: 50%;
}

.account__content {
  position: relative;
  width: 50%;
  padding-right: 24px;
}

.account__desc {
  margin-top: 16px;
}

.account__text {
  margin-top: 40px;
}

.account__text li {
  position: relative;
  padding-left: 36px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
}

.account__text li::before {
  position: absolute;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml,%3Csvg width=%2716%27 height=%2718%27 viewBox=%270 0 16 18%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M10.5 5.6665L7.28348 8.90761C7.16144 9.03058 6.96358 9.03058 6.84154 8.90761L5.50001 7.55583M1.33334 16.659V2.33317C1.33334 1.4127 2.07954 0.666504 3.00001 0.666504H13C13.9205 0.666504 14.6667 1.4127 14.6667 2.33317V16.659C14.6667 16.9687 14.3407 17.1702 14.0637 17.0317L8.74537 14.3725C8.27615 14.1379 7.72387 14.1379 7.25465 14.3725L1.93635 17.0317C1.65931 17.1702 1.33334 16.9687 1.33334 16.659Z%27 stroke=%27%23ED1A3B%27 stroke-width=%271.2%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  content: '';
}

.account__text li + li {
  margin-top: 16px;
}

.account__offer {
  display: inline-flex;
  align-items: flex-end;
  gap: 24px;
  max-width: 395px;
  margin-top: 40px;
  padding: 16px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
  border-radius: 16px;
  background: linear-gradient(95.06deg, #81192d -68.7%, #ed1a3b 95.93%);
}

.account__offer-button {
  display: inline-flex;
  align-items: center;
  width: 40px;
  height: 32px;
  padding: 8px 12px;
  background-color: #ffffff;
  border-radius: 999px;
  flex-shrink: 0;
}

.account__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.account__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.account__img::after {
  position: absolute;
  top: 50%;
  left: calc(100% - 494px);
  z-index: 0;
  transform: translateY(-50%);
  display: block;
  width: 1070px;
  height: 451px;
  background-image: url("data:image/svg+xml,%3Csvg width='1075' height='451' viewBox='0 0 1075 451' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.06' fill-rule='evenodd' clip-rule='evenodd' d='M868.639 228.657C1025.99 410.56 1074.61 451 1074.61 451H848.14C786.418 451 729.467 421.403 684.038 371.699L636.402 317.147H332.92L380.103 260.359H588.465L497.136 155.125H466.868L595.933 0H684.434C684.434 0 711.212 46.7537 868.639 228.657ZM532.494 0L381.97 180.832L153.542 451H0L383.761 0H532.494Z' fill='%2315181F'/%3E%3C/svg%3E%0A");
  background-position: center;
  content: '';
}

.account__img img {
  z-index: 1;
}

.account__links {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 8px;
  gap: 8px;
}

.account__link {
  width: calc(100% / 3);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  gap: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #ffffff;
  background-color: #15181f66;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .account__wrapper {
    flex-direction: column-reverse;
  }
  .account__socials {
    width: 100%;
  }
  .account__content {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .account {
    padding: 0 0 28px 0;
  }

  .account__img::after {
    left: calc(100% - 606px);
  }

  .account__links {
    bottom: -2px;
  }

  .account__link {
    max-width: 195px;
  }

  .account__wrapper {
    gap: 56px;
  }

  .account__text {
    margin-top: 32px;
  }

  .account__offer {
    margin-top: 32px;
  }

  .account__buttons {
    margin-top: 32px;
  }
}

@media (max-width: 660px) {
  .account__links {
    position: static;
    flex-direction: column;
    margin-top: 28px;
    padding: 0;
  }

  .account__link {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .account__img::after {
    width: 555px;
    height: 233px;
    left: calc(100% - 226px);
  }

  .account__content {
    padding-right: 0;
  }

  .account__offer {
    max-width: 100%;
    padding: 16px;
  }

  .account__button {
    flex-grow: 1;
  }
}

/* logistics-products */

.logistics-products {
  padding: 40px 0;
}

.logistics-products__title {
  margin-bottom: 40px;
}

.logistics-products__items,
.logistics-products__scrollbar {
  margin-top: 40px;
}

@media (min-width: 993px) {
  .logistics-products__wrapper {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.logistics-products__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 6px);
  height: auto;
  padding: 24px;
  background-color: rgba(21, 24, 31, 0.05);
  border-radius: 32px;
}

.logistics-products__header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.logistics-products__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.logistics-products__icon img {
  width: 100%;
  object-fit: cover;
}

.logistics-products__caption {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}

.logistics-products .swiper-scrollbar {
  position: static;
}

.logistics-products__button {
  display: flex;
  justify-content: center;
  margin: 40px auto 0 auto;
}

@media (max-width: 992px) {
  .logistics-products__container {
    padding-right: 0;
  }

  .logistics-products__item {
    padding: 24px;
    width: 352px;
  }
}

@media (max-width: 768px) {
  .logistics-products {
    padding: 28px 0;
  }

  .logistics-products__title {
    margin-bottom: 32px;
  }

  .logistics-products__items,
  .logistics-products__scrollbar {
    margin-top: 32px;
  }

  .logistics-products__item {
    border-radius: 24px;
  }

  .logistics-products__caption {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .logistics-products__item {
    width: 291px;
    padding: 16px;
  }

  .logistics-products__icon {
    width: 32px;
    height: 32px;
  }
}

/* reasons */

.reasons {
  position: relative;
  padding: 80px 0 40px 0;
}

.reasons .swiper-scrollbar {
  position: static;
}

.reasons__title {
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}

.reasons__desc {
  max-width: 820px;
  margin-top: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
}

.reasons__items {
  margin-top: 40px;
}

.reasons__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border-radius: 32px;
  background-color: #15181f0d;
}
.reasons__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  background-color: rgba(237, 26, 59, 0.1);
  border-radius: 50%;
}
.reasons__icon img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.reasons__caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
}
.reasons__text {
  margin-top: 16px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
}
.reasons__slider .swiper-slide {
  width: 302px;
  height: auto;
}

.reasons__scrollbar {
  margin-top: 40px;
}

@media (max-width: 992px) {
  .reasons__container {
    padding-right: 0 !important;
  }

  .reasons__slide:last-child {
    margin-right: 16px;
  }
}

@media (max-width: 768px) {
  .reasons {
    padding: 56px 0 28px 0;
  }
  .reasons__title {
    margin-bottom: 32px;
  }
  .reasons__item {
    border-radius: 24px;
  }

  .reasons__slider .swiper-slide {
    width: 352px;
  }

  .reasons__scrollbar {
    margin-top: 32px;
  }

  .reasons__slide:last-child {
    margin-right: 12px;
  }

  .reasons__desc {
    margin-top: 16px;
    font-size: 18px;
  }
  .reasons__items {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .reasons__item {
    border-radius: 24px;
    padding: 16px;
  }

  .reasons__slider .swiper-slide {
    width: 291px;
  }
}

/* news-list */

.news-list {
  padding-top: 80px;
}
.news-list__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}

.news-list__scrollbar {
  position: static !important;
  margin-top: 40px;
}
.news-list__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.news-list__slider .swiper-slide {
  width: 395px;
  height: auto;
}

.news-list__slider .swiper-wrapper .swiper-slide {
  padding-right: 1px;
}

@media (max-width: 768px) {
  .news-list {
    padding: 56px 0;
    border-radius: 32px 32px 0 0;
  }
  .news-list__slider .swiper-slide {
    width: 336px;
  }
  .news-list__container {
    padding-right: 0;
  }
  .news-list__control {
    display: none;
  }
  .news-list__scrollbar {
    margin-top: 32px;
  }
  .news-list__header {
    margin-bottom: 32px;
  }
  .news-list__img {
    height: 202px;
  }
}
@media (max-width: 600px) {
  .news-list__slider .swiper-slide {
    width: 291px;
  }
  .news-list__slider .swiper-slide:last-child {
    margin-right: 12px;
  }
  .news-list__button .btn {
    width: 100%;
  }
}

.news-article__badge--red {
  color: #fff;
  background-color: #ed1a3b;
}
.news-article {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-article__top {
  position: relative;
  height: 222px;
  width: 100%;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.news-article__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-article__badge {
  padding: 3.5px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 2%;
}
.news-article__badge--white {
  color: #15181f66;
  background-color: #f3f3f3;
}
.news-article__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-article__bottom {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
  padding: 16px 24px;
  border: 1px solid #15181f1a;
  border-radius: 0 0 24px 24px;
}
.news-article__title {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
.news-article__text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}
.news-article__button {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin-left: auto;
  border-radius: 999px;
  background-color: #15181f0d;
  transition: background-color 0.25s;
}
.news-article:hover .news-article__button {
  background-color: #ed1a3b1a;
  transition: background-color 0.25s;
}
.news-article:hover .news-article__button svg path {
  stroke: #ed1a3b;
  transition: stroke 0.25s;
}

@media (max-width: 768px) {
  .news-page {
    padding-bottom: 28px;
  }
  .news-page__under {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-page__filter-button {
    padding: 8px 12px;
  }
  .news-page__controls,
  .news-page__list {
    margin-top: 32px;
  }
  .news-article__bottom {
    padding: 16px;
  }
  .news-article__top {
    height: 202px;
  }
  .news-page__telegram {
    margin-top: 28px;
  }
}
@media (max-width: 540px) {
  .news-page {
    padding-bottom: 28px;
  }
  .news-page__desc {
    font-size: 18px;
  }
  .news-page__filter-button {
    padding: 6px 12px;
  }
  .news-page__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .news-page__more-button {
    width: 100%;
  }
  .news-article__top {
    border-radius: 16px 16px 0 0;
    height: 197px;
  }
  .news-article__bottom {
    border-radius: 0 0 16px 16px;
  }
}

/* tg */

.tg {
  padding-bottom: 40px;
}

/* main-services */

.main-services {
  padding: 40px 0;
}
.main-services__items {
  margin-top: 40px;
}
.main-services__slide {
  width: calc(100% / 3 - 6px);
  height: auto;
}
.main-services__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border-radius: 32px;
  background-color: #fff;
}
.main-services__title {
  margin-bottom: 40px;
}
.main-services__icon {
  margin-bottom: 24px;
  width: 40px;
  height: 40px;
}
.main-services__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-services__caption {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.main-services__text {
  margin-top: 16px;
  margin-bottom: 64px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
@media (min-width: 993px) {
  .main-services__item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .main-services__slide {
    height: auto !important;
  }

  .main-services__slide:last-child {
    margin-right: 16px;
  }
}
.main-services__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border-radius: 999px;
  background-color: rgb(21 24 31 / 0.05);
  margin-left: auto;
  margin-top: auto;
  flex-shrink: 0;
}
.main-services__text li {
  list-style: disc;
  list-style-position: inside;
}
.main-services .swiper-scrollbar {
  position: static;
}
.main-services__scrollbar {
  margin-top: 40px;
}
@media (min-width: 993px) {
  .main-services__wrapper {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
  }
  .main-services__slider {
    overflow: visible;
  }
}
@media (max-width: 992px) {
  .main-services__slide {
    width: 352px;
  }
  .main-services__container {
    padding-right: 0;
  }
  .main-services__item {
    padding: 24px;
  }
  .main-services__icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .main-services {
    padding: 28px 0 0;
  }
  .main-services__title {
    margin-bottom: 32px;
  }
  .main-services__item {
    padding: 16px;
  }
  .main-services__items {
    margin-top: 32px;
  }

  .main-services__text {
    color: #15181f;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
  }

  .main-services__scrollbar {
    margin-top: 32px;
  }
}
@media (max-width: 600px) {
  .main-services__slide {
    width: 291px;
  }
  .main-services__icon {
    width: 32px;
    height: 32px;
  }
  .main-services {
    padding-top: 0;
  }
}

/* calculator-block */

.calculator-block__text p {
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
}

.calculator-block__text {
  margin-top: 16px;
}

.calculator-block {
  padding: 80px 0 40px 0;
  scroll-margin-top: 130px;
}
.calculator-block__text p {
  font-weight: 300;
}
.calculator-block__text p + p,
.calculator-block__text ul {
  margin-top: 16px;
}
.calculator-block__hint {
  margin-top: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
}
.calculator-block__form {
  width: 42.45%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.calculator-block__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
}

@media (max-width: 1200px) {
  .calculator-block__wrapper {
    gap: 56px;
  }
}

@media (max-width: 992px) {
  .calculator-block__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .calculator-block__form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .calculator-block {
    padding: 56px 0 28px;
  }
  .calculator-block__hint {
    margin-top: 32px;
  }

  .calculator-block__content {
    max-width: 580px;
  }

  .delivery-calculation-form {
    margin: 0;
  }
}

@media (max-width: 600px) {
  .calculator-block__wrapper {
    padding: 0;
    border: none;
    gap: 32px;
  }
  .calculator-block {
    padding: 40px 0 28px;
  }
}

/* delivery */

.delivery {
  padding: 40px 0;
}

.delivery__wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.delivery__cards {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}

.delivery__content {
  width: 51%;
}

.delivery__card {
  display: flex;
  align-items: center;
  padding: 24px 32px;
  border-radius: 32px;
  background-color: #fff;
}

.delivery__desc {
  margin-top: 16px;
}

.delivery__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  max-width: 500px;
  margin-top: 32px;
}

.delivery__tag {
  padding: 3.5px 10px;
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: #fff;
  background-color: #ed1a3b;
  border-radius: 999px;
}

.delivery__caption {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}

.delivery__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-right: 16px;
}

.delivery__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.delivery__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border-radius: 999px;
  background-color: rgb(21 24 31 / 0.05);
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .delivery__wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .delivery {
    padding: 28px 0;
  }

  .delivery__wrapper {
    flex-direction: column-reverse;
    gap: 24px;
  }

  .delivery__content {
    width: 100%;
  }

  .delivery__cards {
    width: 100%;
  }

  .delivery__card {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
  }

  .delivery__tags {
    max-width: 100%;
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .delivery__card {
    padding: 16px;
    border-radius: 16px;
  }

  .delivery__img {
    width: 32px;
    height: 32px;
  }

  .delivery__caption {
    font-size: 16px;
  }
}

/* promo-block */

.promo-block {
  padding: 40px 0;
}

.promo-block__desc {
  margin-top: 16px;
}

.promo-block__cards {
  display: flex;
  align-items: stretch;

  gap: 8px;
  margin-top: 40px;
}

.promo-block__card {
  display: flex;
  gap: 16px;
  padding: 32px;
  flex: 1;
  height: auto;
  border-radius: 24px;
  background-color: #fff;
}

.promo-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.promo-block__icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.promo-block__caption {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.promo-block__text {
  margin-top: 8px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}

.promo-block__under {
  max-width: 813px;
  margin-top: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.promo-block__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .promo-block {
    padding: 28px 0;
  }

  .promo-block__cards {
    margin-top: 32px;
  }

  .promo-block__card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: #15181f0d;
  }

  .promo-block__caption {
    font-size: 16px;
  }

  .promo-block__under {
    margin-top: 32px;
  }

  .promo-block__buttons {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .promo-block__cards {
    display: flex;
    flex-direction: column;
  }

  .promo-block__card {
    padding: 16px;
  }

  .promo-block__icon {
    width: 32px;
    height: 32px;
  }

  .promo-block__buttons {
    display: flex;
    flex-direction: column;
  }

  .promo-block__buttons .btn {
    width: 100%;
  }
}

/* main-hero */

.main-hero {
  position: relative;
}

.main-hero__control {
  position: absolute;
  right: 24px;
  bottom: 52px;
  z-index: 1;
}

.main-hero__control .slider-control__button {
  border-color: #fff;
}

.main-hero__pagination {
  position: static;
  justify-content: center;
  margin-top: 20px;
}

.main-hero__slide {
  height: auto;
}

.main-hero__slide-link {
  display: block;
  height: 100%;
}

.main-hero__slide-img img {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 32px;
}

@media (max-width: 768px) {
  .main-hero__control {
    display: none;
  }
}
