:root {
  --font-family: "Futura PT", sans-serif;
  --content-width: 1440px;
  --container-offset: 40px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2))
}

.custom-checkbox__field:checked+.custom-checkbox__content::after {
  opacity: 1
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
  outline: red solid 2px;
  outline-offset: 2px
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
  opacity: .4;
  pointer-events: none
}

.article.landing-page,
.site-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.article.landing-page *,
.article.landing-page ::after,
.article.landing-page ::before,
.site-container *,
.site-container ::after,
.site-container ::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit
}

.article.landing-page *,
.site-container * {
  font-family: var(--font-family)
}

.site-container {
  overflow: hidden
}

body,
html {
  overflow-x: hidden;
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
  scroll-behavior: smooth
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

a {
  color: inherit;
  text-decoration: none
}

.is-hidden {
  display: none !important
}

.btn-reset {
  border: none;
  padding: 0;
  background: 0 0;
  cursor: pointer
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff
}

.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0)
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width)
}

.centered {
  display: none;
  text-align: center
}

@media (max-width:1150px) {
  .centered {
    display: block;
    padding-top: 33px
  }
}

.dis-scroll {
  overflow: hidden
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 20px
}

.swiper-pagination {
  font-size: 0
}

@media (max-width:1280px) {
  :root {
    --container-offset: 20px;
    --content-width: 1240px
  }

  .common-html-block {
    margin: 0 auto;
    max-width: 1240px
  }

  .tab-btn__text br {
    display: none
  }
}

@media (max-width:1150px) {
  .grid {
    gap: 10px
  }

  :root {
    --container-offset: 20px;
    --content-width: 728px
  }

  .common-html-block {
    margin: 0 auto;
    max-width: 728px
  }
}

@media (max-width:767.98px) {
  .centered {
    padding-top: 20px
  }

  .centered .btn {
    width: 251px
  }

  .grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr)
  }

  :root {
    --container-offset: 14px;
    --content-width: 340px
  }

  .common-html-block {
    margin: 0 auto;
    max-width: 340px
  }
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  padding: 14px 35px;
  -webkit-box-shadow: inset 4px 4px 10px 0 rgba(255, 255, 255, .25), 10px 10px 30px 0 rgba(0, 50, 115, .5), -5px -5px 14px 0 rgba(255, 255, 255, .2);
  box-shadow: inset 4px 4px 10px 0 rgba(255, 255, 255, .25), 10px 10px 30px 0 rgba(0, 50, 115, .5), -5px -5px 14px 0 rgba(255, 255, 255, .2);
  font-family: inherit;
  font-weight: 600;
  font-size: 25px;
  line-height: 100%;
  color: #003c96;
  background: #ffb900;
  -webkit-transition: color .3s ease-in-out, background-color .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out, color .3s ease-in-out, background-color .3s ease-in-out, -webkit-box-shadow .3s ease-in-out
}

@media (max-width:1150px) {
  .btn {
    padding: 15px 21px;
    font-size: 20px
  }
}

.site-title {
  margin: 0 0 50px;
  font-weight: 450;
  font-size: 65px;
  line-height: 110%;
  letter-spacing: -.03em;
  text-align: center;
  color: #000
}

.site-title--theme-sea span {
  background: linear-gradient(122deg, #003c96 0, #23a6e4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.site-title--theme-blue span {
  background: linear-gradient(157deg, #14baee 0, #146bee 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.site-title--theme-pinkorange span {
  background: linear-gradient(152deg, #6e237d 0, #f7941d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.site-title--theme-green span {
  background: #00be64;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.site-title--theme-orange span {
  background: linear-gradient(164deg, #ffb900 0, #aa2332 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.site-title--theme-yellow span {
  color: #ffb901
}

@media (max-width:1150px) {
  .site-title {
    margin: 0 auto 25px;
    max-width: 460px;
    font-size: 30px;
    line-height: 110%;
    letter-spacing: initial
  }
}

.tab-content {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0
}

.tab-content--active {
  z-index: 2;
  -webkit-animation: 1.5s forwards fade-in;
  animation: 1.5s forwards fade-in
}

.tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px
}

.tab-menu__item {
  width: 100%
}

.tab-menu__content {
  display: none
}

@media (max-width:767.98px) {
  .btn {
    -webkit-box-shadow: none;
    box-shadow: none
  }

  .tab-menu__item {
    border-radius: 30px
  }

  .tab-menu__content {
    display: block;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height .3s ease-in-out;
    transition: max-height .3s ease-in-out
  }

  .tab-menu__item--active {
    background-color: var(--bg-hover)
  }

  .tab-menu__item--active .tab-btn {
    background-color: transparent !important
  }

  .tab-menu__item--active .tab-btn__arrow {
    background-color: var(--arrow-bg-hover)
  }

  .tab-menu__item--active .tab-btn__arrow::after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
  }

  .tab-menu__item--active .tab-menu__content {
    max-height: 255px
  }
}

.tab-menu__img {
  display: none
}

@media (max-width:767.98px) {
  .tab-menu__img {
    display: block
  }

  .tab-btn__button {
    pointer-events: auto
  }
}

.tab-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 30px;
  padding: 20px 20px 20px 30px;
  width: 100%;
  text-align: left;
  background-color: var(--bg);
  -webkit-transition: background-color .3s;
  transition: background-color .3s
}

.tab-btn__caption {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 35px;
  line-height: 100%;
  color: #000
}

.tab-btn__caption span {
  font-weight: 700
}

@media (max-width:1150px) {
  .tab-btn__caption {
    font-size: 20px
  }
}

.tab-btn__text {
  font-weight: 400;
  font-size: 25px;
  line-height: 110%;
  color: #444
}

@media (max-width:1150px) {
  .tab-btn__text {
    font-size: 15px
  }

  .tab-btn__text br {
    display: none
  }
}

.tab-btn__button {
  border-bottom: 1px solid currentColor;
  font-weight: 400;
  font-size: 25px;
  line-height: 110%;
  color: #003c96;
  pointer-events: auto
}

.tab-btn__prim {
  display: block;
  margin-top: 7px;
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  color: rgba(68, 68, 68, .7)
}

@media (max-width:1150px) {
  .tab-btn__button {
    font-size: 15px
  }

  .tab-btn__prim {
    font-size: 12px
  }
}

.tab-btn__arrow {
  display: none;
  pointer-events: auto;
  font-size: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out
}

@media (max-width:767.98px) {
  .tab-btn__arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 14px;
    width: 29px;
    background-color: var(--arrow-bg)
  }

  .tab-btn__arrow::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/arrow-mob.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out
  }
}

