@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url("../font/gilroy-regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url("../font/gilroy-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url("../font/gilroy-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url("../font/gilroy-bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: local("Gilroy"), url("../font/gilroy-black.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
.ttu {
  text-transform: uppercase !important;
}

.ttn {
  text-transform: none !important;
}

* {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: white;
  font-size: 20px;
  line-height: 1.5;
  font-family: "Gilroy", sans-serif;
  color: #282828;
}

.rale {
  font-family: "Gilroy", sans-serif;
}

:focus {
  outline: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  border: none;
}

a {
  background-color: transparent;
  color: inherit;
  transition: 0.3s;
}
section {
  position: relative;
  z-index: 1;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  margin: 0;
}

h1, .h1 {
  font-weight: 300;
  font-size: 55px;
  margin-bottom: 20px;
}

h2, .h2 {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  text-transform: uppercase;
  margin: 50px 0 40px;
}

h3, .h3 {
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  margin: 50px 0 40px;
}

h4, .h4 {
  font-size: 24px;
  margin: 20px 0;
}

h5, .h5 {
  font-size: 22px;
  margin: 20px 0;
}

.m0 {
  margin: 0 !important;
}

.m10 {
  margin: 10px;
}

.mt0 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.rad10 {
  border-radius: 10px;
  overflow: hidden;
}

.main_input {
  width: 100%;
  background-color: white;
  padding: 29px 25px;
  border: 1px solid white;
  border-radius: 20px;
  font-size: 17px;
}
.main_input.input_ico {
  background: white url("../img/mark.svg") no-repeat 25px center;
  padding-left: 70px;
}
.main_input.phone_ico {
  background-image: url("../img/phone.svg");
}
.main_input.user_ico {
  background-image: url("../img/user.svg");
}
.main_input:placeholder {
  color: #8F9498;
}
.main_input:focus {
  border-color: #3ed7e1;
}

.main_checkbox {
  position: relative;
  line-height: 1;
  margin: 10px 0;
}
.main_checkbox input {
  position: absolute;
  opacity: 0;
  height: 0;
  margin: 0;
}
.main_checkbox input:checked + label:before {
  background: #676767 url("../img/tick_white.svg") no-repeat center center;
  border-color: #676767;
}
.main_checkbox label {
  position: relative;
  cursor: pointer;
  color: #676767;
  font-size: 16px;
  line-height: 1;
  transition: 0.3s;
  display: inline-block;
}
.main_checkbox label:before {
  content: "";
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  display: inline-block;
  border: 1px solid #676767;
  border-radius: 5px;
  transition: 0.3s;
  background: url("../img/tick_trans.svg") no-repeat center center;
  vertical-align: middle;
}

.main_radio {
  position: relative;
  line-height: 1;
  margin: 10px 0;
}
.main_radio input {
  position: absolute;
  opacity: 0;
  height: 0;
  margin: 0;
}
.main_radio input:checked + label:before {
  background: #676767;
  border-color: #676767;
}
.main_radio label {
  position: relative;
  cursor: pointer;
  color: #676767;
  font-size: 16px;
  line-height: 1;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.main_radio label:before {
  content: "";
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  display: inline-block;
  border: 1px solid #676767;
  border-radius: 100%;
  transition: 0.3s;
  vertical-align: middle;
}

.room_choose {
  display: flex;
  border-radius: 20px;
  border: 1px solid rgba(32, 42, 50, 0.08);
  background: #FFF;
}
.room_choose .room_radio:last-child {
  flex: 1;
}

.room_radio {
  position: relative;
  line-height: 1;
  flex-basis: 100px;
}
.room_radio input {
  position: absolute;
  opacity: 0;
  height: 0;
  margin: 0;
}
.room_radio input:checked + label {
  border: 1px solid #3ed7e1;
  background: rgba(74, 244, 255, 0.15);
}
.room_radio input:checked + label:after {
  display: block;
  width: 30px;
}
.room_radio label {
  border-radius: 20px;
  border: 1px solid transparent;
  padding: 25px;
  position: relative;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  line-height: 100%;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  white-space: nowrap;
}
.room_radio label:after {
  display: none;
  background: url("../img/radio_button.svg") no-repeat center center;
  content: "";
  width: 0;
  height: 30px;
  box-sizing: border-box;
  display: inline-block;
  transition: 0.3s;
  vertical-align: middle;
}

.city_choose {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.main_tab {
  flex: 1;
}
.main_tab input {
  position: absolute;
  opacity: 0;
  height: 0;
  margin: 0;
}
.main_tab input:checked + label {
  color: #282828;
  background-color: #3ed7e1;
}
.main_tab label {
  color: #FFF;
  font-size: 17px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 20px;
  background: rgba(240, 244, 248, 0.1);
  transition: 0.3s;
  cursor: pointer;
  min-height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_tab label:hover {
  background-color: #cbe71a;
}

input::-ms-clear {
  display: none;
}

input, textarea, button, select {
  font-family: inherit;
}

textarea {
  resize: none;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  background-color: inherit;
  padding: 15px;
  border: 1px solid #676767;
  font-size: 1rem;
}
textarea:focus {
  border-color: #676767;
}

button {
  border: 0;
  cursor: pointer;
  outline: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.hidden {
  display: none;
}

.bold {
  font-weight: bold;
}

.wrapper {
  max-width: 1428px;
  margin: 0 auto;
  padding: 0 14px;
}

.main_btn {
  background-color: #3ed7e1;
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 10px;
  outline: none;
  flex-basis: 280px;
  text-align: center;
  width: 100%;
  min-height: 60px;
  padding: 10px 30px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
}
.main_btn:hover {
  background-color: #cbe71a;
}
.main_btn.submit_btn {
  margin: 30px auto 0;
}
.main_btn.thick_btn {
  width: 300px;
  border-radius: 20px;
  min-height: 80px;
}
.main_btn.long_btn {
  width: 100%;
}
.main_btn.big_btn {
  font-size: 30px;
  font-weight: 700;
  font-family: Gilroy;
}
.main_btn.yellow_btn {
  background-color: #cbe71a;
}
.main_btn.yellow_btn:hover {
  background-color: #3ed7e1;
}

.unbroken {
  white-space: nowrap;
}

.nice_select_wrap {
  display: flex;
  width: 230px;
}
.nice_select_wrap.full {
  width: 100%;
}
.nice_select_wrap + .nice_select_wrap {
  margin-top: 10px;
}

.nice_select {
  width: 100%;
  border: 1px solid #676767;
  font-size: 16px;
  height: 45px;
  line-height: 43px;
}
.nice_select:after {
  border-color: #676767;
}
.nice_select:hover {
  border-color: #676767;
}

.range_line {
  margin: 20px 10px;
  position: relative;
}
.range_line:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: white;
  left: 0;
  top: 0;
}

.range_val {
  color: #202A32;
  font-family: Gilroy;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  margin-top: 36px;
  margin-left: -5px;
}
.range_val .num {
  margin-right: 5px;
}
.range_val sup {
  font-size: 12px;
}

.ui-slider-handle:after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #23D6E1;
  position: absolute;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ui-widget.ui-widget-content {
  border: 0;
  background: white;
  height: 5px;
  top: 10px;
}

.ui-slider .ui-slider-range {
  background: #23D6E1;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 0;
  background: white;
  border-radius: 12px;
  width: 30px;
  height: 30px;
  top: -13px;
  cursor: pointer;
  box-shadow: 0px 0px 15px 0px rgba(32, 42, 50, 0.08);
}

.range_block .price_range {
  display: flex;
  gap: 5px;
}
.range_block .price_range .input_wrap {
  position: relative;
}
.range_block .price_range .input_wrap .text {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #676767;
}
.range_block .price_range .input_wrap input {
  padding: 10px 10px 10px 43px;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.range_block .price_range .input_wrap input::-webkit-outer-spin-button, .range_block .price_range .input_wrap input::-webkit-inner-spin-button {
  display: none;
}

.slick-arrow {
  position: absolute;
  z-index: 1;
  top: calc(50% - 20px);
  right: -10px;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("../img/arrow.svg") no-repeat center;
}
.slick-arrow.slick-prev {
  transform: rotate(180deg);
  left: -10px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.slick-dots li {
  margin: 0 5px;
}
.slick-dots li button {
  font-size: 0;
  border: 0;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  padding: 0;
  background: #ADDABF;
}
.slick-dots li.slick-active button {
  width: 14px;
  height: 14px;
  background-color: white;
}
.dark_dots .slick-dots li.slick-active button {
  background-color: #282828;
}

.main_sec {
  padding: 120px 0;
}

.main_sec_new {
  padding: 200px 0 120px;
}

.main_sec_100 {
  padding: 100px 0;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: auto;
}
.page main {
  flex: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.sec_title {
  text-align: center;
  font-family: Gilroy;
  font-size: 40px;
  font-weight: 800;
  line-height: 110%;
  padding-top: 60px;
  background: url("../img/rub.svg") no-repeat center 0;
  margin-bottom: 60px;
}
.sec_title.white {
  background-image: url("../img/rub_1.svg");
  color: white;
}
.sec_title.simple {
  padding-top: 0;
  background: none;
}
.sec_title.little_margin {
  margin-bottom: 35px;
}
.sec_title.tiny_margin {
  margin-bottom: 10px;
}
.sec_title .yellow {
  color: #cbe71a;
}

.subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 110%;
  margin: auto;
  margin-bottom: 40px;
}

.subtitle_big {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  margin: auto;
  margin-bottom: 10px;
}

.header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 12;
  transition: 0.3s;
  background-color:white;
}
.header.fixed {
  background-color: #fff;
    padding: 5px 0;
    line-height: 1.1;
}
.header a {
  text-decoration: none;
}
.header .header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.header .header_wrap .logo_wrap {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 20px;
  align-items: center;
}
.header .header_wrap .logo_wrap img {
  grid-row: 1/3;
}
.header .header_wrap .logo_wrap .title {
  font-family: Gilroy;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
}
.header .header_wrap .logo_wrap .text {
  font-size: 17px;
  font-weight: 500;
}
.header .header_wrap .schedule_block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .header_wrap .schedule_block .phone {
  font-family: Gilroy;
  font-size: 26px;
  font-weight: 800;
}
.header .header_wrap .schedule_block .text {
  font-size: 17px;
  font-weight: 500;
}

.first_sec {
  background: url("../img/first_bg.jpg") no-repeat center center/cover;
}
.first_sec .first_sec_body {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.first_sec .first_sec_body .text_block .text {
  font-family: Gilroy;
  font-size: 56px;
  line-height: 140%;
  font-weight: 500;
  color: #676767;
  margin-top: 75px;
}
.first_sec .first_sec_body .text_block .text .yel {
  background-color: #cbe71a;
  padding: 2px 10px;
  color: #282828;
  font-weight: 800;
  border-radius: 10px;
}
.first_sec .first_sec_body .text_block .main_btn {
  margin-top: 60px;
}
.first_sec .first_sec_body .img_block {
  width: 602px;
  position: absolute;
  right: 0;
  bottom: 60px;
}

.slogan_animation {
  position: absolute;
  top: 74px;
  right: 202px;
}
.slogan_animation .slogan {
  text-align: center;
  position: relative;
  font-family: Gilroy;
  padding: 48px 0;
  width: 190px;
  height: 190px;
}
.slogan_animation .slogan .small {
  font-size: 17px;
  font-weight: 600;
  line-height: 90%;
}
.slogan_animation .slogan .big {
  font-size: 36px;
  font-weight: 700;
  line-height: 90%;
  margin: 15px 0;
}
.slogan_animation .slogan .bill {
  position: absolute;
}
.slogan_animation .slogan .bill_1 {
  top: -39px;
  left: -41px;
  animation: bill_1 5s ease-in-out 0.5s infinite;
}
.slogan_animation .slogan .bill_2 {
  bottom: -50px;
  right: -56px;
  animation: bill_2 5s ease-in-out 0.5s infinite;
}
.slogan_animation .circle {
  background: url("../img/ellipse.svg") no-repeat center center, radial-gradient(50% 50% at 50% 50%, #F3FFAB 0%, #cbe71a 100%);
  width: 190px;
  height: 190px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: circle 5s ease-in-out 0.5s infinite;
}

@keyframes circle {
  from {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes bill_1 {
  from {
    top: -39px;
  }
  50% {
    top: -79px;
  }
  to {
    top: -39px;
  }
}
@keyframes bill_2 {
  from {
    bottom: -50px;
  }
  50% {
    bottom: -90px;
  }
  to {
    bottom: -50px;
  }
}
.money_steps {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 562px;
  gap: 20px 100px;
  margin-bottom: 10px;
}
.money_steps .text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.money_steps .text .item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: url("../img/check.svg") no-repeat 0 center;
  min-height: 50px;
  padding-left: 70px;
  font-weight: 700;
  line-height: 120%;
}
.money_steps .text .item:last-child {
  color: #198A46;
  background-image: url("../img/check_1.svg");
}
.money_steps .text .item .num {
  font-family: Gilroy;
  font-size: 30px;
  font-weight: 600;
}

.estimate_block {
  background-color: #198A46;
  border-radius: 40px;
  padding: 30px;
}
.estimate_block .sec_title, .estimate_block .subtitle {
  color: white;
}

.tabs .tabs_titles {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.tabs .tabs_titles .one {
  color: #FFF;
  font-size: 17px;
  font-weight: 700;
  line-height: 100%;
  border-radius: 20px;
  background: rgba(240, 244, 248, 0.1);
  transition: 0.3s;
  cursor: pointer;
  min-height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.tabs .tabs_titles .one:hover {
  background-color: #cbe71a;
}
.tabs .tabs_titles .one.active {
  color: #282828;
  background-color: #3ed7e1;
}
.tabs .tabs_body .one {
  display: none;
}
.tabs .tabs_body .one.active {
  display: block;
}

.estimate_form .form_block {
  margin-top: 15px;
  padding: 30px;
  border-radius: 40px;
  background: #F0F4F8;
}
.estimate_form .form_block .form_line_wrap {
  display: flex;
  gap: 20px 30px;
}
.estimate_form .form_block .form_line_wrap .one {
  flex: 1;
}
.estimate_form .form_block .form_line_wrap .one .cell_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
}
.estimate_form .form_block .form_line_wrap .one .cell_title .num {
  border-radius: 15px;
  background: #FFF;
  font-weight: 600;
  padding: 0 15px;
  line-height: 40px;
  display: inline-block;
  margin-right: 15px;
}

.agree_text {
  text-align: center;
  margin-top: 15px;
  font-size: 17px;
  color: #737B81;
  font-weight: 500;
}

.our_cases {
  background-color: #5BB57F;
}

.case_slider_x .item .case_one {
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  background: #FFF;
	height: 100%;
}
.case_slider_x .item .case_one .img {
  border-radius: 28px;
  height: 345px;
  padding: 5px;
  padding: 30px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  margin: 5px;
  text-decoration: none;
}
.case_slider_x .item .case_one .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) 0%;
}
.case_slider_x .item .case_one .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.case_slider_x .item .case_one .img .name {
  font-size: 30px;
  color: white;
  font-weight: 700;
  line-height: 100%;
  position: relative;
  z-index: 1;
}
.case_slider_x .item .case_one .text {
  padding: 10px 35px 25px;
}
.case_slider_x .item .case_one .text .house_content {
  margin: 10px 0 40px;
}
.case_slider_x .item .case_one .text .review_one {
  background: url("../img/quote_1.svg") no-repeat right top;
  padding-right: 56px;
  font-weight: 500;
}
.case_slider_x .item .case_one .text .review_one .name_age {
  font-size: 17px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}

.price_line {
  display: flex;
  background-color: #F4F4F4;
  border-radius: 20px;
}
.price_line .one {
  border-radius: 20px;
  color: #AEB4B9;
  padding: 20px;
  text-align: center;
  flex: 1;
}
.price_line .one.new {
  color: white;
  background: #1A8B47;
}
.price_line .one .point {
  font-size: 17px;
  font-weight: 600;
  line-height: 120%;
}
.price_line .one .value {
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-top: 10px;
}

.house_content {
  border-radius: 20px;
  background: #F4F4F4;
  padding: 30px;
  font-size: 17px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.house_content .line {
  display: flex;
  align-items: baseline;
}
.house_content .line .dash {
  border-bottom: 2px dashed #c3c3c3;
  margin: 0 20px;
  flex: 1;
}
.house_content .line .value {
  font-weight: 600;
}

.our_team .subtitle,
.our_team .subtitle_big {
  max-width: 952px;
}

.team_block {
}
.team_block .item {
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  flex: 1;
  padding: 5px;
  display: flex;
  margin: 0 10px;
}
.team_block .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.team_block .item .text {
  padding: 30px;
  background-color: #fff;
  margin-top: auto;
  border-radius: 28px;
  width: 100%;
}
.team_block .item .text .name {
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
}
.team_block .item .text .position {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 10px;
}

.request_sec {
  background-color: #198A46;
}

.request_form .wrap {
  display: flex;
  gap: 10px;
}
.request_form .wrap .input_wrap {
  flex: 1;
}
.request_form .agree_text {
  color: #A3D1B5;
  margin-top: 20px;
}

.partners_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.partners_block .item {
  flex-basis: 216px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map_sec {
  position: relative;
}
.map_sec .info_block {
  position: absolute;
  top: 70px;
  right: 260px;
  padding: 40px;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 6px 6px 0px 0px #1A8B47;
  line-height: 90%;
}
.map_sec .info_block .title {
  font-family: Gilroy;
  font-size: 24px;
  font-weight: 800;
  line-height: 90%;
}
.map_sec .info_block .pretitle {
  color: #636A70;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
  position: relative;
  padding: 0 15px;
  margin: 40px 0 30px;
  z-index: 1;
}
.map_sec .info_block .pretitle:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #198A46;
  position: absolute;
  left: 0;
  top: 8px;
  z-index: -2;
}
.map_sec .info_block .pretitle:before {
  content: "";
  width: 100px;
  height: 30px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.map_sec .info_block .phone {
  font-size: 24px;
  font-weight: 600;
  line-height: 90%;
  text-decoration: none;
}
.map_sec .info_block .schedule,
.map_sec .info_block .metro {
  margin-top: 15px;
}
.map_sec .info_block .schedule + .address,
.map_sec .info_block .metro + .address {
  margin-top: 40px;
}
.map_sec .info_block .address {
  font-weight: 800;
}

.map {
  height: 615px;
}

.footer a {
  text-decoration: none;
}
.footer .top_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}
.footer .top_wrap .logo_wrap {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 0 20px;
  align-items: center;
}
.footer .top_wrap .logo_wrap img {
  grid-row: 1/3;
}
.footer .top_wrap .logo_wrap .title {
  font-family: Gilroy;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}
.footer .top_wrap .logo_wrap .text {
  font-size: 16px;
  font-weight: 500;
}
.footer .top_wrap .schedule_block {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  text-align: right;
}
.footer .top_wrap .schedule_block .phone {
  font-family: Gilroy;
  font-size: 20px;
  font-weight: 800;
}
.footer .top_wrap .schedule_block .text {
  font-size: 16px;
  font-weight: 500;
}
.footer .middle_line {
  border-top: 1px solid #E9EAEB;
  padding: 30px 0;
}
.footer .middle_line .middle_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 40px;
}
.footer .middle_line .middle_wrap .one {
  font-weight: 500;
}
.footer .middle_line .middle_wrap .one .point {
  font-size: 16px;
  color: #8F9498;
  margin-bottom: 10px;
}
.footer .bottom_line {
  background-color: #4E5A6C;
  padding: 20px 0;
}
.footer .bottom_line .bottom_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #FFF;
  font-size: 17px;
  font-weight: 500;
  line-height: 90%;
}
.footer .bottom_line .bottom_wrap .policy {
  text-decoration: underline;
}
.footer .bottom_line .bottom_wrap .mks {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer .bottom_line .bottom_wrap .mks .text {
  text-decoration: underline;
}

.white-popup-block {
  border-radius: 24px;
  background: #F0F4F8;
  padding: 65px 60px 40px;
  max-width: 600px;
  margin: auto;
  position: relative;
}
.white-popup-block .sec_title {
  margin-bottom: 40px;
  text-align: left;
}
.white-popup-block .input_wrap {
  margin-bottom: 10px;
}
.white-popup-block button.mfp-close {
  top: 5px;
  right: 5px;
  background: white url("../img/close.svg") no-repeat center center;
  border-radius: 20px;
  width: 60px;
  height: 60px;
  opacity: 1;
  text-indent: -9999px;
}

.call_me_mob {
  position: fixed;
  bottom: -62px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 12;
  border-radius: 20px 20px 0px 0px;
  border: 1px solid rgba(40, 40, 40, 0.1);
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 10px;
  transition: 0.3s;
}
.call_me_mob.fixed {
  bottom: 0;
}

.lb-data .lb-number,
.lb-nav{
	display: none !important;
}

.lb-data .lb-close {
    background: url(../img/close_white.svg) top right no-repeat;
}

.btn_row{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 40px 0;
}

.case_slider_x .slick-track{
	display: flex;
}

.case_slider_x .slick-slide {
    height: auto;
}

.table td{
	border: 1px solid black;
	padding: 10px 15px;
}

input.error {
  border-color: red;
}

/*0*/
@media screen and (min-width: 992px) and (max-width: 1399px) {
  .first_sec .first_sec_body {
    min-height: auto;
    padding: 100px 0;
  }
  .first_sec .first_sec_body .text_block .text {
    width: 410px;
  }
}
@media screen and (min-width: 992px) {
  .desk_hide {
    display: none;
  }
  .switch_text:before {
    content: attr(data-text-desc);
  }
  .estimate_form .main_tab label {
    min-height: 60px;
  }
  .estimate_form .room_radio label {
    padding: 14px 25px;
  }
  .estimate_form .main_input {
    padding-top: 19px;
    padding-bottom: 19px;
  }
  .estimate_form .main_btn.thick_btn {
    min-height: 60px;
	margin-top: 20px;
  }
  .our_cases {
    padding: 80px 0;
  }
  .our_cases .sec_title{
	  margin-bottom: 10px;
  }
  .house_content {
    gap: 10px;
	padding: 10px 30px;
  }
  .case_slider_x .item .case_one .text .house_content {
    margin: 10px 0 20px;
  }
  .case_slider_x .item .case_one .text .review_one .name_age {
    margin-bottom: 10px;
 }
}
@media screen and (max-width: 991px) {
  .mob_hide {
    display: none;
  }
  .switch_text:before {
    content: attr(data-text-mob);
  }
  .header.fixed {
    padding: 10px 0;
  }
  .header.fixed .header_wrap .logo_wrap .text {
    height: 0;
    padding: 0;
  }
  .header.fixed .header_wrap .main_btn {
    flex-basis: 30px;
    background-size: 10px;
    min-height: 30px;
    padding: 0;
  }
  .header .header_wrap .logo_wrap img,
  .header .header_wrap .schedule_block {
    display: none;
  }
  .header .header_wrap .logo_wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .header .header_wrap .logo_wrap .title {
    font-size: 20px;
    line-height: 90%;
  }
  .header .header_wrap .logo_wrap .text {
    font-size: 12px;
    line-height: 130%;
    width: 160px;
    overflow: hidden;
    padding-top: 12px;
    height: 44px;
    transition: 0.3s;
  }
  .header .header_wrap .main_btn {
    background: #3ed7e1 url("../img/phone_1.svg") no-repeat center center;
    text-indent: -9999px;
    flex-basis: 60px;
  }
  .first_sec {
    padding: 120px 0 60px;
  }
  .first_sec .first_sec_body {
    min-height: auto;
    flex-direction: column;
    gap: 65px;
  }
  .first_sec .first_sec_body .text_block .text {
    font-size: 30px;
    margin: 0;
  }
  .first_sec .first_sec_body .text_block .main_btn {
    margin-top: 40px;
  }
  .first_sec .first_sec_body .img_block {
    width: auto;
    position: relative;
    right: 0;
    bottom: 0;
    max-width: 310px;
  }
  .main_btn {
    width: 100%;
    border-radius: 16px;
  }
  .main_btn.big_btn {
	font-size: 22px;
    padding: 10px;
  }
  .main_btn.thick_btn {
    width: 100%;
    min-height: 60px;
    border-radius: 16px;
  }
  .main_btn.submit_btn {
    margin-top: 20px;
  }
  .main_sec {
    padding: 60px 0;
  }
  .main_sec_new {
    padding: 120px 0 60px;
  }
  .sec_title {
    font-size: 24px;
    padding-top: 44px;
    margin-bottom: 25px;
    background-size: 30px;
  }
  .sec_title.tiny_margin,
  .sec_title.little_margin {
    margin-bottom: 15px;
  }
  .subtitle {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 25px;
  }
  .money_steps {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 40px;
  }
  .money_steps .text .item {
    min-height: 40px;
    padding-left: 50px;
    background-size: 40px;
    font-size: 16px;
    gap: 10px;
  }
  .money_steps .text .item .num {
    font-size: 24px;
  }
  .estimate_block {
    border-radius: 20px;
    padding: 30px 10px;
  }
  .main_tab label {
    font-size: 16px;
    border-radius: 16px;
    min-height: 60px;
  }
  .city_choose {
    margin-bottom: 10px;
  }
  .estimate_form .form_block {
    margin-top: 10px;
    padding: 20px 10px;
    border-radius: 16px;
  }
  .estimate_form .form_block .form_line_wrap .one .cell_title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .estimate_form .form_block .form_line_wrap .one .cell_title .num {
    border-radius: 8px;
    padding: 0;
    line-height: 30px;
    width: 30px;
    text-align: center;
    margin-right: 10px;
  }
  .estimate_form .form_block .form_line_wrap {
    flex-direction: column;
  }
  .room_radio input:checked + label:after {
    display: none;
  }
  .room_radio label {
    border-radius: 16px;
    padding: 15px;
    font-size: 16px;
    gap: 0;
    width: 100%;
    height: 60px;
    text-align: center;
  }
  .room_radio input:checked + label {
    color: #3ed7e1;
  }
  .ui-widget.ui-widget-content {
    margin-bottom: 55px;
  }
  .main_input {
    padding: 19px;
    border-radius: 16px;
    font-size: 16px;
  }
  .main_input.input_ico {
    background-size: 20px;
    background-position: 10px center;
    padding-left: 40px;
  }
  .main_input.user_ico {
    background-size: 15px;
  }
  .agree_text {
    margin-top: 10px;
    font-size: 16px;
  }
  .case_slider_x .item .case_one {
    border-radius: 12px;
  }
  .case_slider_x .item .case_one .img {
    border-radius: 12px;
    height: 165px;
    padding: 10px;
    margin: 3px;
  }
  .case_slider_x .item .case_one .img .name {
    font-size: 18px;
  }
  .case_slider_x .item .case_one .text {
    padding: 20px 10px;
  }
  .case_slider_x .item .case_one .text .house_content {
    margin: 5px 0 20px;
  }
  .case_slider_x .item .case_one .text .review_one {
    background-size: 17px;
    padding-right: 36px;
  }
  .case_slider_x .item .case_one .text .review_one .name_age {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .case_slider_x .item .case_one .text .review_one .text_one {
    font-size: 14px;
    margin-top: 15px;
  }
  .price_line {
    border-radius: 10px;
  }
  .price_line .one {
    border-radius: 10px;
    padding: 10px;
  }
  .price_line .one .point {
    font-size: 14px;
    width: 100px;
    margin: auto;
  }
  .price_line .one .value {
    font-size: 18px;
    margin-top: 10px;
  }
  .house_content {
    border-radius: 10px;
    padding: 14px 10px;
    font-size: 14px;
    gap: 14px;
  }
  .house_content .line .dash {
    margin: 0 10px;
  }
  .subtitle_big {
    font-size: 18px;
    margin: 25px auto 10px;
  }
  .subtitle {
    font-size: 14px;
  }
  .team_block {
    display: block;
  }
  .team_block .item {
    height: 412px;
    border-radius: 16px;
  }
  .team_block .item .text {
    padding: 14px;
    border-radius: 14px;
  }
  .team_block .item .text .name {
    font-size: 18px;
  }
  .team_block .item .text .position {
    font-size: 14px;
  }
  .request_form .wrap {
    display: grid;
  }
  .partners_block {
    gap: 10px;
  }
  .partners_block .item {
    flex-basis: calc(50% - 5px);
    border-radius: 16px;
    height: 80px;
  }
  .partners_block .item img {
    transform: scale(0.8);
  }
  .map_sec .info_block {
    width: 342px;
    position: absolute;
    top: auto;
    bottom: 15px;
    right: 50%;
    padding: 40px 16px;
    transform: translateX(50%);
    font-size: 16px;
  }
  .map_sec .info_block .title {
    font-size: 18px;
  }
  .map_sec .info_block .pretitle {
    font-size: 16px;
  }
  .map_sec .info_block .phone {
    font-size: 18px;
  }
  .map_sec .info_block .schedule,
  .map_sec .info_block .metro {
    margin-top: 10px;
  }
  .map {
    height: 950px;
  }
  .footer .top_wrap {
    display: block;
  }
  .footer .top_wrap .logo_wrap {
    gap: 8px 14px;
  }
  .footer .top_wrap .logo_wrap .title {
    font-size: 20px;
    line-height: 90%;
  }
  .footer .top_wrap .logo_wrap .text {
    font-size: 12px;
    line-height: 130%;
    width: 160px;
  }
  .footer .top_wrap .schedule_block {
    margin: 35px 0 20px;
    text-align: left;
  }
  .footer .top_wrap .schedule_block .phone {
    font-size: 20px;
  }
  .footer .top_wrap .schedule_block .text {
    font-size: 14px;
  }
  .footer .middle_line {
    padding-top: 30px;
  }
  .footer .middle_line .middle_wrap {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 22px 14px;
  }
  .footer .middle_line .middle_wrap .one {
    font-size: 18px;
  }
  .footer .middle_line .middle_wrap .one:nth-child(1) {
    order: 1;
  }
  .footer .middle_line .middle_wrap .one:nth-child(2) {
    order: 3;
  }
  .footer .middle_line .middle_wrap .one:nth-child(3) {
    order: 4;
  }
  .footer .middle_line .middle_wrap .one:nth-child(4) {
    order: 5;
    grid-column: 1/3;
  }
  .footer .middle_line .middle_wrap .one:nth-child(5) {
    order: 6;
    grid-column: 1/3;
  }
  .footer .middle_line .middle_wrap .one:nth-child(6) {
    order: 2;
  }
  .footer .middle_line .middle_wrap .one .point {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .footer .bottom_line {
    padding: 30px 0 85px;
  }
  .footer .bottom_line .bottom_wrap {
    display: grid;
    gap: 20px;
    font-size: 14px;
  }
  .white-popup-block {
    border-radius: 16px;
    padding: 45px 20px 30px;
  }
  .white-popup-block .sec_title {
    margin-bottom: 20px;
  }
  .white-popup-block button.mfp-close {
    top: 5px;
    right: 5px;
    background-size: 14px;
    border-radius: 14px;
    width: 40px;
    height: 40px;
  }
  .agree_text {
    font-size: 14px;
  }
  .slick-dots li button {
    width: 6px;
    height: 6px;
  }
  .slick-dots li.slick-active button {
    width: 10px;
    height: 10px;
  }
  .slogan_animation {
    top: 38px;
    right: 104px;
  }
  .slogan_animation .slogan {
    padding: 20px 0;
    width: 98px;
    height: 98px;
  }
  .slogan_animation .slogan .small {
    font-size: 12px;
    width: 60px;
    margin: auto;
  }
  .slogan_animation .slogan .big {
    font-size: 23px;
    margin: 4px 0;
  }
  .slogan_animation .slogan .bill_1 {
    width: 83px;
    top: -20px;
    left: -21px;
  }
  .slogan_animation .slogan .bill_2 {
    width: 82px;
    bottom: -27px;
    right: -31px;
  }
  .slogan_animation .circle {
    width: 98px;
    height: 98px;
    background-size: 90%;
  }
  @keyframes bill_1 {
    from {
      top: -20px;
    }
    50% {
      top: -40px;
    }
    to {
      top: -20px;
    }
  }
  @keyframes bill_2 {
    from {
      bottom: -27px;
    }
    50% {
      bottom: -47px;
    }
    to {
      bottom: -27px;
    }
  }
  .header .header_wrap{
	  gap: 10px;
  }
	.btn_row{
		grid-template-columns: 1fr;
		margin: 20px 0;
	}
}

.estimate_form .form-item-progress {
  display: none;
  overflow: hidden;
}
.estimate_form .progress-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin-bottom: 20px;
}
.estimate_form .progress-bar {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.estimate_form .progress-bar span {
  float: left;
  width: 20px;
  height: 40px;
  background: url("../img/progress.png") no-repeat -20px 0;
}
.estimate_form .progress-bar span.active{
  background-position: 0 0;
}
.estimate_form .form-item-result {
  display: none;
}
.estimate_form .form-item-result .result-title,
.estimate_form .form-item-result .result-desc {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}

#recaptcha-callback,
#recaptcha-top,
#recaptcha-bottom {
  border: 1px solid transparent;
}

#recaptcha-callback.error,
#recaptcha-top.error,
#recaptcha-bottom.error {
  border-color: red;
}

#recaptcha-callback,
#recaptcha-bottom {
  margin: 0 auto;
  width: fit-content;
}

#recaptcha-top {
  margin: 20px auto 0;
  width: fit-content;
}