

/* Start:/local/assets/style.css?178941478837299*/
/* ==========================================================================
  Переменные
========================================================================== */
:root {
  --color-primary: #067C7E;
  /* брендовый оранжевый */
  --color-primary-dark: #242D58;
  /* тёмно-синий / основной текст */
  --color-text-muted: #666B85;
  /* приглушённый серо-синий текст */
  --color-bg-light: #F8F9FB;
  /* светлый фон секций */
  --color-white: #FFFFFF;
  /* белый */
  --color-border: #E6E8F0;
  /* светлая граница */
  --color-accent: #FFA200;
  /* жёлтый акцент */
  --color-gray: #C9CCDA;
  /* серая граница полей/форм */

  --font-main: 'Inter', sans-serif;
  /* основной текст */
  --font-heading: 'Unbounded', sans-serif;
  /* заголовки */
  --font-secondary: 'Onest', sans-serif;
  /* вторичный шрифт */
}

/* Стили mobile first */

/* ==========================================================================
  Кнопки, сноски и т.п.
========================================================================== */

.btn-n {
  height: 43px;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  text-decoration: unset;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-n:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.btn-n--primary {
  color: var(--color-white);
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  padding: 8px 14.5px;
}

.btn-n--primary:hover {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  background: transparent;
}

.btn-n--secondary {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  background: transparent;
  padding: 8px 13px;
}

.btn-n--secondary:hover {
  color: var(--color-white);
  background: var(--color-primary);
}

.btn-n--tertiary {
  color: var(--color-white);
  border-radius: 50px;
  border: 2px solid var(--color-primary-dark);
  background: var(--color-primary-dark);
  padding: 8px 14.5px;
}

.btn-n--tertiary:hover {
  color: var(--color-primary-dark);
  background: var(--color-white);
}

.footnote-link {
  font-size: 10px;
  line-height: 0;
  display: inline-block;
  transform: translateY(-0.4em);
  color: var(--color-text-muted);
  text-decoration: unset;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footnote-link:hover {
  text-decoration: underline;
  transform: translateY(-6px);
  opacity: 0.85;
}

.footnote-link--pop-up {
  color: var(--color-primary);
}





/* ==========================================================================
  1. main-reviews mobile 320px - 767px
========================================================================== */
.main-reviews__container {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
}

.main-reviews__title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  text-align: start;
  margin: 0;
  padding: 0 20px;
}

.main-reviews__link {
  margin-top: 24px;
  width: 100%;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-align: end;
  transition: all 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 0 20px;
}

.main-reviews__grid {
  padding: 0 0 24px;
}


.main-reviews__link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
  opacity: 0.85;
}

/* ==========================================================================
  2. main-reviews tablet 768px - 1439px
========================================================================== */
@media (min-width: 768px) {
  .main-reviews__container {
    padding: 40px 0;
  }

  .main-reviews__title {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    padding: 0 40px;
    letter-spacing: 0.025em;
  }

  .main-reviews__link {
    margin: 0;
    width: fit-content;
    font-size: 21px;
    line-height: 30px;
    text-align: start;
    padding: 0 40px;
  }
  .main-reviews__grid {
	padding: 0 0 32px;
  }

}

/* ==========================================================================
  3. main-reviews desktop - from 1440px
========================================================================== */
@media (min-width: 1440px) {
  .main-reviews__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 100px;
  }

  .main-reviews__title {
    font-weight: 500;
    font-size: 60px;
    line-height: 66px;
    letter-spacing: -0.009em;
    margin-bottom: 72px;
    padding: 0;
  }

  .main-reviews__link {
    padding: 0;
  }

  .main-reviews__grid {
	padding: 0 0 48px;
  }
}






/* ==========================================================================
  1. slider-n mobile 320px - 767px
========================================================================== */
.slider-n__container {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-n__content {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 64px;
}

.slider-n__video-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-n__video-block video {
  max-width: 335px;
  height: auto;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  object-fit: cover;
}

.slider-n__video-block video:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.slider-n__title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: var(--color-primary-dark);
  text-align: start;
}

/* ==========================================================================
  2. slider-n tablet 768px - 1439px
========================================================================== */
@media (min-width: 768px) {
  .slider-n__container {
    padding: 40px;
    gap: 24px;
  }

  .slider-n__content {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .slider-n__video-block {
    flex-direction: row;
    gap: 8px;
  }

  .slider-n__video-block video {
    max-width: 340px;
    height: 186px;
  }

  .slider-n__title {
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 0.03em;
  }
}

/* ==========================================================================
  3. slider-n desktop - from 1440px
========================================================================== */
@media (min-width: 1440px) {
  .slider-n__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 100px;
    padding: 80px 100px;
    gap: 72px;
  }

  .slider-n__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
  }

  .slider-n__video-block {
    flex-direction: column;
  }

  .slider-n__video-block video {
    max-width: 363px;
    height: unset;
  }

  .slider-n__title {
    font-weight: 500;
    font-size: 60px;
    line-height: 66px;
    letter-spacing: -0.009em;
    color: var(--color-primary);
  }
}








/* ==========================================================================
  1. app-block mobile 320px - 767px
========================================================================== */

.app-block {
  background: #F5F5F5;
}

.app-block__container {
  padding: 32px 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 10px;
  row-gap: 24px;
  justify-items: center;
  align-items: start;
}