.tab-btn--active {
  background-color: var(--bg-hover);
  pointer-events: none
}

@media (any-hover:hover) {
  .tab-btn:hover {
    background-color: var(--bg-hover)
  }
}

@media (max-width:1150px) {
  .tab-btn {
    border-radius: 20px;
    padding: 20px
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes fade-in {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.hero {
  padding-top: 20px;
  padding-bottom: 154px
}

.hero__content {
  position: relative;
  border-radius: 30px;
  padding-top: 45px;
  min-height: 526px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.hero__content::after {
  --cont-w: 100%;
  --off: calc((100vw - 40px - var(--cont-w)) / 2);
  content: "";
  position: absolute;
  left: calc(-1 * var(--off));
  top: 0;
  border-radius: 30px;
  height: 100%;
  width: calc(var(--off) * 2 + var(--cont-w));
  background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/hero-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #003c96
}

@media (max-width:1280px) {
  .hero__content::after {
    display: none
  }

  .hero__content {
    padding-top: 45px;
    min-height: 520px;
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/hero-bg-d.png)
  }
}

@media (max-width:1150px) {
  .hero__content {
    padding-top: 42px;
    min-height: 294px;
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/hero-bg-t.png)
  }
}

.hero__left {
  position: relative;
  z-index: 6;
  grid-column: 2/5 span
}

@media (max-width:1280px) {
  .hero__left {
    -ms-grid-column-span: 5;
    grid-column: 5 span;
    padding-left: 50px
  }
}

@media (max-width:1150px) {
  .hero__left {
    padding-left: 62px
  }
}

@media (max-width:767.98px) {
  .tab-btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 30px;
    gap: 5px;
    pointer-events: none
  }

  .hero__content {
    border-radius: 20px;
    min-height: 626px;
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/hero-bg-m.png)
  }

  .hero__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    padding-right: 17px;
    padding-left: 17px
  }
}

.hero__right {
  position: relative;
  z-index: 4;
  -ms-grid-column-span: 6;
  grid-column: 6 span;
  padding-top: 23px
}

@media (max-width:767.98px) {
  .hero__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-span: 2;
    grid-column: 2 span
  }
}

.hero__logo {
  display: inline-block;
  margin-bottom: 23px
}

@media (max-width:1150px) {
  .hero__right {
    padding-top: 0
  }

  .hero__logo {
    margin-bottom: 15px;
    width: 98px
  }
}

@media (max-width:767.98px) {
  .hero__logo {
    margin-bottom: 20px
  }
}

.hero__title {
  margin: 0 0 23px;
  font-weight: 450;
  font-size: 80px;
  line-height: 90%;
  color: #fff
}

@media (max-width:1150px) {
  .hero__title {
    margin-bottom: 17px;
    font-size: 48px;
    line-height: 85%
  }
}

@media (max-width:767.98px) {
  .hero__title {
    font-size: 40px;
    text-align: center
  }
}

.hero__qr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 296px;
  background: #fff
}

.hero__qr-text {
  margin: 0;
  font-weight: 450;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: -.02em;
  color: #000
}

.hero__qr-img {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.hero__image {
  margin-left: -172px;
  max-width: none
}

@media (max-width:1315px) {
  .hero__image {
    margin-top: 43px;
    margin-left: -130px;
    width: 800px
  }
}

@media (max-width:1280px) {
  .hero__image {
    margin-top: 6px;
    margin-left: -112px;
    width: 827px
  }
}

@media (max-width:1150px) {
  .hero__qr {
    display: none
  }

  .hero__image {
    margin-top: 9px;
    margin-left: -18px;
    max-width: 438px
  }
}

.hero__link {
  display: none
}

@media (max-width:1150px) {
  .hero__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
  }

  .hero {
    padding-bottom: 82px
  }

  .hero-menu .swiper-wrapper {
    --gap: 10px
  }
}

@media (max-width:767.98px) {
  .hero__image {
    margin-top: -72px;
    margin-left: 0;
    max-width: 340px
  }

  .hero__link {
    position: absolute;
    left: 50%;
    bottom: -373px;
    z-index: 10;
    min-width: 267px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 72px
  }

  .hero-menu__slider {
    width: calc(100% + 20px)
  }
}

.hero-menu {
  position: relative;
  z-index: 7;
  margin: 24px auto 0;
  max-width: 1196px
}

.hero-menu .swiper-wrapper {
  --gap: 20px;
  --elems: 4;
  width: 100%;
  gap: var(--gap)
}

.hero-menu .swiper-slide {
  width: calc((100% - (var(--elems) - 1) * var(--gap))/ (var(--elems)))
}

.hero-menu__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 20px;
  padding: 25px 17px;
  min-height: 105px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--bg)
}

