* {
  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: #fff0;
  border: 1px solid #ed1a3b;
}
.delivery-page .btn--gray-border {
  color: #15181f;
  border: 1px solid rgb(21 24 31 / 0.1);
  background-color: #fff0;
}
.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,
.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,
  .title > * {
    font-size: 24px;
  }
  .subtitle {
    font-size: 18px;
  }
}
.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);
  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;
  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(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 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, 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;
}
.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: 0 12px;
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
  color: rgb(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;
}

/* .banner */
.banner {
  padding-bottom: 40px;
}
.banner__wrapper {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 40px;
  border-radius: 32px;
  overflow: hidden;
}
.banner__wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 71.75%;
  height: 100%;
  filter: blur(50px);
  background: #15181f;
  opacity: 0.8;
  content: '';
}
.banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 564px;
}

.banner__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.banner__text {
  margin-top: 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
  color: #fff;
}
.banner__title {
  margin-bottom: 16px;
  color: #fff;
}
.banner__subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  color: #fff;
}
.banner__logos {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.banner__text li {
  line-height: 140%;
  letter-spacing: 0;
}
.banner__text li {
  position: relative;
  padding-left: 36px;
  font-weight: 300;
  font-size: 16px;
}
.banner__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: '';
}
.banner__text li + li {
  margin-top: 16px;
}
.banner__buttons {
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .banner__wrapper {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .banner {
    padding-bottom: 28px;
  }
  .banner__wrapper {
    border-radius: 24px;
  }
  .banner__text {
    max-width: 422px;
  }
  .banner__title {
    margin-bottom: 8px;
  }
  .banner__list .list__item + .list__item {
    margin-top: 8px;
  }
  .banner__list .list__item {
    font-size: 12px;
  }
  .banner__text li {
    font-size: 12px;
    line-height: 140%;
  }
}
@media (max-width: 600px) {
  .banner__wrapper {
    padding: 24px;
  }
  .banner__logos {
    margin-top: 24px;
  }
  .banner__text {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
  }
  .banner__title {
    font-size: 18px;
    line-height: 140%;
    font-weight: 400;
  }
  .banner__subtitle {
    font-size: 16px;
  }
  .banner__list {
    margin-top: 35px;
    order: 1;
  }
  .banner__hint {
    order: 3;
  }
  .banner__buttons {
    display: flex;
    justify-content: space-between;
    order: 2;
  }
  .banner__buttons .btn {
    width: calc(50% - 4px);
    padding: 10px 0;
  }
}

.delivery {
  padding-bottom: 80px;
  margin-bottom: -80px;
  overflow: hidden;
  background: linear-gradient(to bottom, #fff0 35%, #15181f 700%);
}
.delivery__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: stretch;
  padding: 40px 0;
}
.delivery__content {
  position: relative;
  display: flex;
  flex-direction: column;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.delivery__title {
  margin-bottom: 16px;
}
.delivery__lead {
  margin-bottom: 40px;
  color: #15181f;
}
.delivery__advantages {
  position: relative;
}
.delivery__text {
  width: calc(100% - 143px);
}
.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__buttons {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.delivery__image {
  position: absolute;
  right: -49px;
  bottom: 103px;
  z-index: -1;
  width: 360px;
  height: 303px;
}
.delivery__image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.delivery__form {
  max-width: 395px;
  flex-shrink: 0;
}
.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,
.form__row {
  display: flex;
  gap: 8px;
}
.delivery .form__field {
  position: relative;
  flex-grow: 1;
}
.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 rgb(21 24 31 / 0.1);
  border-radius: 8px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  background-color: #fff;
}
.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;
}
.pristine-error {
  position: absolute;
  bottom: -14px;
  left: 0;
  color: #ed1a3b;
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
}

.request {
  padding: 40px 0;
}
.request__form {
  max-width: 588px;
}
.request__wrapper {
  position: relative;
  display: flex;
  min-height: 196px;
  padding: 24px;
  background-color: rgb(21 24 31 / 0.05);
  border-radius: 32px;
  overflow: hidden;
}
.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: '';
}
.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--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__content,
.request__button {
  position: relative;
  z-index: 1;
}
.request__content {
  width: 50%;
}
.request__title {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
.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--gradient .request__wrapper {
  min-height: 244px;
}
.marking-request-form {
  width: 100%;
}
.marking-request-form .form__top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 584px;
}
.marking-request-form .form__bottom {
  max-width: 584px;
}