.app-block__info {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

.app-block__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.app-block__brand img {
  max-width: 34px;
  width: 100%;
  height: auto;
}

.app-block__brand-name {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-primary-dark);
  text-align: start;
}

.app-block__title {
  margin-bottom: 12px;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 19px;
  line-height: 28px;
  color: #FF6B0C;
  text-align: start;
}

.app-block__text,
.app-block__text a {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-primary-dark);
  text-align: start;
}

.app-block__text a:hover {
  color: var(--color-primary);
}

.app-block__text {
  margin: 0;
}

.app-block__more-link {
  text-decoration: underline;
  display: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-block__more-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.app-block__mobile-arrow {
  display: inline-block;
}

.app-block__phones {
  margin: 50px 0;
  grid-column: 1 / 2;
  position: relative;
  height: auto;
  width: 100%;
  max-width: 113px;
}

.phones-cascade__img {
  position: absolute;
  bottom: 0;
  height: auto;
  width: 100%;
  object-fit: contain;
  max-width: 66px;
}

.phones-cascade__img--back {
  right: 0;
  top: 0;
  z-index: 1;
}

.phones-cascade__img--middle {
  left: 24px;
  top: 22px;
  z-index: 2;
}

.phones-cascade__img--front {
  left: 0;
  top: 51px;
  z-index: 3;
}

.app-block__download {
  grid-column: 2 / 3;
  width: 202px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 4px;
  background: var(--color-white);
  border-radius: 20px;
}

.download-card__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 147px;
}

.download-btn {
  width: fit-content;
  box-shadow: 0px 9.69304px 14.9802px rgba(0, 0, 0, 0.08), 0px 2.92217px 4.51608px rgba(0, 0, 0, 0.0582218), 0px 1.21372px 1.87575px rgba(0, 0, 0, 0.0399899), 0px 0.438979px 0.678421px rgba(0, 0, 0, 0.0268173);
  border-radius: 6px;
}

.download-btn__img {
  display: block;
  width: 100%;
  max-width: 118px;
  height: auto;
  transition: all 0.2s;
}

.download-btn__img:hover {
  transform: scale(0.95);
}

.app-block__qr {
  display: none;
}

.download-card__title,
.qr-card__title {
  margin-bottom: 20px;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #0F1115;
}

/* ==========================================================================
  2. app-block tablet 768px - 1439px
========================================================================== */
@media (min-width: 768px) {
  .app-block__container {
    padding: 40px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "info   info"
      "market qr";
    gap: 32px;
    position: relative;
  }

  .app-block__info {
    grid-area: info;
    margin-right: auto;
  }

  .app-block__phones {
    margin: 0;
    position: absolute;
    top: 42px;
    right: 27px;
    grid-area: phones;
    max-width: 174px;
  }

  .phones-cascade__img {
    max-width: 101px;
  }

  .phones-cascade__img--middle {
    left: 36px;
    top: 36px;
  }

  .phones-cascade__img--front {
    top: 82px;
  }

  .app-block__download {
    width: 320px;
    height: fit-content;
    grid-area: market;
    justify-content: flex-start;
    padding: 41px 28px;
  }

  .app-block__qr {
    width: 320px;
    display: flex;
    grid-area: qr;
    background: var(--color-white);
    border-radius: 16px;
    padding: 41px 28px 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
  }

  .download-card__links {
    max-width: 253px;
  }

  .download-btn__img {
    max-width: 189px;
  }

  .qr-card__box {
    width: 193px;
    height: 193px;
    background: var(--color-white);
    border-radius: 35px;
    padding: 8px;
  }

  .land-qr img,
  .land-qr canvas {
    width: 100%;
    height: 170px;
    max-width: 170px;
  }

  .qr-card__img {
    width: 100%;
    height: 100%;
  }

  .app-block__mobile-arrow {
    display: none;
  }

  .app-block__text a {
    margin-top: 8px;
    display: block;
  }

  .app-block__more-link {
    display: inline-block;
    letter-spacing: -0.009em;
  }

  .app-block__brand img {
    max-width: 64px;
  }

  .app-block__brand {
    gap: 20px;
    margin-bottom: 24px;
  }

  .app-block__brand-name {
    font-size: 26px;
    line-height: 38px;
    letter-spacing: 0.02em;
  }

  .app-block__title {
    font-size: 24px;
    line-height: 30px;
  }

  .app-block__text,
  .app-block__text a {
    font-size: 19px;
    line-height: 28px;
  }

  .app-block__text {
    margin: 0 0 24px;
    max-width: 500px;
    letter-spacing: 0.01em;
  }

  .download-card__title,
  .qr-card__title {
    font-weight: 600;
    font-size: 19px;
    line-height: 28px;
  }
}