@media (max-width:1280px) {
  .hero-menu__link--last {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 10px
  }

  .hero-menu__link--last .hero-menu__title::before {
    top: 20px
  }
}

@media (max-width:1150px) {
  .hero-menu__link--last {
    padding: 10px 15px !important
  }

  .hero-menu__link--last .hero-menu__title::before {
    top: 13px !important
  }
}

@media (max-width:767.98px) {
  .hero-menu .swiper-wrapper {
    gap: 0
  }

  .hero-menu .swiper-slide {
    width: 186px
  }

  .hero-menu .swiper-slide:last-of-type {
    padding-right: 20px;
    width: 206px
  }

  .hero-menu__link--last {
    padding: 18px 15px !important
  }

  .hero-menu__link--last .hero-menu__title::before {
    top: 5px !important
  }
}

.hero-menu__title {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  margin: 0;
  font-weight: 600;
  font-size: 25px;
  line-height: 100%;
  color: #000
}

.hero-menu__title::before {
  content: "";
  position: relative;
  top: 10px;
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/arrow.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

@media (max-width:1150px) {
  .hero-menu__link {
    border-radius: 20px;
    padding: 18px 15px;
    min-height: 65px
  }

  .hero-menu__title::before {
    top: 5px;
    width: 20px;
    height: 20px
  }

  .hero-menu__title {
    gap: 10px;
    font-size: 15px
  }
}

.hero-menu__btn {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 450;
  font-size: 17px;
  line-height: 120%;
  color: #000;
  background-color: #fff
}

@media (max-width:1150px) {
  .hero-menu__btn {
    padding: 4px 14px;
    font-size: 15px
  }
}

@media (max-width:1280px) {
  .hero-menu {
    padding: 0 50px;
    max-width: none
  }

  .lentomania__content::after {
    display: none
  }
}

@media (max-width:1150px) {
  .hero-menu {
    margin-top: 16px;
    padding-right: 20px;
    padding-left: 20px
  }
}

@media (max-width:375px) {
  .hero-menu {
    margin-top: 20px
  }
}

.how {
  padding-bottom: 50px
}

.how__content {
  margin: 0 auto;
  max-width: 1240px
}

@media (max-width:1150px) {
  .how__content {
    margin: 0 auto;
    max-width: 728px
  }
}

@media (max-width:767.98px) {
  .hero-menu {
    padding-left: 0
  }

  .how__content {
    max-width: 340px
  }
}

.how__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px;
  gap: 20px
}

@media (max-width:1150px) {
  .how__list {
    padding: 0 30px;
    gap: 10px
  }
}

@media (max-width:767.98px) {
  .how__list {
    padding: 0 10px
  }
}

.how__item {
  width: calc(50% - 10px)
}

@media (max-width:1150px) {
  .how__item {
    width: calc(50% - 5px)
  }
}

.how__btn {
  border-radius: 20px 20px 0 0;
  padding: 24px;
  width: 100%;
  font-weight: 600;
  font-size: 25px;
  line-height: 100%;
  text-align: center;
  color: #000;
  -webkit-backdrop-filter: blur(45px);
  backdrop-filter: blur(45px)
}

.how__btn[data-tab=rustore] {
  background: #dbf6ff
}

.how__btn[data-tab=rustore].how__btn--active {
  background: #a1e3f8
}

.how__btn[data-tab=apk] {
  background: #e0fef0
}

.how__btn[data-tab=apk].how__btn--active {
  background: #b3ecd1
}

@media (max-width:1150px) {
  .how__btn {
    padding: 14px;
    font-size: 20px
  }
}

@media (max-width:767.98px) {
  .how__btn {
    border-radius: 12px 12px 0 0;
    padding: 7px;
    min-height: 56px
  }

  .how__cont[data-target=apk] .how__subtitle {
    text-align: center
  }
}

.how__cont {
  position: relative;
  display: none;
  border-radius: 30px;
  padding: 40px 105px;
  min-height: 240px
}

