@charset "UTF-8";
.cl-style__text-align-center {
  text-align: center;
}
.cl-style__height-100-p {
  height: 100%;
}
.cl-style__space-between {
  display: flex;
  justify-content: space-between;
}
.cl-style__align-items-center {
  display: flex;
  align-items: center;
}
.cl-style__justify-content-center {
  display: flex;
  justify-content: center;
}
@media (min-width: 0px) and (max-width: 767px) {
  .cl-style__scroll-menu {
    display: flex;
    justify-content: left;
    overflow-y: hidden;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-overflow-scrolling: touch;
  }
  .cl-style__scroll-menu::-webkit-scrollbar {
    display: none;
  }
}
.cl-style__link {
  text-decoration: underline;
}
.cl-style__link_classic {
  color: #1976D2;
}
.cl-style__link_underline-none {
  text-decoration: none;
}

.z-3 {
  z-index: 3;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-ExtraLight.ttf?80e51e08c66239d80b58b96c3d787ed3);
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-Regular.ttf?d77342fdcbcb6b3ce1b56bfe612087e8);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-Medium.ttf?56fb541cbbc5462f1c330a164cc6eaca);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-SemiBold.ttf?f2e690b59fb90d236c08def8113f998a);
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url(/fonts/IBMPlexSans-Bold.ttf?e933eba4e2fcc3d71b31db66373519b2);
  font-weight: 700;
  font-display: swap;
}
body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif !important;
  background: rgb(242, 244, 246);
  position: relative;
}

.main-container {
  width: calc(100% - 32px);
  max-width: 1312px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.full-width-container {
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
  outline: none !important;
}
.btn_norm-text {
  font-size: 16px;
}
.btn_big-text {
  font-size: 20px;
}
@media (max-width: 650px) {
  .btn_big-text {
    font-size: 16px;
  }
}
.btn_primary {
  transition: all 0.3s;
  background: rgb(255, 129, 58);
  color: white;
}
.btn_primary:hover {
  background: rgb(244, 88, 0);
}
.btn_primary:active {
  background: rgb(244, 88, 0);
}
.btn_secondary {
  transition: all 0.3s;
  background: transparent;
  border: 1px solid rgb(255, 129, 58);
  color: rgb(255, 129, 58);
}
.btn_secondary:hover {
  background: rgb(255, 129, 58);
  color: white;
}
.btn_secondary:active {
  background: rgb(255, 129, 58);
  color: white;
}
.btn_white {
  transition: all 0.3s;
  background: transparent;
  border: 1px solid white;
  color: rgb(255, 129, 58);
}
.btn_white:hover {
  background: rgb(255, 129, 58);
  border: 1px solid rgb(255, 129, 58);
  color: white;
}
.btn_white:active {
  background: rgb(255, 129, 58);
  border: 1px solid rgb(255, 129, 58);
  color: white;
}

.round-bg {
  background: rgb(255, 255, 255);
  border-radius: 24px;
}
.round-bg_with-shadow {
  box-shadow: 0 4px 11.9px 0 rgba(0, 0, 0, 0.11);
}

.text-link {
  margin: 0;
  color: rgb(36, 124, 255);
  text-decoration: none !important;
  cursor: pointer;
}

.text-heading {
  margin: 0;
  color: black;
}
.text-heading_main {
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 650px) {
  .text-heading_main {
    font-size: 31px;
    margin-right: 24px;
  }
}
@media (max-width: 390px) {
  .text-heading_main {
    font-size: 28px;
  }
}
@media (max-width: 324px) {
  .text-heading_main {
    font-size: 25px;
  }
}
.text-heading_sub-main {
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 650px) {
  .text-heading_sub-main {
    font-size: 20px;
    font-weight: 300;
  }
}
@media (max-width: 324px) {
  .text-heading_sub-main {
    font-size: 15px;
  }
}
.text-heading_section {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 650px) {
  .text-heading_section {
    font-size: 24px;
  }
}
.text-heading_section-sub {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 650px) {
  .text-heading_section-sub {
    color: rgb(72, 81, 101);
  }
}
.text-heading_form {
  font-size: 32px;
  font-weight: 500;
  color: rgb(83, 83, 83);
}

.flex-center-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.swiper-pagination-bullets {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  opacity: 1 !important;
  width: 24px !important;
  height: 24px !important;
  background-color: rgb(255, 190, 130) !important;
  transition: background-color 0.3s;
  border-radius: 8px !important;
}
.swiper-pagination-bullet-active {
  background-color: rgb(255, 129, 58) !important;
}

@media (min-width: 1281px) {
  .swiper-bullets_hide-on-desktop {
    display: none;
  }
}

.custom-swiper {
  width: 100%;
  padding-top: 12px !important;
  padding-bottom: 48px !important;
}
.custom-swiper__slides-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  .custom-swiper__slides-wrapper {
    gap: 0;
    justify-content: start;
  }
}
.custom-swiper__card-extern-wrapper {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  width: unset !important;
  height: unset !important;
}

.clcollapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease-in-out;
}

.thin-scrollbar {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.thin-scrollbar::-webkit-scrollbar {
  width: 5px;
}
.thin-scrollbar::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #f1f1f1;
}
.thin-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: rgb(255, 129, 58);
}
.thin-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 129, 58);
}

.city-selector-modal {
  display: none;
  z-index: 100;
}
.city-selector-modal__container {
  max-width: 800px;
  max-height: 480px;
  width: 90%;
  height: 90%;
  position: fixed;
  top: 10%;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 995px) {
  .city-selector-modal__container {
    max-height: 90%;
    top: 5%;
  }
}
.city-selector-modal.is-open {
  display: block;
}
.city-selector-modal.is-open .city-selector-modal__overlay {
  display: flex !important;
}
.city-selector-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.city-selector-modal__header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.city-selector-modal__inner {
  padding: 20px 30px;
  width: 100%;
  height: 100%;
}
@media (max-width: 995px) {
  .city-selector-modal__inner {
    padding: 10px 10px;
  }
}
.city-selector-modal__close {
  width: 5%;
  position: relative;
  top: 15px;
  right: 0;
  cursor: pointer;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 110;
  text-align: right;
}
@media (max-width: 995px) {
  .city-selector-modal__close {
    width: 10%;
    top: 5px;
  }
}
.city-selector-modal__search-wrapper {
  position: relative;
  width: 95%;
  margin-top: 15px;
  margin-bottom: 25px;
}
@media (max-width: 995px) {
  .city-selector-modal__search-wrapper {
    width: 100%;
  }
}
.city-selector-modal__search {
  width: 100%;
  height: 50px;
  padding-left: 15px;
  border: 1px solid #999999;
  border-radius: 10px;
  font-size: 16px;
  color: #999999;
  transition: 200ms;
}
.city-selector-modal__search:focus-visible {
  outline: none;
  color: #343434;
  border: 1px solid #5d5a5a;
}
.city-selector-modal__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: calc(80% - 40px);
}
@media (min-width: 996px) {
  .city-selector-modal__content {
    gap: 30px;
  }
}
.city-selector-modal__column-title {
  padding-left: 15px;
  padding-bottom: 5px;
  font-weight: 400;
  font-size: 20px;
}
.city-selector-modal__column {
  width: 50%;
  height: 100%;
  overflow-y: auto;
}
.city-selector-modal__top-title {
  display: none;
}
@media (max-width: 995px) {
  .city-selector-modal__regions-wrapper {
    display: none;
  }
  .city-selector-modal__city-wrapper {
    width: 100%;
  }
  .city-selector-modal__column-title {
    display: none;
  }
  .city-selector-modal__header {
    flex-direction: row;
  }
  .city-selector-modal__content {
    height: 80%;
  }
  .city-selector-modal__top-title {
    display: block;
    width: 90%;
    font-size: 22px;
  }
}

.city-selector-region__list {
  padding-left: 0;
}
.city-selector-region__list-item {
  display: flex;
  align-items: center;
  list-style-type: none;
  height: 3em;
  padding-left: 15px;
  transition: 40ms;
}
.city-selector-region__list-item:hover {
  cursor: pointer;
}
.city-selector-region__list-item:hover > * {
  color: #0d5cf0;
}
.city-selector-region__selected {
  position: relative;
  background-color: #eff4ff;
}
.city-selector-region__selected::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: #0d5cf0;
}
.city-selector-region__link {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.8;
  white-space: nowrap;
}
.city-selector-region__strong {
  opacity: 1;
  font-weight: 500;
}
.city-selector-region__city-type {
  font-size: 80%;
  color: #4d5154;
}
@media (max-width: 996px) {
  .city-selector-region__city-list::before {
    display: block;
    content: attr(data-search-region);
    font-weight: 500;
  }
}
@media (min-width: 996px) {
  .city-selector-region--hide {
    display: none;
  }
}

.city-selector-list {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  width: 100%;
  background: #ffffff;
  z-index: 100;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}