/* ==========================================================================
  3. app-block desktop - from 1440px
========================================================================== */
@media (min-width: 1440px) {

  .app-block {
    padding: 80px 100px;
  }

  .app-block__container {
    max-width: 1240px;
    margin: 0 auto;
    grid-template-columns: 1.28fr 1fr 0.55fr;
    grid-template-areas:
      "info phones market"
      "info phones qr";
    column-gap: 2px;
    row-gap: 0;
    align-items: flex-start;
    border-radius: 20px;
    background: var(--color-border);
    padding: 40px 74px 42px 56px;
  }

  .app-block__brand img {
    max-width: 47px;
  }

  .app-block__info {
    margin: 25px 0 0 0;
  }

  .app-block__phones {
    position: relative;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    margin: 14px 38px 0 0;
    max-width: 229px;
    height: 377px;
  }

  .phones-cascade__img {
    max-width: 132px;
  }

  .phones-cascade__img--middle {
    left: 47px;
    top: 44px;
  }


  .phones-cascade__img--front {
    top: 104px;
  }

  .app-block__brand {
    gap: 15px;
    margin-bottom: 40px;
  }

  .app-block__title {
    font-family: var(--font-heading);
    font-style: normal;
    font-size: 36px;
    line-height: 42px;
    color: #FF6B0C;
    letter-spacing: 0.024em;
  }

  .app-block__brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.024em;
  }

  .app-block__text {
    max-width: unset;
    font-weight: 600;
    letter-spacing: 0.005em;
  }

  .app-block__text a {
    margin-top: 21px;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
  }

  .app-block__download {
    width: 100%;
    grid-area: market;
    align-self: stretch;
    background: transparent;
    padding: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .download-card__title,
  .qr-card__title {
    text-align: left;
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.01em;
    color: #0F1115;
  }

  .download-card__title {
    margin-bottom: 4px;
  }

  .qr-card__title {
    margin-bottom: 16px;
  }

  .app-block__qr {
    width: 100%;
    display: flex;
    background: transparent;
    padding: 0;
    margin-top: 10px;
    align-items: flex-start;
  }

  .qr-card__box {
    width: 184px;
    height: 184px;
    background: #F9F9F9;
    border-radius: 17px;
    padding: 12px;
  }

  .land-qr img,
  .land-qr canvas {
    height: 160px;
    max-width: 160px;
  }

  .download-card__links {
    max-width: 189px;
    gap: 9px;
  }
}











/* ==========================================================================
  1. purchase mobile 320px - 767px
========================================================================== */

.purchase__container {
  padding: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.purchase__title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
  color: var(--color-primary);
  text-align: start;
  letter-spacing: 0.03em;
  padding: 0 20px;
}

.purchase__subtitle,
.purchase__subtitle a {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text-muted);
  text-align: start;
}

.purchase__subtitle {
  max-width: 742px;
  padding: 0 20px;
}

.purchase__subtitle a {
  transition: color 0.2s ease;
}

.purchase__subtitle a:hover {
  color: var(--color-primary);
}

.purchase__brands-slider {
  display: flex;
  gap: 24px;
  align-items: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  padding: 0 16px 12px 16px;
  scroll-padding: 20px;
}

.purchase__brands-slider::-webkit-scrollbar {
  display: none;
}

.brand-logo {
  flex: 0 0 auto;
  scroll-snap-align: start;

  display: inline-block;
  flex: 0 0 auto;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}

.brand-logo:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.brand-logo img {
  display: block;
  height: 28px;
  width: auto;
}

.purchase__all-link {
  margin: 16px 0 0 auto;
  display: flex;
  justify-content: flex-end;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  text-align: right;
  text-decoration-line: underline;
  color: #3BBDAD;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 0 20px;
}

.purchase__all-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.sub-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--color-white);
  margin: 0 20px;
}

.sub-card__title {
  margin: 0 0 16px;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #0A1130;
  text-align: start;
}

.sub-card__description {
  margin: 0;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #373737;
  text-align: start;
}

.sub-card__notice-text {
  margin: 0;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #373737;
  text-align: start;
}

.sub-card__disclaimer {
  margin-top: 12px;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 400;
  font-size: 8px;
  line-height: 13px;
  text-align: center;
  color: var(--color-text-muted);
}

.sub-card__content {
  background: var(--color-bg-light);
  display: flex;
  flex-direction: column;
  padding: 16px 16px 49px;
  border-radius: 10px;
  box-shadow: 0px 4.74716px 11.3932px -4.74716px rgba(36, 45, 88, 0.12);
}

.sub-card__badge {
  width: 96px;
  height: auto;
  margin-bottom: 16px;
}

.sub-card__notice img {
  max-width: 28px;
}

.sub-card__notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 17px 0 14px;
}