.how__cont[data-target=rustore] {
  background: -webkit-gradient(linear, left top, left bottom, from(#a1e3f8), to(#dff7ff));
  background: linear-gradient(180deg, #a1e3f8 0, #dff7ff 100%)
}

.how__cont[data-target=apk] {
  background: -webkit-gradient(linear, left top, left bottom, from(#b3ecd1), to(#e3fff2));
  background: linear-gradient(180deg, #b3ecd1 0, #e3fff2 100%)
}

.how__cont--active {
  display: block
}

@media (max-width:1150px) {
  .how__cont {
    border-radius: 18px;
    padding: 15px 20px;
    min-height: 142px
  }
}

.how__subtitle {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -.03em;
  color: #000
}

.how__subtitle img {
  position: relative;
  top: 14px;
  display: inline;
  margin-top: -7px;
  margin-left: 8px;
  width: 192px
}

@media (max-width:1150px) {
  .how__subtitle {
    margin-bottom: 12px;
    font-size: 24px
  }

  .how__subtitle img {
    top: 6px;
    margin-left: 4px;
    width: 112px
  }
}

@media (max-width:767.98px) {
  .how__cont {
    border-radius: 12px;
    padding: 20px;
    min-height: 280px
  }

  .how__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .how__subtitle {
    margin-bottom: 30px;
    font-size: 22px
  }

  .how__subtitle img {
    top: 8px
  }
}

.how__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  padding: 18px 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  background: #003c96;
  -webkit-transition: background .3s;
  transition: background .3s
}

.how__link:hover {
  color: #fff;
  background: #004aba
}

@media (max-width:767.98px) {
  .how__link {
    padding: 12px 24px
  }
}

.how__pic {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 630px;
  max-width: 100%
}

.acc {
  padding-right: 104px;
  padding-left: 104px;
}
.acc :where(img) {
  max-width: none;
}
.acc__title {
  margin: 0 auto 40px;
  max-width: 1030px;
}
.acc__title span {
  color: #f9034a;
}
.acc__content {
  border-radius: 30px;
  padding: 40px;
}
.acc__content--1 {
  --title-bg: #ffc8c8;
  --digit-bg: #ffc8c8;
  background: rgba(255, 211, 211, 0.3);
}
.acc__content--2 {
  --title-bg: #cdddf5;
  --digit-bg: #cdddf5;
  margin-top: 40px;
  padding-bottom: 24px;
  background: rgba(205, 221, 245, 0.2);
}
.acc__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media (max-width: 1280px) {
  .acc__title {
    max-width: 600px;
  }
  .acc__content--2 {
    margin-top: 32px;
  }
  .acc__content {
    margin-right: auto;
    margin-left: auto;
    padding: 32px 20px;
    max-width: 728px;
  }
  .acc__top {
    gap: 16px;
  }
}
.acc__text {
  width: 100%;
  max-width: 502px;
}
.acc__image {
  position: relative;
  width: 400px;
}
@media (max-width: 1280px) {
  .acc__text {
    max-width: 412px;
  }
  .acc__image {
    width: 272px;
  }
}
@media (max-width: 767.98px) {
  .acc__content {
    border-radius: 20px;
    padding: 20px 10px;
  }
  .acc__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .acc__image {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 224px;
  }
}
.acc__bg {
  display: block;
  max-width: 100%;
}
.acc__pic {
  position: absolute;
  left: 52.3%;
  bottom: 0;
  display: block;
  width: 498px;
  translate: -50% 0;
}
.acc__pic--2 {
  left: 51.5%;
  width: 304px;
}
@media (max-width: 1280px) {
  .acc__pic {
    width: 328px;
  }
  .acc__pic--2 {
    width: 224px;
  }
  .acc__middle {
    margin-top: 32px;
  }
}
.acc__subtitle {
  margin: 0 0 24px;
  max-width: 500px;
  font-weight: 600;
  font-size: 35px;
  line-height: 100%;
  color: #000;
}
.acc__subtitle .mob-br,
.acc__subtitle--t {
  display: none;
}
.acc__subtitle span {
  position: relative;
  z-index: 2;
}
.acc__subtitle span::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 6px;
  z-index: -1;
  border-radius: 12px;
  width: calc(100% + 13px);
  height: calc(100% - 5px);
  background: var(--title-bg);
}
@media (max-width: 1280px) {
  .acc__subtitle--2 {
    display: none;
  }
  .acc__subtitle--t {
    display: block;
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .acc__pic {
    left: 48.3%;
    width: 280px;
  }
  .acc__pic--2 {
    width: 135px;
  }
  .acc__subtitle span::before {
    left: -2px;
    top: 4px;
    border-radius: 8px;
    width: calc(100% + 17px);
    height: calc(100% - 2px);
  }
  .acc__subtitle {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 100%;
  }
  .acc__subtitle .mob-br,
  .acc__subtitle--2 {
    display: block;
  }
  .acc__subtitle--t {
    display: none;
  }
}
.acc__descr {
  margin: 0;
  max-width: 360px;
  font-weight: 400;
  font-size: 25px;
  line-height: 110%;
  color: #000;
}
.acc__descr a {
  text-decoration: underline;
  color: #003c96;
  -webkit-transition: -webkit-text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  transition:
    text-decoration-color 0.3s,
    -webkit-text-decoration-color 0.3s;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: 3px;
}
.acc__descr a:hover {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  color: #003c96;
}
.acc__descr:not(:last-of-type) {
  margin-bottom: 12px;
}
.acc__descr--2 {
  max-width: 364px;
  font-size: 24px;
}
.acc__list {
  --gap: 38px;
  --elems: 3;
  counter-reset: section;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: var(--gap);
  row-gap: 0;
}
.acc__list--2 {
  --gap: 20px;
}
.acc__list--2 .acc__item {
  padding-left: 44px;
}
.acc__list--2 .acc__item b {
  display: block;
  font-weight: 600;
}
.acc__list--2 .acc__item:last-child {
  padding-left: 64px;
}
.acc__list--2 .acc__item:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 52px;
  height: 52px;
  background-image: url(https://cdn.api.lenta.com/assets/f833acd2-429f-4cd8-a935-7fc34f905ad7/check.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.acc__list--2 .acc__item:last-child::before {
  display: none;
}
@media (max-width: 1280px) {
  .acc__list {
    --gap: 20px;
    --elems: 2;
    row-gap: 4px;
  }
  .acc__list--2 {
    row-gap: 16px;
  }
  .acc__list--2 .acc__item {
    padding-left: 52px;
  }
  .acc__list--2 .acc__item b {
    margin-bottom: 12px;
    font-size: 35px;
    line-height: 100%;
  }
  .acc__list--2 .acc__item:last-child {
    padding-left: 52px;
    width: 100%;
    max-width: 100%;
  }
  .acc__list--2 .acc__item:last-child::after {
    left: -24px;
    top: -24px;
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767.98px) {
  .acc__descr {
    font-size: 20px;
    line-height: 110%;
  }
  .acc__descr:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .acc__list {
    --gap: 12px;
    --elems: 1;
    margin-top: 20px;
    row-gap: 8px;
  }
  .acc__list--2 {
    row-gap: 12px;
  }
  .acc__list--2 .acc__item b {
    font-size: 24px;
    line-height: 100%;
  }
  .acc__list--2 .acc__item:last-child::after {
    left: 0;
    top: -10px;
    width: 40px;
    height: 40px;
  }
}
.acc__item {
  position: relative;
  padding-left: 52px;
  width: calc((100% - (var(--elems) - 1) * var(--gap)) / (var(--elems)));
}
.acc__item::before {
  counter-increment: section;
  content: counter(section) ".";
  position: absolute;
  left: 0;
  top: -1px;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  font-weight: 600;
  font-size: 28px;
  line-height: 114%;
  text-align: center;
  color: #000;
  background: var(--digit-bg);
}
.acc__item--last {
  margin-top: -3px;
  padding-left: 0;
  width: 100%;
  max-width: 484px;
}
.acc__item--last::before {
  display: none;
}
.acc__item--last::after {
  content: "";
  position: absolute;
  left: -80px;
  top: -24px;
  width: 80px;
  height: 80px;
  background-image: url(https://cdn.api.lenta.com/assets/f833acd2-429f-4cd8-a935-7fc34f905ad7/check.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.acc__item--last .acc__txt {
  line-height: 110%;
}
@media (max-width: 1280px) {
  .acc__item--last {
    padding-left: 52px;
    width: calc((100% - (var(--elems) - 1) * var(--gap)) / (var(--elems)));
  }
  .acc__item--last::after {
    left: -24px;
  }
}
@media (max-width: 767.98px) {
  .acc__item--last {
    margin-top: -16px;
  }
  .acc__item--last::after {
    left: 0;
    top: -9px;
    width: 40px;
    height: 40px;
  }
}
.acc__caption {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 35px;
  line-height: 100%;
  color: #000;
}
.acc__txt {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #000;
}
.acc__txt a {
  text-decoration: underline;
  color: #003c96;
  -webkit-transition: -webkit-text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  transition:
    text-decoration-color 0.3s,
    -webkit-text-decoration-color 0.3s;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-underline-offset: 3px;
}
.acc__txt a:hover {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  color: #003c96;
}
.acc__screen {
  margin-top: -1px;
  margin-left: -24px;
}
@media (max-width: 767.98px) {
  .acc__caption {
    font-size: 24px;
  }
  .acc__txt {
    font-size: 20px;
  }
  .acc__screen {
    margin-top: -4px;
    margin-left: -20px;
    width: 288px;
  }
}
.acc__sale {
  position: relative;
  margin-top: 40px;
  border-radius: 30px;
  padding: 20px 20px 4px;
  background: #fff;
}
.acc__sale-notice {
  position: absolute;
  right: 56px;
  top: 0;
  display: block;
  width: 448px;
}
.acc__sale .acc__list {
  margin-top: 90px;
}
@media (max-width: 1280px) {
  .acc__sale-notice {
    right: -20px;
    top: 12px;
    width: 432px;
  }
  .acc__sale .acc__list {
    row-gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .acc__sale-notice {
    right: 40px;
    top: 155px;
    width: 266px;
  }
  .acc__sale .acc__list {
    margin-top: 202px;
    row-gap: 12px;
  }
  .acc__sale .acc__screen {
    width: 300px;
  }
}
.acc__sale .acc__screen {
  margin-top: 3px;
  margin-left: -32px;
}
.acc__sale .acc__subtitle {
  margin-bottom: 12px;
}
.acc__sale .acc__txt {
  max-width: 481px;
  line-height: 110%;
}
@media (max-width: 1280px) {
  .acc__sale .acc__txt {
    max-width: 410px;
  }
  .acc__sale {
    margin-top: 16px;
    padding-bottom: 18px;
  }
}
@media (max-width: 767.98px) {
  .acc__sale {
    margin-top: 32px;
    margin-bottom: -7px;
    border-radius: 12px;
    padding: 12px 8px 0;
  }
  .acc {
    display: none;
  }
}
@media (max-width: 1500px) {
  .acc {
    padding-right: 104px;
    padding-left: 104px;
  }
}

@media (max-width: 1240px) {
  .acc {
    padding-right: 0;
    padding-left: 0;
  }
}

.access {
  padding-top: 50px;
  padding-bottom: 21px
}

.access__content {
  margin-bottom: 54px
}

.access__left {
  position: relative;
  grid-column: 2/4 span;
  min-height: 300px
}

.access__right {
  position: relative;
  -ms-grid-column-span: 6;
  grid-column: 6 span
}

@media (max-width:1150px) {
  .how__pic {
    width: 373px
  }

  .access__content {
    margin-bottom: 0
  }

  .access__left,
  .access__right {
    -ms-grid-column-span: 6;
    grid-column: 6 span
  }

  .access .centered {
    padding-top: 75px
  }
}

.access .tab-menu {
  --bg: rgba(0, 60, 150, 0.05);
  --bg-hover: #b7cef1;
  --arrow-bg: rgba(0, 60, 150, 0.1);
  --arrow-bg-hover: rgba(255, 255, 255, 0.3)
}

.lentomania {
  padding-bottom: 50px
}

.lentomania__content {
  position: relative;
  border-radius: 30px;
  min-height: 487px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.lentomania__content::after {
  --cont-w: 100%;
  --off: calc((100vw - 40px - var(--cont-w)) / 2);
  content: "";
  position: absolute;
  left: calc(-1 * var(--off));
  top: 0;
  border-radius: 30px;
  width: calc(var(--off) * 2 + var(--cont-w));
  height: 100%;
  background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/lentomania-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #003c96
}

@media (max-width:1280px) {
  .lentomania__content {
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/lentomania-bg.png)
  }
}

@media (max-width:1150px) {
  .access {
    padding-bottom: 50px
  }

  .lentomania__content {
    min-height: 340px;
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/lentomania-bg-t.png)
  }
}

@media (max-width:767.98px) {
  .access__left {
    display: none
  }

  .access__right {
    -ms-grid-column-span: 2;
    grid-column: 2 span
  }

  .access .centered {
    padding-top: 33px
  }

  .lentomania__content {
    min-height: 530px;
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/lentomania-bg-m.png)
  }
}

.lentomania__text {
  position: relative;
  z-index: 4;
  grid-column: 2/6 span;
  padding-top: 50px
}

@media (max-width:1280px) {
  .lentomania__text {
    -ms-grid-column-span: 7;
    grid-column: 7 span;
    padding-left: 50px
  }
}

@media (max-width:1150px) {
  .lentomania__text {
    grid-column: 2/5 span;
    padding-left: 0
  }
}

@media (max-width:767.98px) {
  .lentomania__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-span: 2;
    grid-column: 2 span
  }
}

.lentomania__image {
  position: relative;
  z-index: 2;
  -ms-grid-column-span: 5;
  grid-column: 5 span
}

.lentomania__image img {
  margin-top: -93px;
  margin-left: -262px;
  width: 781px;
  max-width: none
}

@media (max-width:1280px) {
  .lentomania__image img {
    margin-top: -58px;
    margin-left: -245px;
    width: 700px
  }

  .discount__content::after {
    display: none
  }
}

@media (max-width:1150px) {
  .lentomania__image img {
    margin-left: -70px;
    margin-top: -38px;
    max-width: 421px
  }
}

.lentomania__date {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 25px;
  line-height: 110%;
  color: #fff
}

@media (max-width:1150px) {
  .lentomania__date {
    margin-bottom: 10px;
    font-size: 15px
  }
}

.lentomania__title {
  margin: 0 0 20px;
  max-width: 466px;
  font-weight: 450;
  font-size: 65px;
  line-height: 90%;
  letter-spacing: -.03em;
  color: #fff
}

@media (max-width:1150px) {
  .lentomania__title {
    margin-bottom: 10px;
    max-width: 260px;
    font-size: 35px;
    letter-spacing: initial
  }
}

@media (max-width:767.98px) {
  .lentomania__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-span: 2;
    grid-column: 2 span
  }

  .lentomania__image img {
    margin-left: 0;
    margin-top: -81px;
    width: 330px
  }

  .lentomania__title {
    max-width: 260px;
    font-size: 30px;
    line-height: 110%;
    text-align: center
  }
}

.lentomania__descr {
  margin: 0 0 20px;
  max-width: 400px;
  font-weight: 600;
  font-size: 35px;
  line-height: 100%;
  color: #fff
}

@media (max-width:767.98px) {
  .lentomania__descr {
    max-width: 260px;
    text-align: center
  }

  .lentomania__link {
    position: absolute;
    left: 50%;
    bottom: -235px;
    width: 300px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
  }
}

.delivery {
  padding-top: 50px;
  padding-bottom: 50px
}

.delivery__title {
  margin-right: auto;
  margin-left: auto;
  max-width: 1240px
}

.delivery__left {
  position: relative;
  grid-column: 2/6 span;
  min-height: 300px
}

@media (max-width:1150px) {
  .lentomania__descr {
    font-size: 20px
  }

  .delivery__title {
    max-width: 460px
  }

  .delivery__left {
    -ms-grid-column-span: 6;
    grid-column: 6 span
  }
}

@media (max-width:767.98px) {
  .delivery__left {
    -ms-grid-column-span: 2;
    grid-column: 2 span
  }

  .delivery__right {
    display: none
  }
}

.delivery__right {
  position: relative;
  -ms-grid-column-span: 4;
  grid-column: 4 span
}

.delivery .tab-menu {
  --bg: rgba(20, 186, 238, 0.1);
  --bg-hover: rgba(20, 186, 238, 0.4);
  --arrow-bg: rgba(20, 186, 238, 0.2);
  --arrow-bg-hover: rgba(255, 255, 255, 0.3)
}

@media (max-width:1150px) {
  .delivery__right {
    -ms-grid-column-span: 6;
    grid-column: 6 span
  }

  .delivery {
    padding-top: 0
  }
}

.discount {
  padding-top: 54px;
  padding-bottom: 50px
}

.discount__content {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 428px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.discount__content::after {
  --cont-w: 100%;
  --off: calc((100vw - 40px - var(--cont-w)) / 2);
  content: "";
  position: absolute;
  left: calc(-1 * var(--off));
  top: 0;
  border-radius: 30px;
  width: calc(var(--off) * 2 + var(--cont-w));
  height: 100%;
  background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/discount-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #003c96
}

@media (max-width:1280px) {
  .discount__content {
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/discount-bg.jpg)
  }
}

@media (max-width:1150px) {
  .discount__content {
    margin-bottom: 20px;
    min-height: 243px;
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/discount-bg-t.jpg)
  }
}

.discount__left {
  position: relative;
  z-index: 2;
  grid-column: 2/7 span;
  padding-top: 50px
}

@media (max-width:1500px) {
  .discount__left {
    -ms-grid-column-span: 9;
    grid-column: 9 span;
    padding-left: 50px
  }
}

@media (max-width:1150px) {
  .discount__left {
    grid-column: 2/7 span;
    padding-left: 0
  }
}

@media (max-width:767.98px) {
  .discount__content {
    margin: 0;
    min-height: 530px;
    background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/discount-bg-m.jpg)
  }

  .discount__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-span: 2;
    grid-column: 2 span;
    padding-top: 30px
  }
}

.discount__right {
  position: relative;
  z-index: 2;
  -ms-grid-column-span: 4;
  grid-column: 4 span
}

@media (max-width:1500px) {
  .discount__right {
    -ms-grid-column-span: 3;
    grid-column: 3 span
  }
}

.discount__title {
  margin: 0 0 60px;
  max-width: 700px;
  font-weight: 450;
  font-size: 65px;
  line-height: 110%;
  letter-spacing: -.03em;
  color: #fff
}

.discount__title .bold {
  font-weight: 900;
  color: #ffb900
}

.discount__title .shaped {
  position: relative
}

.discount__title .shaped::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 3px;
  width: 280px;
  height: 84px;
  background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/shape.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat
}

