@charset "UTF-8";
:root {
  --accent: #E1FA3F;
  --grey-1: #909090;
  --grey-2: #DFDEDE;
  --grey-3: #F5F5F5;
  --grey: #B2AFAA;
  --maincolor: #000;
  --placeholder: #666;
  /* Основные цвета */
  --accent-color: #E1FA3F;
  --primary-color: #2C3E50;
  --secondary-color: #EEEFF0;
  --bullet-color: #D0D1D2;
  --white: #ffffff;
  --fontsize: 14px;
  --lineheight: 1.5;
  --mainfont: "Manrope", sans-serif;
  --second-family: "Ubuntu", serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --card-border-radius: 54px;
  --field-border-radius: 36px;
  --field-height: 57px;
  --anim150: .15s ease-out;
  --anim300: .3s ease-out;
  --anim600: .6s ease-out;
  /* Border Radius */
  --br-sm: 12px;
  --br-md: 20px;
  --br-lg: 30px;
  --br-xl: 36px;
}

::-webkit-input-placeholder {
  color: var(--placeholder);
}

::-moz-placeholder {
  color: var(--placeholder);
}

:-ms-input-placeholder {
  color: var(--placeholder);
}

::-ms-input-placeholder {
  color: var(--placeholder);
}

::placeholder {
  color: var(--placeholder);
}

::-moz-selection {
  background-color: var(--grey-1);
  color: #000;
}

::selection {
  background-color: var(--grey-2);
  color: #000;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=checkbox],
input[type=radio] {
  width: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

input:focus {
  outline: none;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  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;
  min-width: 320px;
  min-height: 100%;
  font-family: var(--mainfont);
  font-size: var(--fontsize);
  line-height: var(--lineheight);
  color: var(--maincolor);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  margin: 0;
}

ol {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  -webkit-transition: color var(--anim300), border-color var(--anim300), background-color var(--anim300);
  transition: color var(--anim300), border-color var(--anim300), background-color var(--anim300);
  text-decoration: none;
}
a:focus {
  outline: none;
}

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

figure {
  margin: 0;
  padding: 0;
}

button {
  -webkit-transition: color var(--anim150), background var(--anim150);
  transition: color var(--anim150), background var(--anim150);
}

svg path {
  -webkit-transition: fill var(--anim150), stroke var(--anim150);
  transition: fill var(--anim150), stroke var(--anim150);
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-12 {
  margin-right: 12px;
}

body {
  color: var(--primary-color);
}
body.overflow {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  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;
}

.truncate-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
@media (max-width: 768.98px) {
  .wrapper {
    overflow: hidden;
  }
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 1023.98px) {
  .container {
    padding: 0 75px;
  }
}
@media (max-width: 990.98px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 768.98px) {
  .container {
    padding: 0 20px;
  }
}

.section-padding {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1023.98px) {
  .section-padding {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (max-width: 990.98px) {
  .section-padding {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768.98px) {
  .section-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.full-bleed {
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1023.98px) {
  .full-bleed {
    margin-left: -75px;
    margin-right: -75px;
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (max-width: 990.98px) {
  .full-bleed {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768.98px) {
  .full-bleed {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.swiper {
  opacity: 0;
  -webkit-transition: opacity var(--anim);
  transition: opacity var(--anim);
}
.swiper.swiper-initialized {
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  width: auto;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  width: 100% !important;
}
.swiper-pagination .swiper-pagination-bullet {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 6px;
  margin: 0;
  -webkit-transition: all var(--anim300);
  transition: all var(--anim300);
  background-color: var(--secondary-color);
  border-radius: 16px;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bullet-color);
}

.pagination-2 .swiper-pagination-bullet {
  max-width: 50% !important;
}

/* Для 3 и более буллетов */
.pagination-many .swiper-pagination-bullet {
  max-width: 33.33% !important;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: 0;
  background-position: center;
}
@media (max-width: 768.98px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
}
.swiper-button-prev:before, .swiper-button-prev:after,
.swiper-button-next:before,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  left: 0;
  background-image: url(/images/icons/arrow-left.svg);
}

.swiper-button-next {
  right: 0;
  background-image: url(/images/icons/arrow-right.svg);
}

.sl-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
  z-index: 10;
}
@media (max-width: 768.98px) {
  .sl-nav {
    height: 20px;
    top: 6px;
    bottom: auto;
  }
}

.white-button-prev,
.white-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: background-color var(--anim150);
  transition: background-color var(--anim150);
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
@media (max-width: 768.98px) {
  .white-button-prev,
  .white-button-next {
    width: 24px;
    height: 24px;
    background-size: 12px 12px;
  }
}
.white-button-prev:hover,
.white-button-next:hover {
  background-color: var(--grey-3);
}

.white-button-prev {
  left: 0;
  background-image: url(/images/icons/sl-prev.svg);
}

.white-button-next {
  right: 0;
  background-image: url(/images/icons/sl-next.svg);
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: none;
}

section {
  padding-bottom: 36px;
}
@media (max-width: 768.98px) {
  section {
    padding-bottom: 50px;
  }
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 16px;
}
.section-header--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.section-header__title {
  margin: 0;
  font-size: 34px;
  font-weight: 100;
  line-height: 100%;
}
@media (max-width: 768.98px) {
  .section-header__title {
    font-size: 24px;
  }
}
.section-header__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
@media (max-width: 768.98px) {
  .section-header__controls .section-header__btn_prev, .section-header__controls .section-header__btn_next {
    display: none;
  }
}
.section-header .section-header__btn_prev:hover, .section-header .section-header__btn_next:hover {
  color: var(--primary-color) !important;
  background-color: var(--secondary-color) !important;
}
.section-header__all-link {
  margin-left: 12px;
  font-size: 12px;
}
.section-header__subtitle {
  margin-top: 4px;
  font-weight: 300;
}

.section-title {
  margin: 0;
  font-size: 34px;
  font-weight: 100;
  line-height: 100%;
}
@media (max-width: 768.98px) {
  .section-title {
    font-size: 24px;
  }
}

.card {
  background-color: var(--secondary-color);
  border-radius: var(--card-border-radius);
}
.card__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 1023.98px) {
  .card__title {
    font-size: 30px;
    font-weight: 400;
  }
}
@media (max-width: 768.98px) {
  .card__title {
    font-size: 24px;
    font-weight: 500;
  }
}
.card__subtitle {
  font-size: 18px;
  font-weight: 100;
  margin-top: 16px;
}

.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: var(--br-xl);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  -webkit-transition: background-color var(--anim150), border-color var(--anim150), color var(--anim150);
  transition: background-color var(--anim150), border-color var(--anim150), color var(--anim150);
}

@media (max-width: 768.98px) {
  .btn {
    height: 40px;
    padding: 0 18px;
    font-size: 12px;
  }
}
.btn:hover {
  color: var(--primary-color);
  background-color: var(--white);
}

.btn_secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.btn_secondary.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn_secondary:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: var(--secondary-color);
}

.btn_white {
  color: var(--primary-color);
  background-color: var(--white);
  border-color: var(--white);
}

.btn_white:hover {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn_accent {
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: var(--br-md);
  height: 49px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 500;
}

.btn_accent:hover {
  background-color: white;
}

.btn_small {
  min-width: 50px;
  padding: 0 18px;
  height: 35px;
  font-weight: 300;
}

@media (max-width: 1023.98px) {
  .btn_small {
    height: 32px;
    padding: 0 12px;
  }
}
@media (max-width: 768.98px) {
  .btn_small {
    height: 41px;
    padding: 0 18px;
  }
}
.btn__icon {
  color: currentColor;
  margin-right: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn__icon--after {
  margin-left: 16px;
  margin-right: 0;
}

.btn--icon-only {
  padding: 0;
  min-width: auto;
  width: 41px;
  height: 41px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
}

.btn--icon-only .btn__icon {
  margin: 0;
}

.btn-next {
  position: relative;
  width: 55px;
  height: 55px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  cursor: pointer;
}

.btn-next::after {
  content: "";
  position: absolute;
  left: 23%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 55%;
  height: 55%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/images/icons/arrowline-right-white.svg);
}

@media (max-width: 1280.98px) {
  .btn-next {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 1199.98px) {
  .btn-next {
    width: 37.5px;
    height: 37.5px;
  }
}
@media (max-width: 1023.98px) {
  .btn-next {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 990.98px) {
  .btn-next {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 768.98px) {
  .btn-next {
    width: 37px;
    height: 37px;
  }
}
.btn-next--white {
  background-color: var(--white);
}

@media (max-width: 768.98px) {
  .btn-next--white {
    width: 36px;
    height: 36px;
  }
}
.btn-next--white::after {
  background-image: url(/images/icons/arrowline-right-black.svg);
}

.btn-next--animated.is-animating {
  background-color: var(--primary-color);
  -webkit-animation: continuousMoveRight 1.5s ease-out infinite;
  animation: continuousMoveRight 1.5s ease-out infinite;
}

.btn-next--animated.is-animating::after {
  -webkit-animation: continuousIconMoveRight 1.5s ease-out infinite;
  animation: continuousIconMoveRight 1.5s ease-out infinite;
}

.btn-next--animated.is-returning {
  background-color: var(--primary-color);
  -webkit-animation: returnToStart 0.8s ease-out forwards;
  animation: returnToStart 0.8s ease-out forwards;
}

.btn-next--animated.is-returning::after {
  -webkit-animation: returnIconToStart 0.8s ease-out forwards;
  animation: returnIconToStart 0.8s ease-out forwards;
}

.btn-next--icon-animated.is-animating {
  overflow: hidden;
}

.btn-next--icon-animated.is-animating::after {
  -webkit-animation: continuousOnlyIconMoveRight 1.2s ease-out infinite;
  animation: continuousOnlyIconMoveRight 1.2s ease-out infinite;
}

.btn-next--icon-animated.is-returning {
  overflow: hidden;
}

.btn-next--icon-animated.is-returning::after {
  -webkit-animation: returnIconToStart 0.8s ease-out forwards;
  animation: returnIconToStart 0.8s ease-out forwards;
}

@-webkit-keyframes continuousMoveRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}

@keyframes continuousMoveRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
}
@-webkit-keyframes continuousIconMoveRight {
  0% {
    left: 12px;
  }
  30% {
    left: 12px;
  }
  70% {
    left: 23px;
  }
}
@keyframes continuousIconMoveRight {
  0% {
    left: 12px;
  }
  30% {
    left: 12px;
  }
  70% {
    left: 23px;
  }
}
@-webkit-keyframes continuousOnlyIconMoveRight {
  0% {
    left: 12px;
  }
  30% {
    left: 12px;
  }
  100% {
    left: 70px;
  }
}
@keyframes continuousOnlyIconMoveRight {
  0% {
    left: 12px;
  }
  30% {
    left: 12px;
  }
  100% {
    left: 70px;
  }
}
@-webkit-keyframes returnToStart {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes returnToStart {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes returnIconToStart {
  0% {
    left: 70px;
  }
  100% {
    left: 12px;
  }
}
@keyframes returnIconToStart {
  0% {
    left: 70px;
  }
  100% {
    left: 12px;
  }
}
.footer {
  padding: 30px 55px;
  line-height: 100%;
  min-height: 357px;
}

@media (max-width: 1199.98px) {
  .footer {
    padding: 30px 65px;
  }
}
@media (max-width: 1023.98px) {
  .footer {
    padding: 30px 10px;
  }
}
@media (max-width: 768.98px) {
  .footer {
    padding: 30px;
  }
}
@media (max-width: 590.98px) {
  .footer {
    padding: 30px 10px;
  }
}
.footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 768.98px) {
  .footer-main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 590.98px) {
  .footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 36px;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
  }
}
.footer-nav-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin: auto 0;
}

@media (max-width: 768.98px) {
  .footer-nav-sections {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 80%;
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 590.98px) {
  .footer-nav-sections {
    max-width: 100%;
    gap: 20px;
  }
}
.footer-nav--column, .footer-services--column {
  font-size: 12px;
}

.footer-nav--column {
  font-weight: 500;
}

.footer-services--column {
  font-weight: 300;
}

.footer-nav__list, .footer-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav__list li, .footer-services__list li {
  margin-bottom: 8px;
}

.footer-nav__list a, .footer-services__list a {
  text-decoration: none;
  -webkit-transition: -webkit-text-decoration var(--anim150);
  transition: -webkit-text-decoration var(--anim150);
  transition: text-decoration var(--anim150);
  transition: text-decoration var(--anim150), -webkit-text-decoration var(--anim150);
}

.footer-nav__list a:hover, .footer-services__list a:hover {
  text-decoration: underline;
}

.footer-apps {
  color: #2C3E50;
  max-width: 279px;
}

@media (max-width: 1023.98px) {
  .footer-apps {
    max-width: 240px;
  }
}
@media (max-width: 768.98px) {
  .footer-apps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
    gap: 30px;
  }
}
@media (max-width: 590.98px) {
  .footer-apps {
    max-width: 100%;
    margin: 0;
  }
}
.footer-apps__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
}

@media (max-width: 1023.98px) {
  .footer-apps__title {
    font-size: 18px;
  }
}
.footer-apps__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 16px;
}

@media (max-width: 1023.98px) {
  .footer-apps__text {
    font-size: 12px;
  }
}
@media (max-width: 768.98px) {
  .footer-apps__text {
    max-width: 300px;
  }
}
@media (max-width: 590.98px) {
  .footer-apps__text {
    max-width: 200px;
  }
}
.footer-apps__stores {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-apps__qrcode {
  max-width: 124px;
  max-height: 124px;
}

@media (max-width: 1023.98px) {
  .footer-apps__qrcode {
    max-width: 100px;
    max-height: 100px;
  }
}
@media (max-width: 768.98px) {
  .footer-apps__qrcode {
    display: none;
  }
}
.footer-apps__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: 11.5px;
}

@media (max-width: 1023.98px) {
  .footer-apps__links {
    gap: 6px;
  }
}
.footer-apps__link img {
  max-width: 124px;
  width: 100%;
}

@media (max-width: 1023.98px) {
  .footer-apps__link img {
    max-width: 100px;
  }
}
.footer-contacts {
  max-width: 362px;
}

@media (max-width: 768.98px) {
  .footer-contacts {
    margin: 0 auto;
  }
}
.footer-contacts__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 10px;
  margin-bottom: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-contacts__header .icon {
  width: 27px;
  height: 27px;
  color: currentColor;
}

.footer-contacts__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
}

.footer-contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

@media (max-width: 1023.98px) {
  .footer-contacts__info {
    margin-bottom: 30px;
    gap: 16px;
    max-width: 267px;
  }
}
@media (max-width: 768.98px) {
  .footer-contacts__info {
    gap: 8px;
    margin-bottom: 15px;
  }
}
.footer-contacts__text {
  font-weight: 300;
  font-size: 10px;
}

.footer-contacts__phone {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 20px;
  display: block;
}

@media (max-width: 1199.98px) {
  .footer-contacts__phone {
    margin-bottom: 16px;
  }
}
@media (max-width: 768.98px) {
  .footer-contacts__phone {
    margin-bottom: 8px;
  }
}
.footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 34px;
}

@media (max-width: 1023.98px) {
  .footer-legal {
    gap: 30px;
  }
}
@media (max-width: 768.98px) {
  .footer-legal {
    gap: 36px;
  }
}
.footer-legal__main {
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 34px;
  margin: 0 auto;
}

@media (max-width: 768.98px) {
  .footer-legal__main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
  }
}
@media (max-width: 590.98px) {
  .footer-legal__main {
    margin: 0;
  }
}
.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

@media (max-width: 768.98px) {
  .footer-social {
    gap: 0;
    margin: 0 auto;
  }
}
.footer-social__link img {
  width: 45px;
  margin: 10px;
}

@media (max-width: 768.98px) {
  .footer-social__link img {
    width: 40px;
  }
}
.footer-documents, .footer-providers__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.footer-documents a {
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration var(--anim150);
  transition: -webkit-text-decoration var(--anim150);
  transition: text-decoration var(--anim150);
  transition: text-decoration var(--anim150), -webkit-text-decoration var(--anim150);
}

.footer-documents a:hover {
  text-decoration: none;
}

.footer-providers__title {
  margin-bottom: 8px;
}

.footer-providers__list {
  font-family: var(--second-family);
}

.footer-providers__list li:not(:last-child) {
  margin-bottom: 6.6px;
}

.header {
  background: var(--white);
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 10px;
  height: 39px;
  padding: 0 10px;
}

@media (max-width: 1023.98px) {
  .header__top {
    display: none;
  }
}
.header-audience__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 300;
  gap: 28px;
  line-height: 130%;
}

.header-audience__link:hover {
  text-decoration: underline;
}

.header-utils {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
}

.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media (max-width: 1023.98px) {
  .header__main {
    margin-top: 10px;
  }
}
@media (max-width: 768.98px) {
  .header__main {
    gap: 8px;
  }
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 768.98px) {
  .header-nav {
    display: none;
  }
}
.header-nav__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-left: 24px;
}