.sub-card__btn {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background: #3BBDAD;
  border-radius: 50px;

  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: var(--color-white);
  text-decoration: unset;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sub-card__btn:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.sub-card__media {
  position: relative;
  top: -68px;
  margin-bottom: -68px;

  width: 100%;
  display: flex;
  justify-content: center;
}

.sub-card__bg-shape {
  display: none;
}

.sub-card__img {
  display: block;
  width: 100%;
  max-width: 255px;
  height: auto;
}

/* ==========================================================================
  2. purchase tablet 768px - 1439px
========================================================================== */
@media (min-width: 768px) {
  .purchase__container {
    padding: 40px;
    gap: 24px;
  }

  .purchase__subtitle,
  .purchase__subtitle a {
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
  }

  .purchase__title {
    padding: 0;
  }

  .purchase__subtitle {
    letter-spacing: 0.025em;
    padding: 0;
  }

  .purchase__brands-slider {
    overflow-x: visible;
    scroll-snap-type: none;
    margin: 24px 0;
  }

  .brand-logo {
    display: none;
  }

  .brand-logo--tablet {
    display: inline-block;
  }

  .purchase__all-link {
    margin: 16px auto 0 0;
    padding: 0;
    justify-content: unset;
  }

  .sub-card {
    position: relative;
    flex-direction: row;
    overflow: hidden;
    box-shadow: 0px 10px 24px -10px rgba(36, 45, 88, 0.12);
    border-radius: 20px;

    gap: 0;
    align-items: flex-end;
    margin: 0;
  }

  .sub-card::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    background: linear-gradient(180deg, #FFA200 0%, #FF6B0C 100%);
  }

  .sub-card::after {
    content: '';
    position: absolute;
    width: 1535px;
    height: 926px;
    left: -940px;
    top: 110px;
    background: var(--color-bg-light);
    transform: rotate(319deg);
    border-radius: 50%;
  }

  .sub-card__badge {
    margin-bottom: 15px;
  }

  .sub-card__title {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 30px;
    color: #373737;
    letter-spacing: 0.01em;
  }

  .sub-card__description {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 22px;
  }

  .sub-card__notice-text {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
  }

  .sub-card__notice img {
    max-width: 28px;
  }

  .sub-card__notice {
    align-items: center;
    margin: 7px 0 20px;
  }

  .sub-card__disclaimer {
    margin: 20px 0 0 14px;
    text-align: start;
    line-height: 15px;
    color: #767676;
  }

  .sub-card__content {
    background: unset;
    box-shadow: unset;
    position: relative;
    z-index: 2;
    width: 65%;
    padding: 16px 0 9px 16px;
  }

  .sub-card__btn {
    width: 100%;
    max-width: 395px;
  }

  .sub-card__media {
    top: unset;
    margin: 0;
    width: fit-content;
  }

  .sub-card__img {
    max-width: 244px;
    object-fit: contain;
    z-index: 3;
    margin-right: 32px;
  }
}

/* ==========================================================================
  3. purchase desktop - from 1440px
========================================================================== */
@media (min-width: 1440px) {
  .purchase {
    background: var(--color-bg-light);
  }

  .purchase__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 100px;
    gap: 58px;
  }

  .purchase__title {
    font-weight: 500;
    font-size: 60px;
    line-height: 66px;
    letter-spacing: -0.01em;
  }

  .purchase__subtitle {
    margin-bottom: 16px;
  }

  .purchase__brands-slider {
    justify-content: space-between;
    gap: 32px;
    margin: 40px 0;
  }

  .brand-logo--desktop {
    display: inline-block;
  }

  .purchase__all-link {
    margin: 24px auto 0 0;
    font-size: 20px;
    line-height: 34px;
  }

  .sub-card__badge {
    width: 168px;
    margin-bottom: 41px;
  }

  .sub-card__title {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 600;
    font-size: 29px;
    line-height: 42px;
    letter-spacing: 0.03em;
  }

  .sub-card__description {
    margin: 0 0 28px;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.02em;
  }

  .sub-card__notice-text {
    margin: 0 0 14px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
  }

  .sub-card__notice img {
    max-width: unset;
  }

  .sub-card__disclaimer {
    font-size: 14px;
    line-height: 18px;
    text-align: start;
    margin-top: 51px;
  }

  .sub-card::after {
    content: '';
    width: 1330.6px;
    height: 1458.97px;
    left: -381px;
    top: -299.36px;
    background: var(--color-white);
    transform: rotate(-30.2deg);
  }

  .sub-card__content {
    width: 55%;
    padding: 45px 45px 12px 45px;
  }

  .sub-card__media {
    width: 50%;
  }

  .sub-card__img {
    margin: 0;
    right: 153px;
    bottom: 0;
    height: auto;
    max-width: 394px;
  }

  .sub-card__btn {
    max-width: 618px;
    height: 59px;
    font-size: 24px;
    line-height: 30px;
  }
}







/* ==========================================================================
  1. faq-n mobile 320px - 767px
========================================================================== */
.faq-n {
  background: linear-gradient(187.47deg, #3BBDAD -3.14%, #067C7E 30.91%);
}

.faq-n__container {
  padding: 32px 20px;
  margin: 0 auto;
}

.faq-n__title {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
  color: var(--color-white);
  text-align: start;
  letter-spacing: 0.03em;
}

.faq-n__link {
  margin: 24px 0 0 auto;
  display: flex;
  justify-content: flex-end;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  text-align: right;
  text-decoration-line: underline;
  color: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-n__link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.faq-n__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-n__item {
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}

.faq-n__button {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 8px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 24px;
}

.faq-n__question {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-white);
  text-align: start;
  transition: color 0.2s ease;
}

.faq-n__question:hover {
  color: var(--color-gray);
}

.faq-n__answer,
.faq-n__answer a {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-white);
  text-align: start;
}

.faq-n__answer a {
  transition: color 0.2s ease;
}

.faq-n__answer a:hover {
  color: var(--color-primary);
}

.faq-n__answer img {
  max-width: 100%;
}

.faq-n__answer ul {
  list-style-type: disc;
  margin: 18px 0 0 20px;
}

.faq-n__answer li {
  display: list-item;
  text-align: start;
  padding: 0;
}

.faq-n__answer li+li {
  margin-top: 8px;
}