.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: rgb(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 rgb(21 24 31 / 0.1);
  border-radius: 8px;
  font-weight: 300;
  font-size: 14px;
  background-color: #fff;
}

.delivery-block {
  padding: 80px 0 40px 0;
}
.delivery-block__title,
.delivery-block__subtext {
  max-width: 760px;
}
.delivery-block__title {
  margin-bottom: 16px;
}
.delivery-block__subtext {
  margin-bottom: 40px;

  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.delivery-block__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 6px);
  height: auto;
  padding: 32px;
  background-color: #fff;
  border-radius: 32px;
}
.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__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%;
}
.delivery-block__content * + * {
  margin-top: 12px;
}
.delivery-block .swiper-scrollbar,
.included .swiper-scrollbar,
.capabilities .swiper-scrollbar,
.features-block .swiper-scrollbar,
.transportations .swiper-scrollbar,
.advantages .swiper-scrollbar {
  position: static;
}
.delivery-block__scrollbar,
.included__scrollbar,
.capabilities__scrollbar,
.features-block__scrollbar,
.transportations__scrollbar,
.advantages__scrollbar {
  margin-top: 40px;
}

.features-block {
  padding: 40px 0 0;
}
.features-block__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.features-block__text {
  max-width: 850px;
  margin-top: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.features-block__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 220px;
  padding: 32px;
  border-radius: 32px;
  background-color: #fff;
}
.features-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.features-block__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-block__caption {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
.features-block__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}
.features-block__slider .swiper-slide {
  width: 395px;
  height: auto;
}

