: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;
}

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;
  font-family: "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 {
  position: absolute;
  fill: var(--color-dark);
  width: 25px;
  height: 25px;
  margin-right: 0;
  opacity: 1;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.modal-close svg:hover {
  opacity: 1;
  fill: var(--color-secondary);
}

.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);
}

.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);
}

.promo_div_title {
  margin-bottom: 45px;
}

.re_promo_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: 14px;
  margin-bottom: 45px;
}

.re_promo_list-item {
  position: relative;
  padding-left: 40px;
}

.re_promo_list-item::before {
  content: "»";
  position: absolute;
  top: -2px;
  left: 0;
  color: red;
  width: 26px;
  height: 25px;
}

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

.promo_div_img {
	position: absolute;
    top: -130px;
    right: -200px;
    background: url(../img/promo-img.png);
    background-repeat: no-repeat;
    width: 950px;
    height: 770px;
}

.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 {
  width: 50px;
  height: 50px;
  fill: 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: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service {
  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: 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;
}

.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: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/4;
}

.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;
  }

  .promo_div_img {
    right: -50px;
  }

  .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;
  }

  .promo_div_img {
    display: none;
  }
  
  .mob-kond {
    display: none;
  }

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

  .promo_div_img-content {
    position: initial;
    -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%;
  }

  .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-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, #fbfcfe 0%, #ffffff 55%, #ffffff 100%);
  -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(222, 230, 240, 0.95);
}

.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: 44px;
  height: auto;
  max-height: 34px;
  margin-right: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.header--kond .logo_head_title {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 15px;
  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: 1px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.header--kond .menu_ul_list {
  gap: 6px;
}

.header--kond .menu_li_link {
  padding: 6px 10px;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border-radius: 8px;
  -webkit-transition: color 0.2s, background 0.2s;
  -o-transition: color 0.2s, background 0.2s;
  transition: color 0.2s, background 0.2s;
}

.header--kond .menu_li_link:hover {
  background: rgba(32, 98, 224, 0.06);
  color: var(--color-blue);
}

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

.header--kond .phone-link {
  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;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.header--kond .phone-link span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b95a1;
}

.header--kond .phone-with-btn .btn {
  height: 42px;
  padding: 0 16px;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 9px;
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.header--kond .header__callback {
  font-weight: 600;
  white-space: nowrap;
}

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

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

  .header--kond .phone-link span {
    font-size: 9px;
  }

  .header--kond .header_button {
    padding: 8px 12px;
    height: 40px;
    font-size: 12px;
  }

  .header--kond .menu_li_link {
    padding: 5px 8px;
    font-size: 13px;
  }
}

.promo.promo--kond {
  position: relative;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  padding-top: 76px;
  padding-bottom: 48px;
  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.promo--kond .container {
  position: relative;
  z-index: 1;
}

.promo.promo--kond h1 {
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.15em 0.35em;
  margin-bottom: 0.28em;
}

.promo.promo--kond .promo_div_title {
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  color: #3d4f66;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  padding-left: 15px;
}

.re_promo_list--kond {
  list-style: none;
  padding: 0;
  margin-left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px;
  margin-top: 16px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .re_promo_list--kond {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 5px 10px;
  }
}

.re_promo_list--kond .re_promo_list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(32, 98, 224, 0.09);
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 10px rgba(15, 40, 80, 0.04);
  box-shadow: 0 2px 10px rgba(15, 40, 80, 0.04);
  -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;
}

.re_promo_list--kond .re_promo_list-item:hover {
  border-color: rgba(32, 98, 224, 0.18);
  -webkit-box-shadow: 0 4px 16px rgba(32, 98, 224, 0.08);
  box-shadow: 0 4px 16px rgba(32, 98, 224, 0.08);
}

.re_promo_list--kond .re_promo_list-item::before {
  content: none;
  display: none;
}

.re_promo_list--kond .re_promo_list-ico {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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;
  width: 1.35em;
  min-width: 1.35em;
  height: auto;
  padding: 0;
  background: none;
  border-radius: 0;
  color: inherit;
  font-size: 1.05rem;
}

.re_promo_list--kond .re_promo_list-ico .bi {
  display: inline-block;
  line-height: 1;
  font-size: 1.1em;
}

.re_promo_list--kond .re_promo_list-ico .bi::before {
  display: inline-block;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--color-blue-hover) !important;
  -webkit-text-fill-color: var(--color-blue-hover);
}

.re_promo_list--kond .re_promo_list-txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: #1a2332;
}

.promo-lead {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  padding: 14px 16px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 98, 224, 0.14);
  -webkit-box-shadow: 0 8px 32px rgba(32, 98, 224, 0.1);
  box-shadow: 0 8px 32px rgba(32, 98, 224, 0.1);
}

.promo-lead .form_mess_mini {
  max-width: none;
  width: 100%;
}

.promo-lead .form_mess_mini__row {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  -ms-grid-columns: minmax(0, 1fr) auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.promo-lead .inp {
  height: 48px;
  font-size: 16px;
}

.promo-lead .form_button.btn {
  height: 48px;
  min-height: 48px;
  padding: 0 22px;
  font-size: 15px;
}

.promo-lead__headline {
  margin: 0 0 4px 0;
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #1a2332;
  text-align: center;
}

.promo-lead__sub {
  margin: 0 0 12px 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #5c6b7d;
  text-align: center;
}

.promo.promo--kond .promo_div_form {
  margin-bottom: 0;
}

.promo-lead .form_notification {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.35;
  color: #8a94a3;
  text-align: center;
}

.promo-lead__alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(32, 98, 224, 0.14);
  background: rgba(32, 98, 224, 0.07);
  text-align: center;
}

.promo-lead__alt-label {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #2d3a47;
}

.promo-lead__alt-link {
  display: inline-block;
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(32, 98, 224, 0.45);
  -webkit-transition: color 0.2s, border-color 0.2s;
  -o-transition: color 0.2s, border-color 0.2s;
  transition: color 0.2s, border-color 0.2s;
  text-align: center;
}

.promo-lead__alt-link:hover {
  color: var(--color-blue-hover);
  border-bottom-color: rgba(21, 80, 193, 0.65);
}

.promo-lead__alt-link:focus {
  outline: none;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 0 2px rgba(32, 98, 224, 0.35);
  box-shadow: 0 0 0 2px rgba(32, 98, 224, 0.35);
}

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

  .promo-lead .form_mess_mini__row {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    -ms-grid-columns: minmax(0, 1fr) auto;
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

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

  .promo.promo--kond .promo_div_title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .re_promo_list--kond .re_promo_list-ico {
    font-size: 1rem;
  }

  .re_promo_list--kond .re_promo_list-ico .bi {
    font-size: 1.05em;
  }

  .re_promo_list--kond .re_promo_list-txt {
    font-size: 13px;
  }

  .promo-lead {
    padding: 12px 12px 10px;
  }

  .promo-lead__headline {
    font-size: 16px;
  }

  .promo-lead__sub {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .promo-lead .form_mess_mini__row {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promo-lead .form_button.btn {
    width: 100%;
  }

  .promo-lead__alt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    padding: 11px 12px;
  }

  .promo-lead__alt-label {
    font-size: 13px;
  }

  .promo-lead__alt-link {
    font-size: 13px;
  }
}

/* Посадочная kond: единая типографика и усиление блоков */
body.page-kond {
  font-family: "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: "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: "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_img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.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);
}