.faq-n__answer li::before {
  content: unset;
}

.faq-n__arrow {
  margin-left: 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 25px;
}

.faq-n__arrow::before,
.faq-n__arrow::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 4px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: 0% 50%;
}

.faq-n__arrow::before {
  left: 20px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-n__arrow::after {
  right: 16px;
  transform-origin: 100% 50%;
  transform: translate(50%, -50%) rotate(-45deg);
}

.faq-n__item.is-open .faq-n__arrow::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-n__item.is-open .faq-n__arrow::after {
  transform: translate(50%, -50%) rotate(45deg);
}

.faq-n__answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s cubic-bezier(0, 1, 0, 1);
}

.faq-n__answer {
  padding-bottom: 24px;
}

/* ==========================================================================
  2. faq-n tablet 768px - 1439px
========================================================================== */
@media (min-width: 768px) {
  .faq-n__container {
    padding: 40px;
  }

  .faq-n__list {
    margin-top: 24px;
  }

  .faq-n__link {
    margin: 24px auto 0 0;
    justify-content: unset;
  }

  .faq-n__button {
    padding: 8px 0;
  }
}

/* ==========================================================================
  3. faq-n desktop - from 1440px
========================================================================== */
@media (min-width: 1440px) {

  .faq-n__container {
    max-width: 1440px;
    padding: 80px 100px;
  }

  .faq-n__title {
    margin-bottom: 45px;
    font-weight: 500;
    font-size: 60px;
    line-height: 66px;
    letter-spacing: -0.02em;
  }

  .faq-n__link {
    margin: 24px auto 0 0;
    font-size: 20px;
    line-height: 34px;
  }

  .faq-n__button {
    padding: 27px 0;
  }

  .faq-n__question {
    font-size: 19px;
    line-height: 28px;
  }

  .faq-n__answer {
    padding-bottom: 32px;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
  }

  .faq-n__answer a {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
  }
}




/* ==========================================================================
  1. manufacturer mobile 320px - 767px
========================================================================== */
.manufacturer {
  background: var(--color-bg-light);
}

.manufacturer__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 20px;
  width: 100%;
  box-sizing: border-box;
}

.manufacturer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.manufacturer__logo {
  display: none;
}

.manufacturer__title {
  margin-bottom: 24px;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-primary-dark);
  text-align: start;
  letter-spacing: 0.01em;
}

.manufacturer__text {
  margin: 0;
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text-muted);
  text-align: start;
  letter-spacing: 0.01em;
}

.manufacturer__text+.manufacturer__text {
  margin-top: 24px;
}

.manufacturer__btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 600;
  font-size: 19px;
  line-height: 28px;
}

.manufacturer__media {
  width: 100%;
}

.manufacturer__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}


/* ==========================================================================
  2. manufacturer tablet 768px - 1439px
========================================================================== */
@media (min-width: 768px) {
  .manufacturer__container {
    padding: 40px;
    gap: 32px;
  }

  .manufacturer__logo {
    display: block;
    margin-bottom: 24px;
  }

  .manufacturer__logo-img {
    display: block;
    height: 30px;
    width: auto;
  }

  .manufacturer__title {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 42px;
  }

  .manufacturer__text {
    max-width: 645px;
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    letter-spacing: 0.01em;
  }

  .manufacturer__btn {
    margin-top: 40px;
    height: 60px;
    font-family: Unbounded, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
  }
}

/* ==========================================================================
  3. manufacturer desktop - from 1440px
========================================================================== */
@media (min-width: 1440px) {

  .manufacturer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 100px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
  }

  .manufacturer__logo {
    margin-bottom: 50px;
  }

  .manufacturer__title {
    color: var(--color-text-muted);
  }

  .manufacturer__text {
    max-width: unset;
    letter-spacing: 0.01em;
  }

  .manufacturer__content {
    flex: 1;
  }

  .manufacturer__media {
    width: 578px;
    flex-shrink: 0;
  }

  .manufacturer__img {
    height: 552px;
    width: 100%;
    object-fit: cover;
  }
}





/* ==========================================================================
  1. sources-n mobile 320px - 767px
========================================================================== */
.sources-n__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.sources-n__title {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-primary-dark);
}

.sources-n__list {
  list-style-type: decimal;
  margin-left: 20px;
}

.sources-n__list li,
.sources-n__list a {
  font-family: var(--font-main);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--color-text-muted);
  text-align: start;
  transition: all 0.2s ease;
  padding: 0;
  word-break: break-word;
  letter-spacing: 0.005em;
}

.sources-n__list li {
  display: list-item;
}

.sources-n__list li+li {
  margin-top: 8px;
}

.sources-n__list li::before {
  content: unset;
}

.sources-n__list a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
  2. sources-n tablet 768px - 1439px
========================================================================== */
@media (min-width: 768px) {
  .sources-n__container {
    gap: 16px;
    padding: 40px;
  }

  .sources-n__title {
    font-size: 19px;
    line-height: 28px;
    color: var(--color-text-muted);
  }
}

/* ==========================================================================
  3. sources-n desktop - from 1440px
========================================================================== */
@media (min-width: 1440px) {
  .sources-n__container {
    max-width: 1440px;
    padding: 64px 100px 80px;
  }

  .sources-n__title {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
  }
}