@media (max-width: 1199.98px) {
  .header-nav__group {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2px;
    margin-right: 24px;
    margin-left: 24px;
    width: 100%;
  }
}
@media (max-width: 1023.98px) {
  .header-nav__group {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    gap: 2px;
    font-size: 12px;
    margin-left: 12px;
    margin-right: 12px;
  }
}
.header-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-nav__item--dropdown {
  --dropdown-gap: 28px;
  padding-bottom: var(--dropdown-gap);
  margin-bottom: calc(var(--dropdown-gap) * -1);
}

.header-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  padding-top: var(--dropdown-gap);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
  -webkit-transition: opacity var(--anim300), visibility 0s linear 320ms, -webkit-transform var(--anim300);
  transition: opacity var(--anim300), visibility 0s linear 320ms, -webkit-transform var(--anim300);
  transition: opacity var(--anim300), transform var(--anim300), visibility 0s linear 320ms;
  transition: opacity var(--anim300), transform var(--anim300), visibility 0s linear 320ms, -webkit-transform var(--anim300);
  will-change: opacity, transform;
}

@media (max-width: 1023.98px) {
  .header-nav-dropdown {
    left: -24px;
    right: -24px;
  }
}
@media (max-width: 990.98px) {
  .header-nav-dropdown {
    left: 0;
    right: 0;
  }
}
.header-nav-dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--dropdown-gap);
  background: transparent;
  pointer-events: auto;
}