.discount__title .shaped span {
  position: relative;
  z-index: 2
}

.discount__title .stars {
  position: relative;
  left: -10px;
  top: -15px;
  display: inline-block;
  margin-right: -9px;
  font-weight: 400;
  font-size: 25px;
  line-height: 110%;
  letter-spacing: -.1em;
  color: #fff
}

@media (max-width:1150px) {
  .discount__title .shaped::before {
    left: -3px;
    top: 0;
    width: 149px;
    height: 45px
  }

  .discount__title .stars {
    left: -6px;
    top: -7px;
    margin-right: -7px;
    font-size: 17px
  }

  .discount__title {
    margin-bottom: 18px;
    font-size: 35px;
    line-height: 90%;
    letter-spacing: normal
  }
}

@media (max-width:767.98px) {
  .discount__right {
    -ms-grid-column-span: 2;
    grid-column: 2 span
  }

  .discount__title {
    max-width: 310px;
    font-size: 30px;
    line-height: 110%;
    text-align: center
  }

  .discount__title .bold {
    text-transform: lowercase
  }

  .discount__title .shaped::before {
    width: 129px;
    height: 41px
  }
}

.discount__text {
  margin: 0;
  max-width: 539px;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -.01em;
  color: #fff
}

.discount__text a {
  color: inherit;
  text-underline-offset: 2px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none
}