/* ==========================================================================
  tabs
========================================================================== */

.js-tabs-container__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.js-tabs-container__tabs {
  max-width: 472px;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  padding: 5px;
  border-radius: 999px;
  background: linear-gradient(281.5deg, #0E9195 5.32%, #067C7E 60.53%);
}

.js-tabs-container__tabs--w {
  background: white;
}

.js-tab-btn {
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  background: var(--color-primary);
}

.js-tabs-container__tabs--w .js-tab-btn {
  background: none;
}

.js-tab-btn span sup {
  line-height: 0;
}

.js-tab-btn span {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -1%;
  background: linear-gradient(106deg, #0E9195 0%, #067C7E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  cursor: pointer;
  color: #C3E7E7;
}

.js-tabs-container__tabs--w .js-tab-btn span {
  background: linear-gradient(281.5deg, #0E9195 5.32%, #067C7E 60.53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.js-tab-btn.is-active {
  background: var(--color-white);
}

.js-tabs-container__tabs--w .js-tab-btn.is-active {
  background: linear-gradient(120deg, #0E9195 0%, #067C7E 100%);
}

.js-tab-btn.is-active span {
  color: #067C7E;
  background: var(--color-white);
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.js-tabs-container__tabs--w .js-tab-btn.is-active span {
  color: white;
  background: linear-gradient(120deg, #0E9195 0%, #067C7E 100%);
}

.js-tab-content {
  position: relative;
  display: none;
}

.js-tab-content.is-active {
  display: block;
}

@media (max-width: 1440px) {
  .js-tabs-container__head {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .js-tab-btn {
    padding: 11px 16px;
  }

  .js-tab-btn span {
    font-weight: 600;
    font-size: 19px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    width: 100%;
  }

  .js-tabs-container__tabs {
    max-width: 335px;
    background: #C3E7E7;
    justify-content: space-between;
    margin: 0 auto;
  }

  .js-tab-btn.is-active {
    background: var(--color-white);
  }

  .js-tab-btn.is-active span {
    background-image: linear-gradient(114deg,
        #0E9195 0%,
        #067C7E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media screen and (max-width: 500px) {
  .js-tabs-container__tabs {
    justify-content: space-between;
    width: 100%;
  }
}
/* End */


/* Start:/local/components/reviews/reviews.list/templates/main/style.css?17894187356737*/
/* =============================================
   Отзывы на главной — сетка 4 карточки
   Карточки повторяют вёрстку страницы /reviews/
   ============================================= */
.main-reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  padding: 0 0 24px;
}

/* Скрываем горизонтальную полосу прокрутки при свайпе карточек
   (как у .mechanism__grid и .therapy__steps) */
.main-reviews__grid {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.main-reviews__grid::-webkit-scrollbar {
  display: none;
}

/* Карточка отзыва (текст/видео) — как на /reviews/ */
.review-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 26px 24px;
  width: 100%;
  min-width: 332px;
  min-height: 497px;
  max-height: 497px;
  height: fit-content;
  background: #FFFFFF;
  border: 1px solid #E6E8F0;
  box-shadow: 0px 14px 34px -14px rgba(36, 45, 88, 0.14);
  border-radius: 24px;
  overflow: hidden;
}

/* Раскрытая карточка отзыва — снимаем ограничение по высоте */
.review-card--expanded {
  max-height: unset;
}

/* Видеоотзыв */
.review-video-label {
  position: absolute;
  top: 12px;
  left: 16px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  z-index: 2;
}

.review-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}

.review-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.review-author {
  font-weight: 600;
  margin-bottom: 4px;
}

.review-nickname,
.review-spec {
  font-size: 14px;
  color: #666;
}

.review-spec {
  margin-top: 4px;
  font-style: italic;
}

/* Текстовый отзыв */
.review-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-subheader {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 30px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  background: #3BBDAD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Unbounded, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.review-nickname {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  color: #242D58;
}

.review-stars {
  display: flex;
  gap: 3px;
  position: relative;
}

.review-stars::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 30px;
  left: -27px;
  top: 0;
  background: #FF6B0C;
  border-radius: 0px 3px 3px 0px;
}

.star {
  color: #ddd;
  font-size: 18px;
}

.star.active {
  color: #FF6B0C;
}

.review-site {
  padding: 5px 10px;
  background: #F8F9FB;
  border-radius: 50px;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #666B85;
  margin-left: auto;
  cursor: pointer;
  text-decoration: unset;
}

.review-site:hover {
  text-decoration: underline;
}

.review-text-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-text {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #242D58;
  -webkit-line-clamp: 9;
  line-clamp: 9;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-align: start;
  position: relative;
}

.review-expand-btn {
  display: none;
  align-self: flex-start;
  margin-top: 10px;
  padding: 0;
  background: unset;
  border: none;
  color: #FF6B0C;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  text-decoration: none;
}

.review-expand-btn:hover {
  text-decoration: underline;
}

.review-text-wrap.is-expanded .review-text {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  padding-right: 0;
}

.review-text-wrap.is-expanded .review-expand-btn {
  display: none !important;
}

.review-devider {
  width: 100%;
  margin: auto 0 25px;
  border-bottom: 1px solid #E6E8F0;
  padding: 25px 0 0;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  padding: 6px 11px;
  height: 28px;
  background: #E7F7F4;
  border: 1px solid #BBE8E1;
  border-radius: 9px;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #1C7A6E;
}

/* Блок «+N» с количеством скрытых тегов */
.review-tags-more {
  min-width: 37px;
  height: 28px;
  padding: 0 10px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #242D58;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
}


@media (max-width: 1600px) {
  .main-reviews__grid {
    /* grid-template-columns: repeat(2, 1fr); */
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0 0;
    padding: 0 40px 32px 40px;
    width: unset;
    scroll-padding: 0 40px;
  }

  .review-card {
    min-height: unset;
    /* height: fit-content; */
    width: 100%;
  }

  .review-text {
    -webkit-line-clamp: 9;
    line-clamp: 9;
  }
}

@media (max-width: 800px) {
  .main-reviews__grid {
    padding: 0 40px 32px 40px;
    scroll-padding: 0 40px;
  }

  .review-card {
    width: 100%;
    min-height: unset;
    /* height: fit-content; */
    padding: 20px;
  }

  .review-text {
    -webkit-line-clamp: 18;
    line-clamp: 18;
  }

  .review-subheader {
    margin-bottom: 13px;
    gap: 10px;
  }

  .review-avatar {
    width: 36px;
    height: 36px;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
  }

  .review-devider {
    margin: auto 0 13px;
    padding: 33px 0 0;
  }

  .review-tags {
    gap: 6px;
  }

  .tag {
    font-weight: 600;
    line-height: 15px;
  }

  .star {
    font-size: 14px;
  }

  .review-site {
    padding: 5px 9px;
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  .main-reviews__grid {
    padding: 0 20px 32px 20px;
    scroll-padding: 0 20px;
  }
}
/* End */


/* Start:/slider-n/style.css?178929448711005*/
:root {
  --slider-n-color-bg: #f4f7fa;
  --slider-n-color-card: #ffffff;
  --slider-n-color-border: #e3e9f0;
  --slider-n-color-text: #242D58;
  --slider-n-color-highlight: #067C7E;
  --slider-n-color-muted: #666B85;
  --slider-n-color-accent: #242D58;
  --slider-n-color-accent-hover: #085a7f;

  --slider-n-radius: 14px;
  --slider-n-gap: 20px;

  --slider-n-duration: 0.55s;
  --slider-n-easing: cubic-bezier(0.25, 0.8, 0.25, 1);

  --slider-n-z-track: 1;
  --slider-n-z-modal: 1000;
}

.slider-n__carousel {
  --slider-n-title-mb: 24px;

  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--slider-n-gap);
}

.slider-n__title {
  margin: 0 0 var(--slider-n-title-mb);
}

.slider-n__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.slider-n__viewport {
  overflow: hidden;
  background: var(--slider-n-color-bg);
  border-left: 1.5px solid var(--slider-n-color-muted);
}

.slider-n__track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  transition: transform var(--slider-n-duration) var(--slider-n-easing);
}

.slider-n__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  width: 100%;
  max-width: 231px;
  height: 316px;
}

.slider-n__slide[aria-hidden='true'] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.slider-n__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.slider-n__info {
  display: flex;
  flex-direction: column;
  padding: 14px 19px;
  background: var(--slider-n-color-card);
  border-top: 1.5px solid var(--slider-n-color-muted);
}

.slider-n__step-title {
  margin: 0;
  color: var(--slider-n-color-text);
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  text-align: start;
}

.slider-n__step-title span {
  margin-top: 8px;
  display: inline-block;
  text-align: start;
  color: var(--slider-n-color-highlight);
}

.slider-n__step-text {
  margin: 6px 0 0;
  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--slider-n-color-muted);
  text-align: start;
}

.slider-n__step-text small {
  font-size: 11px;
}

.slider-n__step-text.is-empty {
  display: none;
}

.slider-n__step-text span {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: var(--slider-n-color-highlight);
}

.slider-n__inline-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: auto;
}

.slider-n__more {
  margin-top: auto;
  align-self: flex-start;
  color: var(--slider-n-color-card);
  background: var(--slider-n-color-accent);
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 50px;
  padding: 7px 19px;

  font-family: Inter, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

.slider-n__more:hover {
  color: var(--slider-n-color-accent-hover);
}

.slider-n__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 17px;
}

.slider-n__control {
  position: relative;
  width: 35px;
  height: 30px;
  border: 2px solid var(--slider-n-color-accent);
  color: var(--slider-n-color-accent);
  background: var(--slider-n-color-card);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.slider-n__control::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.slider-n__control::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.slider-n__control--prev::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.slider-n__control--next::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.slider-n__control:hover {
  background: var(--slider-n-color-highlight);
  color: #fff;
  border-color: var(--slider-n-color-highlight);
}

.slider-n__control:active {
  transform: scale(0.94);
}

.slider-n__control:focus-visible {
  outline: 3px solid var(--slider-n-color-accent);
  outline-offset: 2px;
}

.slider-n__control[aria-disabled='true'],
.slider-n__control:disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.slider-n__status {
  width: 64px;
  text-align: right;
  font-family: Unbounded, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 21px;
  color: var(--slider-n-color-text);
}

.slider-n__layout {
  max-width: 335px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.05);
  border: 1.5px solid var(--slider-n-color-muted);
  border-radius: 10px;
  overflow: hidden;
}

.slider-n__photo-open {
  width: 104px;
  position: relative;
  display: block;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}

.slider-n__photo-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 76px;
  margin: auto;
}

.slider-n__photo-zoom {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-image: url("/local/assets/img/pointer.svg");
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: contain;
  animation: rotateOut 3s infinite ease-in-out;
  transition: all .2s;
}

@keyframes rotateOut {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(-14deg);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  }

  100% {
    transform: rotate(0);
  }
}

