* {
  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;
}

.delivery-page .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) {
  .delivery-page .btn {
    padding: 10px 21px;
  }
}
.delivery-page .btn--red {
  color: #fff;
  background-color: #ed1a3b;
  transition: color 0.25s, background-color 0.25s;
}
.delivery-page .btn--red:hover {
  background-color: #b22f3a;
  transition: color 0.25s, background-color 0.25s;
}
.delivery-page .btn--red:active {
  background-color: #b22f3a;
  transition: color 0.25s, background-color 0.25s;
}
.delivery-page .btn--red[disabled] {
  background-color: #c9c9c9;
  color: #808284;
}
.delivery-page .btn--red-border {
  color: #ed1a3b;
  background-color: transparent;
  border: 1px solid #ed1a3b;
}
.delivery-page .btn--gray-border {
  color: #15181f;
  border: 1px solid rgba(21, 24, 31, 0.1);

  background-color: transparent;
}
.delivery-page .btn--white {
  color: #15181f;
  background-color: #fff;
  transition: color 0.25s, background-color 0.25s;
}
.delivery-page .btn--white[disabled] {
  background-color: #c9c9c9;
  color: #a1a3a5;
  cursor: default;
}
.delivery-page .btn--small {
  padding: 10px 20px;
}
.delivery-page .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-gray {
  background-color: rgb(243, 243, 243);
}

.white-corners {
  position: relative;
}