.transportations {
  padding-top: 80px;
}
.transportations__title {
  max-width: 850px;
  margin-bottom: 16px;
}
.transportations__subtitle {
  max-width: 850px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.transportations__items {
  margin-top: 40px;
}
.transportations__slide {
  width: calc(50% - 6px);
  height: auto;
}
.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 rgb(21 24 31 / 0.1);
}
.transportations__title {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.transportations__icon {
  margin-bottom: 24px;
  width: 40px;
  height: 40px;
}
.transportations__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transportations__text {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: auto;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}
.transportations__button {
  display: flex;
  align-items: 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;
}
.transportations__under {
  max-width: 760px;
  margin-top: 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.included {
  padding: 40px 0;
}
.included__header {
  margin-bottom: 40px;
}
.included__title {
  margin-bottom: 16px;
}
.included__subtitle {
  max-width: 850px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.included__item {
  display: flex;
  flex-direction: column;
  height: auto;
  width: calc(25% - 6px);
  min-height: 190px;
  padding: 32px;
  border-radius: 24px;
  background-color: rgb(21 24 31 / 0.05);
}
.included__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
.included__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.included__caption {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.included__content {
  margin-top: 12px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}

.capabilities {
  padding: 40px 0;
}
.capabilities__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.capabilities__subtitle {
  max-width: 850px;
  margin-top: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.capabilities__item {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  min-height: 124px;
  padding: 24px;
  background-color: #fff;
  border: 1px solid rgb(21 24 31 / 0.1);
  border-radius: 24px;
}
.capabilities__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.capabilities__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.capabilities__caption {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
.capabilities__text {
  margin-top: 12px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}
.capabilities .swiper-slide {
  width: 395px;
  height: auto;
}

.pricing {
  padding: 40px 0 0;
}
.pricing__title {
  max-width: 850px;
  margin-bottom: 16px;
}
.pricing__text {
  max-width: 850px;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.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;
  min-height: 540px;
  padding: 32px;
  border-radius: 32px;
  background: #15181f0d;
  position: relative;
  transition:
    color 0.25s,
    background-color 0.25s;
}
.pricing-card:hover,
.pricing-card:first-child {
  color: #fff;
  background: linear-gradient(180deg, #d0162c 0%, #7c0f20 100%);
}
.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 rgb(237 26 59 / 0.5);
  display: inline-block;
  position: relative;
}
.pricing-card:hover .pricing-card__tick,
.pricing-card:first-child .pricing-card__tick {
  border-color: rgb(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,
.pricing-card:first-child .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: rgb(237 26 59 / 0.1);
  color: #ed1a3b;
  letter-spacing: 0.02em;
}
.pricing-card:hover .pricing-card__badge,
.pricing-card:first-child .pricing-card__badge {
  background: #fff;
}
.pricing-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
}
.pricing-card__subtitle {
  margin: 8px 0;
  font-size: 16px;
  line-height: 140%;
  color: #8f8f9a;
}
.pricing-card:hover .pricing-card__subtitle,
.pricing-card:first-child .pricing-card__subtitle {
  color: rgb(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,
.pricing-card:first-child .pricing-card__item {
  border-color: rgb(255 255 255 / 0.3);
}
.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,
.pricing-card:first-child .pricing-card__btn {
  color: #fff;
  background-color: #ed1a3b;
}

.match {
  padding: 40px 0 0;
}
.match__title {
  margin-bottom: 40px;
}
.match__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.3s;
}
.match--open .match__inner,
.match__inner.active {
  max-height: 2000px;
}
.match__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  background: linear-gradient(to bottom, #fff0 0%, #fff 100%);
  pointer-events: none;
}
.match--open .match__inner::after,
.match__inner.active::after {
  opacity: 0;
  visibility: hidden;
}
.match__head {
  padding: 0 24px 24px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
.match__row {
  display: contents;
}
.match__situation,
.match__recommend {
  padding: 24px;
  border: 1px solid rgb(21 24 31 / 0.1);
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.match__situation {
  border-radius: 24px 0 0 24px;
}
.match__recommend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0 24px 24px 0;
  background-color: rgb(237 26 59 / 0.1);
}
.match__tag {
  position: relative;
  padding-left: 36px;
  font-weight: 400;
}
.match__tag::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  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='M12.0833 8.33331L9.68076 10.7554C9.5282 10.9092 9.28087 10.9092 9.12832 10.7554L8.125 9.7448M4.04165 6.71719L9.04165 3.82943C9.63715 3.48561 10.3709 3.48561 10.9664 3.82943L15.9664 6.71719C16.5619 7.06101 16.9288 7.69635 16.9288 8.38399V14.1595C16.9288 14.8471 16.5619 15.4825 15.9664 15.8263L10.9664 18.714C10.3709 19.0579 9.63715 19.0579 9.04165 18.714L4.04165 15.8263C3.44616 15.4825 3.07927 14.8471 3.07927 14.1595V8.38399C3.07927 7.69635 3.44616 7.06101 4.04165 6.71719Z' stroke='%23ED1A3B' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  content: '';
}
.match__button {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.certification {
  padding: 40px 0;
}
.certification__title {
  max-width: 850px;
  margin-bottom: 16px;
}
.certification__text {
  max-width: 850px;
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.advantages {
  padding: 40px 0;
}
.advantages__title {
  max-width: 850px;
  margin-bottom: 40px;
}
.advantages__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 6px);
  height: auto;
  min-height: 260px;
  padding: 32px;
  border-radius: 32px;
  background-color: rgb(21 24 31 / 0.05);
}
.advantages__item--wide {
  width: calc(50% - 4px);
}
.advantages__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 40px;
  border-radius: 50%;
  background-color: rgb(237 26 59 / 0.1);
}
.advantages__icon img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.advantages__caption {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
}
.advantages__text {
  margin-top: 24px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}
.advantages__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (min-width: 993px) {
  .delivery-block__wrapper,
  .included__wrapper,
  .transportations__wrapper,
  .advantages__wrapper {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
  }
  .delivery-block__slider,
  .included__slider,
  .transportations__slider,
  .advantages__slider {
    overflow: visible;
  }
  .delivery-block__scrollbar,
  .included__scrollbar,
  .transportations__scrollbar,
  .advantages__scrollbar {
    display: none;
  }
}

@media (max-width: 992px) {
  .delivery__content {
    margin-top: 0;
  }
  .delivery__wrapper {
    flex-direction: column;
  }
  .delivery__form {
    max-width: none;
  }
  .delivery__text {
    width: 100%;
  }
  .delivery__image {
    right: 0;
    bottom: 16px;
    opacity: 0.35;
  }
  .delivery-block__item,
  .included__item,
  .transportations__slide,
  .advantages__item,
  .advantages__item--wide {
    width: 352px;
  }
  .pricing__container,
  .features-block__container,
  .transportations__container,
  .included__container,
  .capabilities__container,
  .advantages__container {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .delivery {
    background: linear-gradient(to bottom, #fff0 5%, #15181f 550%);
  }
  .delivery__wrapper {
    padding: 28px 0;
  }
  .delivery__lead {
    margin-bottom: 32px;
  }
  .delivery__buttons {
    margin-top: 32px;
  }
  .request {
    padding: 28px 0 56px;
  }
  .request__wrapper {
    flex-direction: column;
    min-height: 244px;
    padding: 24px;
    border-radius: 24px;
  }
  .request__wrapper::after {
    width: 657px;
    height: 276px;
    right: -146px;
    top: 20px;
  }
  .request__content {
    width: 100%;
    margin-bottom: auto;
  }
  .request__title {
    margin-bottom: 8px;
  }
  .request__button {
    margin-left: 0;
    margin-top: 24px;
  }
  .delivery-block,
  .included,
  .transportations,
  .pricing,
  .match {
    padding-top: 28px;
  }
  .features-block,
  .capabilities,
  .advantages,
  .certification {
    padding: 56px 0 28px;
  }
  .features-block__header,
  .capabilities__header,
  .included__header,
  .pricing__text,
  .match__title,
  .advantages__title {
    margin-bottom: 32px;
  }
  .features-block__control,
  .capabilities__control {
    display: none;
  }
  .features-block__slider .swiper-slide,
  .capabilities .swiper-slide {
    width: 352px;
  }
  .delivery-block__scrollbar,
  .included__scrollbar,
  .capabilities__scrollbar,
  .features-block__scrollbar,
  .transportations__scrollbar,
  .advantages__scrollbar {
    margin-top: 32px;
  }
  .transportations__items {
    margin-top: 32px;
  }
  .transportations__item,
  .features-block__item,
  .pricing-card,
  .advantages__item {
    padding: 24px;
    border-radius: 24px;
  }
  .transportations__icon {
    width: 40px;
    height: 40px;
    margin: 24px 0;
  }
  .transportations__tooltip {
    background-color: #ed1a3b;
    border-color: #ed1a3b;
    color: #fff;
  }
  .pricing__table {
    grid-template-columns: repeat(3, 352px);
  }
  .match__inner {
    grid-template-columns: 1fr;
  }
  .match__head {
    display: none;
  }
  .match__situation,
  .match__recommend {
    border-radius: 24px;
  }
  .match__situation {
    margin-top: 8px;
  }
}

@media (max-width: 600px) {
  .delivery__buttons,
  .request__button,
  .form__bottom {
    flex-direction: column;
  }
  .delivery__buttons .btn,
  .request__button .btn,
  .form__submit,
  .certification__button,
  .advantages__button .btn {
    width: 100%;
  }
  .delivery__image {
    position: relative;
    right: auto;
    bottom: auto;
    width: 220px;
    height: auto;
    margin: 24px auto 0;
    opacity: 1;
  }
  .request__wrapper {
    padding: 16px;
  }
  .request__wrapper::after {
    right: -292px;
  }
  .marking-request-form .form__top {
    grid-template-columns: 1fr;
  }
  .delivery-block__item,
  .included__item,
  .transportations__slide,
  .features-block__slider .swiper-slide,
  .capabilities .swiper-slide,
  .advantages__item,
  .advantages__item--wide {
    width: 291px;
  }
  .delivery-block__item,
  .included__item,
  .features-block__item,
  .transportations__item,
  .capabilities__item,
  .advantages__item {
    padding: 16px;
  }
  .features-block__icon,
  .delivery-block__icon,
  .included__icon,
  .capabilities__icon,
  .advantages__icon {
    width: 32px;
    height: 32px;
  }
  .pricing__table {
    grid-template-columns: repeat(3, 291px);
  }
  .pricing-card {
    min-height: 500px;
  }
}

/* faq */

.faq {
  padding: 40px 0 0 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: #fff0;
  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: #fff0;
}
.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 {
    padding: 28px 0 0 0;
  }
  .faq__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .faq-item__btn {
    padding: 16px;
    font-size: 16px;
    line-height: 140%;
  }
  .faq-item__panel {
    padding: 0 16px;
  }
}

.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;
  padding-top: 40px;
}
.other-services__item {
  display: flex;
  flex-direction: column;
  min-height: 196px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgb(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: rgb(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;
  }
}
