﻿@font-face {
  font-family: "Onest";
  src: url(fonts/Onest-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url(fonts/Onest-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Onest";
  src: url(fonts/Onest-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-green: #62C584;
  --color-red: #E5370D;
  --color-blue: #2062E0;
  --color-blue-hover: #1550C1;
  --color-red-hover: #C42F0B;
  --color-gray: #8A8A8A;
  --color-black: #292929;
  --color-border: #DEDEDE;
  --radius: 8px;
  --shadow: 0px 0px 30px 5px #EEEEEE;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  font-family: "Onest", "Inter", sans-serif;
  font-size: 18px;
  color: var(--color-black);
}

main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.container {
  max-width: 1310px;
  width: 100%;
}

.btn {
  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;
  height: 52px;
  padding: 0 25px;
  font-weight: 7500;
  border-radius: var(--radius);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.blue {
  background: var(--color-blue);
  color: #fff;
}

.btn.red {
  background: var(--color-red);
  color: #fff;
}

.btn.blue:hover {
  background: var(--color-blue-hover);
}
.btn.red:hover {
  background: var(--color-red-hover);
}

.btn.stroked {
  color: var(--color-red);
  border: 1px solid var(--color-red);
}

.btn.stroked:hover {
  background: var(--color-red);
  color: #fff;
}

h1 {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.25;
  background: #ffffff94;
}

h1 span {
  color: var(--color-blue);
}

h2 {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

h3 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.5;
  color: #989898;
}

.modal {
  cursor: pointer;
  outline: 0;
}

.modal-window-centered::before {
  display: none;
}

.modal-backdrop.show {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.modal-window {
  max-width: 670px;
}

.modal-content {
  width: 100%;
  padding: 75px 15px;
  margin: 0 auto;
  background: #fff;
  -webkit-box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.15);
  border: 0;
  border-radius: 0;
  cursor: initial;
}

.modal_win_title {
  text-align: center;
  line-height: 1.3;
  padding-left: 0;
  margin-bottom: 15px;
}

.modal_win_subtitle {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 30px;
}

.modal_win_form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: none;
  margin: 0 auto;
  max-width: 370px;
}

.modal-close {
  position: absolute;
  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;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 50%;
}

.modal-close_img {
  font-size: 18px;
  color: var(--color-black);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.modal-close:hover .modal-close_img {
  color: var(--color-red);
}

.modal_button {
  width: 100%;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 1;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.futer_panel_scroll_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}

.logo {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.logo_head_image {
  width: 55px;
  height: 42px;
  float: left;
  margin-right: 12px;
}

.logo span {
	font-size: 10px;
}

.menu_ul_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.menu_li_link {
  display: block;
  padding: 15px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.menu_li_link:hover {
  color: var(--color-red);
}

.phone-with-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}

.phone-link {
  font-size: 25px;
  font-weight: 600;
}

.phone-link span {
  font-size: 18px;
  font-weight: 400;
  display: flex;
  color: #989898;
}

.phone-link:hover {
  color: var(--color-red);
}

.phone-with-btn .btn {
  height: 52px;
}

.burger {
  position: relative;
  display: none;
  -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: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.burger.active .burger_line_item:nth-child(2) {
  width: 23px;
}

.burger_line_item {
  width: 30px;
  height: 5px;
  background: var(--color-black);
  border-radius: 5px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  overflow: hidden;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  background: #f3f3f3;
}

.mobile-menu_up_inner {
  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: 30px;
  width: 100%;
}

.mobile-menu_ul_list {
  width: 100%;
}

.mobile-menu_li_link {
  display: block;
  padding: 15px 0;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.inp {
  max-width: 100%;
  width: 100%;
  height: 60px;
  padding: 0 22px;
  background: #EEEEEE;
  border: 0;
  border-radius: var(--radius);
  font-size: 18px;
  font-family: inherit;
}

.inp::-webkit-input-placeholder {
  color: #8A8A8A;
}

.inp::-moz-placeholder {
  color: #8A8A8A;
}

.inp:-ms-input-placeholder {
  color: #8A8A8A;
}

.inp::-ms-input-placeholder {
  color: #8A8A8A;
}

.inp::placeholder {
  color: #8A8A8A;
}

.textarea {
  max-width: 100%;
  width: 100%;
  height: 140px;
  padding: 18px 22px;
  background: #EEEEEE;
  border: 0;
  border-radius: var(--radius);
  font-size: 18px;
  font-family: inherit;
  color: inherit;
  resize: none;
}

.textarea:focus {
  outline: none;
}

.textarea::-webkit-input-placeholder {
  color: #8A8A8A;
}

.textarea::-moz-placeholder {
  color: #8A8A8A;
}

.textarea:-ms-input-placeholder {
  color: #8A8A8A;
}

.textarea::-ms-input-placeholder {
  color: #8A8A8A;
}

.textarea::placeholder {
  color: #8A8A8A;
}

.promo {
  padding: 130px 0;
  padding-bottom: 120px;
  overflow: hidden;
}

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

.promo_div_content {
  position: relative;
  z-index: 1;
  -ms-grid-column-span: 8;
  grid-column: 8 span;
}

.promo_div_undertitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-red);
  margin-bottom: 20px;
}

.promo_div_undertitle-icon {
  width: 18px;
  height: 26px;
  fill: var(--color-red);
}

.mob-kond {
    background: url(img/promo-mob-kond.png);
    width: 770px;
}

.promo_div_guarantee {
  position: absolute;
  bottom: -90px;
  left: 15px;
  max-width: 310px;
  padding: 25px;
  background: #fff;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.promo_div_guarantee-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  fill: var(--color-red);
}

.promo_div_guarantee-title {
  margin-bottom: 10px;
}

.promo_div_guarantee-text {
  opacity: 0.8;
  font-size: 90%;
}

.form_mess_mini {
  max-width: 650px;
  width: 100%;
}

.form_mess_mini__row {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 300px;
  grid-template-columns: 320px 300px;
  gap: 15px;
}

.form_button {
  height: 62px;
}

.form_notification {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.4;
  color: #8A8A8A;
}

.gorod-hidden {
    display: none;
}

.advant {
  margin-bottom: 200px;
}

.advant_inner {
  max-width: 1030px;
  margin: 0 auto;
}

.advant_title {
  margin-top: 50px !important;
  margin-bottom: 100px;
}

.advant_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.advant_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  padding: 35px;
  background: #fff;
  border-radius: var(--radius);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.advant_item-icon {
  font-size: 36px;
  line-height: 1;
  color: var(--color-red);
}

.advant_item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .advant_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .advant_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 25px;
  }
}

.discount-benefit {
  margin-bottom: 150px;
  background: #2062E0;
}

.banner {
  padding: 60px 70px;
  color: #fff;
}

.banner_disc_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner_disc_left {
  -ms-grid-column-span: 8;
  grid-column: 8 span;
}

.banner_disc_title {
  margin-bottom: 50px;
  text-align: left;
}

.banner .form_notification {
  color: #fff;
}

.banner_disc_right {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  padding-left: 40px;
}

.banner_disc_img {
    background: url(img/conditioner-discount.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 213px;
}

.mobile_on {
	display: none;
}

.banner_disc_list {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 25px;
  height: 100%;
}

.banner_disc_item {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  padding-left: 60px;
}

.banner_disc_item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(img/strelka.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.price {
  margin-bottom: 150px;
}

.breaking_title {
  margin-bottom: 100px;
}

.breaking_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.breaking_list .service-request {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.service {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 20px);
  flex: 1 1 calc(50% - 20px);
  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: 0;
  min-height: 400px;
  padding: 40px;
  background: #fff;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.service_break_title {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
}

.service_break_list {
  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;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.service_break_item {
  font-size: 16px;
}

.service_break_btn {
  width: 220px;
  white-space: nowrap;
}

.service-request {
  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;
  min-height: 400px;
  padding: 70px;
  background: #fff;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/-1;
}

.service-lead_title {
  margin-bottom: 15px;
  text-align: left;
  color: var(--color-red);
}

.service-lead_subtitle {
  margin-bottom: 50px;
}

.stages {
  position: relative;
  margin-bottom: 200px;
}

.stages_bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.stages_title {
  margin-bottom: 100px;
}

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

.stages_img-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.stages_img {
    background: url(img/repair.png);
    background-repeat: no-repeat;
    background-size: contain;
	width: 100%;
    height: 370px;
}

.stages_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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-item-align: end;
  -ms-grid-row-align: end;
  align-self: end;
  max-width: 510px;
  width: 100%;
  height: 370px;
  padding: 35px;
  background: #fff;
  border: 1px solid var(--color-red);
}

.steps_number {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
}

.step_li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.step_div_num {
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-red);
}

.step_div_text {
  line-height: 1.5;
}

.ask-question {
  margin-bottom: 70px;
}

.ask_questions_form-content {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
  margin-top: 80px;
}

.ask_questions_form-content p {
  text-align: center;
  margin-bottom: 20px;
}

.ask_questions_title {
  max-width: 100%;
  margin-bottom: -35px;
  text-align: center;
  color: var(--color-red);
}

.form-basic {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.form_inp_fields {
  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;
  margin-bottom: 20px;
}

.form-basic_button {
  max-width: 290px;
  width: 100%;
  margin: auto;
}

.ask_questions_map-content {
  overflow: hidden;
  -ms-grid-column-span: 7;
  grid-column: 7 span;
  background: #eee;
  border-radius: var(--radius);
  height: fit-content;
}

.discount-day {
  margin-bottom: 100px;
  background: #2062E0;
}

.footer {
  padding: 20px 0;
  background: #EEE;
}

@media (max-width: 1500px) {
  .menu_ul_list {
    gap: 20px;
  }

  .phone-link {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .header .phone-link {
    font-size: 16px;
  }
  .header .phone-link span {
    font-size: 14px;
  }
   .header .header_button{
    padding: 12px;
  }
  .menu_ul_list {
  font-size: 14px;
  gap: 10px;
  }
  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 43px;
  }

  .promo {
    padding-top: 100px;
  }

  .breaking_list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .service-request {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }

  .ask_questions_title {
    margin-bottom: 45px;
  }

  .ask_questions_form-content {
    margin-top: 0;
  }

  .footer .phone-link {
    display: none;
  }

  body.page-kond .footer .phone-link {
    display: inline;
  }
}

@media (max-width: 991px) {
  body {
    font-size: 16px;
  }

  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu_ul_list {
    display: none;
  }

  .promo_div_title br {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 38px;
  }

  .promo {
    position: relative;
    margin-bottom: 60px;
  }

  .promo_div_row {
    gap: 30px;
  }

  .mob-kond {
    display: none;
  }

  .promo_div_content {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .promo_div_guarantee {
    bottom: 270px;
    left: auto;
    right: 15px;
  }

  .banner_disc_row {
    grid-row-gap: 80px;
  }

  .banner_disc_left {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .banner_disc_title br {
    display: none;
  }

  .banner_disc_right {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
    padding: 0;
  }
  
  .mobile_off {
	  display: none;
  }
  .mobile_on {
	  display: block;
	  margin-bottom: 40px;
  }
  .banner_disc_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .banner_disc_list::before {
    display: none;
  }

  .banner_disc_item {
    padding-left: 0;
  }

  .banner_disc_item:before {
    top: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
	transform: rotate(90deg);
  }

  .breaking_list {
    gap: 30px;
  }

  .service-lead_subtitle {
    font-size: 18px;
  }

  .stages_img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .step_div_text {
    font-size: 16px;
  }

  .step_div_num {
    font-size: 18px;
  }

  .ask_questions_row {
    gap: 30px;
  }

  .discount-day .banner_disc_right {
    display: none;
  }

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

  .footer {
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .header_button {
    display: none;
  }

  body.page-kond .footer .header_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .promo {
    margin-bottom: 30px;
  }

  .promo_div_row {
    grid-row-gap: 50px;
  }

  .promo_div_guarantee {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .form_mess_mini__row {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
  }

  .service_break_title {
    font-size: 20px;
  }

  .advant {
    margin-bottom: 150px;
  }

  .banner {
    padding: 50px 30px;
  }

  .banner_disc_title {
    font-size: 32px;
  }

  .service_break_btn {
    width: 100%;
    padding: 0 14px;
    font-size: 15px;
  }

  .futer_panel_scroll_row {
    gap: 30px;
  }

  .advant_title {
    margin-bottom: 60px;
  }

  .discount-benefit {
    margin-bottom: 150px;
  }

  .breaking_title {
    margin-bottom: 60px;
  }

  .service {
    padding: 20px;
  }

  .service {
    min-height: auto;
  }

  .service_break_list {
    margin-bottom: 30px;
  }

  .service-request {
    padding: 30px;
    min-height: auto;
  }

  .service-lead_subtitle {
    margin-bottom: 30px;
  }

  .price {
    margin-bottom: 150px;
  }

  .stages_title {
    margin-bottom: 60px;
  }

  .stages_img-content {
    display: none;
  }

  .stages_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .stages {
    margin-bottom: 150px;
  }

  .stages_content {
    max-width: 100%;
    width: 100%;
  }

  .ask_questions_form-content {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .ask_questions_map-content {
    -ms-grid-column-span: 12;
    grid-column: 12 span;
  }

  .ask-question .field:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}

@media (max-width: 575px) {
  .futer_panel_scroll_row {
  gap: 15px;
  }
  .promo {
    padding-top: 70px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .promo_div_guarantee {
    max-width: 100%;
  }

  .form_mess_mini__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .banner_disc_row {
    grid-row-gap: 50px;
  }

  .banner_disc_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .banner_disc_item {
    padding-left: 40px;
  }

  .banner_disc_item:nth-child(1),
  .banner_disc_item:nth-child(3) {
    margin: 0;
  }

  .banner_disc_item:before {
    top: 0;
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

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

  .discount-benefit {
    margin-bottom: 130px;
  }

  .breaking_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .service {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

  .service-request {
    grid-column: auto;
  }

  .price {
    margin-bottom: 130px;
  }

  .ask-question .form_inp_fields {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .ask-question .field:nth-child(3) {
    grid-column: auto;
  }

  .header .phone-with-btn .btn {
    display: none;
  }

  h2 br {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo_head_title {
	  display:none;
  }
  .footer .futer_panel_scroll_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  h1,
  h2 {
    font-size: 28px;
  }

  h2 {
    text-align: left;
  }

  .promo {
    margin-bottom: 0;
    padding-bottom: 80px;
  }

  .advant_title {
    margin-bottom: 40px;
  }

  .advant_item {
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .advant {
    margin-bottom: 80px;
  }

  .banner {
    padding: 30px 15px;
  }

  .banner_disc_title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .banner_disc_row {
    grid-row-gap: 40px;
  }

  .discount-benefit {
    margin-bottom: 80px;
  }

  .breaking_title {
    margin-bottom: 30px;
  }

  .breaking_list {
    gap: 15px;
  }

  .service-request {
    padding: 20px;
  }

  .price {
    margin-bottom: 80px;
  }

  .stages_title {
    margin-bottom: 30px;
  }

  .stages_content {
    padding: 30px 15px;
  }

  .stages {
    margin-bottom: 80px;
  }

  .ask_questions_title {
    margin-bottom: 30px;
  }

  .form-basic_button {
    max-width: 100%;
    width: 100%;
  }

  .ask-question {
    margin-bottom: 80px;
  }

  .discount-day {
    margin-bottom: 80px;
  }

  .modal_win_subtitle {
    max-width: 270px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

@media (max-width: 374px) {
	.promo_div_content {
		-ms-grid-column-span: 11;
		grid-column: 11 span;
		}
}

#yamap, .yamap-psh {
    overflow: hidden;
    min-height: 490px;
}

.privacy-policy-line {
    padding: 3px 10px;
    background: #eee;
    border-top: 1px solid #ccc;
}

.privacy-policy-line .privacy-policy-line-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: #333;
}

.privacy-policy-line .privacy-policy-line-inner a {
    color: #0036d0;
    text-decoration: underline;
}

.sent-form-success {
    display: none;
	position: fixed;
	left: 10%;
	right: 10%;
	top: 40%;
	text-align: center;
	color: #000;
	background-color: #fff;
	-webkit-box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
	box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
	border-radius: 0.5rem;
	height: calc(30vh - 1rem);
	line-height: calc(30vh - 1rem);
	z-index: 1000;
}

.sent-form-error {
    display: none;
	position: fixed;
	left: 10%;
	right: 10%;
	top: 40%;
	text-align: center;
	color: #000;
	background-color: #F7D5D3;
	-webkit-box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
	box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
	border-radius: 0.5rem;
	height: calc(30vh - 1rem);
	line-height: calc(30vh - 1rem);
	z-index: 1000;
}

/* Страница кондиционеров: шапка и первый экран */
.header--kond {
  padding-top: 10px;
  padding-bottom: 10px;
  background: linear-gradient(180deg, rgba(57, 174, 151, 0.16) 0%, rgba(57, 174, 151, 0.09) 55%, rgba(57, 174, 151, 0.06) 100%), #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 2px 16px rgba(32, 98, 224, 0.06);
  box-shadow: 0 2px 16px rgba(32, 98, 224, 0.06);
  border-bottom: 1px solid rgba(57, 174, 151, 0.25);
}

.header--kond .container {
  max-width: 1650px;
}

.header--kond .futer_panel_scroll_row {
  gap: 22px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header--kond .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header--kond .logo_head_image {
  float: none;
  width: 56px;
  height: auto;
  max-height: 44px;
  margin-right: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.header--kond .logo_head_title {
  font-family: "Onest", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-black);
}

.header--kond .logo_head_title-sub {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.header--kond .menu {
  display: none;
}

.header--kond .burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 26px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header_contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header_contacts-item i {
  font-size: 24px;
  color: var(--color-blue);
}

.header_contacts-link {
  margin: 0;
  font-family: "Onest", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-black);
}

.header_contacts-hint {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.2;
  color: #8b95a1;
}

@media (max-width: 1300px) {
  .header_contacts {
    display: none;
  }
}

.header--kond .phone-with-btn {
  gap: 18px;
}

.phone-block {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header--kond .phone-link {
  font-family: "Onest", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.header--kond .header__callback {
  height: auto;
  margin-top: 6px;
  padding: 0;
  background: none;
  border: none;
  font-family: "Onest", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 5px;
  white-space: nowrap;
  cursor: pointer;
}

.header--kond .header__callback:hover {
  color: var(--color-blue-hover);
}

@media (max-width: 1500px) {
  .header--kond .phone-link {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .header--kond .phone-link {
    font-size: 19px;
  }

  .header--kond .header__callback {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .header--kond .logo_head_title {
    display: none;
  }

  .header--kond .futer_panel_scroll_row {
    gap: 12px;
  }

  .header--kond .phone-link {
    font-size: 15px;
    white-space: nowrap;
  }

  .header--kond .header__callback {
    display: none;
  }

  .header--kond .phone-with-btn {
    gap: 10px;
  }

  .header--kond .logo_head_image {
    width: 40px;
  }
}

@media (max-width: 360px) {
  .header--kond .phone-link {
    font-size: 13px;
  }
}

.promo.promo--kond {
  position: relative;
  overflow: hidden;
  font-family: "Onest", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  padding-top: 112px;
  padding-bottom: 90px;
  background: linear-gradient(165deg, #f3f7fd 0%, #ffffff 38%, #eef3fb 100%);
}

.promo.promo--kond::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 85% 22%, rgba(32, 98, 224, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.promo_hero_photo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 0;
  width: 100%;
  height: 480px;
  max-height: 60%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center 30%;
  object-position: center 30%;
  opacity: 0.16;
  border-radius: 0;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  pointer-events: none;
}

@media (min-width: 992px) {
  .promo_hero_photo {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    height: 100%;
    max-height: none;
    width: auto;
    max-width: 1100px;
    aspect-ratio: 4 / 3;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: right bottom;
    object-position: right bottom;
    opacity: 1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.45) 22%, rgba(0, 0, 0, 0.85) 38%, #000 50%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.45) 22%, rgba(0, 0, 0, 0.85) 38%, #000 50%);
  }
}

.promo.promo--kond .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .promo.promo--kond .container {
    max-width: 1500px;
    margin-left: 2cm;
    margin-right: 0;
    padding-left: 0;
  }
}

.promo_div_content--full {
  max-width: 1050px;
  -ms-grid-column-span: 12;
  grid-column: 1 / -1;
}

.promo.promo--kond h1.promo_offer {
  font-family: "Onest", "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #14181f;
  background: none;
  padding: 0;
  margin-bottom: 42px;
  font-size: 84px;
}

@media (max-width: 991px) {
  .promo.promo--kond h1.promo_offer {
    font-size: 60px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .promo.promo--kond h1.promo_offer {
    font-size: 42px;
    margin-bottom: 22px;
  }
}

.promo_info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 44px;
}

@media (max-width: 991px) {
  .promo_info-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.promo_info-item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  min-height: 108px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 30px rgba(15, 40, 80, 0.08);
  box-shadow: 0 10px 30px rgba(15, 40, 80, 0.08);
}

.promo_info-item img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

.promo_info-item p {
  margin: 0;
  line-height: 1.2;
}

.promo_info-item p b {
  font-size: 26px;
  line-height: 1.2;
  color: #1a2332;
}

@media (max-width: 575px) {
  .promo_info-item {
    min-height: auto;
    gap: 14px;
    padding: 14px 18px;
  }

  .promo_info-item img {
    width: 44px;
    height: 44px;
  }

  .promo_info-item p b {
    font-size: 16px;
    line-height: 1.2;
  }
}

.promo_cta-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 860px) {
  .promo_cta-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.promo_cta-btn {
  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-align: center;
  height: 112px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Onest", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.promo_cta-btn--blue {
  background: #09a3ef;
  -webkit-box-shadow: 0 20px 40px rgba(6, 133, 196, 0.2), inset 0 0 25px rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(6, 133, 196, 0.2), inset 0 0 25px rgba(255, 255, 255, 0.2);
}

.promo_cta-btn--blue:hover {
  background: #21b5ff;
}

.promo_cta-btn--red,
.promo_cta-btn--red:visited,
.promo_cta-btn--red:active,
.promo_cta-btn--red:focus {
  background: #39ae97;
  color: #fff;
  -webkit-box-shadow: 0 20px 40px rgba(47, 154, 133, 0.2), inset 0 0 25px rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(47, 154, 133, 0.2), inset 0 0 25px rgba(255, 255, 255, 0.2);
}

.promo_cta-btn--red:hover {
  background: #42c9ae;
  color: #fff;
}

@media (max-width: 575px) {
  .promo_cta-btn {
    height: 68px;
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .promo.promo--kond {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .promo.promo--kond {
    padding-top: 78px;
    padding-bottom: 50px;
  }
}

/* Посадочная kond: единая типографика и усиление блоков */
body.page-kond {
  font-family: "Onest", "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

body.page-kond .btn,
body.page-kond button,
body.page-kond input,
body.page-kond textarea,
body.page-kond select {
  font-family: inherit;
}

body.page-kond h1,
body.page-kond h2,
body.page-kond h3 {
  font-family: "Onest", "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 900;
  font-variant-numeric: lining-nums;
  font-feature-settings: "kern" 1, "liga" 1;
}

body.page-kond .advant_item {
  border: 1px solid rgba(32, 98, 224, 0.08);
  -webkit-box-shadow: 0 4px 22px rgba(15, 40, 80, 0.07);
  box-shadow: 0 4px 22px rgba(15, 40, 80, 0.07);
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
}

body.page-kond .advant_item:hover {
  -webkit-box-shadow: 0 10px 36px rgba(32, 98, 224, 0.12);
  box-shadow: 0 10px 36px rgba(32, 98, 224, 0.12);
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

body.page-kond .advant_title {
  letter-spacing: -0.02em;
}

body.page-kond .advant_item-title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

body.page-kond .advant_item-text {
  color: #4a5568;
  line-height: 1.45;
}

body.page-kond .banner_disc_title {
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.22;
  font-variant-numeric: lining-nums;
  font-feature-settings: "kern" 1, "liga" 1;
}

body.page-kond .banner_disc_title .banner-title-nums {
  font-weight: inherit;
  letter-spacing: inherit;
}

body.page-kond .banner_disc_item {
  font-weight: 600;
}

body.page-kond .service {
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

body.page-kond .service:hover {
  border-color: rgba(32, 98, 224, 0.15);
  -webkit-box-shadow: 0 8px 30px rgba(32, 98, 224, 0.1);
  box-shadow: 0 8px 30px rgba(32, 98, 224, 0.1);
}

body.page-kond .breaking_title {
  letter-spacing: -0.02em;
}

body.page-kond .service_break_title {
  font-weight: 900;
  letter-spacing: -0.015em;
}

body.page-kond .service_break_item {
  font-weight: 500;
  color: #3d4d5c;
}

body.page-kond .service-request {
  border: 1px solid rgba(32, 98, 224, 0.1);
  background: -webkit-gradient(linear, left top, left bottom, from(#f8fbff), to(#ffffff));
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  -webkit-box-shadow: 0 6px 28px rgba(32, 98, 224, 0.08);
  box-shadow: 0 6px 28px rgba(32, 98, 224, 0.08);
}

body.page-kond .service-lead_title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

body.page-kond .service-lead_subtitle {
  color: #4a5568;
  font-weight: 600;
}

body.page-kond .stages_title {
  letter-spacing: -0.02em;
}

body.page-kond .stages_content {
  border-color: rgba(32, 98, 224, 0.22);
  -webkit-box-shadow: 0 4px 24px rgba(15, 40, 80, 0.06);
  box-shadow: 0 4px 24px rgba(15, 40, 80, 0.06);
}

body.page-kond .step_div_num {
  font-family: "Onest", "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  font-variant-numeric: lining-nums;
}

body.page-kond .step_div_text {
  font-weight: 600;
  color: #2d3748;
}

body.page-kond .ask_questions_title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Блок отзывов (посадочная kond) */
.reviews--kond {
  margin-bottom: 120px;
}

.reviews--kond .reviews_inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews--kond .reviews_title {
  margin: 0 0 48px 0;
  text-align: center;
  font-size: 45px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-black);
}

.reviews--kond .reviews_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reviews--kond .reviews_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 22px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(32, 98, 224, 0.1);
  -webkit-box-shadow: 0 4px 22px rgba(15, 40, 80, 0.06);
  box-shadow: 0 4px 22px rgba(15, 40, 80, 0.06);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.reviews--kond .reviews_card:hover {
  -webkit-box-shadow: 0 8px 32px rgba(32, 98, 224, 0.1);
  box-shadow: 0 8px 32px rgba(32, 98, 224, 0.1);
}

.reviews--kond .reviews_card_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviews--kond .reviews_card_photo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#e8f0ff), to(#f0f4f8));
  background: linear-gradient(145deg, #e8f0ff 0%, #f0f4f8 100%);
  border: 2px solid rgba(32, 98, 224, 0.12);
}

.reviews--kond .reviews_card_avatar {
  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: 100%;
  height: 100%;
  font-size: 36px;
  line-height: 1;
}

.reviews--kond .reviews_card_meta {
  min-width: 0;
}

.reviews--kond .reviews_card_name {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #1a2332;
}

.reviews--kond .reviews_card_hint {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.reviews--kond .reviews_card_text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #3d4d5c;
}

@media (max-width: 991px) {
  .reviews--kond .reviews_grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .reviews--kond {
    margin-bottom: 100px;
  }
}

@media (max-width: 575px) {
  .reviews--kond .reviews_title {
    margin-bottom: 28px;
    font-size: 28px;
  }

  .reviews--kond .reviews_grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .reviews--kond .reviews_card {
    padding: 18px;
  }

  .reviews--kond {
    margin-bottom: 80px;
  }
}

body.page-kond .ask_questions_form-content {
  padding: 28px 24px 32px;
  border-radius: 14px;
  background: #f4f8fc;
  border: 1px solid rgba(32, 98, 224, 0.12);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body.page-kond .ask_questions_form-content p {
  font-weight: 500;
  color: #3d4d5c;
  line-height: 1.55;
}

body.page-kond .ask_questions_form-content p a {
  font-weight: 700;
}

body.page-kond .footer {
  background: #eef2f7;
  border-top: 1px solid rgba(32, 98, 224, 0.1);
}

body.page-kond .footer .futer_panel_scroll_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto 1fr;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px 16px;
}

body.page-kond .footer .logo {
  -ms-grid-column-align: start;
  justify-self: start;
  min-width: 0;
  max-width: min(100%, 24rem);
  font-size: 0.8125rem;
  line-height: 1.35;
}

body.page-kond .footer .menu {
  -ms-grid-column-align: center;
  justify-self: center;
}

body.page-kond .footer .menu_ul_list {
  gap: 6px 10px;
}

body.page-kond .footer .menu_li_link {
  padding: 0.35em 0.3em;
  font-size: 0.8125rem;
  white-space: nowrap;
}

body.page-kond .footer .phone-with-btn {
  -ms-grid-column-align: end;
  justify-self: end;
  gap: 10px 14px;
}

body.page-kond .footer .phone-link {
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
}

body.page-kond .footer .phone-with-btn .btn {
  height: 42px;
  padding: 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1320px) {
  body.page-kond .footer .menu_li_link {
    font-size: 0.75rem;
  }

  body.page-kond .footer .phone-link {
    font-size: 0.875rem;
  }

  body.page-kond .footer .phone-with-btn .btn {
    padding: 0 10px;
    font-size: 0.6875rem;
  }
}

@media (max-width: 480px) {
  body.page-kond .footer .futer_panel_scroll_row {
    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: 15px;
  }

  body.page-kond .footer .logo {
    -ms-grid-column-align: center;
    justify-self: center;
    text-align: center;
  }

  body.page-kond .footer .menu {
    -ms-grid-column-align: center;
    justify-self: center;
  }

  body.page-kond .footer .phone-with-btn {
    -ms-grid-column-align: center;
    justify-self: center;
  }

  body.page-kond .footer .menu_li_link {
    white-space: normal;
  }
}

body.page-kond .footer .menu_li_link:hover {
  color: var(--color-blue);
}

.modal-skidka-exit-content .modal-skidka-exit-title {
  color: var(--color-blue);
}

/* ===== Страница "Спасибо" ===== */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(165deg, #f3f7fd 0%, #ffffff 38%, #eef3fb 100%);
}

.thanks_box {
  max-width: 420px;
}

.thanks_icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #62c584 0%, #39ae97 100%);
  box-shadow: 0 14px 34px rgba(57, 174, 151, 0.35);
  color: #fff;
  font-size: 40px;
}

.thanks_title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--color-black);
}

.thanks_text {
  font-size: 17px;
  line-height: 1.5;
  color: #5c6b7d;
  margin-bottom: 28px;
}

.thanks_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--color-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(32, 98, 224, 0.28);
  transition: 0.2s;
}

.thanks_link:hover {
  background: var(--color-blue-hover);
  color: #fff;
}

@media (max-width: 575px) {
  .thanks_title {
    font-size: 26px;
  }

  .thanks_text {
    font-size: 15px;
  }
}

/* ===== Квиз ===== */
.quiz {
  padding: 100px 0;
  background: linear-gradient(165deg, #f3f7fd 0%, #ffffff 38%, #eef3fb 100%);
}

.quiz_head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.quiz_title {
  font-size: 40px;
  margin-bottom: 16px;
}

.quiz_subtitle {
  font-size: 18px;
  color: #5c6b7d;
  margin: 0;
}

.quiz_layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 40px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.quiz_perks {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  -webkit-box-shadow: 0 10px 30px rgba(15, 40, 80, 0.08);
  box-shadow: 0 10px 30px rgba(15, 40, 80, 0.08);
}

.quiz_perks-title {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 22px;
}

.quiz_perks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  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;
}

.quiz_perks-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #1a2332;
}

.quiz_perks-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  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: 50%;
  background: rgba(32, 98, 224, 0.1);
  color: var(--color-blue);
  font-size: 18px;
}

.quiz_box {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px 40px;
  -webkit-box-shadow: 0 16px 44px rgba(15, 40, 80, 0.1);
  box-shadow: 0 16px 44px rgba(15, 40, 80, 0.1);
}

.quiz_progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.quiz_progress-bar {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 10px;
  border-radius: 10px;
  background: #eef1f6;
  overflow: hidden;
}

.quiz_progress-fill {
  width: 0%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--color-blue) 0%, #39ae97 100%);
  transition: width 0.4s ease;
}

.quiz_progress-text {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #5c6b7d;
  white-space: nowrap;
}

.quiz_progress-text span {
  color: var(--color-blue);
}

.quiz_step {
  display: none;
}

.quiz_step.is-active {
  display: block;
  -webkit-animation: quizFadeIn 0.35s ease;
  animation: quizFadeIn 0.35s ease;
}

@-webkit-keyframes quizFadeIn {
  from { opacity: 0; -webkit-transform: translateY(8px); }
  to { opacity: 1; -webkit-transform: translateY(0); }
}

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz_step-counter {
  font-size: 14px;
  color: #8a94a3;
  margin-bottom: 10px;
}

.quiz_step-counter b {
  color: var(--color-black);
}

.quiz_step-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-black);
}

.quiz_variants {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.quiz_variant {
  cursor: pointer;
  display: block;
}

.quiz_variant-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.quiz_variant-pic {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.quiz_variant-pic img {
  display: block;
  width: 100%;
  aspect-ratio: 206 / 125;
  -o-object-fit: cover;
  object-fit: cover;
}

.quiz_variant-check {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(15, 40, 80, 0.18);
  box-shadow: 0 4px 10px rgba(15, 40, 80, 0.18);
  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;
  color: transparent;
  font-size: 15px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.quiz_variant:hover .quiz_variant-pic {
  border-color: rgba(32, 98, 224, 0.35);
}

.quiz_variant-input:checked ~ .quiz_variant-pic {
  border-color: var(--color-blue);
}

.quiz_variant-input:checked ~ .quiz_variant-pic .quiz_variant-check {
  background: var(--color-blue);
  color: #fff;
}

.quiz_variant-text {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
}

.quiz_checklist {
  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;
  margin-bottom: 32px;
}

.quiz_check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.quiz_check:hover {
  border-color: rgba(32, 98, 224, 0.4);
}

.quiz_check-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.quiz_check-custom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  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;
  color: transparent;
  font-size: 14px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.quiz_check-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
}

.quiz_check-input:checked ~ .quiz_check-custom {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

.quiz_check-input:checked ~ .quiz_check-custom ~ .quiz_check-text {
  color: var(--color-blue);
}

.quiz_check:has(.quiz_check-input:checked) {
  border-color: var(--color-blue);
  background: rgba(32, 98, 224, 0.05);
}

.quiz_step-actions {
  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;
  gap: 16px;
}

.quiz_step-actions--start {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.quiz_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;
  height: 58px;
  padding: 0 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.quiz_btn--next {
  background: var(--color-blue);
  color: #fff;
  margin-left: auto;
}

.quiz_btn--next:hover:not(:disabled) {
  background: var(--color-blue-hover);
}

.quiz_btn--next:disabled {
  opacity: 0.35;
  cursor: default;
}

.quiz_btn--prev {
  background: #eef1f6;
  color: #5c6b7d;
}

.quiz_btn--prev:hover {
  background: #e3e8f0;
}

.quiz_btn--submit {
  width: 100%;
  height: 62px;
  background: var(--color-red);
  color: #fff;
  margin-bottom: 16px;
}

.quiz_btn--submit:hover {
  background: var(--color-red-hover);
}

.quiz_callback {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.quiz_callback-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.quiz_messengers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.quiz_messenger {
  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: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 2px solid var(--color-border);
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.quiz_messenger-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.quiz_messenger-custom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef1f6;
  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;
  overflow: hidden;
  font-size: 19px;
  color: #5c6b7d;
}

.quiz_messenger-custom img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.quiz_messenger-text {
  font-size: 13px;
  font-weight: 600;
  color: #5c6b7d;
}

.quiz_messenger.is-active {
  border-color: var(--color-blue);
  background: rgba(32, 98, 224, 0.05);
}

.quiz_messenger.is-active .quiz_messenger-custom {
  background: var(--color-blue);
  color: #fff;
}

.quiz_messenger.is-active .quiz_messenger-text {
  color: var(--color-blue);
}

.quiz_callback-input {
  margin-bottom: 18px;
  text-align: center;
}

.quiz_consent {
  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: 8px;
  cursor: pointer;
}

.quiz_consent-text {
  font-size: 12px;
  color: #8a94a3;
}

@media (max-width: 991px) {
  .quiz {
    padding: 70px 0;
  }

  .quiz_layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .quiz_perks {
    padding: 24px;
  }

  .quiz_box {
    padding: 28px 24px 32px;
  }

  .quiz_title {
    font-size: 30px;
  }

  .quiz_variants {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .quiz {
    padding: 54px 0;
  }

  .quiz_title {
    font-size: 24px;
  }

  .quiz_subtitle {
    font-size: 15px;
  }

  .quiz_box {
    padding: 22px 16px 26px;
    border-radius: 18px;
  }

  .quiz_step-title {
    font-size: 21px;
  }

  .quiz_variants {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .quiz_btn {
    height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }

  .quiz_messengers {
    gap: 8px;
  }

  .quiz_messenger {
    padding: 10px 12px;
  }
}
