: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: 28px;
  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: -150px;
    background: url(../img/promo-img.jpg);
    background-repeat: no-repeat;
    width: 950px;
    height: 770px;
}

.mob-kond {
    background: url(../img/promo-mob-kond.jpg);
    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-bottom: 100px;
}

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

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

.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/boiler-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: 200px;
}

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

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

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

  .advant_row {
    gap: 30px;
  }

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

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

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

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

@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%;
  }

  .advant_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .advant_item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

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