.header-nav-dropdown__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  background: var(--white);
  border-radius: var(--br-xl);
  -webkit-box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  opacity: 0;
  -webkit-transform: translateY(6px) scale(0.985);
  -ms-transform: translateY(6px) scale(0.985);
  transform: translateY(6px) scale(0.985);
  -webkit-transition: opacity 320ms ease-in, -webkit-transform 320ms ease-in;
  transition: opacity 320ms ease-in, -webkit-transform 320ms ease-in;
  transition: opacity 320ms ease-in, transform 320ms ease-in;
  transition: opacity 320ms ease-in, transform 320ms ease-in, -webkit-transform 320ms ease-in;
  max-width: 973px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1023.98px) {
  .header-nav-dropdown__inner {
    gap: 24px;
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768.98px) {
  .header-nav-dropdown__inner {
    margin: 0;
  }
}
.header-nav-dropdown__cards {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 392px;
  flex: 0 0 392px;
  background: var(--secondary-color);
  border-radius: var(--br-xl);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 30px;
}

@media (max-width: 768.98px) {
  .header-nav-dropdown__cards {
    background: transparent;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 30px 49px;
  }
}
@media (max-width: 375.98px) {
  .header-nav-dropdown__cards {
    padding: 20px 14px;
  }
}
.header-nav-dropdown__links {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  padding: 36px 60px;
  min-width: 320px;
}

.header-nav-dropdown__links--blank {
  gap: 0;
  padding: 0;
}

.header-nav-dropdown__link {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: opacity var(--anim150), -webkit-text-decoration var(--anim150);
  transition: opacity var(--anim150), -webkit-text-decoration var(--anim150);
  transition: text-decoration var(--anim150), opacity var(--anim150);
  transition: text-decoration var(--anim150), opacity var(--anim150), -webkit-text-decoration var(--anim150);
}

.header-nav-dropdown__link:hover {
  text-decoration: underline;
}

.header-nav-card {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 18px 18px;
  min-height: 160px;
  width: 100%;
  min-width: 160px;
  border-radius: var(--br-md);
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: -webkit-filter var(--anim150);
  transition: -webkit-filter var(--anim150);
  transition: filter var(--anim150);
  transition: filter var(--anim150), -webkit-filter var(--anim150);
}

@media (max-width: 990.98px) {
  .header-nav-card {
    padding: 10px 16px 10px 18px;
  }
}
@media (max-width: 768.98px) {
  .header-nav-card {
    padding: 11.5px 16px 11.5px 18px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    min-height: 80px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .header-nav-card .header-nav-card__title--center {
    margin: 0 auto;
  }
}
.header-nav-card:hover {
  -webkit-filter: brightness(1.05);
  filter: brightness(1.05);
}

.header-nav-card__title {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 990.98px) {
  .header-nav-card__title {
    font-size: 14px;
  }
}
@media (max-width: 768.98px) {
  .header-nav-card__title {
    line-height: 130%;
  }
}
.header-nav-card__img {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 990.98px) {
  .header-nav-card__img {
    display: none;
  }
}
.header-nav-card__img--lte {
  width: 33px;
  height: 44px;
}

.header-nav-card__img--mobile {
  width: 33px;
  height: 33px;
}

.header-nav-card__img--multi {
  width: 33px;
  height: 33px;
}

.header-nav-card__img--smart-devices {
  width: 40px;
  height: 40px;
}

.header-nav-card__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-nav-card__arrow::after {
  content: "";
  width: 19px;
  height: 19px;
  background-image: url(/images/icons/arrowline-right-primary.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header-nav-dropdown__cards .header-nav-card:nth-child(1) {
  background: linear-gradient(315.88deg, var(--secondary-color) -113.16%, var(--primary-color) 46.15%), linear-gradient(315.97deg, var(--secondary-color) -198.53%, var(--primary-color) 46.15%);
}

.header-nav-dropdown__cards .header-nav-card:nth-child(2) {
  background: linear-gradient(45.97deg, var(--secondary-color) -223.59%, var(--primary-color) 44.34%);
}

.header-nav-dropdown__cards .header-nav-card:nth-child(3) {
  background: linear-gradient(225.97deg, var(--secondary-color) -203.95%, var(--primary-color) 58.22%);
}

.header-nav-dropdown__cards .header-nav-card:nth-child(4) {
  background: linear-gradient(135.97deg, var(--secondary-color) -194.87%, var(--primary-color) 59.93%);
}

.header-nav-dropdown__cards--three .header-nav-card:last-child {
  background: linear-gradient(221.18deg, var(--secondary-color) -235.5%, var(--primary-color) 42.88%);
  grid-column: 1/-1;
}

.header-nav__item--dropdown:hover .header-nav-dropdown, .header-nav__item--dropdown:focus-within .header-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 220ms ease-out, visibility 0s, -webkit-transform 220ms ease-out;
  transition: opacity 220ms ease-out, visibility 0s, -webkit-transform 220ms ease-out;
  transition: opacity 220ms ease-out, transform 220ms ease-out, visibility 0s;
  transition: opacity 220ms ease-out, transform 220ms ease-out, visibility 0s, -webkit-transform 220ms ease-out;
}

.header-nav-dropdown:hover, .header-nav-dropdown:focus-within {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 220ms ease-out, visibility 0s, -webkit-transform 220ms ease-out;
  transition: opacity 220ms ease-out, visibility 0s, -webkit-transform 220ms ease-out;
  transition: opacity 220ms ease-out, transform 220ms ease-out, visibility 0s;
  transition: opacity 220ms ease-out, transform 220ms ease-out, visibility 0s, -webkit-transform 220ms ease-out;
}

.header-nav__item--dropdown:hover .header-nav-dropdown__inner, .header-nav__item--dropdown:focus-within .header-nav-dropdown__inner {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.header-nav-dropdown:hover .header-nav-dropdown__inner, .header-nav-dropdown:focus-within .header-nav-dropdown__inner {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .header-nav-dropdown, .header-nav-dropdown__inner {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}
.header-logo__img {
  min-width: 172px;
  margin-left: 8px;
}

@media (max-width: 1199.98px) {
  .header-logo__img {
    min-width: 100px;
  }
}
@media (max-width: 990.98px) {
  .header-logo__img {
    min-width: auto;
    margin-left: 0;
  }
}
@media (max-width: 768.98px) {
  .header-logo__img {
    min-width: 118px;
  }
}
@media (max-width: 590.98px) {
  .header-logo__img {
    min-width: 118px;
  }
}
.header-login-btn {
  height: 41px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1023.98px) {
  .header-login-btn {
    height: 40px;
  }
}
@media (max-width: 990.98px) {
  .header-login-btn {
    min-width: 38px;
    height: 38px;
    padding: 0;
  }
  .header-login-btn .btn__text {
    display: none;
  }
  .header-login-btn .btn__icon {
    margin: auto;
  }
}
@media (max-width: 768.98px) {
  .header-login-btn {
    padding: 0;
    height: 38px;
    width: 38px;
  }
  .header-login-btn .btn__text {
    display: none;
  }
}
@media (max-width: 430.98px) {
  .header-login-btn {
    margin-left: auto;
  }
}
.header-login-btn .btn__icon {
  width: 12px;
  min-width: 12px;
  height: 14px;
  background-image: url(/images/icons/person-login-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header-login-btn:hover .btn__icon {
  background-image: url(/images/icons/person-login-primary.svg);
}

.header-burger {
  display: none;
}

@media (max-width: 768.98px) {
  .header-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    background: none;
    padding: 3px;
  }
}
@media (max-width: 430.98px) {
  .header-burger {
    margin-left: 8px;
  }
}
.header-burger .btn__icon {
  width: 34px;
  height: 34px;
  color: var(--primary-color);
}

.header-phone {
  font-weight: 500;
  text-decoration: underline;
}

.header-phone:hover {
  text-decoration: none;
}

.header__pay--mobile {
  display: none;
}

@media (max-width: 768.98px) {
  .header__pay--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    font-weight: 500;
    margin-left: auto;
    margin-right: 6px;
  }
}
@media (max-width: 590.98px) {
  .header__pay--mobile {
    margin-left: 6px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 200px;
  }
}
@media (max-width: 430.98px) {
  .header__pay--mobile {
    display: none;
  }
}
.header__search-btn {
  margin-right: 12px;
}

@media (max-width: 768.98px) {
  .header__search-btn {
    display: none;
  }
}
.header__search-btn::after {
  content: "";
  background-image: url(/images/icons/search-primary.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 14px;
  height: 14px;
}

.header-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity var(--anim300), visibility 0s linear 320ms;
  transition: opacity var(--anim300), visibility 0s linear 320ms;
  --mobile-menu-overlay-ms: 300ms;
  --mobile-menu-panel-ms: 420ms;
}

@media (max-width: 768.98px) {
  .header-mobile-menu {
    display: block;
  }
}
@media (min-width: 769px) {
  .header-mobile-menu {
    display: none;
  }
}
.header-mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: opacity var(--anim300), visibility 0s;
  transition: opacity var(--anim300), visibility 0s;
}

.header-mobile-menu__panel {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 30px;
  opacity: 0;
  -webkit-transform: translate3d(0, 14px, 0);
  transform: translate3d(0, 14px, 0);
  -webkit-transition: opacity 180ms ease-out, -webkit-transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: opacity 180ms ease-out, -webkit-transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease-out;
  transition: transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease-out, -webkit-transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.header-mobile-menu.open .header-mobile-menu__panel {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: opacity 220ms ease-out, -webkit-transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: opacity 220ms ease-out, -webkit-transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.9, 0.2, 1), opacity 220ms ease-out;
  transition: transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.9, 0.2, 1), opacity 220ms ease-out, -webkit-transform var(--mobile-menu-panel-ms) cubic-bezier(0.2, 0.9, 0.2, 1);
}

.header-mobile-menu__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--white);
  border-bottom-left-radius: var(--br-xl);
  border-bottom-right-radius: var(--br-xl);
  padding: 20px;
}

@media (max-width: 430.98px) {
  .header-mobile-menu__top {
    padding: 11px 20px 14px 20px;
  }
}
.header-mobile-menu__top-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 350px) {
  .header-mobile-menu .header-audience {
    display: none;
  }
}
.header-mobile-menu .header-audience__list {
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-mobile-menu .header-audience__link {
  height: 28px;
  padding: 6px;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  color: var(--primary-color);
  line-height: 1;
  border: 1px solid transparent;
}

.header-mobile-menu .header-audience__link.is-active {
  border-color: var(--primary-color);
  border-radius: var(--br-md);
}

.header-mobile-menu .header-login-btn--mobile {
  margin-left: auto;
  border-radius: var(--br-xl);
  padding: 0 24px;
  font-size: 14px;
  font-weight: 300;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.header-mobile-menu .header-login-btn--mobile .btn__text {
  display: block;
}

.header-mobile-menu .header-login-btn--mobile .btn__icon {
  display: none;
}

@media (max-width: 430.98px) {
  .header-mobile-menu .header-login-btn--mobile {
    width: 35px;
    padding: 0;
  }
  .header-mobile-menu .header-login-btn--mobile .btn__text {
    display: none;
  }
  .header-mobile-menu .header-login-btn--mobile .btn__icon {
    display: block;
  }
}
@media (max-width: 350px) {
  .header-mobile-menu .header-login-btn--mobile {
    padding: 0 24px;
    width: 100%;
  }
  .header-mobile-menu .header-login-btn--mobile .btn__text {
    display: block;
  }
  .header-mobile-menu .header-login-btn--mobile .btn__icon {
    display: none;
  }
}
.header-mobile-menu__search {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 36px 34px;
  grid-template-columns: 1fr 36px 34px;
  gap: 8px;
  width: 100%;
}

.header-mobile-menu__search-input {
  height: 35px;
  border-radius: var(--br-xl);
  background: var(--secondary-color);
  border: 0;
  padding: 0 18px;
  font-size: 14px;
  color: var(--primary-color);
}

.header-mobile-menu__search-input:focus {
  outline: none;
  background: #e9ebee;
}

.header-mobile-menu__search-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-mobile-menu__search-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(/images/icons/search-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header-mobile-menu__search-btn:hover::after {
  background-image: url(/images/icons/search-primary.svg);
}

.header-mobile-menu__close {
  width: 34px;
  height: 34px;
  border: none;
  background-image: url(/images/icons/burger-close-primary.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  cursor: pointer;
  padding: 0;
  background-color: var(--white);
  margin: auto 0;
}

.header-mobile-menu__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  margin: 12px 0;
  color: var(--primary-color);
}

.header-mobile-menu .header-nav-dropdown__inner--mobile {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  max-width: 100%;
}

.header-mobile-menu .header-nav-dropdown__links {
  padding: 24px 49px;
  min-width: 0;
  gap: 24px;
}

@media (max-width: 430.98px) {
  .header-mobile-menu .header-nav-dropdown__links {
    padding: 24px 20px;
  }
}
.header-mobile-menu .header-nav-dropdown__link {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.header-mobile-menu__section {
  background-color: var(--white);
  border-radius: var(--br-xl);
}

.header-mobile-menu__section--company .header-nav-dropdown__cards--three .header-nav-card:first-child {
  grid-column: 1/-1;
}

.header-mobile-menu__section--company .header-nav-dropdown__cards--three .header-nav-card:last-child {
  grid-column: auto;
}

@media (prefers-reduced-motion: reduce) {
  .header-mobile-menu,
  .header-mobile-menu__panel {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}
.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-12 {
  margin-right: 12px;
}

.banner--home .banner {
  position: relative;
}

.banner--home .banner-swiper {
  margin-bottom: 50px;
}

.banner--home .banner-swiper .swiper-wrapper {
  padding-bottom: 41px;
}

@media (max-width: 1023.98px) {
  .banner--home .banner-swiper .swiper-wrapper {
    padding-bottom: 35px;
  }
}
@media (max-width: 768.98px) {
  .banner--home .banner-swiper .swiper-wrapper {
    padding-bottom: 0;
    padding-top: 25px;
  }
}
.banner--home .banner-slide {
  position: relative;
  margin: 75px 47px;
}

@media (max-width: 1023.98px) {
  .banner--home .banner-slide {
    margin: 0;
  }
}
.banner--home .banner-content {
  position: absolute;
  bottom: 62px;
  left: 53px;
  width: 100%;
  height: 100%;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  color: var(--white);
  z-index: 1;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

@media (max-width: 1023.98px) {
  .banner--home .banner-content {
    bottom: 41px;
    left: 40px;
  }
}
@media (max-width: 990.98px) {
  .banner--home .banner-content {
    bottom: 30px;
    left: 30px;
  }
}
@media (max-width: 590.98px) {
  .banner--home .banner-content {
    font-size: 18px;
    bottom: 101px;
    left: 16px;
  }
}
.banner--home .banner-content__list {
  font-size: 20px;
  line-height: 108%;
  font-weight: 300;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: left;
}

@media (max-width: 1023.98px) {
  .banner--home .banner-content__list {
    font-size: 16px;
  }
}
@media (max-width: 430.98px) {
  .banner--home .banner-content__list {
    font-size: 14px;
    line-height: 120%;
  }
}
.banner--home .banner-content__item {
  margin-bottom: 18px;
}

@media (max-width: 1199.98px) {
  .banner--home .banner-content__item {
    margin-bottom: 6px;
  }
}
@media (max-width: 590.98px) {
  .banner--home .banner-content__item {
    max-width: 60%;
  }
}
@media (max-width: 430.98px) {
  .banner--home .banner-content__item {
    max-width: 100%;
  }
}
.banner--home .banner-content__item:last-child {
  margin-bottom: 0;
}

@media (max-width: 590.98px) {
  .banner--home .banner-content__item:last-child {
    max-width: 300px;
  }
}
@media (max-width: 430.98px) {
  .banner--home .banner-content__item:last-child {
    max-width: 150px;
  }
}
.banner--home .banner-content__item::marker {
  margin-right: 10px;
}

.banner--home .banner-media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.banner--home .banner-image {
  width: 100%;
}

.banner--home .banner-action {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: 29px;
}

@media (max-width: 590.98px) {
  .banner--home .banner-action--desktop {
    display: none;
  }
}
.banner--home .banner-action--mobile {
  display: none;
}

@media (max-width: 590.98px) {
  .banner--home .banner-action--mobile {
    margin-top: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 100%;
    width: 100%;
  }
}
.banner--home .banner-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 26.4%;
  height: 52.5%;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 60px;
  font-weight: 100;
  line-height: 120%;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--br-lg);
}

@media (max-width: 1199.98px) {
  .banner--home .banner-caption {
    font-size: 50px;
  }
}
@media (max-width: 1023.98px) {
  .banner--home .banner-caption {
    font-size: 46px;
    width: 27%;
    height: 53%;
    border-radius: var(--br-md);
  }
}
@media (max-width: 990.98px) {
  .banner--home .banner-caption {
    font-size: 38px;
  }
}
@media (max-width: 768.98px) {
  .banner--home .banner-caption {
    font-size: 30px;
    height: 39%;
  }
}
@media (max-width: 590.98px) {
  .banner--home .banner-caption {
    font-size: 18px;
    bottom: 59px;
    height: 32%;
  }
}
@media (max-width: 430.98px) {
  .banner--home .banner-caption {
    border-radius: var(--br-sm);
  }
}
.promo__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

@media (max-width: 1280.98px) {
  .promo__container {
    gap: 20px;
  }
}
@media (max-width: 1023.98px) {
  .promo__container {
    gap: 15px;
  }
}
@media (max-width: 990.98px) {
  .promo__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    max-width: 768px;
    margin: auto;
  }
}
@media (max-width: 768.98px) {
  .promo__container {
    max-width: 512px;
    gap: 12px;
  }
}
@media (max-width: 590.98px) {
  .promo__container {
    max-width: 430px;
  }
}
.promo__block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 435px;
  position: relative;
}

@media (max-width: 1280.98px) {
  .promo__block {
    height: 370px;
  }
}
@media (max-width: 1199.98px) {
  .promo__block {
    height: 342px;
  }
}
@media (max-width: 1023.98px) {
  .promo__block {
    height: 297px;
  }
}
@media (max-width: 590.98px) {
  .promo__block {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
.promo__block--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  min-width: calc(50% - 11px);
}

@media (max-width: 1280.98px) {
  .promo__block--right {
    min-width: calc(50% - 8px);
    gap: 16px;
  }
}
@media (max-width: 1199.98px) {
  .promo__block--right {
    min-width: 40%;
  }
}
@media (max-width: 990.98px) {
  .promo__block--right {
    min-height: 280px;
  }
}
@media (max-width: 768.98px) {
  .promo__block--right {
    min-height: auto;
    gap: 12px;
  }
}
@media (max-width: 1280.98px) {
  .promo__block--left {
    min-width: calc(50% - 7px);
  }
}
@media (max-width: 1199.98px) {
  .promo__block--left {
    min-width: 56%;
  }
}
@media (max-width: 1023.98px) {
  .promo__block--left {
    min-width: calc(50% - 8px);
  }
}
@media (max-width: 990.98px) {
  .promo__block--left {
    min-height: 280px;
  }
}
@media (max-width: 768.98px) {
  .promo__block--left {
    min-height: auto;
  }
}
.promo-card {
  border-radius: 36px;
}

@media (max-width: 1199.98px) {
  .promo-card {
    border-radius: 25px;
  }
}
@media (max-width: 990.98px) {
  .promo-card {
    border-radius: 36px;
  }
}
@media (max-width: 768.98px) {
  .promo-card {
    border-radius: 23px;
  }
}
.promo-card__text {
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

@media (max-width: 1280.98px) {
  .promo-card__text {
    font-size: 26px;
  }
}
@media (max-width: 990.98px) {
  .promo-card__text {
    font-size: 38px;
  }
}
@media (max-width: 768.98px) {
  .promo-card__text {
    font-size: 25px;
  }
}
@media (max-width: 375.98px) {
  .promo-card__text {
    font-size: 20px;
  }
}
.promo-card--number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(/images/photos/promo-number-background.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 990.98px) {
  .promo-card--number {
    height: 400px;
  }
}
@media (max-width: 768.98px) {
  .promo-card--number {
    height: 330px;
  }
}
@media (max-width: 590.98px) {
  .promo-card--number {
    height: 308px;
  }
}
@media (max-width: 430.98px) {
  .promo-card--number {
    height: 64.5vw;
  }
}
@media (max-width: 375.98px) {
  .promo-card--number {
    height: 240px;
  }
}
.promo-card--number .btn-next {
  position: absolute;
  bottom: 45px;
  right: 26px;
  -webkit-transition: all var(--anim300);
  transition: all var(--anim300);
}

@media (max-width: 768.98px) {
  .promo-card--number .btn-next {
    bottom: 29px;
    right: 17px;
  }
}
.promo-card--number .promo-card__blur-wrapper {
  position: absolute;
  height: 100%;
  left: 1px;
  top: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  border-radius: 28px;
}

.promo-card--number .promo-card__blur {
  position: absolute;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: linear-gradient(115.95deg, rgba(239, 239, 239, 0.25) 10.92%, rgba(255, 255, 255, 0.15) 96.4%);
  border-radius: 28px;
  mask-image: url(/images/photos/promo-number-blur-mask.webp);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/photos/promo-number-blur-mask.webp);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.promo-card--number .promo-card__blur::after {
  content: "";
  position: absolute;
  inset: -1.5px;
  background-image: url(/images/photos/promo-number-border.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  mask-image: url(/images/photos/promo-number-blur-mask.webp);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/photos/promo-number-blur-mask.webp);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.promo-card--number .promo-card__icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding-top: 20px;
  z-index: 1;
  mask-image: url(/images/photos/promo-number-background.webp);
  mask-size: cover;
  mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(/images/photos/promo-number-background.webp);
  -webkit-mask-size: cover;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.promo-card--number .promo-card__icon-ellipse {
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  -webkit-transition: all var(--anim300);
  transition: all var(--anim300);
}

.promo-card--number .promo-card__icon-ellipse--top {
  top: -31px;
  left: 141px;
  width: 151px;
  height: 151px;
}

@media (max-width: 1199.98px) {
  .promo-card--number .promo-card__icon-ellipse--top {
    width: 103px;
    height: 103px;
    left: 22%;
  }
}
@media (max-width: 768.98px) {
  .promo-card--number .promo-card__icon-ellipse--top {
    width: 97px;
    height: 97px;
  }
}
.promo-card--number .promo-card__icon-ellipse--right {
  width: 106px;
  height: 106px;
  -webkit-transform: rotate(39.58deg);
  -ms-transform: rotate(39.58deg);
  transform: rotate(39.58deg);
  top: 63%;
  left: 58.5%;
}

@media (max-width: 1199.98px) {
  .promo-card--number .promo-card__icon-ellipse--right {
    width: 72px;
    height: 72px;
  }
}
@media (max-width: 768.98px) {
  .promo-card--number .promo-card__icon-ellipse--right {
    width: 68px;
    height: 68px;
  }
}
.promo-card--number .promo-card__icon-ellipse--left {
  width: 300px;
  height: 300px;
  -webkit-transform: rotate(-40.38deg);
  -ms-transform: rotate(-40.38deg);
  transform: rotate(-40.38deg);
  top: 37%;
  left: -13%;
}

@media (max-width: 1199.98px) {
  .promo-card--number .promo-card__icon-ellipse--left {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 768.98px) {
  .promo-card--number .promo-card__icon-ellipse--left {
    width: 192px;
    height: 192px;
  }
}
.promo-card--number .promo-card__text {
  position: absolute;
  bottom: 66px;
  left: 66px;
  z-index: 2;
}

@media (max-width: 1280.98px) {
  .promo-card--number .promo-card__text {
    bottom: 45px;
    left: 45px;
  }
}
@media (max-width: 990.98px) {
  .promo-card--number .promo-card__text {
    left: 75px;
  }
}
@media (max-width: 768.98px) {
  .promo-card--number .promo-card__text {
    left: 42.4px;
    bottom: 44px;
  }
}
.promo-card--number:hover .promo-card__icon-ellipse--top {
  top: -29px;
  left: 172px;
}

@media (max-width: 1199.98px) {
  .promo-card--number:hover .promo-card__icon-ellipse--top {
    left: 26%;
  }
}
.promo-card--number:hover .promo-card__icon-ellipse--right {
  top: 74%;
  left: 58.5%;
}

.promo-card--number:hover .promo-card__icon-ellipse--left {
  top: 28%;
  left: -23%;
  -webkit-transform: rotate(-40.42deg);
  -ms-transform: rotate(-40.42deg);
  transform: rotate(-40.42deg);
}

.promo-card--number:hover .btn-next {
  margin-bottom: 10px;
}

.promo-card--transfer {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(254.92deg, var(--secondary-color) -154.45%, var(--primary-color) 72.21%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 39.5%;
  height: 55%;
  text-transform: uppercase;
  color: var(--white);
  z-index: 1;
}

.promo-card--transfer .btn-next {
  position: absolute;
  right: 26px;
  bottom: 26px;
  -webkit-transition: all var(--anim300);
  transition: all var(--anim300);
}

@media (max-width: 768.98px) {
  .promo-card--transfer .btn-next {
    bottom: 17px;
    right: 17px;
  }
}
.promo-card--transfer .promo-card__text {
  position: absolute;
  top: 26px;
  left: 26px;
  font-size: 22px;
  -webkit-transition: all var(--anim300);
  transition: all var(--anim300);
}

@media (max-width: 1280.98px) {
  .promo-card--transfer .promo-card__text {
    font-size: 15px;
  }
}
@media (max-width: 990.98px) {
  .promo-card--transfer .promo-card__text {
    font-size: 20px;
  }
}
@media (max-width: 768.98px) {
  .promo-card--transfer .promo-card__text {
    font-size: 14px;
  }
}
@media (max-width: 375.98px) {
  .promo-card--transfer .promo-card__text {
    font-size: 13px;
    top: 20px;
    left: 20px;
  }
}
.promo-card--transfer:hover .promo-card__text {
  top: 78px;
}

@media (max-width: 1199.98px) {
  .promo-card--transfer:hover .promo-card__text {
    top: 66px;
  }
}
@media (max-width: 590.98px) {
  .promo-card--transfer:hover .promo-card__text {
    top: 26px;
  }
}
.promo-card--transfer:hover .btn-next {
  bottom: calc(50% - 27.5px);
}

@media (max-width: 590.98px) {
  .promo-card--transfer:hover .btn-next {
    bottom: 17px;
  }
}
.promo-card--app {
  background-image: url(/images/photos/promo-app-background-desktop.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 241px;
  padding: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1280.98px) {
  .promo-card--app {
    height: 48.5%;
    padding: 30px;
  }
}
@media (max-width: 1270.98px) {
  .promo-card--app {
    height: 49.5%;
  }
}
@media (max-width: 1240.98px) {
  .promo-card--app {
    height: 51.5%;
    padding: 25px;
  }
}
@media (max-width: 1199.98px) {
  .promo-card--app {
    height: 55%;
  }
}
@media (max-width: 1023.98px) {
  .promo-card--app {
    background-image: url(/images/photos/promo-app-background-tablet.webp);
  }
}
@media (max-width: 990.98px) {
  .promo-card--app {
    height: 300px;
    padding: 37px;
  }
}
@media (max-width: 590.98px) {
  .promo-card--app {
    height: 152px;
    padding: 20px;
    background-image: url(/images/photos/promo-app-background-mobile.webp);
  }
}
.promo-card--app .promo-card__link {
  margin-top: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.promo-card--esim {
  background-image: url(/images/photos/promo-esim-background.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-left: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 1023.98px) {
  .promo-card--esim {
    padding-left: 25px;
  }
}
@media (max-width: 990.98px) {
  .promo-card--esim {
    min-height: 219px;
    padding-left: 37px;
  }
}
@media (max-width: 768.98px) {
  .promo-card--esim {
    min-height: 146px;
  }
}
@media (max-width: 590.98px) {
  .promo-card--esim {
    min-height: 22.8vw;
    padding-left: 20px;
  }
}
@media (max-width: 430.98px) {
  .promo-card--esim {
    min-height: 25.8vw;
  }
}
@media (max-width: 375.98px) {
  .promo-card--esim {
    min-height: 25.4vw;
  }
}
.promo-card--esim .promo-card__text {
  color: var(--white);
}

.promo-card--esim .promo-card__request {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 39.5%;
  border-width: 2px;
}

@media (max-width: 1199.98px) {
  .promo-card--esim .promo-card__request {
    font-size: 12px;
    width: 38%;
    height: 37px;
  }
}
@media (max-width: 1023.98px) {
  .promo-card--esim .promo-card__request {
    font-size: 12.2px;
    height: 33px;
    width: 39.5%;
  }
}
@media (max-width: 990.98px) {
  .promo-card--esim .promo-card__request {
    font-size: 24px;
    height: 62px;
  }
}
@media (max-width: 768.98px) {
  .promo-card--esim .promo-card__request {
    font-size: 14px;
    height: 40px;
  }
}
@media (max-width: 590.98px) {
  .promo-card--esim .promo-card__request {
    font-size: 12px;
    height: 31px;
  }
}
@media (max-width: 430.98px) {
  .promo-card--esim .promo-card__request {
    font-size: 10px;
  }
}
@media (max-width: 375.98px) {
  .promo-card--esim .promo-card__request {
    height: 27px;
  }
}
.home__news-card {
  background-color: var(--secondary-color);
  padding: 16px 16px 16px 80px;
  border-radius: 36px;
  position: relative;
  min-height: 95px;
}

.home__news-card:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.home__news-card-icon {
  position: absolute;
  left: -10px;
  top: 10px;
  height: 76px;
  width: 77px;
  color: var(--white);
  z-index: -1;
}

.home__news-card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4px;
}

.home__news-card-title {
  font-size: 18px;
  font-weight: 500;
  max-width: calc(100% - 16px);
}

.home__news-card-description {
  font-size: 12px;
  font-weight: 300;
  line-height: 130%;
}

.home__articles-card {
  position: relative;
  min-height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 768.98px) {
  .home__articles-card {
    max-width: 400px;
  }
}
.home__articles-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home__articles-card-title {
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 20px;
  background-color: var(--white);
  margin: 20px;
}

.home__articles-card-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  margin: auto 0 0 auto;
  padding: 13px;
  width: 35%;
}

@media (max-width: 768.98px) {
  .home__articles-card-action {
    padding: 25px 0;
  }
}
.home__articles-card-action .arrow-right {
  width: 7px;
  height: 14px;
}

.home__activate-sim-container {
  position: relative;
  background: none;
}

.home__activate-sim-content {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (max-width: 768.98px) {
  .home__activate-sim-content {
    padding: 0 20px;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 590.98px) {
  .home__activate-sim-title {
    max-width: 100%;
  }
}
.home__activate-sim-action {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 38%;
  min-height: 67px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1199.98px) {
  .home__activate-sim-action {
    min-height: 58px;
  }
}
@media (max-width: 1023.98px) {
  .home__activate-sim-action {
    font-size: 16px;
    min-height: 48px;
    width: 39%;
  }
}
@media (max-width: 768.98px) {
  .home__activate-sim-action {
    margin-top: 8px;
    position: inherit;
    width: auto;
    font-size: 16px;
  }
}
@media (max-width: 590.98px) {
  .home__activate-sim-action {
    width: 100%;
  }
}
.tariffs_home {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.tariff-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 415px;
  width: 292px;
  position: relative;
  padding: 22px;
  background-image: url(/images/photos/tariff-item-background.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.tariff-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.tariff-item__name {
  border-radius: var(--br-md);
  height: 45px;
  font-size: 24px;
  width: 100%;
  font-weight: 500;
  border: 1px solid currentColor;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tariff-item__name:hover {
  color: black;
  opacity: 0.7;
}

.tariff-item__connect {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 49px;
  font-size: 18px;
  font-weight: 500;
  width: 163px;
  border-width: 2px !important;
}

.tariff-item__features {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.tariff-item__description {
  margin-top: 8px;
  font-weight: 100;
}

.tariff-item__footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.tariff-item__promo {
  font-size: 12px;
  font-weight: 200;
  text-decoration: underline;
}

.tariff-item__promo strong {
  font-weight: 500;
}

.tariff-item__promo:hover {
  text-decoration: none;
}

.tariff-item__price {
  font-weight: 500;
}

.tariff-item__price-value {
  font-size: 24px;
  line-height: 100%;
}

.tariff-item__price-period {
  font-size: 12px;
}

.tariff-item__next-link {
  position: absolute;
  right: 5px;
  top: 148px;
  display: block;
  z-index: 10;
  pointer-events: auto;
}

.tariff-item__next-link .btn-next {
  width: 54px !important;
  height: 54px !important;
}

.tariff-item__next-link .btn-next::after {
  left: 12px;
  width: 30px !important;
  height: 30px !important;
}

.tariff-builder__container {
  position: relative;
}

.tariff-builder__content {
  position: absolute;
  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;
  gap: 45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 97px;
  padding-bottom: 8px;
}

@media (max-width: 1023.98px) {
  .tariff-builder__content {
    right: 8%;
    gap: 31px;
  }
}
@media (max-width: 990.98px) {
  .tariff-builder__content {
    right: 9%;
  }
}
@media (max-width: 768.98px) {
  .tariff-builder__content {
    gap: 12px;
  }
}
@media (max-width: 430.98px) {
  .tariff-builder__content {
    right: 5.5%;
    top: 14%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    min-width: 36%;
  }
}
.tariff-builder__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 110%;
}

@media (max-width: 1199.98px) {
  .tariff-builder__text {
    gap: 20px;
    font-size: 32px;
  }
}
@media (max-width: 1023.98px) {
  .tariff-builder__text {
    gap: 23.3px;
    font-size: 28px;
  }
}
@media (max-width: 768.98px) {
  .tariff-builder__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
@media (max-width: 590.98px) {
  .tariff-builder__text {
    font-size: 25px;
  }
}
.tariff-builder__text-item {
  white-space: nowrap;
}

@media (max-width: 1023.98px) {
  .tariff-builder__btn {
    font-size: 12px !important;
    height: 34px !important;
  }
}
@media (max-width: 590.98px) {
  .tariff-builder__btn {
    font-size: 12px !important;
    height: 37px !important;
    width: 100%;
  }
}
.custom-select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: var(--field-height);
  cursor: pointer;
  outline: none;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0 !important;
  border: none !important;
}

.custom-select.dropdown-active .ts-control:after {
  background-image: url(/images/icons/arrow-top.svg);
}

.custom-select.dropdown-active .ts-dropdown {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.custom-select.focus::after {
  opacity: 1;
}

.custom-select.input-hidden .ts-control input {
  opacity: 0;
  visibility: hidden;
}

.custom-select.full:after {
  opacity: 1;
}

.custom-select .ts-control {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 65px 10px 24px; /* reserve space for suffix block */
  font-size: inherit;
  line-height: 1;
  z-index: 1;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: var(--field-height);
  border: 2px solid currentColor;
  border-right: none;
  border-radius: var(--field-border-radius);
}

.custom-select .ts-control .item {
  white-space: normal;
}

.custom-select .ts-control:after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 46px;
  height: calc(100% + 4px);
  z-index: 0;
  -webkit-transition: background-image var(--anim150);
  transition: background-image var(--anim150);
  background-color: var(--primary-color);
  background-image: url(/images/icons/arrow-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 7px;
  border: 2px solid currentColor;
  border-left: none;
  border-radius: 0 var(--field-border-radius) var(--field-border-radius) 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

.custom-select .ts-control input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: inherit;
  cursor: pointer;
  font-size: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none !important;
  border: none;
  background: none;
}

.custom-select .ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 1px;
  padding: 16px 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: translateY(19px);
  -ms-transform: translateY(19px);
  transform: translateY(19px);
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--grey-2);
  background: #fff;
}

.custom-select .ts-dropdown-content {
  max-height: 282px;
  overflow: hidden auto;
}

.custom-select .ts-dropdown-content::-webkit-scrollbar {
  width: 2px;
}

.custom-select .ts-dropdown-content::-webkit-scrollbar-track {
  background: #fff;
}

.custom-select .ts-dropdown-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  border: none;
}

.custom-select .ts-dropdown .option {
  padding: 0 24px;
  font-size: inherit;
  cursor: pointer;
  line-height: 1.215;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.custom-select .ts-dropdown .option:hover, .custom-select .ts-dropdown .option.selected {
  background: var(--grey-3);
}

.custom-select.ts-hidden-accessible {
  position: absolute !important;
  width: 0;
  height: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -2 !important;
}

@media (max-width: 768.98px) {
  .quicklinks {
    display: none;
  }
}
.quicklinks__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}

.quicklinks__item {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  height: 68px;
  -webkit-transition: -webkit-transform var(--anim300);
  transition: -webkit-transform var(--anim300);
  transition: transform var(--anim300);
  transition: transform var(--anim300), -webkit-transform var(--anim300);
}

@media (max-width: 1023.98px) {
  .quicklinks__item:nth-child(2) {
    -webkit-box-flex: 1.3;
    -ms-flex: 1.3;
    flex: 1.3;
  }
}
.quicklinks__container:hover .quicklinks__item:not(:hover) {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.quicklinks__item:hover {
  border-color: transparent;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.quicklinks__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.payment__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  min-height: 150px;
}

@media (max-width: 768.98px) {
  .payment__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--secondary-color);
    border-radius: var(--br-xl);
    gap: 24px;
    padding: 20px;
  }
}
@media (max-width: 430.98px) {
  .payment__form {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.payment .form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(200px, 1fr) 150px minmax(211px, -webkit-max-content);
  -ms-grid-columns: minmax(200px, 1fr) 150px minmax(211px, max-content);
  grid-template-columns: minmax(200px, 1fr) 150px minmax(211px, -webkit-max-content);
  grid-template-columns: minmax(200px, 1fr) 150px minmax(211px, max-content);
  gap: 24px;
}

@media (max-width: 1199.98px) {
  .payment .form-row {
    -ms-grid-columns: minmax(200px, 1fr) 1fr 1fr;
    grid-template-columns: minmax(200px, 1fr) 1fr 1fr;
  }
}
@media (max-width: 990.98px) {
  .payment .form-row {
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr;
  }
  .payment .form-row > *:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 768.98px) {
  .payment .form-row {
    -ms-grid-columns: 134px 1fr;
    grid-template-columns: 134px 1fr;
    width: 100%;
  }
}
@media (max-width: 430.98px) {
  .payment .form-row {
    -ms-grid-columns: 120px 1fr;
    grid-template-columns: 120px 1fr;
  }
}
@media (max-width: 400px) {
  .payment .form-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.payment__content {
  background-color: var(--secondary-color);
  border-radius: var(--br-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

@media (max-width: 1199.98px) {
  .payment__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 22px 36px;
  }
}
@media (max-width: 990.98px) {
  .payment__content {
    padding: 24px;
  }
}
@media (max-width: 768.98px) {
  .payment__content {
    padding: 0;
  }
}
.payment__title {
  font-size: 18px;
  font-weight: 500;
}

.payment__submit-btn {
  font-size: 18px;
  font-weight: 100;
  padding: 0 36px;
  border-radius: var(--br-xl);
  border-width: 2px;
  min-width: 210px;
  height: auto;
}

@media (max-width: 1023.98px) {
  .payment__submit-btn {
    min-width: 164px;
  }
}
@media (max-width: 768.98px) {
  .payment__submit-btn {
    height: var(--field-height);
    max-width: 80%;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 590.98px) {
  .payment__submit-btn {
    max-width: 100%;
  }
}
.payment .ts-dropdown {
  display: block;
  visibility: visible;
  padding: 0;
  margin-top: 6px;
  border-radius: var(--br-xl);
  border: 2px solid var(--primary-color);
}

.payment .payment-option {
  min-height: var(--field-height);
  border-bottom: 2px solid var(--primary-color);
}

.payment .payment-option:last-child {
  border-bottom: none !important;
}

/* Running line */
.running-line {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 16px;
  margin-top: 16px;
}

@media (max-width: 1023.98px) {
  .running-line {
    padding-bottom: 0;
  }
}
@media (max-width: 1023.98px) {
  .running-line {
    margin-top: 16px;
  }
}
.running-line__swiper {
  width: 100%;
}

.running-line__swiper .swiper-wrapper {
  padding: 0;
}

.running-line__swiper .swiper-button-prev,
.running-line__swiper .swiper-button-next,
.running-line__swiper .swiper-pagination {
  display: none;
}

.running-line__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 100;
  font-size: 18px;
  white-space: nowrap;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 16px;
}

.news-articles__btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: absolute;
}

.news-articles__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 30px;
  border-radius: var(--br-xl);
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

@media (max-width: 1280.98px) {
  .news-articles__content {
    padding: 20px;
  }
}
@media (max-width: 768.98px) {
  .news-articles__content {
    padding: 16px;
    min-height: 160px;
  }
}
.news-articles__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  height: 45px;
  border-radius: var(--br-md);
  background-color: var(--white);
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid transparent;
  -webkit-transition: border-color var(--anim300);
  transition: border-color var(--anim300);
}

.news-articles__title-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

@media (max-width: 1023.98px) {
  .news-articles__title {
    font-size: 16px;
    border-width: 1px;
  }
}
@media (max-width: 768.98px) {
  .news-articles__title {
    font-size: 14px;
  }
}
.news-articles__title:hover {
  border-color: var(--primary-color);
}

.news-articles__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

@media (max-width: 990.98px) {
  .news-articles__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    max-width: 768px;
    margin: 0 auto;
  }
}
@media (max-width: 768.98px) {
  .news-articles__group {
    max-width: 512px;
  }
}
.news-articles__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
  min-height: 362px;
}

@media (max-width: 1280.98px) {
  .news-articles__item {
    min-height: 28vw;
  }
}
@media (max-width: 1023.98px) {
  .news-articles__item {
    min-height: 37vw;
  }
}
@media (max-width: 1000.98px) {
  .news-articles__item {
    min-height: 363px;
  }
}
@media (max-width: 990.98px) {
  .news-articles__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768.98px) {
  .news-articles__item {
    min-height: auto;
  }
}
.news-articles__item--news {
  min-width: calc(50% - 12px);
}

@media (max-width: 1023.98px) {
  .news-articles__item--news {
    min-width: calc(50% - 7px);
  }
}
@media (max-width: 768.98px) {
  .news-articles__item--news {
    min-height: 420px;
  }
}
@media (max-width: 590.98px) {
  .news-articles__item--news {
    min-height: 75vw;
  }
}
@media (max-width: 430.98px) {
  .news-articles__item--news {
    min-height: 320px;
  }
}
.news-articles__item--news .news-articles__content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-image: url(/images/photos/news-background-desktop.webp);
  padding-top: 81px;
  max-width: 100%;
}

@media (max-width: 1023.98px) {
  .news-articles__item--news .news-articles__content {
    background-image: url(/images/photos/news-background-tablet.webp);
  }
}
@media (max-width: 768.98px) {
  .news-articles__item--news .news-articles__content {
    background-image: url(/images/photos/news-background-mobile.webp);
  }
}
@media (max-width: 768.98px) {
  .news-articles__item--news .news-articles__content {
    padding-top: 74px;
  }
}
.news-articles__item--news .news-articles__btn {
  right: 0;
  top: 0;
  height: 41px;
  width: 29%;
}

@media (max-width: 1023.98px) {
  .news-articles__item--news .news-articles__btn {
    width: 39%;
  }
}
@media (max-width: 990.98px) {
  .news-articles__item--news .news-articles__btn {
    right: 30px;
    top: 30px;
  }
}
@media (max-width: 768.98px) {
  .news-articles__item--news .news-articles__btn {
    height: 45px;
    right: 0;
    top: 0;
  }
}
@media (max-width: 590.98px) {
  .news-articles__item--news .news-articles__btn {
    height: 35px;
    width: 36%;
  }
}
.news-articles__item--articles {
  min-width: calc(50% - 12px);
}

@media (max-width: 1023.98px) {
  .news-articles__item--articles {
    min-width: calc(50% - 8px);
  }
}
@media (max-width: 990.98px) {
  .news-articles__item--articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768.98px) {
  .news-articles__item--articles {
    min-height: 451px;
  }
}
@media (max-width: 590.98px) {
  .news-articles__item--articles {
    min-height: 72vw;
  }
}
.news-articles__item--articles .news-articles__content {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-image: url(/images/photos/articles-background-desktop.webp);
}

@media (max-width: 1023.98px) {
  .news-articles__item--articles .news-articles__content {
    background-image: url(/images/photos/articles-background-tablet.webp);
  }
}
@media (max-width: 590.98px) {
  .news-articles__item--articles .news-articles__content {
    background-image: url(/images/photos/articles-background-mobile.webp);
  }
}
.news-articles__item--articles .news-articles__btn {
  left: 0;
  bottom: 0;
  height: 37px;
  width: 25%;
}

@media (max-width: 1023.98px) {
  .news-articles__item--articles .news-articles__btn {
    width: 36%;
  }
}
@media (max-width: 990.98px) {
  .news-articles__item--articles .news-articles__btn {
    left: 30px;
    bottom: 30px;
  }
}
@media (max-width: 768.98px) {
  .news-articles__item--articles .news-articles__btn {
    height: 45px;
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 590.98px) {
  .news-articles__item--articles .news-articles__btn {
    height: 35px;
  }
}
@media (max-width: 430.98px) {
  .news-articles__item--articles .news-articles__btn {
    height: 31px;
  }
}
.form-control,
.form-select {
  min-height: var(--field-height);
  border: 2px solid currentColor;
  width: 100%;
  padding: 0 16px;
  border-radius: var(--field-border-radius);
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--white);
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  background-color: var(--secondary-color);
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-group.has-error .form-control {
  border-color: var(--error-color);
}

.form-group.has-error .form-error {
  display: block;
}

.form-label {
  display: block;
}

.form-error {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.input-with-prefix,
.input-with-suffix {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-prefix,
.input-suffix {
  padding: 0 16px;
  background-color: var(--primary-color);
  color: var(--white);
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  height: var(--field-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.input-prefix {
  border-right: none;
  border-radius: var(--field-border-radius) 0 0 var(--field-border-radius);
}

.input-suffix {
  border-left: none;
  border-radius: 0 var(--field-border-radius) var(--field-border-radius) 0;
}

.input-with-prefix .form-control,
.input-with-suffix .form-control {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 16px;
}

.input-with-prefix .form-control {
  border-radius: 0 var(--field-border-radius) var(--field-border-radius) 0;
  border-left: none;
}

.input-with-suffix .form-control {
  border-radius: var(--field-border-radius) 0 0 var(--field-border-radius);
  border-right: none;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-row .form-group {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.banner--home-dealers .banner {
  position: relative;
}

.banner--home-dealers .banner-swiper {
  margin-bottom: 50px;
}

.banner--home-dealers .banner-swiper .swiper-wrapper {
  padding-bottom: 41px;
}

@media (max-width: 1023.98px) {
  .banner--home-dealers .banner-swiper .swiper-wrapper {
    padding-bottom: 35px;
  }
}
@media (max-width: 768.98px) {
  .banner--home-dealers .banner-swiper .swiper-wrapper {
    padding-bottom: 0;
    padding-top: 25px;
  }
}
.banner--home-dealers .banner-slide {
  position: relative;
  margin: 75px 47px;
}

@media (max-width: 1023.98px) {
  .banner--home-dealers .banner-slide {
    margin: 55px;
  }
}
.banner--home-dealers .banner-content {
  position: absolute;
  bottom: 62px;
  left: 53px;
  width: 100%;
  height: 100%;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  color: var(--white);
  z-index: 1;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

@media (max-width: 1023.98px) {
  .banner--home-dealers .banner-content {
    bottom: 41px;
    left: 40px;
  }
}
@media (max-width: 990.98px) {
  .banner--home-dealers .banner-content {
    bottom: 30px;
    left: 30px;
  }
}
@media (max-width: 590.98px) {
  .banner--home-dealers .banner-content {
    font-size: 18px;
    bottom: 101px;
    left: 16px;
  }
}
.banner--home-dealers .banner-content__list {
  font-size: 20px;
  line-height: 108%;
  font-weight: 300;
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: left;
}

@media (max-width: 1023.98px) {
  .banner--home-dealers .banner-content__list {
    font-size: 16px;
  }
}
@media (max-width: 430.98px) {
  .banner--home-dealers .banner-content__list {
    font-size: 14px;
    line-height: 120%;
  }
}
.banner--home-dealers .banner-content__item {
  margin-bottom: 18px;
}

@media (max-width: 1199.98px) {
  .banner--home-dealers .banner-content__item {
    margin-bottom: 6px;
  }
}
@media (max-width: 590.98px) {
  .banner--home-dealers .banner-content__item {
    max-width: 60%;
  }
}
@media (max-width: 430.98px) {
  .banner--home-dealers .banner-content__item {
    max-width: 100%;
  }
}
.banner--home-dealers .banner-content__item:last-child {
  margin-bottom: 0;
}

@media (max-width: 590.98px) {
  .banner--home-dealers .banner-content__item:last-child {
    max-width: 300px;
  }
}
@media (max-width: 430.98px) {
  .banner--home-dealers .banner-content__item:last-child {
    max-width: 150px;
  }
}
.banner--home-dealers .banner-content__item::marker {
  margin-right: 10px;
}

.banner--home-dealers .banner-media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.banner--home-dealers .banner-image {
  width: 100%;
}

.banner--home-dealers .banner-action {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: 29px;
}

@media (max-width: 590.98px) {
  .banner--home-dealers .banner-action--desktop {
    display: none;
  }
}
.banner--home-dealers .banner-action--mobile {
  display: none;
}

@media (max-width: 590.98px) {
  .banner--home-dealers .banner-action--mobile {
    margin-top: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 100%;
    width: 100%;
  }
}
.banner--home-dealers .banner-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 26.4%;
  height: 52.5%;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 60px;
  font-weight: 100;
  line-height: 120%;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--br-lg);
}

@media (max-width: 1199.98px) {
  .banner--home-dealers .banner-caption {
    font-size: 50px;
  }
}
@media (max-width: 1023.98px) {
  .banner--home-dealers .banner-caption {
    font-size: 46px;
    width: 27%;
    height: 53%;
    border-radius: var(--br-md);
  }
}
@media (max-width: 990.98px) {
  .banner--home-dealers .banner-caption {
    font-size: 38px;
  }
}
@media (max-width: 768.98px) {
  .banner--home-dealers .banner-caption {
    font-size: 30px;
    height: 39%;
  }
}
@media (max-width: 590.98px) {
  .banner--home-dealers .banner-caption {
    font-size: 18px;
    bottom: 59px;
    height: 32%;
  }
}
@media (max-width: 430.98px) {
  .banner--home-dealers .banner-caption {
    border-radius: var(--br-sm);
  }
}
.banner--home-dealers .banner-content-dealers {
  position: absolute;
  bottom: 0;
  left: 49.8%;
  transform: translateX(-50%);
  height: 100%;
  max-width: 305px;
  width: 305px;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: 65px;
  color: var(--white);
  z-index: 1;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  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-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
@media (max-width: 1399.98px) {
  .banner--home-dealers .banner-content-dealers {
    max-height: max-content;
  }
}
@media (max-width: 1023.98px) {
  .banner--home-dealers .banner-content-dealers {
  }
}
@media (max-width: 990.98px) {
  .banner--home-dealers .banner-content-dealers {
  }
}
@media (max-width: 768.98px) {
  .banner--home-dealers .banner-content-dealers {
    display: none;
    font-size: 18px;
  }
}
.banner--home-dealers .banner-text-dealers {
  margin-left: 47px;
  width: 913px;
}
@media (max-width: 1023.98px) {
  .banner--home-dealers .banner-text-dealers {
    margin-left: 37px;
    width: 800px;
    font-size: 18px;
  }
}
@media (max-width: 992.98px) {
  .banner--home-dealers .banner-text-dealers {
    margin-left: 27px;
    width: 700px;
    font-size: 14px;
  }
}
@media (max-width: 792.98px) {
  .banner--home-dealers .banner-text-dealers {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 590.98px) {
  .banner--home-dealers .banner-text-dealers {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-size: 12px;
  }
}
.banner--home-dealers .banner-text-title-dealers {
  width: 850px;
  margin-bottom: 24px;
  font-family: Manrope;
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
}
@media (max-width: 1023.98px) {
  .banner--home-dealers .banner-text-title-dealers {
    width: 800px;
    font-size: 28px;
  }
}
@media (max-width: 992.98px) {
  .banner--home-dealers .banner-text-title-dealers {
    width: 700px;
    font-size: 24px;
  }
}
@media (max-width: 792.98px) {
  .banner--home-dealers .banner-text-title-dealers {
    width: 100%;
    font-size: 24px;
  }
}
@media (max-width: 590.98px) {
  .banner--home-dealers .banner-text-title-dealers {
    width: 100%;
    font-size: 16px;
  }
}
.banner--home-dealers .banner-text-p-dealers {
  font-family: Manrope;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;

}
.banner--home-dealers .banner-slide {
  position: relative;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768.98px) {
  .banner--home-dealers .banner-slide {
    position: relative;
    width: 95vw;
    left: 53%;
    margin-left: -50vw;
    margin-top: 36px;
    margin-bottom: 36px;
  }
}
.banner--home-dealers .banner-action-dealers {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  max-width: 305px;
  width: 19vw;
  height: 3.5vw;
}

@media (max-width: 590.98px) {
  .banner--home-dealers .banner-action-dealers--desktop {
    display: none;
  }
}
.banner--home-dealers .banner-action-dealers--mobile {
  display: none;
}

@media (max-width: 590.98px) {
  .banner--home-dealers .banner-action-dealers--mobile {
    margin-top: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 100%;
    width: 100%;
  }
}

/* ===============================
   START NOW
================================ */

.start-now {
  padding-bottom: 48px;
}

.start-now__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.start-now__title {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 48px;
}
@media (max-width: 792.98px) {
  .start-now__title {
    font-family: Manrope;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
  }
}

/* сетка */
.start-now__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* карточка-ссылка */
.start-now__card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
}

/* картинки */
.start-now__image {
  display: block;
  width: 100%;
  height: auto;
}

/* hover-картинка */
.start-now__image--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

/* default */
.start-now__image--default {
  transition: opacity .2s ease;
}

/* эффект наведения */
.start-now__card:hover .start-now__image--default {
  opacity: 0;
}

.start-now__card:hover .start-now__image--hover {
  opacity: 1;
}

.whyus {
  padding-bottom: 48px;
}

.whyus__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.whyus__title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 48px;
}
@media (max-width: 792.98px) {
  .whyus__title {
    font-family: Manrope;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
  }
}

/* сам слайдер */
.whyus__swiper {
  border-radius: 24px;
  overflow: hidden; /* чтобы скругление обрезало картинку */
}

/* карточка-слайд */
.whyus__card {
  background-image: url(/images/dealers/slide-1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 220px;              /* подгони под фигму */
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* плашка текста */
.whyus__box {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(226, 232, 239, 0.6);
  backdrop-filter: blur(6px);
}

.whyus__box-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #233242;
}

.whyus__box-text {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(35, 50, 66, 0.8);
}
/* ===== Индивидуальное позиционирование текста по слайдам ===== */

/* 2-й слайд */
.whyus__swiper .swiper-slide:nth-child(2) .whyus__card {
  background-image: url(/images/dealers/slide-2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.whyus__swiper .swiper-slide:nth-child(2) .whyus__box {
  left: 90px;
}

/* 3-й слайд */
.whyus__swiper .swiper-slide:nth-child(3) .whyus__card {
  background-image: url(/images/dealers/slide-3.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.whyus__swiper .swiper-slide:nth-child(3) .whyus__box {
  left: 90px;
  bottom: 120px;
}
/* 4-й слайд */
.whyus__swiper .swiper-slide:nth-child(4) .whyus__card {
  background-image: url(/images/dealers/slide-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.whyus__swiper .swiper-slide:nth-child(4) .whyus__box {
  left: 90px;
}
@media (max-width: 792.98px) {
  .whyus__card {
    background-image: url(/images/dealers/slide-1-mobile.png);
    height: 190px;
  }
  .whyus__box-title {
    font-size: 12px;
  }

  .whyus__box-text {
    font-size: 8px;
  }
  /* 2-й слайд */
  .whyus__swiper .swiper-slide:nth-child(2) .whyus__card {
    background-image: url(/images/dealers/slide-2-mobile.png);
  }
  .whyus__swiper .swiper-slide:nth-child(2) .whyus__box {
    left: 60px;
  }
  /* 3-й слайд */
  .whyus__swiper .swiper-slide:nth-child(3) .whyus__card {
    background-image: url(/images/dealers/slide-3-mobile.png);
  }
  .whyus__swiper .swiper-slide:nth-child(3) .whyus__box {
    left: 60px;
    bottom: 120px;
  }
  /* 4-й слайд */
  .whyus__swiper .swiper-slide:nth-child(4) .whyus__card {
    background-image: url(/images/dealers/slide-4-mobile.png);
  }
  .whyus__swiper .swiper-slide:nth-child(4) .whyus__box {
    left: 60px;
  }
}

/* ===============================
   DEALER CTA
================================ */

.dealer-cta {
  padding-bottom: 48px;
}

.dealer-cta__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.dealer-cta__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #2C3E50;
}

@media (max-width: 792.98px) {
  .dealer-cta__title {
    font-family: Manrope;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
  }
}

/* FLEX вместо grid */
.dealer-cta__grid {
  display: flex;
  gap: 36px;
  justify-content: center;  /* фикс карточки по центру */
  align-items: flex-start;
  flex-wrap: nowrap;
}

/* общая карточка (фон картинкой) */
.dealer-cta-card {
  width: 608px;
  height: 423px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 26px;
  padding: 34px 36px;
  box-sizing: border-box;
}

/* фон для десктопа */
.dealer-cta-card--form {
  background-image: url(/images/dealers/cta-form-bg.png);
}

.dealer-cta-card--cabinet {
  background-image: url(/images/dealers/cta-cabinet-bg.png);
}

/* ---------------- FORM CARD ---------------- */

.dealer-cta-card__head {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

.dealer-cta-form {
  display: grid;
  gap: 12px;
}

.dealer-cta-form__input,
.dealer-cta-form__textarea {
  width: 70%;
  margin: auto;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}

.dealer-cta-form__textarea {
  resize: vertical;
}

.dealer-cta-form__agree {
  width: 60% !important;
  margin: auto !important;
  /*display: grid;*/
  grid-template-columns: 100% 1fr !important;
  gap: 10px !important;
  align-items: center !important;
  text-align: center;
  line-height: 100%;
	
	@media screen and (max-width: 992.98px) {
		width: 100% !important;
	}
}

.dealer-cta-form__checkbox {
  width: 14px;
  height: 14px;
  margin-top: 3px;
}

.dealer-cta-form__agree-text {
  font-size: 8px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.dealer-cta-form__agree-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}

.dealer-cta-form__submit {
  display: block;
  justify-self: center;
  margin: auto;

  cursor: pointer;
  padding: 12px 26px;

  border: 1px solid var(--accent-color);
  border-radius: 20px;

  background-color: var(--accent-color);
  color: var(--primary-color);

  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}

.dealer-cta-form__submit:hover {
  background-color: #fff;
}


/* ---------------- CABINET CARD ---------------- */

.dealer-cta-cabinet {
  height: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
}

.dealer-cta-cabinet__img img {
  display: block;
  max-width: 340px;
  width: 100%;
  height: auto;
  margin-top: 6px;
}

.dealer-cta-cabinet__title {
  margin-top: 22px;
  font-size: 22px;
  font-weight: 700;
  color: #2C3E50;
}

.dealer-cta-cabinet__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(34, 48, 66, 0.75);
}

.dealer-cta-cabinet__btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;

  border: 1px solid var(--accent-color);
  border-radius: 20px;

  background-color: var(--accent-color);
  color: var(--primary-color);

  font-weight: 700;
  text-decoration: none;

  transition: background-color .2s ease, color .2s ease;
}

.dealer-cta-cabinet__btn:hover {
  background-color: #fff;
}


/* ===============================
   TABLET (<= 992.98px)
   - другие фоны
   - другие фикс размеры
================================ */

@media (max-width: 992.98px) {
  .dealer-cta__grid {
    gap: 8px;
  }

  .dealer-cta-card {
    width: 447px;
    height: 311px;
    padding: 10px 22px;
  }

  /* фон для планшета */
  .dealer-cta-card--form {
    background-image: url(/images/dealers/cta-form-bg-tablet.png);
  }

  .dealer-cta-card--cabinet {
    background-image: url(/images/dealers/cta-cabinet-bg-tablet.png);
  }

  /* небольшая подгонка контента */
  .dealer-cta-card__head {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .dealer-cta-form {
    gap: 5px !important;
  }

  .dealer-cta-form__input,
  .dealer-cta-form__textarea {
    padding: 10px 12px;
    font-size: 13px;
    max-height: 25px;
  }

  .dealer-cta-form__textarea {
    min-height: 35px;
  }

  .dealer-cta-form__agree {
    width: 70%;
    font-size: 5px;
    margin: auto;
  }

  .dealer-cta-form__submit {
    margin-top: 6px;
    padding: 10px 22px;
  }

  .dealer-cta-cabinet__img img {
    max-width: 226px;
  }

  .dealer-cta-cabinet__title {
    margin-top: 14px;
    font-size: 18px;
  }

  .dealer-cta-cabinet__text {
    margin-top: 8px;
    font-size: 13px;
  }

  .dealer-cta-cabinet__btn {
    margin-top: 12px;
    padding: 10px 22px;
  }
}

/* ===============================
   MOBILE (<= 792.98px) — чтобы не ломалось
================================ */

@media (max-width: 792.98px) {
  .dealer-cta__grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ===============================
   FAQ BLOCK (FLEX)
================================ */

.faq-block {
  padding-bottom: 48px;
}

.faq-block__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-block__title {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 48px;
  color: #2C3E50;
}

@media (max-width: 792.98px) {
  .faq-block__title {
    font-family: Manrope;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
  }
}

/* list */
.faq-block__list {
  display: flex;          /* было grid */
  flex-direction: column; /* чтобы элементы шли столбиком */
  gap: 22px;
}

/* item */
.faq-item {
  border: none;
}

/* header */
.faq-item__head {
  width: 100%;
  display: flex;          /* было grid */
  align-items: center;
  gap: 22px;

  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

/* question */
.faq-item__q {
  color: #2C3E50;
  line-height: 1.2;
  font-family: Manrope;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;

  flex: 0 1 auto;         /* можно переносить */
  min-width: 0;           /* ✅ важно для переноса в flex */
  overflow-wrap: anywhere;
}

@media (max-width: 992.98px) {
  .faq-item__q {
    font-size: 30px;
  }
}

/* line */
.faq-item__line {
  height: 1px;
  background: rgba(34, 48, 66, 0.35);
  align-self: center;

  flex: 1 1 auto;         /* ✅ занимает всё свободное место */
  min-width: 60px;        /* ✅ чтобы не исчезала */
}

/* plus/minus */
.faq-item__icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 28px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #2C3E50;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

/* vertical line for plus */
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* body (accordion) */
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-item__a {
  padding: 14px 0 0;
  max-width: 920px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(34, 48, 66, 0.75);
}

/* open state */
.faq-item.is-open .faq-item__body {
  max-height: 260px; /* если ответы длинные — увеличь */
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0; /* плюс -> минус */
}

.btn-dealers {
  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: var(--br-xl);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  -webkit-transition: background-color var(--anim150), border-color var(--anim150), color var(--anim150);
  transition: background-color var(--anim150), border-color var(--anim150), color var(--anim150);
}

@media (max-width: 768.98px) {
  .btn-dealers {
    height: 40px;
    padding: 0 18px;
    font-size: 12px;
  }
}
.btn_accent-dealers {
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  border-radius: 20px;
  height: 49px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 500;
}

.btn_accent-dealers:hover {
  background-color: white;
}
@media (max-width: 992.98px) {
  .btn_accent-dealers {
    font-size: 16px;
  }
}
@media (max-width: 844.98px) {
  .btn_accent-dealers {
    font-size: 12px;
  }
}

.banner-content-dealers-mobile {
  display: none;
}
@media (max-width: 768.98px) {
  .banner-content-dealers-mobile {
    display: block;
    width: 100%;
    margin-bottom: 36px;
  }

  .banner-btn-dealers-mobile {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 56px;

    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: 20px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    line-height: 1;

  }
  .banner-btn-dealers-mobile:hover {
    background-color: white;
  }
}

.start-now--mobile {
  display: none;
}
@media (max-width: 768.98px) {
  .start-now--mobile {
    display: block;
  }
  .start-now:not(.start-now--mobile) {
    display: none;
  }
  .start-now__cards--mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .start-now__card--mobile {
    position: relative;
    display: block;
    width: 100%;
  }

  .start-now__card--wide {
    grid-column: 1 / -1;
  }

  /* images */
  .start-now__image {
    display: block;
    width: 100%;
    height: auto;
  }

  .start-now__image--hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  /* hover */
  .start-now__card--mobile:hover .start-now__image--hover {
    opacity: 1;
  }

  .start-now__card--mobile:hover .start-now__image--default {
    opacity: 0;
  }
}

.dealer-cta-mobile {
  display: none;
}
@media (max-width: 768.98px) {
  .dealer-cta {
    display: none;
  }
  .dealer-cta-mobile {
    display: block;
  }
  .dealer-cta-mobile-card--form {
    background-image: url(/images/dealers/cta-form-bg-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    width: 390px;
    height: 271px;
    margin: auto
  }
  .dealer-cta-mobile-card--cabinet {
    background-image: url(/images/dealers/cta-cabinet-bg-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #2C3E50;
    width: 390px;
    height: 79px;
    margin: auto
  }
  .dealer-cta-mobile {
    padding: 32px 16px 48px;
    background: #fff;
  }

  .dealer-cta-mobile__title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 16px;
  }

  .dealer-cta-mobile__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* CARD BASE */
  .dealer-cta-mobile-card {
    border-radius: 20px;
    padding: 15px 40px;
    color: #fff;
  }

  .dealer-cta-mobile-card__head {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  /* FORM */
  .dealer-cta-mobile-form {
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .dealer-cta-mobile-form__input,
  .dealer-cta-mobile-form__textarea {
    width: 100%;
    height: 25px;
    border-radius: 6px;
    border: none;
    padding: 0 10px;
    font-size: 12px;
  }

  .dealer-cta-mobile-form__textarea {
    height: 25px;
    padding-top: 8px;
    resize: none;
  }

  .dealer-cta-mobile-form__agree {
    display: flex;
    gap: 8px;
    font-size: 5px;
    line-height: 1.3;
    color: #cfd8e3;
  }

  .dealer-cta-mobile-form__agree a {
    color: #cfd8e3;
    text-decoration: underline;
  }
  .dealer-cta-mobile-form__submit {
    margin: 20px auto;
    justify-self: center;
    margin-top: 10px;

    cursor: pointer;
    padding: 12px 26px;

    border: 1px solid var(--accent-color);
    border-radius: 10px;

    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease;
  }
  .dealer-cta-mobile-form__submit:hover {
    background-color: #fff;
  }

  /* CABINET */
  .dealer-cta-mobile-card--cabinet {
    color: #2C3E50;
  }

  .dealer-cta-mobile-cabinet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .dealer-cta-mobile-cabinet__title {
    font-size: 12px;
    font-weight: 600;
  }

  .dealer-cta-mobile-cabinet__text {
    font-size: 11px;
    color: #6b7a8c;
  }
  .dealer-cta-mobile-cabinet__btn {
    display: inline-block;
    padding: 12px 28px;

    border: 1px solid var(--accent-color);
    border-radius: 20px;

    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;

    transition: background-color .2s ease, color .2s ease;
  }

  .dealer-cta-mobile-cabinet__btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
  }
  .dealer-cta-mobile-cabinet__btn:hover {
    background-color: #fff;
  }
}

.faq-block-mobile {
  display: none;
}
@media (max-width: 768.98px) {
  .faq-block {
    display: none;
  }
  .faq-block-mobile {
    display: block;
    max-width: 390px;
    height: 79px;
    margin: auto;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 16px;
    cursor: pointer;
  }

  .faq-block-mobile.is-active {
    height: 625px;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

/* убрать отступы CF7 */
.dealer-cta-form p {
  margin: 0;
  padding: 0;
}

/* центрирование обёрток CF7 */
.dealer-cta-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  text-align: center;
}

/* центрирование самих полей */
.dealer-cta-form__input,
.dealer-cta-form__textarea {
  display: block;
  width: 70%;
  margin: 0 auto;
}

/* фикс высоты textarea */
.dealer-cta-form__textarea {
  height: 58px;
  min-height: 58px;
}
@media (max-width: 992.98px) {
  .dealer-cta-form__textarea {
    height: 35px;
    min-height: 35px;
  }
}
.wpcf7-response-output {
  display: none;
}
/*dop-1 end*/

.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1100px;
  width: calc(100% - 40px);
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none;
  z-index: 9999;
  gap: 10px;
}

.cookie-bar__content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.cookie-bar__text {
  font-size: 12px;
  line-height: 1.45;
  color: #222;
}

.cookie-bar__text a {
  color: rgba(0, 51, 102, 1);
  text-decoration: none;
}

.cookie-bar__btn {
  background: rgba(0, 51, 102, 1);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 54px;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-bar__text a {
  color: inherit;              /* цвет как у текста */
  text-decoration: underline;  /* подчёркивание */
}

.cookie-bar__text a:hover,
.cookie-bar__text a:active,
.cookie-bar__text a:visited,
.cookie-bar__text a:focus {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-bar {
    bottom: 60px;
    max-width: none;
    flex-direction: column;
  }
  .cookie-bar__text {
    font-size: 12px;
    margin: 10px;
  }
  .cookie-bar__btn {
    width: auto;
    padding: 14px 60px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1023px) {
  .cookie-bar {
    bottom: 60px;
    transform: translateX(-50%);
    max-width: 850px;
    width: calc(100% - 40px);
  }
  .cookie-bar__text {
    font-size: 12px;
  }
  .cookie-bar__btn {
    width: auto;
    padding: 14px 60px;
    text-align: center;
    margin: auto;
  }
}