.city-selector-list__item {
  display: none;
  padding: 15px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: 300ms;
}
.city-selector-list__item:hover {
  background: #F2F2F2;
}

.mmodal-slide[aria-hidden=false] .mmodal__overlay {
  animation: mmfadeIn 0.1s cubic-bezier(0, 0, 0.2, 1);
}

.mmodal-slide[aria-hidden=false] .mmodal__container {
  animation: mmslideIn 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.mmodal-slide[aria-hidden=true] .mmodal__overlay {
  animation: mmfadeOut 0.1s cubic-bezier(0, 0, 0.2, 1);
}

.mmodal-slide[aria-hidden=true] .mmodal__container {
  animation: mmslideOut 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.mmodal-slide .mmodal__container,
.mmodal-slide .mmodal__overlay {
  will-change: transform;
}

.top-bar {
  position: fixed;
  width: 100%;
  z-index: 50;
  height: 88px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 7.3px 0 rgba(0, 0, 0, 0.03);
}
@media (max-width: 990px) {
  .top-bar {
    height: 96px;
  }
}
.top-bar__inner-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .top-bar__inner-wrapper {
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
  }
}
.top-bar__part-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 32px;
}
@media (max-width: 990px) {
  .top-bar__part-wrapper {
    width: 100%;
    gap: 1px;
    margin-left: 16px;
    margin-right: 16px;
    justify-content: space-between;
  }
}
.top-bar__logo {
  width: 277px;
}
@media (max-width: 990px) {
  .top-bar__logo {
    width: 200px;
  }
}
@media (max-width: 650px) {
  .top-bar__logo {
    width: 160px;
  }
}
.top-bar__city-tel-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
@media (max-width: 990px) {
  .top-bar__city-tel-wrapper {
    gap: 4px;
  }
}
.top-bar__city-tel-icon {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 990px) {
  .top-bar__city-tel-icon {
    width: 20px;
    height: 20px;
  }
}
.top-bar__send-btn {
  width: 200px;
  height: 56px;
}
@media (max-width: 990px) {
  .top-bar__send-btn {
    width: 131px;
    height: 40px;
  }
}