@media (max-width:1150px) {
  .discount__text {
    max-width: 291px;
    font-size: 8px
  }
}

@media (max-width:767.98px) {
  .discount__text {
    max-width: 302px;
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -.01em;
    text-align: center
  }
}

.discount__qr {
  position: absolute;
  right: 98px;
  bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 154px
}

.discount__qr-text {
  margin: 0 0 15px;
  font-weight: 450;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: -.02em;
  color: #fff
}

.discount__image {
  margin-left: -186px;
  width: 873px;
  max-width: none
}

@media (max-width:1280px) {
  .discount__qr {
    right: 141px
  }

  .discount__image {
    margin-left: -230px
  }
}

@media (max-width:1230px) {
  .discount__qr {
    right: 70px
  }

  .discount__image {
    margin-left: -170px
  }
}

@media (max-width:1150px) {
  .discount__qr {
    display: none
  }

  .discount__image {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -132px;
    max-width: 368px
  }

  .discount {
    padding-top: 0;
    padding-bottom: 30px
  }
}

.app {
  padding-top: 50px;
  padding-bottom: 50px
}

.app__left {
  position: relative;
  grid-column: 2/4 span;
  min-height: 300px
}

.app__right {
  position: relative;
  -ms-grid-column-span: 6;
  grid-column: 6 span
}

