@charset "UTF-8";
.app-schema {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #F6F9FC;
}
@media (max-width: 991px) {
  .app-schema {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.app-schema__title {
  color: #243C4E;
}
.app-schema__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 32px;
}
@media (max-width: 991px) {
  .app-schema__track {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
  }
}
.app-schema__step {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  padding-top: 16px;
}
@media (max-width: 991px) {
  .app-schema__step {
    padding: 0;
  }
}
.app-schema__step_top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-schema__step_number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFAC33;
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 991px) {
  .app-schema__step_number {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.app-schema__step_media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  margin-top: 12px;
}
@media (max-width: 991px) {
  .app-schema__step_media {
    width: 60px;
  }
}
.app-schema__step_image {
  display: block;
  width: 100%;
  height: auto;
}
.app-schema__step_title {
  margin-top: 12px;
  color: #243C4E;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.app-schema__step_description {
  margin-top: 8px;
  color: #8A9299;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.app-schema__arrow-wrap {
  flex: 0 0 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .app-schema__arrow-wrap {
    transform: rotate(90deg);
  }
}
.app-schema__arrow {
  display: block;
  width: 65px;
  height: 15px;
}

.dark-theme .app-schema {
  background: transparent;
}
.dark-theme .app-schema__title {
  color: #fff;
}
.dark-theme .app-schema__step_title {
  color: #fff;
}
.dark-theme .app-schema__step_description {
  color: #8A9299;
}

.app-interface {
  margin-top: 64px;
}
@media (max-width: 991px) {
  .app-interface {
    margin-top: 32px;
  }
}
.app-interface__title {
  color: #243C4E;
}
.app-interface__slider {
  position: relative;
  margin-top: 32px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .app-interface__slider {
    margin-top: 24px;
    width: calc(100% + 2 * var(--container-padding));
    margin-left: calc(-1 * var(--container-padding));
    margin-right: calc(-1 * var(--container-padding));
  }
}
.app-interface__slider .swiper-wrapper {
  align-items: flex-end;
  height: auto !important;
}
.app-interface__slider .swiper {
  overflow: visible;
  height: auto !important;
}
.app-interface__slider .swiper-slide {
  width: 220px;
  height: auto;
  box-sizing: border-box;
  align-self: flex-end;
}
@media (max-width: 991px) {
  .app-interface__slider .swiper-slide {
    width: 200px;
  }
}
.app-interface__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.app-interface__slide_media {
  --slide-scale: 1;
  --slide-opacity: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  transform: scale(var(--slide-scale));
  transform-origin: center bottom;
  opacity: var(--slide-opacity);
  transition: transform 0.45s ease, opacity 0.45s ease;
  will-change: transform, opacity;
}
.app-interface__slide_image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 460px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(44, 44, 48, 0.12);
}
@media (max-width: 991px) {
  .app-interface__slide_image {
    max-height: 360px;
  }
}
.app-interface__slide_caption {
  width: 100%;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: #243C4E;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.app-interface .swiper-slide-active .app-interface__slide_caption {
  color: #243C4E;
}
.app-interface__pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 44px;
}
.app-interface__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #8A9299;
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.app-interface__pagination .swiper-pagination-bullet-active {
  background: #243C4E;
}

.dark-theme .app-interface__title {
  color: #FFF;
}
.dark-theme .app-interface__slide_caption {
  color: #FFF;
}
.dark-theme .app-interface .swiper-slide-active .app-interface__slide_caption {
  color: #FFF;
}
.dark-theme .app-interface__pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #8A9299;
}
.dark-theme .app-interface__pagination .swiper-pagination-bullet-active {
  background: #FFF;
}

.app-why {
  margin-top: 64px;
}
@media (max-width: 991px) {
  .app-why {
    margin-top: 32px;
  }
}
.app-why__title {
  color: #243C4E;
}
.app-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 32px;
  align-items: stretch;
}
@media (max-width: 991px) {
  .app-why__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }
}
.app-why__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  list-style: none;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #DDE6ED;
}
.app-why__list_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px;
  border-bottom: 1px solid #DDE6ED;
}
.app-why__list_item:last-child {
  border-bottom: none;
}
.app-why__list_icon {
  flex: 0 0 20px;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}
.app-why__check_icon {
  display: block;
  width: 20px;
  height: 20px;
}
.app-why__list_text {
  flex: 1 1 auto;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.app-why__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 8px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #DDE6ED;
  background: #F6F9FC;
}
.app-why__rating_icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.app-why__rating_icon svg, .app-why__rating_icon img {
  display: block;
  width: 48px;
  height: auto;
}
.app-why__rating_title {
  color: #243C4E;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.app-why__rating_description {
  color: #4D4D4D;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.app-why__stars_icon {
  display: block;
  width: auto;
  height: 30зч;
}

.dark-theme .app-why__title {
  color: #FFF;
}
.dark-theme .app-why__list {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dark-theme .app-why__list_item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.dark-theme .app-why__list_item:last-child {
  border-bottom: none;
}
.dark-theme .app-why__list_text {
  color: #fff;
}
.dark-theme .app-why__rating {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1E1E1E;
}
.dark-theme .app-why__rating_title {
  color: #fff;
}
.dark-theme .app-why__rating_description {
  color: #8A9299;
}
.dark-theme .app-why__stars_icon {
  display: block;
  width: auto;
  height: 30зч;
}

.app-feedbacks {
  margin-top: 64px;
}
@media (max-width: 991px) {
  .app-feedbacks {
    margin-top: 32px;
  }
}
.app-feedbacks__title {
  color: #243C4E;
}
.app-feedbacks__box {
  margin-top: 32px;
  min-height: 440px;
}
.dark-theme .app-feedbacks__title {
  color: #fff;
}

.app-banner {
  margin-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 991px) {
  .app-banner {
    margin-top: 32px;
    padding-bottom: 32px;
  }
}
.app-banner__card {
  position: relative;
  overflow: hidden;
}
.app-banner__bg {
  z-index: 1;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid #DDE6ED;
}
@media (max-width: 991px) {
  .app-banner__bg {
    border-radius: 16px;
  }
}
.app-banner__overlay {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.app-banner__body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  position: absolute;
  gap: 45px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-left: 285px;
}
@media (max-width: 991px) {
  .app-banner__body {
    padding: 12px;
    flex-direction: column;
    gap: 0;
  }
}
.app-banner__content {
  flex: 1 1 auto;
  max-width: 550px;
  min-width: 0;
}
.app-banner__title {
  margin: 0;
  color: #1E1E1E;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}
@media (max-width: 991px) {
  .app-banner__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.app-banner__description {
  margin-top: 12px;
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .app-banner__description {
    font-size: 16px;
    line-height: 24px;
  }
}
.app-banner__description strong {
  color: #E47723;
  font-weight: 700;
}
.app-banner__stores {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .app-banner__stores {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
}
.app-banner__qr-wrap {
  flex: 0 0 252px;
}
@media (max-width: 991px) {
  .app-banner__qr-wrap {
    display: none;
  }
}
.app-banner__qr {
  display: block;
  width: 100%;
  height: auto;
}

/*# sourceMappingURL=style.css.map */