.slider-n__photo-open:hover .slider-n__photo-zoom {
  transform: rotate(-14deg);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  animation: unset;
}

.slider-n__photo-open:focus-visible {
  outline: 3px solid var(--slider-n-color-accent);
  outline-offset: 2px;
}

.slider-n__modal {
  position: fixed;
  inset: 0;
  z-index: var(--slider-n-z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}

.slider-n__modal.is-open {
  display: flex;
}

.slider-n__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.slider-n__modal.is-open .slider-n__modal-overlay {
  opacity: 1;
}

.slider-n__modal-window {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 960px;
  background: var(--slider-n-color-card);
  border-radius: var(--slider-n-radius);
  padding: 16px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.slider-n__modal.is-open .slider-n__modal-window {
  transform: scale(1);
  opacity: 1;
}

.slider-n__modal-close {
  position: absolute;
  margin: auto;
  right: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  background-color: unset;
  background-image: url('/local/assets/img/close-circ.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 42px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.slider-n__modal-close:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.slider-n__modal-close:focus-visible {
  outline: 3px solid var(--slider-n-color-accent);
  outline-offset: 2px;
}

.slider-n__modal-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: calc(var(--slider-n-radius) - 6px);
}

.slider-n__visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .slider-n__layout {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
  }

  .slider-n__photo-open {
    grid-column: 1;
    grid-row: 1;
    width: 104px;
    align-self: stretch;
  }

  .slider-n__carousel,
  .slider-n__body {
    display: contents;
  }

  .slider-n__viewport {
    grid-column: 2;
    grid-row: 1;
    border-left: 1.5px solid var(--slider-n-color-muted);
  }

  .slider-n__info {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1.5px solid var(--slider-n-color-muted);
    border-left: 0;
    min-height: 354px;
  }

  .slider-n__carousel [data-slider-slides] {
    display: none;
  }
}

@media (min-width: 768px) {
  .slider-n__layout {
    max-width: 688px;
    flex-direction: row;
  }

  .slider-n__photo-open {
    height: 317px;
  }

  .slider-n__info {
    padding: 17px 19px 15px 19px;
    border-top: unset;
    border-left: 2px solid var(--slider-n-color-muted);
    width: 344px;
    flex: 0 0 344px;
  }

  .slider-n__photo-img {
    max-width: 72px;
  }

  .slider-n__body {
    flex-direction: row;
    align-items: stretch;
  }

  .slider-n__viewport {
    border-left: 2px solid var(--slider-n-color-muted);
  }

  .slider-n__image {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .slider-n__layout {
    max-width: 688px;
    flex-direction: row;
    align-items: flex-start;
    border: 2px solid var(--slider-n-color-muted);
    border-radius: 16px;
  }

  .slider-n__slide {
    max-width: 240px;
    height: 317px;
  }

  .slider-n__step-text {
    margin: 6px 0 0;
  }

  .slider-n__step-text,
  .slider-n__step-text span {
    font-size: 11px;
    line-height: 16px;
  }

  .slider-n__controls {
    margin-top: 12px;
  }

  .slider-n__more {
    padding: 7px 19px;
  }

  .slider-n__control {
    width: 35px;
    height: 30px;
  }

  .slider-n__step-text small {
    font-size: 11px;
  }
}

@media (min-width: 1440px) {
  .slider-n__layout {
    max-width: 851px;
  }

  .slider-n__modal-window {
    padding: 16px 40px;
  }

  .slider-n__slide {
    max-width: 374px;
    height: 404px;
  }

  .slider-n__viewport {
    flex: 1 1 379px;
  }

  .slider-n__info {
    flex: 1 1 304px;
    padding: 22px 19px 18px;
  }

  .slider-n__photo-open {
    flex: 0 0 169px;
    min-width: 169px;
    height: unset;
  }

  .slider-n__controls {
    margin-top: 17px;
  }

  .slider-n__more {
    padding: 9px 19px;
  }

  .slider-n__step-text {
    margin: 8px 0 0;
  }

  .slider-n__control {
    width: 39px;
    height: 34px;
  }

  .slider-n__step-text,
  .slider-n__step-text span {
    font-size: 15px;
    line-height: 100%;
  }

  .slider-n__step-text small {
    font-size: 12px;
  }

  .slider-n__photo-img {
    max-width: 96px;
    padding: 4px 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .slider-n__track,
  .slider-n__slide,
  .slider-n__control {
    transition: none !important;
  }

  .slider-n__modal-overlay,
  .slider-n__modal-window,
  .slider-n__photo-zoom {
    transition: none !important;
  }
}
/* End */
/* /local/assets/style.css?178941478837299 */
/* /local/components/reviews/reviews.list/templates/main/style.css?17894187356737 */
/* /slider-n/style.css?178929448711005 */