@media (max-width:1150px) {
  .app__title {
    max-width: 485px
  }

  .app__left,
  .app__right {
    -ms-grid-column-span: 6;
    grid-column: 6 span
  }

  .app {
    padding-top: 0
  }
}

@media (max-width:767.98px) {
  .discount__image {
    margin-top: -31px;
    margin-bottom: 0;
    margin-left: 0;
    width: 340px
  }

  .discount {
    padding-bottom: 50px
  }

  .app__left {
    display: none
  }

  .app__right {
    -ms-grid-column-span: 2;
    grid-column: 2 span
  }
}

.app .tab-menu {
  --bg: rgba(179, 236, 209, 0.15);
  --bg-hover: rgba(0, 190, 100, 0.3);
  --arrow-bg: #caf2df;
  --arrow-bg-hover: rgba(255, 255, 255, 0.3)
}

.services {
  padding-top: 50px;
  padding-bottom: 50px
}

.services__title {
  max-width: none
}

.services__left {
  position: relative;
  grid-column: 2/6 span;
  min-height: 300px
}

@media (max-width:1150px) {
  .services__left {
    -ms-grid-column-span: 6;
    grid-column: 6 span
  }
}

@media (max-width:767.98px) {
  .services__left {
    -ms-grid-column-span: 2;
    grid-column: 2 span
  }

  .services__right {
    display: none
  }
}

.services__right {
  position: relative;
  -ms-grid-column-span: 4;
  grid-column: 4 span
}

.services .tab-menu {
  --bg: rgba(255, 234, 179, 0.15);
  --bg-hover: rgba(255, 185, 0, 0.3);
  --arrow-bg: #fff0ca;
  --arrow-bg-hover: rgba(255, 255, 255, 0.3)
}

@media (max-width:1150px) {
  .services__right {
    -ms-grid-column-span: 6;
    grid-column: 6 span
  }

  .services {
    padding-top: 0
  }
}

.download {
  padding-top: 50px
}