.header {
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media (max-width: 474px) and (min-width: 370px) {
  .header {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.header__round-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -2;
}
.header__bg-wrapper {
  border-radius: 24px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.header__bg-pic {
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1000px) and (min-width: 801px) {
  .header__bg-pic {
    margin-left: -200px;
  }
}
@media (max-width: 800px) and (min-width: 640px) {
  .header__bg-pic {
    margin-left: -300px;
  }
}
@media (max-width: 639px) {
  .header__bg-pic {
    margin-left: -400px;
  }
}
@media (max-width: 610px) {
  .header__bg-pic {
    margin-left: -450px;
  }
}
@media (max-width: 552px) {
  .header__bg-pic {
    margin-left: -490px;
  }
}
@media (max-width: 504px) {
  .header__bg-pic {
    margin-left: -530px;
  }
}
@media (max-width: 474px) {
  .header__bg-pic {
    margin-left: unset;
    #width: 100%;
    height: 100%;
  }
}
@media (max-width: 358px) {
  .header__bg-pic {
    width: auto;
    height: auto;
  }
}
.header__extern-wrapper {
  padding-top: 152px;
}
@media (max-width: 650px) {
  .header__extern-wrapper {
    padding-top: 120px;
  }
}
.header__main-wrapper {
  max-width: 580px;
  height: 377px;
  padding-top: 92px;
  padding-bottom: 92px;
  padding-left: 112px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .header__main-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 474px) {
  .header__main-wrapper {
    padding-top: 40px;
    padding-bottom: 24px;
    padding-left: 24px;
    height: 526px;
  }
}
.header__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.header__btn-send {
  width: 240px;
  height: 64px;
}
@media (max-width: 650px) {
  .header__btn-send {
    width: 176px;
    height: 56px;
  }
}
.header__payment-credit-label {
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  width: 338px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 24px 0 24px;
  background: rgb(255, 129, 58);
  color: white;
  font-size: 24px;
  font-weight: 400;
}
@media (max-width: 650px) {
  .header__payment-credit-label {
    width: 216px;
    height: 43px;
    font-size: 14px;
  }
}

.our-advantages__extern-wrapper {
  position: relative;
  padding-top: 56px;
}
@media (max-width: 1280px) {
  .our-advantages__extern-wrapper {
    padding-bottom: 0;
  }
}
.our-advantages__heading-wrapper {
  padding: 32px 0 32px 112px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .our-advantages__heading-wrapper {
    padding: 16px 0 16px 64px;
  }
}
@media (max-width: 650px) {
  .our-advantages__heading-wrapper {
    padding: 8px 0;
  }
}
.our-advantages__heading {
  color: rgb(44, 50, 62);
}
.our-advantages__card {
  justify-content: start;
  box-sizing: border-box;
  width: 370px !important;
  height: 480px !important;
  padding-left: 53px;
  padding-right: 53px;
  padding-top: 58px;
  gap: 9px;
}
@media (max-width: 1280px) {
  .our-advantages__card {
    width: 340px !important;
    height: 517px !important;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 32px;
    align-items: start;
    gap: 32px;
  }
}
@media (max-width: 390px) {
  .our-advantages__card {
    width: 310px !important;
    height: 480px !important;
  }
}
@media (max-width: 1280px) {
  .our-advantages__card-img-wr {
    order: 2;
    width: 100%;
    height: auto;
  }
}
.our-advantages__card-img {
  width: 100%;
}
.our-advantages__card-text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  width: 100%;
  color: rgb(44, 50, 62);
}
@media (max-width: 1280px) {
  .our-advantages__card-text {
    order: 2;
  }
}
.our-advantages__card-text_bold {
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 1280px) {
  .our-advantages__card-text_bold {
    margin-top: 0;
    order: 1;
  }
}

.tariff {
  gap: 36px;
}
@media (max-width: 650px) {
  .tariff {
    gap: 24px;
  }
}
.tariff__extern-wrapper {
  padding-top: 24px;
}
.tariff__header-wrapper {
  align-items: start;
  gap: 8px;
  width: calc(100% - 112px);
  padding-left: 112px;
}
@media (max-width: 900px) {
  .tariff__header-wrapper {
    width: calc(100% - 64px);
    padding-left: 64px;
  }
}
@media (max-width: 650px) {
  .tariff__header-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
@media (min-width: 1281px) {
  .tariff__slides-wrapper {
    gap: 46px;
  }
}
.tariff__regular-slide {
  order: 1 !important;
}
.tariff__promo-slide {
  order: 1 !important;
}
@media (max-width: 1280px) {
  .tariff__promo-slide {
    order: 0 !important;
  }
}

.tariff-card {
  box-sizing: border-box;
  width: 330px !important;
  height: 456px !important;
  position: relative;
  background-color: white !important;
  box-shadow: 0 1px 2px 0 rgba(27, 29, 33, 0.08);
}
@media (max-width: 1280px) {
  .tariff-card {
    width: 280px !important;
    height: 420px !important;
  }
}
.tariff-card_big {
  width: 340px !important;
  height: 500px !important;
}
@media (max-width: 1280px) {
  .tariff-card_big {
    width: 280px !important;
    height: 460px !important;
  }
}
.tariff-card_promo {
  border: 1px solid rgb(255, 129, 58);
}
.tariff-card__promo-label {
  background: rgb(255, 129, 58);
  right: 0;
  top: 0;
  height: 48px;
  position: absolute;
  z-index: 10;
  border-radius: 0 22px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
  width: 124px;
}
@media (max-width: 1280px) {
  .tariff-card__promo-label {
    font-size: 16px;
    width: 96px;
    height: 32px;
  }
}
.tariff-card__label {
  background: rgb(255, 129, 58);
  right: 0;
  top: 0;
  width: 240px;
  height: 48px;
  position: absolute;
  z-index: 10;
  border-radius: 0 22px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-decoration: none;
}
@media (max-width: 1280px) {
  .tariff-card__label {
    font-size: 16px;
    width: 96px;
    height: 32px;
  }
}
.tariff-card__bg {
  position: absolute;
  width: 294px;
  height: 480px;
  background-color: rgb(247, 247, 247);
}
.tariff-card__bg_central {
  top: 16px;
  left: -8px;
  width: 386px;
  height: 445px;
}
.tariff-card__bg_left {
  top: -12px;
  left: -40px;
}
.tariff-card__bg_right {
  top: -12px;
  right: -40px;
}
@media (max-width: 1280px) {
  .tariff-card__bg {
    display: none;
  }
}
.tariff-card__main {
  box-sizing: border-box;
  height: 100%;
  position: relative;
  gap: 28px;
  padding-left: 57px;
  padding-right: 57px;
}
@media (max-width: 1280px) {
  .tariff-card__main {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.tariff-card__main_promo {
  box-sizing: border-box;
  height: 100%;
  position: relative;
  gap: 10px;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1280px) {
  .tariff-card__main_promo {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.tariff-card__select-many {
  z-index: 2;
  position: absolute;
  top: -10px;
  left: 5px;
}
.tariff-card__text {
  margin: 0;
  font-size: large;
}
.tariff-card__highlighting-text {
  color: rgb(255, 129, 58);
}
.tariff-card__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.tariff-card__header_promo {
  margin-top: 16px;
}
.tariff-card__heading {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.tariff-card__heading-text {
  font-size: 28px;
  font-weight: 500;
  text-align: left;
  line-height: 30px;
}
@media (max-width: 1280px) {
  .tariff-card__heading-text {
    font-size: 24px;
    line-height: 26px;
  }
}
@media (max-width: 1280px) {
  .tariff-card__heading-icon {
    width: 24px;
    height: 24px;
  }
}
.tariff-card__heading-subtext {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.tariff-card__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tariff-card__property {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 16px;
}
.tariff-card__property_disabled {
  opacity: 0.3;
}
.tariff-card__property-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: inherit;
  justify-content: center;
}
.tariff-card__property-name {
  font-size: 17px;
  font-weight: 400;
  text-align: left;
}
.tariff-card__property-data {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.tariff-card__property-data_promo {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  color: rgb(255, 129, 58);
}
.tariff-card__footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tariff-card__cost {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
}
.tariff-card__btn-send {
  width: 232px;
  height: 56px;
}

.element {
  width: 230px;
  height: 65px;
  border-radius: 15px;
  background-color: rgb(255, 247, 242);
  display: flex; /* Добавляем flex для центрирования */
  justify-content: center; /* Горизонтальное центрирование */
  align-items: center;
}

.pluses-in-dom {
  gap: 36px;
}
@media (max-width: 650px) {
  .pluses-in-dom {
    gap: 24px;
  }
}
.pluses-in-dom__extern-wrapper {
  padding-top: 8px;
}
@media (max-width: 900px) {
  .pluses-in-dom__extern-wrapper {
    padding-top: 20px;
  }
}
@media (max-width: 650px) {
  .pluses-in-dom__extern-wrapper {
    padding-top: 40px;
  }
}
.pluses-in-dom__header-wrapper {
  align-items: start;
  gap: 8px;
  width: calc(100% - 112px);
  padding-left: 112px;
}
@media (max-width: 900px) {
  .pluses-in-dom__header-wrapper {
    width: calc(100% - 64px);
    padding-left: 64px;
  }
}
@media (max-width: 650px) {
  .pluses-in-dom__header-wrapper {
    width: 100%;
    padding-left: 0;
  }
}

.pluses-in-dom-card {
  box-sizing: border-box;
  width: 372px !important;
  height: 516px !important;
  padding-left: 56px;
  padding-right: 56px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .pluses-in-dom-card {
    width: 328px !important;
    height: 470px !important;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.pluses-in-dom-card__bg-pic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  scale: 1.15;
}
.pluses-in-dom-card__body {
  height: 100%;
  justify-content: start;
  padding-top: 64px;
  gap: 106px;
  max-width: 252px;
}
@media (max-width: 1280px) {
  .pluses-in-dom-card__body {
    gap: 130px;
    padding-top: 32px;
  }
}
.pluses-in-dom-card__header {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  color: white;
  width: 100%;
}
.pluses-in-dom-card__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 22px;
}
.pluses-in-dom-card__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: white;
}

.how-to-connect {
  padding-top: 64px;
  width: calc(100% - 112px);
  padding-left: 112px;
  align-items: start;
  gap: 32px;
}
@media (max-width: 1120px) {
  .how-to-connect {
    width: calc(100% - 64px);
    padding-left: 64px;
  }
}
@media (max-width: 690px) {
  .how-to-connect {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    background: transparent;
    border-radius: unset;
  }
}
.how-to-connect__extern-wrapper {
  padding-top: 8px;
}
@media (max-width: 900px) {
  .how-to-connect__extern-wrapper {
    padding-top: 20px;
  }
}
@media (max-width: 690px) {
  .how-to-connect__extern-wrapper {
    padding-top: 40px;
  }
}
.how-to-connect__steps {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  padding-right: 56px;
  margin-bottom: 64px;
  gap: 4px;
  width: calc(100% - 56px);
}
@media (max-width: 1290px) {
  .how-to-connect__steps {
    gap: 34px;
  }
}
@media (max-width: 690px) {
  .how-to-connect__steps {
    background: rgb(255, 255, 255);
    border-radius: 24px;
    padding: 40px 24px;
    margin-bottom: 0;
  }
}

.how-to-connect-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 16px;
}
@media (max-width: 1120px) {
  .how-to-connect-step {
    width: 243px !important;
    height: 216px !important;
  }
}
@media (max-width: 690px) {
  .how-to-connect-step {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100% !important;
    height: unset !important;
  }
}
.how-to-connect-step_small {
  width: 143px;
  height: 192px;
}
.how-to-connect-step_medium {
  width: 215px;
  height: 216px;
}
.how-to-connect-step_big {
  width: 243px;
  height: 216px;
}
.how-to-connect-step__icon-wrapper {
  width: 120px;
  height: 120px;
}
@media (max-width: 690px) {
  .how-to-connect-step__icon-wrapper {
    width: 68px;
    height: 68px;
  }
}
.how-to-connect-step__next-icon {
  margin: 0;
  width: 40px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 1290px) {
  .how-to-connect-step__next-icon {
    display: none;
  }
}
.how-to-connect-step__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.how-to-connect-step__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: rgb(44, 50, 62);
}
.how-to-connect-step__text_header {
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1132px) {
  .how-to-connect-step__text {
    text-align: center;
  }
}
@media (max-width: 690px) {
  .how-to-connect-step__text {
    font-size: 14px;
    text-align: left !important;
  }
}

.reviews {
  gap: 36px;
}
@media (max-width: 650px) {
  .reviews {
    gap: 24px;
  }
}
.reviews__extern-wrapper {
  padding-top: 56px;
}
@media (max-width: 900px) {
  .reviews__extern-wrapper {
    padding-top: 48px;
  }
}
.reviews__header-wrapper {
  align-items: start;
  gap: 8px;
  width: calc(100% - 112px);
  padding-left: 112px;
}
@media (max-width: 900px) {
  .reviews__header-wrapper {
    width: calc(100% - 64px);
    padding-left: 64px;
  }
}
@media (max-width: 650px) {
  .reviews__header-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.reviews__card-wrapper {
  justify-content: start;
  gap: 0;
}

.reviews-card {
  box-sizing: border-box;
  width: 372px !important;
  height: 262px !important;
  padding: 38px 56px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  gap: 12px;
  justify-content: start;
}
@media (max-width: 1280px) {
  .reviews-card {
    width: 328px !important;
    height: 244px !important;
    padding: 38px 24px;
  }
}
@media (max-width: 650px) {
  .reviews-card {
    width: 100% !important;
    box-shadow: none !important;
  }
}
@media (max-width: 650px) {
  .reviews-card__extern-wrapper {
    width: 100% !important;
    box-sizing: border-box;
    padding: 0 !important;
  }
}
.reviews-card__head-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}
.reviews-card__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  overflow-x: hidden;
  overflow-y: auto;
}
.reviews-card__photo-wrapper {
  position: relative;
  width: 66px;
  height: 66px;
}
.reviews-card__avatar-bg {
  width: 67px;
  height: 67px;
}
.reviews-card__avatar-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.reviews-card__avatar-initials {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-weight: 900;
  font-size: 22px;
  color: #fff1e9;
}
.reviews-card__source-icon {
  position: absolute;
  bottom: 4px;
  right: 4px;
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.reviews-card__source-link {
  display: block;
  width: 100%;
  height: 100%;
}
.reviews-card .sig2 {
  background: url(/images/2gis.svg?b4f92fd6307af2fca27d3fced94392f5) center/contain no-repeat;
}
.reviews-card .kv {
  background: url(/images/vk.svg?f73605a3ea9c60dbdf5da7427d17823f) center/contain no-repeat;
}
.reviews-card .knilytic {
  background: url(/images/citylink.svg?a4bf85b688923a3464e1dbfa57c30412) center/contain no-repeat;
}
.reviews-card .elgoog {
  background: url(/images/google.svg?6927b29aa5cf7b5f93fa97d9bf7e5287) center/contain no-repeat;
}
.reviews-card .margatsni {
  background: url(/images/instagram.svg?1c2240a0bf6dcf52a201b7d49c4de6d2) center/contain no-repeat;
}
.reviews-card .xednay {
  background: url(/images/yandex.svg?d7f37afaa7440cc990b31206004acd18) center/contain no-repeat;
}
.reviews-card__name-date {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 6px;
  padding-bottom: 6px;
  justify-content: center;
}
.reviews-card__name {
  margin: 0;
  color: rgb(44, 50, 62);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
}
.reviews-card__date {
  margin: 0;
  color: rgb(44, 50, 62);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
}

.form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 1030px) {
  .form {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .form {
    gap: 16px;
  }
}
.form__section {
  margin-top: 56px;
}
@media (max-width: 900px) {
  .form__section {
    margin-top: 0;
    padding-top: 54px;
  }
}
.form__extern-wrapper {
  padding: 64px 112px;
}
@media (max-width: 1030px) {
  .form__extern-wrapper {
    padding: 32px 64px;
  }
}
@media (max-width: 650px) {
  .form__extern-wrapper {
    padding: 32px 24px;
  }
}
.form__heading {
  color: rgb(83, 83, 83);
  flex: 1 420px;
}
@media (max-width: 1030px) {
  .form__heading {
    flex: unset;
    order: 1;
  }
}
.form__selected-tariff-wrapper {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  flex: 2 300px;
}
@media (max-width: 1030px) {
  .form__selected-tariff-wrapper {
    flex: unset;
    align-items: start;
    order: 3;
  }
}
.form__selected-tariff-label {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgb(83, 83, 83);
}
@media (max-width: 650px) {
  .form__selected-tariff-label {
    color: rgb(72, 81, 101);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
  }
}
.form__selected-tariff-link {
  cursor: pointer;
  color: rgb(83, 83, 83);
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 650px) {
  .form__selected-tariff-link {
    color: rgb(72, 81, 101);
    font-size: 12px;
    line-height: 16px;
  }
}
.form__inputs-wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex: 2 310px;
}
@media (max-width: 1030px) {
  .form__inputs-wrapper {
    flex: unset;
    order: 2;
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .form__inputs-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
.form__input-group {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  background: transparent;
  border-radius: 12px;
  border: 2px solid rgb(233, 233, 233);
  transition: border-bottom-color 0.3s, border-left-color 0.3s, border-right-color 0.3s, border-top-color 0.3s;
}
.form__input-group:hover {
  border: 2px solid rgb(102, 162, 246);
}
.form__input-group_invalid {
  border: 2px #FF5F5F solid !important;
}
.form__input-group_focused {
  border: 2px solid rgb(75, 125, 255) !important;
}
.form__input-group_focused > .form__input-label {
  transform: translateY(-60%);
  font-size: 14px;
}
@media (min-width: 651px) and (max-width: 1280px) {
  .form__input-group_focused > .form__input-label {
    font-size: 12px;
  }
}
@media (max-width: 650px) {
  .form__input-group_focused > .form__input-label {
    font-size: 12px;
  }
}
.form__input-label {
  position: absolute;
  left: 24px;
  top: 16px;
  color: rgb(212, 212, 212);
  background-color: transparent;
  z-index: 10;
  transition: transform 150ms ease-out, font-size 150ms ease-out, color 150ms ease-out;
  font-size: 16px;
  font-weight: 400;
}
.form__input {
  position: relative;
  width: calc(100% - 24px);
  background: transparent;
  outline: 0;
  border: 0;
  border-radius: 12px;
  padding: 16px 0 16px 24px;
  color: rgb(83, 83, 83);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.form__input_focused {
  transform: translateY(12%);
}
.form__input_invalid {
  color: #FF9A9A;
}
.form__text-error-popup {
  position: absolute;
  display: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background-color: white;
  right: 10px;
  max-width: 70%;
  color: black;
  z-index: 80;
  font-size: 14px;
  box-shadow: 0 0 10px black;
}
.form__text-error-popup_checkbox {
  right: unset;
  left: 10px;
}
.form__submit-btn {
  font-family: "IBM Plex Sans", sans-serif !important;
  flex: 1 210px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}
@media (max-width: 1030px) {
  .form__submit-btn {
    flex: unset;
    height: 56px;
    order: 4;
  }
}
.form__submit-btn_inactive {
  background: #FFD4BB !important;
  color: white !important;
  cursor: not-allowed !important;
}
.form__personal-data-label {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  width: 100%;
}
@media (max-width: 1030px) {
  .form__personal-data-label {
    order: 5;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: rgb(83, 83, 83);
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0);
  -webkit-transition-property: background-color, box-shadow;
  transition-property: background-color, box-shadow;
  transition-timing-function: ease;
  transition-delay: 9999s;
  transition-duration: 9999s, 0.25s;
  caret-color: black;
}

.footer {
  padding: 32px 120px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 56px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media (min-width: 1041px) {
  .footer {
    background: none;
  }
}
@media (max-width: 1040px) {
  .footer {
    padding: 32px 64px;
  }
}
@media (max-width: 660px) {
  .footer {
    padding: 32px 40px;
    gap: 32px;
  }
}
.footer__extern-wrapper {
  margin-top: 32px;
  padding: 0;
  width: 100%;
}
.footer__main {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 1 250px;
}
.footer__heading {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: rgb(44, 50, 62);
}
.footer__label {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgb(72, 81, 101);
}
.footer__btns-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  gap: 8px;
  flex: 1 520px;
}
.footer__copyright {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  width: 100%;
  text-align: left;
}
@media (max-width: 660px) {
  .footer__copyright {
    text-align: center;
  }
}

.footer-btn {
  flex: 1 250px;
  gap: 8px;
}
.footer-btn__icon {
  stroke: rgb(255, 129, 58);
}
.footer-btn__icon:hover {
  stroke: white;
}
.footer-btn__icon:active {
  stroke: white;
}
.footer-btn:hover .footer-btn__icon {
  stroke: white;
}
.footer-btn:active .footer-btn__icon {
  stroke: white;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 9000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: overlay-appear-animation 300ms linear;
}
.overlay_visible {
  display: block;
}

.modal {
  display: none;
  position: fixed !important;
  z-index: 9000;
  background: white !important;
  box-shadow: 0 1px 2px 0 rgba(27, 29, 33, 0.08);
  border-radius: 24px;
  padding: 32px 24px !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 80%;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 90%;
  min-height: 250px;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  animation: modal-appear-animation 300ms linear;
}
.modal_form {
  box-sizing: border-box;
  width: 292px;
  height: 224px;
  min-height: unset;
}
@media (max-width: 715px) {
  .modal_form {
    width: 80%;
  }
}
.modal_visible {
  display: block;
}
.modal__inner-container {
  border-radius: unset;
  background: unset;
  height: 100%;
}
.modal__form-close {
  margin-top: 8px;
  min-width: unset !important;
  width: 100%;
  height: 56px;
}
.modal__close {
  position: absolute;
  width: 36px;
  height: 36px;
  right: 12px;
  top: 12px;
  cursor: pointer;
  transition: background 150ms ease-in-out;
  background-image: url(/images/icon-close.svg?581f6ffb344652490d9eb8e25fb10ea4);
  background-size: contain;
}
.modal__close:hover {
  background-image: url(/images/icon-close_hover.svg?907563c0645bca5577ff3e189ed1876c);
}
.modal__content {
  gap: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: start;
  justify-content: space-between;
  height: 100%;
}
.modal__text {
  text-align: justify;
  font-size: 17px;
  text-indent: 25px;
  margin: 10px 0;
}
@media (max-width: 500px) {
  .modal__text {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .modal__text {
    font-size: 12px;
    margin-top: 0;
  }
}
.modal__text_heading {
  margin-top: 36px;
}
.modal__text_form {
  margin: 0;
  color: rgb(72, 81, 101);
  text-indent: unset;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1008px) {
  .modal__text_form {
    font-size: 16px !important;
  }
}
.modal__text_form-error {
  margin-top: 0;
}
.modal__text_form-heading {
  margin: 0;
  color: rgb(44, 50, 62);
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1008px) {
  .modal__text_form-heading {
    font-size: 18px !important;
  }
}
.modal__text_link {
  color: rgb(36, 124, 255);
  text-decoration: none;
}

@keyframes overlay-appear-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-appear-animation {
  from {
    opacity: 0;
    transform: translate(-50%, -100%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.city-selector-modal {
  position: absolute;
}
.city-selector-modal__container {
  max-height: 490px;
}
@media (max-width: 995px) {
  .city-selector-modal__container {
    max-height: unset;
  }
}
.city-selector-modal *, .city-selector-modal :after, .city-selector-modal :before {
  box-sizing: border-box;
}
.city-selector-modal a {
  color: rgb(52, 52, 52);
  text-decoration: none;
}

.modal__container--lg {
  max-width: 700px;
}

.modal__container--md {
  max-width: 500px;
}

.modal__header, .modal__body, .modal__footer {
  padding: 1rem 1rem;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(-15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.modal-slide {
  display: none;
}

.modal-slide.is-open {
  display: block;
}

.modal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.1s cubic-bezier(0, 0, 0.2, 1);
}

.modal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.modal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.1s cubic-bezier(0, 0, 0.2, 1);
}

.modal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.2s cubic-bezier(0, 0, 0.2, 1);
}

.modal-slide .modal__container,
.modal-slide .modal__overlay {
  will-change: transform;
}