.white-corners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: transparent;
  box-shadow: 100px 0 0 0 rgba(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: transparent;
  box-shadow: 100px 0 0 0 rgba(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 rgba(21, 24, 31, 0.1);
  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: rgba(21, 24, 31, 0.05);
  transition: background-color 0.3s, border-color 0.3s;
  border-color: rgba(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(0px, 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: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.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: transparent;
}
.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;
  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: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
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 {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.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(0px, -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 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.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,
    rgba(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, rgba(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, rgba(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: 0px;
  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;
}

.delivery-page .breadcrumbs {
  padding: 24px 0;
  overflow: hidden;
}
.delivery-page .breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -12px;
}
@media (max-width: 992px) {
  .delivery-page .breadcrumbs__list {
    padding-bottom: 7px;
  }
}
.delivery-page .breadcrumbs__item {
  position: relative;
  margin: 0px 12px;
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
  color: rgba(21, 24, 31, 0.4);
}
.delivery-page .breadcrumbs__item a {
  color: #15181f;
}
.delivery-page .breadcrumbs__item::after {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  background-image: url('data:image/svg+xml,%3Csvg width=%274%27 height=%277%27 viewBox=%270 0 4 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.33301 1.5L3.09731 3.2643C3.22748 3.39447 3.22748 3.60553 3.09731 3.7357L1.33301 5.5%27 stroke=%27%2315181F%27 stroke-width=%271.2%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  background-position: center;
  content: '';
}
.delivery-page .breadcrumbs__item:last-child::after {
  content: none;
}

.delivery {
  padding-bottom: 80px;
  margin-bottom: -80px;

  overflow: hidden;
  background: linear-gradient(to bottom, rgba(21, 24, 31, 0) 35%, #15181f 700%);
}

.delivery__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: stretch;
  padding: 40px 0;
}

.delivery__form {
  max-width: 395px;
  flex-shrink: 0;
}

.delivery__title {
  margin-bottom: 16px;
}

.delivery__lead {
  margin-bottom: 40px;
  color: #15181f;
}

.delivery__buttons {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.delivery__advantages {
  position: relative;
}

.delivery__content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.delivery__content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 36px;
}

.delivery__content ul li {
  position: relative;
}

.delivery__content ul li::before {
  position: absolute;
  top: 0;
  left: -36px;
  width: 20px;
  height: 20px;
  background-position: center;
  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='M15.8333 5.83331L8.54166 14.1666L4.16666 10.3788' stroke='%23ED1A3B' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  content: '';
}

.delivery__text {
  width: calc(100% - 143px);
}

.delivery__advantage {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  margin-bottom: 16px;
}

.delivery__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 127px;
  border-radius: 12px;
  padding: 9px;
  backdrop-filter: blur(20px);
  background-color: rgba(21, 24, 31, 0.05);
}

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

.delivery__advantage::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 12px;
  background: url('check.svg') no-repeat center/contain;
}

.delivery__image {
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: -1;
}

.delivery__image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.delivery__cards {
  margin-top: auto;
}

.cards {
  display: flex;
  gap: 24px;
}

.card {
  flex: 1 1 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  backdrop-filter: blur(5px);
}

.card__top {
  display: flex;
  align-items: flex-start;
}

.card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 16px;
}

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

.card__data div:first-child,
.card__data p:first-child,
.card__data span:first-child {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;

  text-transform: uppercase;
  color: #15181f66;
}

.card__data div:last-child,
.card__data p:last-child,
.card__data span:last-child {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;

  color: #15181f;
}

.card__more {
  margin-top: auto;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

.delivery .form {
  border-radius: 32px;
  padding: 24px;
  background: linear-gradient(180deg, #e3e4e8 0%, #cfd0d6 100%);
}

.delivery .form__title {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.delivery .form__text {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}

.delivery .form__row {
  display: flex;
  gap: 8px;
}

.delivery .form__field {
  position: relative;
  flex-grow: 1;
}

.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: 1px solid rgba(21, 24, 31, 0.1);
  border-radius: 8px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;

  background-color: #fff;
  resize: vertical;
}

.form__captcha {
  margin-top: 16px;
}

.form__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.form__submit {
  flex-shrink: 0;
}

.form__policy {
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;

  color: #15181f66;
}

.form__policy a {
  text-decoration: underline;
  color: #15181f;
}

@media (max-width: 1023px) {
  .delivery__inner {
    grid-template-columns: 1fr;
  }

  .cards {
    flex-direction: column;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .delivery {
    background: linear-gradient(
      to bottom,
      rgba(21, 24, 31, 0) 5%,
      #15181f 550%
    );
  }
  .delivery__lead {
    max-width: 580px;
    margin-bottom: 32px;
  }

  .cards {
    flex-direction: row;
    gap: 8px;
  }

  .breadcrumbs {
    display: none;
  }

  .delivery__wrapper {
    flex-direction: column;
    padding: 0 0 56px 0;
  }

  .delivery__content {
    width: 100%;
  }

  .delivery__form {
    max-width: 100%;
  }

  .delivery__image {
    right: -144px;
  }

  .form__top {
    display: flex;
    gap: 8px;
  }

  .form__top .form__row + .form__row {
    margin: 0;
  }

  .form__top .form__row--cols-2 {
    width: calc(100% / 3 * 2 - 48px);
  }

  .form__top .form__row {
    flex-grow: 1;
  }
}

@media (max-width: 600px) {
  .delivery__wrapper {
    gap: 32px;
  }

  .delivery__title {
    order: 1;
  }

  .delivery__lead {
    order: 2;
  }

  .delivery__advantages {
    order: 3;
  }

  .delivery__image {
    order: 4;
    position: relative;
    width: 100%;
    height: 132px;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
  }

  .delivery__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    transform: scale(0.9);
  }

  .delivery__logo {
    top: calc(100% + 24px);
    width: 95px;
  }

  .delivery__cards {
    order: 5;
    margin: 0;
  }

  .delivery__text {
    width: 100%;
  }

  .cards {
    flex-direction: column;
  }

  .card {
    padding: 16px;
    row-gap: 16px;
  }

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

  .form__top {
    display: block;
  }

  .form__top .form__row + .form__row {
    margin-top: 16px;
  }

  .form__top .form__row--cols-2 {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }

  .form {
    padding: 16px;
  }

  .form__submit {
    width: 100%;
    height: 48px;
  }

  .form__bottom {
    flex-direction: column;
    text-align: center;
  }
}

.features-block {
  padding: 80px 0 40px 0;
}
@media (max-width: 768px) {
  .features-block {
    padding: 56px 0 28px 0;
  }
}
.features-block__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

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

@media (max-width: 768px) {
  .features-block__header {
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .features-block__header {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .features-block__control {
    display: none;
  }
}
.features-block__item {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 32px;
  border-radius: 32px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .features-block__item {
    padding: 24px;
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .features-block__item {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .features-block__container {
    padding-right: 0;
  }
}
.features-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(237, 26, 59, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.features-block__icon img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .features-block__icon {
    width: 32px;
    height: 32px;
  }
}
.features-block__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.features-block__content li {
  font-weight: 300;
  list-style: disc;
  list-style-position: inside;
}
.features-block__slider .swiper-slide {
  width: 395px;
  height: auto;
}
@media (max-width: 768px) {
  .features-block__slider .swiper-slide {
    width: 352px;
  }
}
@media (max-width: 600px) {
  .features-block__slider .swiper-slide {
    width: 291px;
  }
}
.features-block__scrollbar {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .features-block__scrollbar {
    margin-top: 32px;
  }
}
.features-block .swiper-scrollbar {
  position: static;
}

.pricing {
  padding: 40px 0 0 0;
}

.pricing__title {
  margin-bottom: 16px;
  max-width: 780px;
}

.pricing__text {
  margin-bottom: 40px;
}

.pricing__wrapper {
  overflow-y: auto;
  padding-bottom: 40px;
}

.pricing__table {
  display: grid;
  grid-template-columns: repeat(3, 405px);
  gap: 8px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: #15181f0d;
  border-radius: 32px;
  padding: 32px;
  position: relative;
  transition: color 0.25s, background-color 0.25s;
}

.pricing-card:hover {
  background: linear-gradient(180deg, #d0162c 0%, #7c0f20 100%);
  color: #fff;
  transition: color 0.25s, background-color 0.25s;
}

.pricing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.pricing-card__tick {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  border: 1px solid rgba(237, 26, 59, 0.5);
  display: inline-block;
  position: relative;
}

.pricing-card:hover .pricing-card__tick {
  border-color: rgba(255, 255, 255, 0.5);
}

.pricing-card__tick::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 1px)) rotate(-45deg);
  width: 11px;
  height: 6px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  border-radius: 1px;
  color: #ed1a3b;
}

.pricing-card:hover .pricing-card__tick::after {
  color: #fff;
}

.pricing-card__badge {
  display: inline-block;
  padding: 3.5px 12px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-transform: uppercase;
  background: rgba(237, 26, 59, 0.1);
  color: #ed1a3b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pricing-card:hover .pricing-card__badge {
  background: #ffffff;
}

.pricing-card__badge_theme_alt {
  background: rgba(236, 28, 54, 0.12);
}

.pricing-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pricing-card__subtitle {
  margin: 8px 0;
  font-size: 16px;
  color: #8f8f9a;
}

.pricing-card__btn {
  margin-top: auto;
  width: 100%;
  color: #ed1a3b;
  border: 1px solid #ed1a3b !important;

  transition: all 0.25s;
}

.pricing-card:hover .pricing-card__btn {
  color: #ffffff;
  background-color: #ed1a3b;
  transition: all 0.25s;
}

.pricing-card:hover .pricing-card__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.pricing-card__item {
  padding: 18px 0;
  border-bottom: 1.4px dashed #15181f66;

  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
}

.pricing-card__item:last-child {
  border-bottom: none;
}

.pricing-card:hover .pricing-card__item {
  border-color: rgb(255, 255, 255, 0.3);
}

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

  .pricing__table {
    grid-template-columns: repeat(3, 352px);
  }
}

.match {
  padding: 40px 0 0 0;
}

.match__title {
  margin-bottom: 40px;
}

.match__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  max-height: 275px;
  overflow: hidden;
  will-change: max-height;
  -webkit-transition: max-height 0.3s;
  -o-transition: max-height 0.3s;
  transition: max-height 0.3s;
}

.match__inner::after {
  content: '';
  display: inline-block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(82%, #fff)
  );
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 96%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 96%);
}

.match__inner.active {
  max-height: 3000px !important;
}

.match__inner.active::after {
  content: none;
}

.match__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.match__head {
  padding: 24px 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.match__row {
  align-items: center;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border: 1px solid rgba(21, 24, 31, 0.1);
  padding: 8px 6px 8px 24px;

  border-radius: 24px;
  padding: 8px 6px 8px 24px;
}

.match__situation {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.match__recommend {
  background: rgba(237, 26, 59, 0.1);
  border-radius: 20px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.match__tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.match__tag::before {
  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 7.33315L7.22153 10.6116C7.19061 10.6425 7.14107 10.6443 7.10803 10.6157L5.5 9.22247M1.61654 4.35202L7.16675 1.14761C7.68242 0.849886 8.31775 0.849886 8.83341 1.14761L14.3836 4.35202C14.8993 4.64974 15.217 5.19996 15.217 5.7954V12.2042C15.217 12.7997 14.8993 13.3499 14.3836 13.6476L8.83341 16.852C8.31775 17.1497 7.68242 17.1497 7.16675 16.852L1.61654 13.6476C1.10087 13.3499 0.783203 12.7997 0.783203 12.2042V5.7954C0.783203 5.19996 1.10087 4.64974 1.61654 4.35202Z%27 stroke=%27%23ED1A3B%27 stroke-width=%271.2%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  content: '';
}

@media (max-width: 768px) {
  .match__inner {
    width: 744px;
  }

  .match__wrapper {
    overflow-y: auto;
  }
}

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

.compare__container {
  overflow-y: auto;
}

.compare__title {
  margin-bottom: 40px;
}

.compare__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 268px);
  width: max-content;
  gap: 16px 32px;
  background: #fff;
  border-radius: 24px;
  padding: 24px 16px 40px 16px;
}

.compare__grid::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 25%;
  width: 300px;
  background: rgb(114, 232, 159, 0.1);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}

.compare__wrapper {
  overflow-y: auto;
}

.compare__head {
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 18px;
  color: #222;
  padding: 24px 0;
}

.compare__cell {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 20px;

  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.compare__cell--data {
  padding-left: 0;
}

.compare__cell--yes {
  background: #e9f9ef;
}

.compare__cell--no {
  background: #fdecef;
}

.compare__cell--part {
  background: #fff4e3;
}

.compare__icon::before {
  display: block;
  width: 20px;
  height: 20px;
  content: '';
}

.compare__icon--yes {
  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='M2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C14.1421 2.5 17.5 5.85786 17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10Z' stroke='%2372E89F' stroke-width='1.2' /%3E%3Cpath d='M13.3334 7.5L9.16669 12.5L6.66669 10.2273' stroke='%2372E89F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}

.compare__icon--no {
  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='M3.33337 10L16.6667 10' stroke='%23ED1A3B' stroke-width='1.2' stroke-linecap='round' /%3E%3C/svg%3E");
}

.compare__icon--part {
  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='M10.2222 17.5C14.3643 17.5 17.7222 14.1421 17.7222 10C17.7222 5.85786 14.3643 2.5 10.2222 2.5C6.08003 2.5 2.72217 5.85786 2.72217 10C2.72217 14.1421 6.08003 17.5 10.2222 17.5Z' stroke='%23FF9D00' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M10.2222 6.6665V9.99984M10.2222 13.3332H10.2305' stroke='%23FF9D00' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}

.compare__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .compare__button .btn {
    width: 100%;
  }
}

.faq {
  padding: 40px 0;
}

.faq__title {
  margin-bottom: 40px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 32px;
  border: 2px solid #efeff3;
  background: #fff;
  overflow: hidden;
}

.faq-item__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;

  cursor: pointer;
  position: relative;
}

.faq-item__btn:focus {
  outline: none;
}

.faq-item__chevron {
  position: relative;
}

.faq-item__panel {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 0 24px;
}

.faq-item__content {
  padding-bottom: 28px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.faq-item_is-open {
  background: #f2f3f5;
  border-color: transparent;
}

.faq-item_is-open svg path {
  stroke: #15181f;
}

.faq-item_is-open .faq-item__panel {
  max-height: 1500px;
  opacity: 1;
  visibility: visible;
}

.faq-item_is-open .faq-item__btn {
  padding-bottom: 12px;
}

.faq-item_is-open .faq-item__chevron {
  transform: rotate(-180deg);
}

@media (max-width: 768px) {
  .faq__title {
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .faq-item__btn {
    padding: 16px;
  }

  .faq-item__panel {
    padding: 0 16px;
  }
}

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

.why__title {
  margin-bottom: 16px;
}

.why__desc {
  max-width: 813px;
  margin-bottom: 40px;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}

.why__card {
  position: relative;
  background: #ed1a3b0d;
  border-radius: 16px;
  padding: 0 24px 0 88px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.why__card::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-40%, -50%);
  display: block;
  width: 110px;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.1'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.9999 3.33325C10.7952 3.33325 3.33325 10.7952 3.33325 19.9999C3.33325 29.2047 10.7952 36.6666 19.9999 36.6666C29.2047 36.6666 36.6666 29.2047 36.6666 19.9999C36.6666 10.7952 29.2047 3.33325 19.9999 3.33325ZM20.4443 18.3333C21.3647 18.3333 22.1109 19.0794 22.1109 19.9999V26.6666C22.1109 27.5871 21.3647 28.3333 20.4443 28.3333C19.5238 28.3333 18.7776 27.5871 18.7776 26.6666V19.9999C18.7776 19.0794 19.5238 18.3333 20.4443 18.3333ZM18.7776 13.3333C18.7776 12.4128 19.5238 11.6666 20.4443 11.6666H20.4609C21.3814 11.6666 22.1276 12.4128 22.1276 13.3333C22.1276 14.2537 21.3814 14.9999 20.4609 14.9999H20.4443C19.5238 14.9999 18.7776 14.2537 18.7776 13.3333Z' fill='%23ED1A3B'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: '';
}

.why__text {
  padding: 24px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

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

  .why__desc {
    margin-bottom: 32px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .why__icon {
    left: 28px;
  }
}

@media (max-width: 600px) {
  .why__card::before {
    position: static;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .why__card {
    padding: 16px 16px 0 16px;
  }

  .why__text {
    padding: 16px 0;
    font-size: 16px;
  }
}

.request {
  padding: 40px 0;
}

@media (max-width: 768px) {
  .request {
    padding: 28px 0 56px 0;
  }
}
.request__wrapper {
  position: relative;
  display: flex;
  min-height: 196px;
  padding: 24px;
  background-color: rgba(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(rgba(21, 24, 31, 0.1), rgba(21, 24, 31, 0.1)),
    linear-gradient(135deg, rgba(21, 24, 31, 0) 0%, rgba(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%;
}
@media (max-width: 768px) {
  .request__title {
    margin-bottom: 8px;
  }
}
.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;
}
@media (max-width: 768px) {
  .request__button {
    margin-left: 0;
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .request__button .btn + .btn {
    width: calc(50% - 27.7px);
    padding: 10px;
  }

  .request__button .btn {
    flex-grow: 1;
  }
}
.request__content {
  width: 50%;
}
@media (max-width: 768px) {
  .request__content {
    width: 100%;
    margin-bottom: auto;
  }
}

.process {
  padding: 40px 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .process {
    padding: 28px 0 55px 0;
  }
}

.process__title {
  padding: 0;
}

.process__header {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}

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

.process__content {
  margin-top: 16px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.process__content ul li {
  list-style: disc;
  list-style-position: inside;
}

.process__content li + li {
  margin-top: 12px;
}

.process__content ol li {
  list-style: decimal;
  list-style-position: inside;
}

.process__text {
  max-width: 813px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .process__title {
    margin-bottom: 32px;
  }
}
.process__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .process__button {
    margin-top: 32px;
  }
  .process__container {
    padding-right: 0;
  }
}
.process__slider .swiper-slide {
  width: max-content;
  height: auto;
}
.process .swiper-scrollbar {
  position: static;
}
.process__scrollbar {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .process__scrollbar {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .process__button .btn {
    width: 100%;
  }
}
.process__count {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.process__item {
  display: flex;
  flex-direction: column;
  width: 499px;
  height: 100%;
  padding: 24px;
  background-color: rgba(21, 24, 31, 0.05);
  border-radius: 24px;
}

@media (max-width: 768px) {
  .process__item {
    width: 352px;
  }
}

@media (max-width: 600px) {
  .process__item {
    width: 299px;
    padding: 16px;
  }
}

.process__caption {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

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

.delivery-block__title {
  margin-bottom: 16px;
}

.delivery-block__subtext {
  margin-bottom: 40px;
}

.delivery-block__item {
  display: flex;
  flex-direction: column;
  width: calc(25% - 6px);
  height: auto;
  padding: 24px;
  background-color: #fff;
  border-radius: 24px;
}

.delivery-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}

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

.delivery-block__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.delivery-block__caption {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.delivery-block__content {
  display: flex;
  flex-direction: column;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
}

.delivery-block__content * + * {
  margin-top: 12px;
}

.delivery-block__content ul li {
  list-style: disc;
  list-style-position: inside;
}

.delivery-block__content ol li {
  list-style: decimal;
  list-style-position: inside;
}

.delivery-block__button {
  display: flex !important;
  margin: 0 auto;
  margin-top: 40px;
}

.delivery-block .delivery-block__scrollbar {
  position: static;
}

.delivery-block__scrollbar {
  margin-top: 40px;
}
@media (min-width: 993px) {
  .delivery-block__wrapper {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
  }

  .delivery-block__scrollbar {
    display: none;
  }

  .delivery-block__item {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.4, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.4, 1);
    -o-transition: transform 0.4s cubic-bezier(0, 0, 0.4, 1);
    transition: transform 0.4s cubic-bezier(0, 0, 0.4, 1);
    transition: transform 0.4s cubic-bezier(0, 0, 0.4, 1),
      -webkit-transform 0.4s cubic-bezier(0, 0, 0.4, 1);
    will-change: transform;
  }

  .delivery-block__item:hover {
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  .delivery-block__slider {
    overflow: visible;
  }
}

@media (max-width: 992px) {
  .delivery-block__item {
    width: 352px;
  }

  .delivery-block__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .delivery-block__subtext {
    margin-bottom: 32px;
  }

  .delivery-block__scrollbar {
    margin-top: 32px;
  }
}

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

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

  .delivery-block__button {
    width: 100%;
    justify-content: center;
  }
}

.capabilities {
  padding: 80px 0 40px 0;
}
@media (max-width: 768px) {
  .capabilities {
    padding: 56px 0 28px 0;
  }
}
.capabilities__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .capabilities__header {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .capabilities__control {
    display: none;
  }
}
.capabilities__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  background-color: rgba(21, 24, 31, 0.05);
  border-radius: 24px;
}
@media (max-width: 600px) {
  .capabilities__item {
    padding: 16px;
  }
}
.capabilities__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.capabilities__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capabilities__caption {
  margin-top: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
.capabilities__text {
  margin-top: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .capabilities__container {
    padding-right: 0;
  }
}
.capabilities .swiper-scrollbar {
  position: static;
}
.capabilities .swiper-slide {
  width: 302px;
  height: auto;
}
@media (max-width: 768px) {
  .capabilities .swiper-slide {
    width: 352px;
  }
}
@media (max-width: 600px) {
  .capabilities .swiper-slide {
    width: 291px;
  }
}
.capabilities__scrollbar {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .capabilities__scrollbar {
    margin-top: 32px;
  }
}

.calculator-block {
  padding: 80px 0;
}
.calculator-block__subtitle {
  margin-top: 16px;
}
.calculator-block__text {
  margin-top: 40px;
}
.calculator-block__text p {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.calculator-block__text p + p {
  margin-top: 16px;
}
.calculator-block__text ul {
  margin-top: 16px;
}
.calculator-block__hint {
  margin-top: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.calculator-block__form {
  width: 42.45%;
  flex-shrink: 0;
}
.calculator-block__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 1200px) {
  .calculator-block__wrapper {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .calculator-block__wrapper {
    flex-direction: column-reverse;
  }
}
@media (max-width: 992px) {
  .calculator-block__form {
    width: 100%;
    margin-top: 56px;
  }
}

@media (max-width: 768px) {
  .calculator-block {
    padding-top: 56px;
  }
}

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

.list__item {
  position: relative;
  padding-left: 36px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.list__item::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: '';
}
.list--hexagon .list__item::before {
  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 7.33315L7.22153 10.6116C7.19061 10.6425 7.14107 10.6443 7.10803 10.6157L5.5 9.22247M1.61654 4.35202L7.16675 1.14761C7.68242 0.849886 8.31775 0.849886 8.83341 1.14761L14.3836 4.35202C14.8993 4.64974 15.217 5.19996 15.217 5.7954V12.2042C15.217 12.7997 14.8993 13.3499 14.3836 13.6476L8.83341 16.852C8.31775 17.1497 7.68242 17.1497 7.16675 16.852L1.61654 13.6476C1.10087 13.3499 0.783203 12.7997 0.783203 12.2042V5.7954C0.783203 5.19996 1.10087 4.64974 1.61654 4.35202Z%27 stroke=%27%23ED1A3B%27 stroke-width=%271.2%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A');
}
.list__item + .list__item {
  margin-top: 16px;
}
.list__item {
  position: relative;
  padding-left: 36px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.list__item::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: '';
}
.list--hexagon .list__item::before {
  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 7.33315L7.22153 10.6116C7.19061 10.6425 7.14107 10.6443 7.10803 10.6157L5.5 9.22247M1.61654 4.35202L7.16675 1.14761C7.68242 0.849886 8.31775 0.849886 8.83341 1.14761L14.3836 4.35202C14.8993 4.64974 15.217 5.19996 15.217 5.7954V12.2042C15.217 12.7997 14.8993 13.3499 14.3836 13.6476L8.83341 16.852C8.31775 17.1497 7.68242 17.1497 7.16675 16.852L1.61654 13.6476C1.10087 13.3499 0.783203 12.7997 0.783203 12.2042V5.7954C0.783203 5.19996 1.10087 4.64974 1.61654 4.35202Z%27 stroke=%27%23ED1A3B%27 stroke-width=%271.2%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A');
}
.list__item + .list__item {
  margin-top: 16px;
}

.other-materials {
  padding: 40px 0;
}

.other-materials__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}

.other-materials__item {
  display: flex;
  flex-direction: column;
}

.other-materials__img {
  position: relative;
  width: 100%;
  height: 237px;
  border-radius: 24px;
  overflow: hidden;
}

.other-materials__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-materials__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ed1a3b;
  color: #ffffff;
  border-radius: 999px;
  padding: 3.5px 10px;
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.other-materials__name {
  margin-top: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.other-materials__text {
  margin-top: 8px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.other-materials__more {
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ed1a3b;
}

.other-materials__scrollbar {
  margin-top: 40px;
}

.other-materials__button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.other-materials__slider .swiper-slide {
  width: 395px;
  height: auto;
}

@media (max-width: 768px) {
  .other-materials {
    padding: 56px 0;
    border-radius: 32px 32px 0 0;
  }

  .other-materials__slider .swiper-slide {
    width: 336px;
  }

  .other-materials__container {
    padding-right: 0;
  }

  .other-materials__control {
    display: none;
  }

  .other-materials__scrollbar {
    margin-top: 32px;
  }

  .other-materials__header {
    margin-bottom: 32px;
  }

  .other-materials__img {
    height: 202px;
  }

  .article-top {
    padding-bottom: 32px;
  }

  .article__main {
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .other-materials {
    border-radius: 24px 24px 0 0;
  }
  .other-materials__slider .swiper-slide {
    width: 291px;
  }

  .other-materials__slider .swiper-slide:last-child {
    margin-right: 12px;
  }

  .other-materials__img {
    height: 174px;
  }

  .other-materials__button .btn {
    width: 100%;
  }
}

.transportations {
  padding-top: 40px;
}
.transportations__items {
  margin-top: 40px;
}

.transportations__slide {
  width: calc(50% - 6px);
}

.transportations__slide--short {
  width: calc(100% / 3 - 6px);
}

.transportations__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(21, 24, 31, 0.1);
}

.transportations__title {
  margin-bottom: 40px;
}
.transportations__icon {
  margin: 45px 0;
  width: 64px;
  height: 64px;
  transition: 0.3s width, 0.3s height, 0.3s margin;
}
.transportations__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transportations__tooltip {
  position: relative;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  padding: 6px 6px 6px 12px;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(21, 24, 31, 0.1);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #15181f;
}

.transportations__tooltip .base-tooltip__text {
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #15181f66;
}

.transportations__tooltip .base-tooltip__text strong {
  color: #15181f !important;
  font-weight: 400;
  font-size: 14px;
}

.transportations__tooltip svg {
  flex-shrink: 0;
}

.transportations__text {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: rgba(21, 24, 31, 0.4);
}

@media (min-width: 993px) {
  :root {
    --t-text-lh: 1.4;
    --t-text-lines: 2;
    --t-text-speed: 300ms;
  }

  .transportations__text {
    margin-top: auto;
  }

  .transportations__text > span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    -webkit-line-clamp: var(--t-text-lines);
    max-height: calc(var(--t-text-lines) * var(--t-text-lh) * 1em);

    transition: max-height var(--t-text-speed) ease;
  }

  .transportations__item:hover .transportations__icon {
    width: 40px;
    height: 40px;
    margin: 24px 0;
    transition: 0.3s width, 0.3s height, 0.3s margin;
  }

  .transportations__tooltip {
    transition: 0.3s background-color, 0.3s border-color, 0.3s color;
  }

  .transportations__tooltip:hover {
    background-color: #ed1a3b;
    border-color: #ed1a3b;
    color: #ffffff;
    transition: 0.3s background-color, 0.3s border-color, 0.3s color;
  }

  .transportations__fire g {
    transition: 0.3s opacity;
  }

  .transportations__fire path {
    transition: 0.3s fill;
  }

  .transportations__info path {
    transition: 0.3s stroke-opacity, 0.3s stroke;
  }

  .transportations__tooltip:hover .transportations__fire g {
    opacity: 1;
    transition: 0.3s opacity;
  }

  .transportations__tooltip:hover .transportations__fire path {
    fill: #ffffff;
    transition: 0.3s fill;
  }

  .transportations__tooltip:hover .transportations__info path {
    stroke: #ffffff;
    stroke-opacity: 1;
    transition: 0.3s stroke-opacity, 0.3s stroke;
  }

  .transportations__item:hover .transportations__text {
    color: #15181f;
    font-size: 16px;
  }

  .transportations__item:hover .transportations__button {
    background-color: #ed1a3b1a;
  }

  .transportations__item:hover .transportations__button svg path {
    stroke: #ed1a3b;
  }

  .transportations__item {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 32px;
    border-radius: 32px;
    border: 1px solid rgba(21, 24, 31, 0.1);
  }
}

@media (max-width: 992px) {
  .transportations__slide {
    height: auto !important;
  }
}

.transportations__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: rgba(21, 24, 31, 0.05);
  margin-left: auto;
  flex-shrink: 0;
}

.transportations__content li {
  list-style: disc;
  list-style-position: inside;
}
.transportations__content li + li {
  margin-top: 8px;
}
.transportations .swiper-scrollbar {
  position: static;
}
.transportations__scrollbar {
  margin-top: 40px;
}

@media (min-width: 993px) {
  .transportations__wrapper {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
  }
  .transportations__slider {
    overflow: visible;
  }
}

@media (max-width: 992px) {
  .transportations__slide {
    width: 352px;
  }

  .transportations__container {
    padding-right: 0;
  }

  .transportations__item {
    padding: 24px;
  }

  .transportations__icon {
    width: 40px;
    height: 40px;
    margin: 24px 0;
  }

  .transportations__text {
    margin-top: auto;
  }
}

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

  .transportations__item {
    padding: 16px;
  }

  .transportations__items {
    margin-top: 32px;
  }

  .transportations__button {
    background-color: rgba(237, 26, 59, 0.1);
    color: #ffffff;
  }

  .transportations__tooltip {
    background-color: #ed1a3b;
    border-color: #ed1a3b;
    color: #ffffff;
  }

  .transportations__fire g {
    opacity: 1;
  }

  .transportations__fire path {
    fill: #ffffff;
    fill-opacity: 1;
  }

  .transportations__info path {
    stroke: #ffffff;
    stroke-opacity: 1;
  }

  .transportations__button path {
    stroke: #ed1a3b;
    stroke-opacity: 1;
  }

  .transportations__text {
    color: #15181f;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .transportations__slide {
    width: 291px;
  }
}

.possibilities {
  padding: 80px 0 0 0;
}
@media (max-width: 768px) {
  .possibilities {
    padding: 56px 0 28px 0;
  }
}
.possibilities__title {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .possibilities__header {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .possibilities__control {
    display: none;
  }
}
.possibilities__item {
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(21, 24, 31, 0.05);
  border-radius: 24px;
}
@media (max-width: 600px) {
  .possibilities__item {
    padding: 16px;
  }
}
.possibilities__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%;
}
.possibilities__icon img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.possibilities__caption {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
.possibilities__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .possibilities__container {
    padding-right: 0;
  }
}
.possibilities .swiper-scrollbar {
  position: static;
}
.possibilities .swiper-slide {
  width: 302px;
  height: auto;
}

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

  .possibilities .possibilities__slider {
    overflow: visible;
  }
  .possibilities .swiper-slide {
    width: calc(25% - 8px);
  }

  .possibilities .swiper-slide--wide {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .possibilities .swiper-slide {
    width: 352px;
  }
}
@media (max-width: 600px) {
  .possibilities .swiper-slide {
    width: 291px;
  }
}
.possibilities__scrollbar {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .possibilities__scrollbar {
    margin-top: 32px;
  }
}

.marking-request-form__form {
  margin-top: 16px;
}
.marking-request-form__inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.marking-request-form__input {
  position: relative;

  width: calc(50% - 4px);
}
.marking-request-form__bottom {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.marking-request-form__button {
  margin-right: 16px;
  flex-shrink: 0;
}
.marking-request-form__disclaimer {
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;

  color: rgba(21, 24, 31, 0.4);
}
.marking-request-form__disclaimer a {
  text-decoration: underline;
  color: #15181f;
}
.marking-request-form__captcha {
  margin-top: 16px;
}

@media (max-width: 480px) {
  .marking-request-form__bottom {
    flex-direction: column;
    gap: 12px;
  }

  .marking-request-form__button {
    width: 100%;
    margin-right: 0;
  }
}

.input__field {
  height: 48px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(21, 24, 31, 0.1);
  border-radius: 8px;
  font-weight: 300;
  font-size: 14px;
  background-color: #fff;
}

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

.routes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  min-height: 492px;
  margin-top: 40px;
}

.routes__left,
.routes__right {
  display: flex;
  flex-direction: column;
}

.routes__left {
  position: relative;
  border-radius: 32px 0 0 32px;
  overflow: hidden;
}

.routes__right {
  padding: 48px;
  border: 1px solid #15181f1a;
  border-left: none;
  border-radius: 0 32px 32px 0;
}

.routes__tabs {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  width: calc(100% - 96px);
  gap: 8px;
  background: #15181f0d;
  border-radius: 16px;
  padding: 6px;
  margin-bottom: 16px;
}

.routes__tab {
  flex: 1 1 0px;
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 10px 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;

  color: #15181f;
}

.routes__tab--active {
  background: #fff;
}
.routes__map {
  height: 100%;
}

.routes__map-viewport {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.routes__map-viewport.grabbing {
  cursor: grabbing;
}

.routes__title {
  margin-bottom: 16px;
}

.routes__text {
  max-width: 813px;
  margin-bottom: 40px;
}

.routes-content__title {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.routes-content__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.routes-content__buttons {
  margin-top: 24px;
}

.routes__info {
  margin-top: 40px;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid #15181f1a;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

.routes__info h3 {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
}

.routes__info a.btn {
  display: block;
  width: max-content;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .routes {
    padding: 28px 0;
  }
  .routes__grid {
    display: flex;
    flex-direction: column;
  }

  .routes__left {
    height: 400px;
    border-radius: 32px 32px 0 0;
  }

  .routes__right {
    padding: 24px;
    border: 1px solid #15181f1a;
    border-radius: 0 0 32px 32px;
  }
  .routes__tabs {
    top: 24px;
    width: calc(100% - 72px);
  }
}

@media (max-width: 768px) {
  .routes__right {
    padding: 16px;
  }

  .routes__tabs {
    top: 24px;
    width: calc(100% - 32px);
  }
}

@media (max-width: 600px) {
  .routes-content__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.subject {
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .subject {
    padding-bottom: 28px;
  }
}
.subject__title {
  padding-top: 40px;
  margin-bottom: 16px;
}

.subject__subtitle {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
}

@media (min-width: 993px) {
  .subject__wrapper {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .subject__title {
    padding-top: 28px;
  }
}
@media (max-width: 768px) {
  .subject__container {
    padding-right: 0;
  }
}
.subject__items {
  margin-top: 40px;
}
.subject__items .swiper-slide {
  width: 240px;
}
@media (max-width: 768px) {
  .subject__items {
    margin-top: 32px;
  }
  .subject__items .swiper-slide {
    width: 258px;
  }
}
@media (max-width: 600px) {
  .subject__items .swiper-slide {
    width: 215px;
  }
}
.subject__item {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 23px;
  border: 1px solid rgba(21, 24, 31, 0.1);
  border-radius: 24px;
  transition: background-color 0.3s;
}
.subject__item:hover {
  background-color: rgba(21, 24, 31, 0.05);
  transition: background-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;
}
@media (max-width: 600px) {
  .subject__item {
    padding: 16px;
  }
}
.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;
}
@media (max-width: 600px) {
  .subject__icon {
    width: 32px;
    height: 32px;
  }
}
.subject__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 8px;
}
.subject__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.subject__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  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%;
}
@media (max-width: 768px) {
  .subject__hint {
    display: none;
  }
}
.subject .swiper-scrollbar {
  position: static;
}
.subject__scrollbar {
  margin-top: 40px;
}

.other-services__slider .swiper-slide {
  width: 395px;
  height: auto;
}

.other-services {
  padding-bottom: 80px;
}

.other-services__icon img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.other-services__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  border-top: 1px solid #e8e8e8;
  padding-top: 40px;
}
.other-services__item {
  display: flex;
  flex-direction: column;
  min-height: 196px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(21, 24, 31, 0.1);
  transition: background-image 0.3s;
}
.other-services__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
  border-radius: 24px;
  filter: brightness(60%);
}
.other-services__item:hover::after {
  opacity: 1;
}
.other-services__item:hover .other-services__button {
  width: max-content;
  background-color: #fff;
  transition: background-color 0.3s, width 0.3s;
}
.other-services__item:hover .other-services__button span {
  max-width: max-content;
  opacity: 1;
  transform: translateX(0);
  margin-right: 6px;
}
.other-services__item:hover .other-services__button svg {
  transition: 0.3s;
}
.other-services__item:hover .other-services__text {
  color: #fff;
  transition: color 0.3s;
}
.other-services__text {
  position: relative;
  z-index: 2;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0;
  transition: color 0.3s;
}

.other-services__button {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  margin-top: auto;
  margin-left: auto;
  padding: 0 12px;
  background-color: rgba(21, 24, 31, 0.05);
  border-radius: 999px;
  transition: 0.3s;
}
.other-services__button span {
  font-weight: 400;
  font-size: 14px;
  line-height: 187%;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width 0.35s, opacity 0.35s, transform 0.35s;
  pointer-events: none;
}

.other-services .swiper-scrollbar {
  position: static;
}

.other-services .other-services__scrollbar {
  margin-top: 40px;
}

.other-services__button svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .other-services__container {
    padding-right: 0;
  }
  .other-services__scrollbar {
    margin-top: 32px;
  }
  .other-services {
    padding-bottom: 56px;
  }
  .other-services__header {
    margin-bottom: 32px;
    padding-top: 32px;
  }
  .other-services__item::after {
    opacity: 1;
  }
  .other-services__text {
    color: #fff;
  }
  .other-services__slider .swiper-slide {
    width: 352px;
  }

  .other-services__button {
    background-color: #fff;
  }
  .other-services__control {
    display: none;
  }

  .other-services .other-services__scrollbar {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .other-services__text {
    font-size: 16px;
  }
  .other-services__slider .swiper-slide {
    width: 291px;
  }

  .other-services__item {
    border-radius: 24px;
    padding: 16px;
  }
}

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

.offices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  min-height: 447px;
  border-radius: 32px;
  border: 1px solid #15181f1a;
  overflow: hidden;
}

.offices__left,
.offices__right {
  display: flex;
  flex-direction: column;
}

.offices__right {
  position: relative;

  overflow: hidden;
}

.offices__left {
  padding: 32px;
  background-color: rgba(21, 24, 31, 0.05);
}

.offices__tabs {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  background: #15181f0d;
  border-radius: 16px;
  padding: 6px;
  margin-bottom: 32px;
}

.offices__tab {
  min-width: 150px;
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 10px 4px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;

  color: #15181f;
}

.offices__tab--active {
  background: #fff;
}
.offices__map {
  height: 100%;
}

.offices__map-viewport {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.offices__map-viewport.grabbing {
  cursor: grabbing;
}

.offices__title {
  margin-bottom: 16px;
}

.offices__text {
  max-width: 813px;
  margin-bottom: 40px;
}

.offices-content__title {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

.offices-content__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.offices-content__buttons {
  margin-top: 24px;
}

.offices__address {
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #15181f66;
}

.offices__text {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}

.offices__text svg {
  flex-shrink: 0;
}

.offices__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
  color: #ed1a3b !important;
}

.offices__contact + .offices__contact {
  margin-top: 12px;
}

.offices__contact svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .offices {
    padding: 28px 0;
  }
  .offices__grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .offices__left {
    border-radius: 0 0 32px 32px;
    padding: 24px;
  }

  .offices__right {
    height: 320px;
    border-radius: 32px 32px 0 0;
  }

  .offices__tabs {
    top: 24px;
    width: max-content;
  }
}

@media (max-width: 600px) {
  .offices-content__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .offices__left {
    padding: 16px;
  }
}

.cargo-block__title {
  margin-bottom: 40px;
}

.cargo-block__subtext {
  margin-bottom: 40px;
}

.cargo-block__info {
  margin-top: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

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

.cargo-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}

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

.cargo-block__content {
  margin-top: 16px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.cargo-block__content ul li {
  list-style: disc;
  list-style-position: inside;
}

.cargo-block__content li + li {
  margin-top: 12px;
}

.cargo-block__content ol li {
  list-style: decimal;
  list-style-position: inside;
}

.cargo-block__item {
  display: flex;
  flex-direction: column;
  width: 405px;
  height: 100%;
  padding: 24px;
  background-color: rgba(21, 24, 31, 0.05);
  border-radius: 24px;
}

@media (max-width: 768px) {
  .cargo-block__item {
    width: 352px;
  }
}

@media (max-width: 600px) {
  .cargo-block__item {
    width: 299px;
    padding: 16px;
  }

  .cargo-block__buttons {
    flex-direction: column;
  }
  .cargo-block__buttons .btn {
    width: 100%;
  }
}

.cargo-block__caption {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}

.cargo-block__slider .swiper-slide {
  height: auto;
}
.cargo-block .swiper-scrollbar {
  position: static;
}
.cargo-block__scrollbar {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cargo-block__scrollbar {
    margin-top: 32px;
  }
}

@media (min-width: 993px) {
  .cargo-block__wrapper {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
  }
}