.download__content {
  position: relative;
  margin: 0 auto;
  max-width: 1240px;
  border-radius: 40px;
  padding: 50px 50px 40px;
  min-height: 560px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(https://cdn.lentochka.lenta.com/assets/f833acd2-429f-4cd8-a935-7fc34f905ad7/download-bg.jpg)
}

@media (max-width:1150px) {
  .download__content {
    border-radius: 30px;
    padding: 40px 62px 20px;
    min-height: 335px;
    background-image: url(https://cdn.lentochka.lenta.com/assets/f833acd2-429f-4cd8-a935-7fc34f905ad7/download-bg-t.jpg)
  }
}

.download__left {
  position: relative;
  z-index: 2
}

@media (max-width:767.98px) {
  .download__content {
    overflow: hidden;
    padding: 30px;
    min-height: 545px;
    background-image: url(https://cdn.lentochka.lenta.com/assets/f833acd2-429f-4cd8-a935-7fc34f905ad7/download-bg-m.jpg)
  }

  .download__left {
    z-index: 7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
}

.download__title {
  margin: 0 0 33px;
  max-width: 480px;
  font-weight: 450;
  font-size: 45px;
  line-height: 110%;
  letter-spacing: -.04em;
  color: #003c96
}

.download__title br,
.download__title--ios {
  display: none
}

@media (max-width:1150px) {
  .download__title {
    margin-bottom: 20px;
    max-width: 300px;
    font-size: 30px;
    letter-spacing: initial
  }

  .download__title br {
    display: initial
  }
}

@media (max-width:767.98px) {
  .download__title {
    max-width: 300px;
    font-size: 27px;
    line-height: 110%;
    text-align: center
  }

  .download__title br {
    display: none
  }
}

.download__descr {
  margin: 0 0 42px;
  max-width: 272px;
  font-weight: 400;
  font-size: 25px;
  line-height: 110%;
  color: #000
}

.download__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px
}

.download__down {
  display: none
}

@media (max-width:1150px) {
  .download__descr {
    margin-bottom: 25px;
    max-width: 200px;
    font-size: 17px;
    line-height: 120%
  }

  .download__bottom {
    display: none
  }

  .download__down {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 12px;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: #fff;
    background: #003c96
  }
}

.download__gallery {
  display: none
}

@media (max-width:1150px) {
  .download__gallery {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 4px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    color: #003c96;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
  }
}

.download__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px
}

.download__lnks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px
}

.download__lnks--ios {
  display: none
}

@media (max-width:767.98px) {
  .download__down {
    padding: 12px 26px;
    white-space: nowrap
  }

  .download__lnks {
    position: absolute;
    left: 50%;
    bottom: -390px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    translate: -50% 0
  }
}

.download__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 20px;
  width: 180px;
  background: #fff
}

.download__qr {
  border-radius: 26px;
  padding: 26px;
  background: #fff
}

.download__image {
  position: absolute;
  right: 105px;
  bottom: 0;
  width: 475px;
  max-width: none
}

@media (max-width:1150px) {
  .download__qr {
    display: none
  }

  .download__image {
    right: 36px;
    width: 304px
  }

  .download {
    padding-top: 0
  }
}

.ligal {
  padding: 50px 0
}

.ligal__text {
  margin: 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: #000
}

@media (max-width:767.98px) {
  .download__image {
    right: 50px;
    width: 240px
  }

  .download--ios .download__content {
    min-height: 498px
  }

  .download--ios .download__image {
    bottom: -50px
  }

  .download--ios .download__lnks--ios {
    bottom: -336px
  }

  .ligal__text {
    padding-left: 10px
  }

  .ligal {
    padding: 30px 0
  }
}

.site-modal-wrapper {
  position: fixed;
  z-index: 1000;
  background-color: rgba(0, 0, 0, .7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
  padding: 30px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s
}

.site-modal-wrapper::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-image: url(https://cdn.lentochka.lenta.com/epi_old/globalassets/mp/img/close.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer
}

.site-modal-wrapper * {
  -webkit-box-sizing: inherit;
  box-sizing: inherit
}

.site-modal-wrapper--open {
  opacity: 1;
  visibility: visible
}

@media (max-width:1150px) {
  .download--ios .download__title {
    display: none
  }

  .download--ios .download__title--ios {
    display: block
  }

  .download--ios .download__lnks {
    display: none
  }

  .download--ios .download__lnks--ios {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }

  .ligal__text {
    font-size: 14px;
    color: rgba(0, 0, 0, .7)
  }

  .site-modal-wrapper::before {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  .site-modal-wrapper {
    padding: 70px 0
  }
}

.site-modal {
  position: absolute;
  margin: auto;
  border-radius: 40px;
  padding: 10px;
  width: 100%;
  max-width: 399px;
  height: 500px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s, visibility .3s;
  transition: opacity .3s, visibility .3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.site-modal .swiper-button-disabled {
  display: none
}

.site-modal__slider-btn {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.site-modal__slider-btn svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.site-modal__slider-btn--prev {
  left: -70px
}

.site-modal__slider-btn--next {
  right: -70px
}

@media (max-width:1150px) {
  .site-modal__slider-btn {
    top: auto;
    bottom: -60px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }

  .site-modal__slider-btn--prev {
    left: 0
  }

  .site-modal__slider-btn--next {
    right: 0
  }
}

@media (max-width:767.98px) {
  .site-modal__slider-btn--prev {
    left: 100px
  }

  .site-modal__slider-btn--next {
    right: 100px
  }
}

.site-modal__slider {
  width: 100%;
  height: 100%
}

.site-modal__slider .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.site-modal__slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.site-modal__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: inherit;
  padding: 30px 20px;
  height: 100%;
  background-color: #fff
}

.site-modal__title {
  margin: 0 0 20px;
  font-weight: 450;
  font-size: 25px;
  line-height: 100%;
  text-align: center;
  color: #003c96
}

.site-modal__image {
  margin-top: auto
}

.site-modal--open {
  position: relative;
  opacity: 1;
  visibility: visible
}

@media (max-width:1150px) {
  .site-modal {
    max-width: 340px;
    height: 525px
  }
}
