/**
 * Подключаем шрифты
 */
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v28/o-0OIpQlx3QUlC5A4PNr4DRF.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v28/o-0TIpQlx3QUlC5A4PNr4Az5ZtyE.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v28/o-0IIpQlx3QUlC5A4PNb4g.ttf) format('truetype');
}
@font-face {
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosans/v28/o-0NIpQlx3QUlC5A4PNjXhFlYw.ttf) format('truetype');
}
a {
  text-decoration: none;
}
.block_title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 36px;
  color: #200e32;
  font-weight: bold;
}
.block_title .green_text {
  color: #298037;
}
.grad {
  background: -webkit-gradient(linear, left top, right top, from(#e64259), to(#f17032));
  background: linear-gradient(90deg, #e64259 0%, #f17032 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/**
 * Подключаем миксины
 */
.ff {
  font-family: 'Noto Sans', sans-serif;
}
/** Координаты */
/** Только top и left */
/** Абсолютное позиционирование по координатам */
/* Transform Group
========================== */
/* @group matrix() */
/* @end */
/* @group rotate() */
/* @end */
/* @group scale() */
/* @end */
/* @group translate() */
/* @end */
/* @group skew() */
/* @end */
/* Transition
========================== */
/* Animation Group
========================== */
/**
 * Подключаем переменные
 */
/**
 * Подключаем модалки
 */
.modal {
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 99999999;
  overflow-y: scroll;
}
.modal_body {
  position: absolute;
  padding: 20px;
  top: 40px;
  left: 50%;
  -webkit-transform: translateY(0%) translateX(-50%);
          transform: translateY(0%) translateX(-50%);
  background-color: #ffffff;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  width: 600px;
  height: 680px;
}
.modal_close {
  width: 35px;
  height: 35px;
  position: fixed;
  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;
  right: 25px;
  top: 25px;
  cursor: pointer;
  z-index: 9999;
}
.modal_close:after,
.modal_close:before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 5px;
  background: #949494;
  border-radius: 2px;
  position: fixed;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
.modal_close:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal_close:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal_close:hover:before,
.modal_close:hover:after {
  background-color: #84b734;
}
.modal_open {
  cursor: pointer;
}
.modal_on {
  overflow: hidden;
}
.modal_spec .modal_body {
  width: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.modal_spec .modal_body img {
  height: 100%;
  width: auto;
}
/**
 * HEADER
 */
.header {
  padding-top: 30px;
}
.header .top_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
.header .top_line .logo .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .top_line .logo .img img {
  width: 160px;
  height: 44px;
}
.header .top_line .logo .img p {
  font-family: 'Noto Sans', sans-serif;
  color: #949494;
  font-size: 12px;
  margin-left: 23px;
}
.header .top_line .header_btn_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .top_line .header_btn_line .header_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .top_line .header_btn_line .header_btn .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #252b26;
  margin-left: 20px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.header .top_line .header_btn_line .header_btn .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background-size: 50%;
}
.header .top_line .header_btn_line .header_btn_1 .icon {
  background-image: url("../img/lin.svg");
}
.header .top_line .header_btn_line .header_btn_2 {
  margin-left: 35px;
}
.header .top_line .header_btn_line .header_btn_2 .icon {
  background-image: url("../img/calc.svg");
}
.header .top_line .header_btn_line .header_btn:hover .text {
  color: #298037;
}
.header .top_line .header_btn_line .header_btn:hover .icon {
  -webkit-box-shadow: -4px -4px 10px rgba(41, 128, 55, 0.1), 4px 4px 10px rgba(41, 128, 55, 0.1);
          box-shadow: -4px -4px 10px rgba(41, 128, 55, 0.1), 4px 4px 10px rgba(41, 128, 55, 0.1);
  background-size: 45%;
}
.header .top_line .header_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .top_line .header_contact .soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .top_line .header_contact .soc .soc_link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  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;
}
.header .top_line .header_contact .soc .soc_link:before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.header .top_line .header_contact .soc .soc_link a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.header .top_line .header_contact .soc .soc_link_viber {
  background: linear-gradient(208.07deg, #be61c9 11.96%, #9e47a8 85.87%), #ac5eb5;
}
.header .top_line .header_contact .soc .soc_link_viber:before {
  background-image: url("../img/viber_icon.svg");
}
.header .top_line .header_contact .soc .soc_link_wa {
  margin-left: 11px;
  background: linear-gradient(208.07deg, #58c763 11.96%, #4ba354 85.87%), #5eb567;
}
.header .top_line .header_contact .soc .soc_link_wa:before {
  background-image: url("../img/whatsapp_icon.svg");
}
.header .top_line .header_contact .soc .soc_link:hover:before {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.header .top_line .header_contact .phone {
  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;
  margin-left: 15px;
}
.header .top_line .header_contact .phone .phone_link {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: right;
  color: #252b26;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.header .top_line .header_contact .phone .phone_link:hover {
  color: #298037;
}
.header .top_line .header_contact .phone .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  color: #949494;
  text-align: right;
}
.header .top_line .header_contact .phone .modal_open {
  font-family: 'Noto Sans', sans-serif;
  color: #298037;
  text-align: right;
  font-size: 12px;
  position: relative;
}
.header .top_line .header_contact .phone .modal_open:after {
  content: "";
  width: 0px;
  height: 1px;
  right: 0;
  background-color: #298037;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  position: absolute;
  display: block;
}
.header .top_line .header_contact .phone .modal_open:hover:after {
  width: 104px;
}
.header .down_line {
  width: 1340px;
  height: 50px;
  border-radius: 50px;
  background-color: #298037;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .down_line .menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .down_line .menu_list .menu_item {
  font-family: 'Noto Sans', sans-serif;
  color: #ffffff;
  font-size: 18px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.header .down_line .menu_list .menu_item:before {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  position: relative;
  top: -2px;
  margin-right: 5px;
}
.header .down_line .menu_list .menu_item:hover {
  color: #84b734;
}
.header .down_line .menu_list .menu_item:hover:before {
  background-color: #84b734;
}
.header .down_line_mob {
  display: none;
}
.mob_menu {
  display: none;
}
/**
 * FOOTER
 */
footer {
  padding-top: 60px;
  background-image: url("../img/footer_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
footer .footer_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 40px;
}
footer .footer_body .col {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}
footer .footer_body .col_1 .logo_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer_body .col_1 .logo_block img {
  width: 150px;
  height: auto;
}
footer .footer_body .col_1 .soc_link {
  margin-top: 25px;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer_body .col_1 .soc_link .block {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #84b734;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
footer .footer_body .col_1 .soc_link .block_vk {
  background-image: url("../img/vk.svg");
}
footer .footer_body .col_1 .soc_link .block_ins {
  background-image: url("../img/instagram.svg");
}
footer .footer_body .col_1 .soc_link .block_odn {
  background-image: url("../img/odnoklassniki.svg");
}
footer .footer_body .col_1 .soc_link .block_yt {
  background-image: url("../img/youtube.svg");
}
footer .footer_body .col_1 .soc_link .block:hover {
  background-color: #298037;
}
footer .footer_body .col_1 .footer_btn_line .footer_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer_body .col_1 .footer_btn_line .footer_btn .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #252b26;
  margin-left: 20px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
footer .footer_body .col_1 .footer_btn_line .footer_btn .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background-size: 50%;
}
footer .footer_body .col_1 .footer_btn_line .footer_btn_1 .icon {
  background-image: url("../img/lin.svg");
}
footer .footer_body .col_1 .footer_btn_line .footer_btn_2 {
  margin-bottom: 10px;
}
footer .footer_body .col_1 .footer_btn_line .footer_btn_2 .icon {
  background-image: url("../img/calc.svg");
}
footer .footer_body .col_1 .footer_btn_line .footer_btn:hover .text {
  color: #298037;
}
footer .footer_body .col_1 .footer_btn_line .footer_btn:hover .icon {
  -webkit-box-shadow: -4px -4px 10px rgba(41, 128, 55, 0.1), 4px 4px 10px rgba(41, 128, 55, 0.1);
          box-shadow: -4px -4px 10px rgba(41, 128, 55, 0.1), 4px 4px 10px rgba(41, 128, 55, 0.1);
  background-size: 45%;
}
footer .footer_body .col_2 {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 60px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
footer .footer_body .col_2 .link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #322F2F;
  margin-bottom: 15px;
  font-weight: bold;
}
footer .footer_body .col_2 .link:hover {
  color: #298037;
}
footer .footer_body .col_3 {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 60px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
footer .footer_body .col_3 .link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #322F2F;
  margin-bottom: 15px;
}
footer .footer_body .col_3 .link:before {
  content: "";
  width: 24px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/list.svg");
  display: inline-block;
  margin-right: 10px;
}
footer .footer_body .col_3 .link:hover {
  color: #298037;
}
footer .footer_body .col_4 .contat_block .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 40px;
  position: relative;
  margin-bottom: 30px;
}
footer .footer_body .col_4 .contat_block .block .big {
  font-family: 'Noto Sans', sans-serif;
  color: #252B26;
  font-size: 20px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
footer .footer_body .col_4 .contat_block .block .litle {
  font-family: 'Noto Sans', sans-serif;
  color: #949494;
  font-size: 12px;
}
footer .footer_body .col_4 .contat_block .block:before {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
footer .footer_body .col_4 .contat_block .block_phone:before {
  background-image: url("../img/icn_phone_blue.svg");
}
footer .footer_body .col_4 .contat_block .block_phone:hover:before {
  background-image: url("../img/icn_phone_green.svg");
}
footer .footer_body .col_4 .contat_block .block_mail:before {
  background-image: url("../img/icon_pen.svg");
}
footer .footer_body .col_4 .contat_block .block_mail:hover:before {
  background-image: url("../img/icon_pen_green.svg");
}
footer .footer_body .col_4 .contat_block .block_map:before {
  background-image: url("../img/Home.svg");
}
footer .footer_body .col_4 .contat_block .block_map:hover:before {
  background-image: url("../img/Home_green.svg");
}
footer .footer_body .col_4 .contat_block .block:hover .big {
  color: #298037;
}
footer .footer_body:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #949494;
  opacity: 0.1;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
}
footer .footer_down {
  padding-top: 20px;
  padding-bottom: 30px;
}
footer .footer_down p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 10px;
  color: #949494;
  text-align: center;
}
footer .footer_down p a {
  color: #949494;
  font-weight: bold;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
footer .footer_down p a:hover {
  color: #000000;
}
/**
 * Подключчаем стили для тела
 */
* {
  padding: 0;
  margin: 0;
}
.btn {
  width: 310px;
  height: 60px;
  border-radius: 60px;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  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;
  cursor: pointer;
  color: #ffffff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
}
.btn span {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #ffffff;
  position: relative;
  height: 23.42px;
  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;
}
.btn span:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../img/arrow_btn.svg");
  margin-left: 10px;
}
.btn_red {
  -webkit-box-shadow: 0px 4px 14px rgba(230, 66, 89, 0.3);
          box-shadow: 0px 4px 14px rgba(230, 66, 89, 0.3);
  background: -webkit-gradient(linear, left top, right top, from(#e64259), to(#f17032));
  background: linear-gradient(90deg, #e64259 0%, #f17032 100%);
}
.btn_red:hover {
  -webkit-box-shadow: 0px 4px 20px rgba(230, 66, 89, 0.6);
          box-shadow: 0px 4px 20px rgba(230, 66, 89, 0.6);
}
.btn_red:active,
.btn_red:focus {
  -webkit-box-shadow: 0px 4px 14px rgba(230, 66, 89, 0.3), inset 0px 0px 26px rgba(136, 20, 20, 0.25);
          box-shadow: 0px 4px 14px rgba(230, 66, 89, 0.3), inset 0px 0px 26px rgba(136, 20, 20, 0.25);
}
.btn_grn {
  background-color: #298037;
  -webkit-box-shadow: 0px 4px 14px rgba(41, 128, 55, 0.3);
          box-shadow: 0px 4px 14px rgba(41, 128, 55, 0.3);
}
.btn_grn:hover {
  background-color: #206D2D;
  -webkit-box-shadow: 0px 4px 20px rgba(41, 128, 55, 0.44);
          box-shadow: 0px 4px 20px rgba(41, 128, 55, 0.44);
}
.btn_grn:focus,
.btn_grn:active {
  background-color: #298037;
  -webkit-box-shadow: 0px 4px 14px rgba(41, 128, 55, 0.3), inset 0px 0px 26px #206d2d;
          box-shadow: 0px 4px 14px rgba(41, 128, 55, 0.3), inset 0px 0px 26px #206d2d;
}
.btn:active {
  -webkit-transform: translate(0, 0.2rem);
          transform: translate(0, 0.2rem);
}
.banner {
  width: 1300px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 90px;
}
.banner .bg {
  position: absolute;
  z-index: 2;
  width: 100%;
  background-image: url("../img/banner_bg.svg");
  height: 360px;
  background-position-x: right;
  background-position-y: -1px;
  right: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.banner .bg_ny {
  display: none;
  width: 589px;
  height: 174px;
  position: absolute;
  left: 0;
  background-image: url("../img/banner_bg_ny.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 5;
}
.banner_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 518px;
}
.banner_body .left {
  position: relative;
  z-index: 2;
  margin-top: 70px;
}
.banner_body .left .spec{
  display: flex;
  align-items: center;
}
.banner_body .left .spec .circus{
  width: 45px;
  height: 45px;
  background-color: #298037;
  line-height: 45px;
  text-align: center;
  color: #fff;
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  border-radius: 50%;
  font-weight: bold;
}
.banner_body .left .spec .text{
  color: #000;
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}
.banner_body .left .spec .text .green_text{
  color: #298037;
}
.banner_body .left h1 {
  padding-right: 15px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 43px;
  color: #200e32;
  background-color: #ffffff;
  border-radius: 10px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.banner_body .left .wrapp {
  width: 540px;
  position: relative;
}
.banner_body .left .banner_text {
  font-family: 'Noto Sans', sans-serif;
  color: #298037;
  margin-top: 10px;
}
.banner_body .left .btn {
  margin-top: 35px;
}
.banner_body .left .banner_body_ny {
  position: absolute;
  width: 117.8px;
  height: 94.65px;
  -webkit-transform: rotate(-74.93deg);
          transform: rotate(-74.93deg);
  background-image: url("../img/banner_img_ny.png");
  bottom: 10px;
  right: 80px;
  background-size: 100%;
  display: none;
}
.banner_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
.banner_line .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.banner_line .block .num {
  font-family: 'Noto Sans', sans-serif;
  font-size: 50px;
  color: #298037;
  margin-right: 20px;
  font-weight: bold;
  width: 55px;
}
.banner_line .block .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #252b26;
}
.models {
  margin-bottom: 80px;
}
.models .owl-modals {
  margin-top: 60px;
  margin-bottom: 90px;
}
.models .owl-modals .owl-stage-outer {
  z-index: 9;
}
.models .owl-modals .item {
  width: 187px;
  height: 133.45px;
  border-top-left-radius: 70px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 70px;
  border-bottom-left-radius: 10px;
  position: relative;
  background-size: cover;
  cursor: pointer;
  z-index: 9;
  margin: 10px auto;
}
.models .owl-modals .item .name {
  position: absolute;
  border-radius: 20px;
  padding: 5px;
  background-color: #ffffff;
  bottom: 10px;
  left: 5px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #252b26;
}
.models .owl-modals .item_barselon {
  background-image: url("../img/models/barselona/Barselona2600_1800white_tree_see_tree.jpg");
}
.models .owl-modals .item_bruklin {
  background-image: url("../img/models/bruklin/Bruklin2800white_beton.jpg");
}
.models .owl-modals .item_keln {
  background-image: url("../img/models/kyoln/Kyoln2800toffy_soft.jpg");
}
.models .owl-modals .item_london {
  background-image: url("../img/models/london/London3400dub_white_dub_venge.jpg");
}
.models .owl-modals .item_loft {
  background-image: url("../img/styles/loft/zastavka.jpg");
}
.models .owl-modals .item_oliv {
  background-image: url("../img/models/oliva/Oliva2200white_metal.jpg");
}
.models .owl-modals .item_provans {
  background-image: url("../img/styles/provans/zastavka.jpg");
}
.models .owl-modals .item_classic {
  background-image: url("../img/styles/classic/zastavka.jpg");
}
.models .owl-modals .item_minimal {
  background-image: url("../img/styles/minimal/zastavka.jpg");
}
.models .owl-modals .item_hiteck {
  background-image: url("../img/styles/hiteck/zastavka.JPG");
}
.models .owl-modals .item_modern {
  background-image: url("../img/styles/modern/zastavka.png");
}
.models .owl-modals .item_romb {
  background-image: url("../img/models/romb/romb1750_2100sandal_white_grey.jpg");
}
.models .owl-modals .item_eco {
  background-image: url("../img/models/eco/eco_2400_2200beton_show.jpg");
}
.models .owl-modals .item.active {
  border: 5px solid #ffffff;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.models .owl-modals .owl-nav {
  position: absolute;
  top: 50%;
  left: -50px;
  width: calc(100% + 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
.models .owl-modals .owl-nav .owl-prev,
.models .owl-modals .owl-nav .owl-next {
  width: 40px;
  height: 40px;
}
.models .owl-modals .owl-nav .owl-prev .pref,
.models .owl-modals .owl-nav .owl-next .pref,
.models .owl-modals .owl-nav .owl-prev .next,
.models .owl-modals .owl-nav .owl-next .next {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.models .owl-modals .owl-nav .owl-prev .pref,
.models .owl-modals .owl-nav .owl-next .pref {
  background-image: url("../img/arrow_left.svg");
}
.models .owl-modals .owl-nav .owl-prev .pref:hover,
.models .owl-modals .owl-nav .owl-next .pref:hover,
.models .owl-modals .owl-nav .owl-prev .pref:focus,
.models .owl-modals .owl-nav .owl-next .pref:focus {
  outline: none;
  background-image: url("../img/arrow_left_active.svg");
}
.models .owl-modals .owl-nav .owl-prev .next,
.models .owl-modals .owl-nav .owl-next .next {
  background-image: url("../img/arrow_right.svg");
}
.models .owl-modals .owl-nav .owl-prev .next:hover,
.models .owl-modals .owl-nav .owl-next .next:hover,
.models .owl-modals .owl-nav .owl-prev .next:focus,
.models .owl-modals .owl-nav .owl-next .next:focus {
  outline: none;
  background-image: url("../img/arrow_right_active.svg");
}
.models .owl-modals .owl-nav .owl-prev:focus,
.models .owl-modals .owl-nav .owl-next:focus {
  outline: none;
}
.models #model_info .model_wrapp {
  display: none;
}
.models #model_info .model_wrapp .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.models #model_info .model_wrapp .top .left_part {
  position: relative;
  width: 60%;
}
.models #model_info .model_wrapp .top .left_part .img {
  width: 680px;
  height: 480px;
  position: relative;
}
.models #model_info .model_wrapp .top .left_part .img:after {
  content: '';
  display: block;
  position: absolute;
  width: 200px;
  height: 100px;
  background-image: url("../img/model_img.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 0px;
  left: 10px;
  z-index: 10;
}
.models #model_info .model_wrapp .top .left_part .img:before {
  content: "";
  width: 100%;
  height: 56.17px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(87, 82, 74, 0)), to(#303030));
  background: linear-gradient(180deg, rgba(87, 82, 74, 0) 0%, #303030 100%);
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
}
.models #model_info .model_wrapp .top .left_part .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  display: none;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  position: absolute;
  top: 0;
}
.models #model_info .model_wrapp .top .left_part .img img.active {
  display: inline !important;
}
.models #model_info .model_wrapp .top .left_part .img.active img {
  display: block;
}
.models #model_info .model_wrapp .top .left_part .label {
  border-radius: 2px 30px 30px 2px;
  height: 35px;
  width: 145px;
  position: absolute;
}
.models #model_info .model_wrapp .top .left_part .label span {
  font-size: 12px;
  padding-left: 15px;
}
.models #model_info .model_wrapp .top .left_part .label span:after {
  content: none;
}
.models #model_info .model_wrapp .top .left_part .label_top {
  top: 15px;
}
.models #model_info .model_wrapp .top .left_part .label_down {
  top: 60px;
}
.models #model_info .model_wrapp .top .left_part .label_down_2 {
  top: 110px;
  background: url("../img/cenopad.png"), -webkit-gradient(linear, left top, left bottom, from(#ffeb00), to(#ffcc00));
  background: url("../img/cenopad.png"), linear-gradient(180deg, #ffeb00 0%, #ffcc00 100%);
  background-position: center;
  background-size: cover;
  -webkit-clip-path: polygon(33% 0%, 100% 0, 100% 100%, 34% 100%);
          clip-path: polygon(33% 0%, 100% 0, 100% 100%, 34% 100%);
}
.models #model_info .model_wrapp .top .right_part {
  width: 40%;
  padding-left: 20px;
}
.models #model_info .model_wrapp .top .right_part .title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  color: #252b26;
}
.models #model_info .model_wrapp .top .right_part .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #252b26;
}
.models #model_info .model_wrapp .top .right_part .prise_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 35px;
  margin-bottom: 20px;
}
.models #model_info .model_wrapp .top .right_part .prise_block .left .label {
  width: 61px;
  height: 35px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.models #model_info .model_wrapp .top .right_part .prise_block .left .label span {
  width: 48px;
  height: 24px;
  font-size: 20px;
  font-weight: bold;
}
.models #model_info .model_wrapp .top .right_part .prise_block .left .label span:after {
  content: "";
}
.models #model_info .model_wrapp .top .right_part .prise_block .left .old_prise {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  color: #949494;
  text-decoration: line-through;
}
.models #model_info .model_wrapp .top .right_part .prise_block .right {
  //margin-left: 15px;
}
.models #model_info .model_wrapp .top .right_part .prise_block .right .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #322f2f;
}
.models #model_info .model_wrapp .top .right_part .prise_block .right .prise {
  font-family: 'Noto Sans', sans-serif;
  font-size: 50px;
  color: #200e32;
  font-weight: bold;
}
.models #model_info .model_wrapp .top .right_part .colors .colors_line {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.models #model_info .model_wrapp .top .right_part .colors .colors_line .block {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  background-position: center;
  background-size: contain;
}
.models #model_info .model_wrapp .top .right_part .colors .colors_line .block .top {
  width: 100%;
  height: 50%;
}
.models #model_info .model_wrapp .top .right_part .colors .colors_line .block .down {
  width: 100%;
  height: 50%;
  margin: 0;
}
.models #model_info .model_wrapp .top .right_part .colors .colors_line .block .half_block {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.models #model_info .model_wrapp .top .right_part .colors .colors_line .block.active {
  border: 3px solid #200e32;
}
.models #model_info .model_wrapp .top .right_part .right_mob {
  display: none;
}
.models #model_info .model_wrapp .down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
.models #model_info .model_wrapp .down .left {
  width: 60%;
}
.models #model_info .model_wrapp .down .left .block {
  margin-bottom: 35px;
}
.models #model_info .model_wrapp .down .left .block .title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #000000;
}
.models #model_info .model_wrapp .down .left .block .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #3F3F3F;
}
.models #model_info .model_wrapp .down .left .block_set {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  position: absolute;
  top: 40px;
  width: 100%;
}
.models #model_info .model_wrapp .down .left .block_set .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5px;
  background-color: #ffffff;
}
.models #model_info .model_wrapp .down .left .block_set .text span {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.models #model_info .model_wrapp .down .left .block_set .text span.border {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px dotted #C4C4C4;
  height: 18px;
}
.models #model_info .model_wrapp .down .left .block_set_wrapp {
  height: 180px;
  position: relative;
}
.models #model_info .model_wrapp .down .left .block_set_wrapp a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5px;
  width: 100%;
}
.models #model_info .model_wrapp .down .left .block_set_wrapp a span {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-weight: bold;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #200e32;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.models #model_info .model_wrapp .down .left .block_set_wrapp a span.border {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px dotted #200e32;
  height: 18px;
}
.models #model_info .model_wrapp .down .left .block_set_wrapp a span.icon {
  width: 17px;
  height: 20px;
  background-image: url("../img/link_icon_blue.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  margin-right: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.models #model_info .model_wrapp .down .left .block_set_wrapp a:hover span {
  color: #298037;
}
.models #model_info .model_wrapp .down .left .block_set_wrapp a:hover span.icon {
  background-image: url("../img/link_icon_green.svg");
}
.models #model_info .model_wrapp .down .left .block_set.active {
  display: block !important;
}
.models #model_info .model_wrapp .down .left .block_dop .text {
  margin-bottom: 5px;
}
.models #model_info .model_wrapp .down .right {
  width: 40%;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.models #model_info .model_wrapp .down .right .wrapp {
  border-radius: 10px;
  background-color: #ffffff;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.models #model_info .model_wrapp .down .right .wrapp .head {
  border-radius: 10px;
  background-color: #84b734;
  padding: 15px 22px 15px 27px;
}
.models #model_info .model_wrapp .down .right .wrapp .head p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #ffffff;
}
.models #model_info .model_wrapp .down .right .wrapp .head .phone span {
  font-family: 'Noto Sans', sans-serif;
  font-size: 36px;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.models #model_info .model_wrapp .down .right .wrapp .head .phone span:before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url("../img/phone_icon.svg");
  margin-right: 10px;
  background-size: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.models #model_info .model_wrapp .down .right .wrapp .head .phone:hover span {
  color: #200e32;
}
.models #model_info .model_wrapp .down .right .wrapp .head .phone:hover span:before {
  background-image: url("../img/icn_phone_blue.svg");
}
.models #model_info .model_wrapp .down .right .wrapp .body {
  margin-top: 37px;
  padding-left: 25px;
  padding-bottom: 15px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.models #model_info .model_wrapp .down .right .wrapp .body .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.models #model_info .model_wrapp .down .right .wrapp .body .block .icon {
  width: 85px;
  height: 75px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
  background-repeat: no-repeat;
  background-position: center;
  min-width: 85px;
  border-radius: 10px;
}
.models #model_info .model_wrapp .down .right .wrapp .body .block .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: black;
}
.models #model_info .model_wrapp .down .right .wrapp .body .block_1 .icon {
  background-image: url("../img/line_blue.svg");
}
.models #model_info .model_wrapp .down .right .wrapp .body .block_2 .icon {
  background-image: url("../img/big_car.svg");
}
.models #model_info .model_wrapp .down .right .wrapp .body .block_3 .icon {
  background-image: url("../img/gear.svg");
}
.models #model_info .model_wrapp_eco .top .img img {
  height: 100% !important;
}
.project {
  margin-bottom: 100px;
}
.project .wrapp {
  position: relative;
}
.project .wrapp .owl-project {
  margin-top: 40px;
}
.project .wrapp .owl-project .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project .wrapp .owl-project .item .left_part {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project .wrapp .owl-project .item .left_part .photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 220px;
  min-width: 220px;
  height: 440px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow-y: scroll;
  padding-top: 20px;
}
.project .wrapp .owl-project .item .left_part .photos .item {
  width: 187px;
  min-width: 187px;
  height: 125px;
  min-height: 125px;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 70px 10px;
}
.project .wrapp .owl-project .item .left_part .photos .item.active {
  border: 4px solid #ffffff;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.project .wrapp .owl-project .item .left_part .photos .item img {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  border-radius: 70px 10px;
  margin-left: 0;
  display: block;
}
.project .wrapp .owl-project .item .left_part .photos::-webkit-scrollbar-track {
  background-color: rgba(32, 14, 50, 0.1);
  border-radius: 5px;
}
.project .wrapp .owl-project .item .left_part .photos::-webkit-scrollbar {
  width: 9px;
  background-color: rgba(32, 14, 50, 0.1);
  border-radius: 5px;
}
.project .wrapp .owl-project .item .left_part .photos::-webkit-scrollbar-thumb {
  background-color: #200e32;
  border-radius: 5px;
}
.project .wrapp .owl-project .item .left_part img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: absolute;
  top: 0;
  left: 200px;
  height: 100%;
  width: 533px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 30px;
  border-radius: 10px;
  display: none;
}
.project .wrapp .owl-project .item .left_part img.active {
  display: block !important;
}
.project .wrapp .owl-project .item .right_part {
  width: 35%;
  padding-top: 90px;
}
.project .wrapp .owl-project .item .right_part .info {
  border-radius: 10px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding-top: 13px;
  padding-left: 22px;
  padding-bottom: 10px;
  width: calc(100% - 10px);
}
.project .wrapp .owl-project .item .right_part .info .name {
  font-family: 'Noto Sans', sans-serif;
  color: #000000;
  font-weight: bold;
}
.project .wrapp .owl-project .item .right_part .info .ser {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  color: #000000;
}
.project .wrapp .owl-project .item .right_part .info .ser span {
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  color: #949494;
}
.project .wrapp .owl-project .item .right_part .prise_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 35px;
  margin-bottom: 20px;
}
.project .wrapp .owl-project .item .right_part .prise_block .left .label {
  width: 61px;
  height: 35px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.project .wrapp .owl-project .item .right_part .prise_block .left .label span {
  width: 48px;
  height: 24px;
  font-size: 20px;
  font-weight: bold;
}
.project .wrapp .owl-project .item .right_part .prise_block .left .label span:after {
  content: "";
}
.project .wrapp .owl-project .item .right_part .prise_block .left .old_prise {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  color: #949494;
  text-decoration: line-through;
}
.project .wrapp .owl-project .item .right_part .prise_block .right {
  margin-left: 15px;
}
.project .wrapp .owl-project .item .right_part .prise_block .right .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #322f2f;
}
.project .wrapp .owl-project .item .right_part .prise_block .right .prise {
  font-family: 'Noto Sans', sans-serif;
  font-size: 50px;
  color: #200e32;
  font-weight: bold;
}
.project .wrapp .owl-project .item .owl-img {
  display: none;
}
.project .wrapp .owl-project .owl-nav {
  position: absolute;
  top: 0;
  right: calc((35% - 10px)/2);
  width: calc((35% - 10px)/2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
.project .wrapp .owl-project .owl-nav .owl-prev,
.project .wrapp .owl-project .owl-nav .owl-next {
  width: 40px;
  height: 40px;
}
.project .wrapp .owl-project .owl-nav .owl-prev .pref,
.project .wrapp .owl-project .owl-nav .owl-next .pref,
.project .wrapp .owl-project .owl-nav .owl-prev .next,
.project .wrapp .owl-project .owl-nav .owl-next .next {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.project .wrapp .owl-project .owl-nav .owl-prev .pref,
.project .wrapp .owl-project .owl-nav .owl-next .pref {
  background-image: url("../img/arrow_left.svg");
}
.project .wrapp .owl-project .owl-nav .owl-prev .pref:hover,
.project .wrapp .owl-project .owl-nav .owl-next .pref:hover,
.project .wrapp .owl-project .owl-nav .owl-prev .pref:focus,
.project .wrapp .owl-project .owl-nav .owl-next .pref:focus {
  outline: none;
  background-image: url("../img/arrow_left_active.svg");
}
.project .wrapp .owl-project .owl-nav .owl-prev .next,
.project .wrapp .owl-project .owl-nav .owl-next .next {
  background-image: url("../img/arrow_right.svg");
}
.project .wrapp .owl-project .owl-nav .owl-prev .next:hover,
.project .wrapp .owl-project .owl-nav .owl-next .next:hover,
.project .wrapp .owl-project .owl-nav .owl-prev .next:focus,
.project .wrapp .owl-project .owl-nav .owl-next .next:focus {
  outline: none;
  background-image: url("../img/arrow_right_active.svg");
}
.project .wrapp .owl-project .owl-nav .owl-prev:focus,
.project .wrapp .owl-project .owl-nav .owl-next:focus {
  outline: none;
}
.project .wrapp .owl-project .owl-nav:after {
  width: 117.8px;
  height: 94.65px;
  -webkit-transform: rotate(-52.09deg);
          transform: rotate(-52.09deg);
  background-image: url(../img/banner_img_ny.png);
  bottom: 0px;
  right: -150px;
  background-size: 100%;
  position: absolute;
}
.project .wrapp .counter {
  width: calc((35% - 10px)/2);
  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;
  position: absolute;
  top: 0;
  right: calc((35% - 10px)/2);
  height: 40px;
}
.project .wrapp .counter .act,
.project .wrapp .counter .ald,
.project .wrapp .counter .pr {
  font-family: 'Noto Sans', sans-serif;
  font-size: 30px;
  font-weight: bold;
}
.project .wrapp .counter .act {
  color: #298037;
}
.project .wrapp .counter .ald,
.project .wrapp .counter .pr {
  color: #000000;
}
.header_half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}
.header_half .left_part {
  width: 50%;
}
.header_half .left_part .title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 36px;
  color: #200e32;
  font-weight: bold;
}
.header_half .left_part .title .green_text {
  color: #298037;
}
.header_half .right_part {
  width: 50%;
  background-color: #200e32;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 125px;
}
.header_half .right_part .icon {
  background-image: url("../img/price.png");
  min-width: 126.38px;
  height: 125.88px;
  position: absolute;
  top: -32px;
  left: -24px;
  margin-right: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}
.header_half .right_part .text {
  font-family: 'Noto Sans', sans-serif;
  color: #ffffff;
  font-size: 20px;
}
.header_half .right_part .text .bold {
  font-weight: bold;
}
#calc {
  margin-bottom: 700px;
  /*.head{
    display: flex;
    margin-bottom: 60px;
    .left_part{
      width: 50%;
      .title{
        .ff;
        font-size: 36px;
        color: @c2;
        font-weight: bold;
        .green_text{
          color: @cdark_green;
        }
      }
    }
    .right_part{
      width: 50%;
      background-color: @c2;
      box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      position: relative;
      display: flex;
      align-items: center;
      padding-left: 25px;
      .icon{
        background-image: url("../img/price.png");
        min-width: 59.41px;
        height: 102.31px;
        position: relative;
        top: -12px;
        margin-right: 20px;
        background-size: contain;
        background-repeat: no-repeat;
      }
      .text{
        .ff;
        color: @cf;
        font-size: 20px;
        .bold{
          font-weight: bold;
        }
      }
    }
  } */
}
#calc .calc_body {
  border-radius: 0px 0px 10px 10px;
  width: 1200px;
  position: relative;
}
#calc .calc_body .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#calc .calc_body .tabs .tab {
  background: #E5E5E5;
  border-radius: 10px 10px 0px 0px;
  -ms-flex-preferred-size: calc(100%/5 - 5px);
      flex-basis: calc(100%/5 - 5px);
  padding: 20px 0;
  cursor: pointer;
}
#calc .calc_body .tabs .tab .title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  color: #858181;
  text-align: center;
}
#calc .calc_body .tabs .tab .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #858181;
  text-align: center;
}
#calc .calc_body .tabs .tab.active {
  background-color: #298037;
}
#calc .calc_body .tabs .tab.active .title {
  color: #ffffff;
}
#calc .calc_body .tabs .tab.active .text {
  color: #ffffff;
}
#calc .calc_body .step {
  padding-top: 50px;
  padding-bottom: 65px;
  position: absolute;
  top: 100px;
  height: 650px;
  width: 100%;
  background-color: #ffffff;
  display: none;
  -webkit-box-shadow: 0px 4px 30px rgba(63, 63, 63, 0.15);
          box-shadow: 0px 4px 30px rgba(63, 63, 63, 0.15);
}
#calc .calc_body .step_1 {
  display: block;
}
#calc .calc_body .step_1 .owl-prod {
  margin-bottom: 60px;
}
#calc .calc_body .step_1 .owl-prod .owl-nav {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 80px);
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  position: absolute;
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev .pref,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next .pref,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev .next,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next .next {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev .pref,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next .pref {
  background-image: url("../img/arrow_left.svg");
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev .pref:hover,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next .pref:hover,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev .pref:focus,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next .pref:focus {
  outline: none;
  background-image: url("../img/arrow_left_active.svg");
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev .next,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next .next {
  background-image: url("../img/arrow_right.svg");
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev .next:hover,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next .next:hover,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev .next:focus,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next .next:focus {
  outline: none;
  background-image: url("../img/arrow_right_active.svg");
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev:focus,
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next:focus {
  outline: none;
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-prev {
  left: 0;
}
#calc .calc_body .step_1 .owl-prod .owl-nav .owl-next {
  right: 0;
}
#calc .calc_body .step_num {
  font-family: 'Noto Sans', sans-serif;
  color: #84b734;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
#calc .calc_body .step .title {
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
  color: #000000;
  font-size: 32px;
  margin-bottom: 50px;
}
#calc .calc_body .step .block {
  -webkit-box-shadow: 0px 4px 30px rgba(63, 63, 63, 0.15);
          box-shadow: 0px 4px 30px rgba(63, 63, 63, 0.15);
  border-radius: 10px;
  padding: 17px 11px 25px 11px;
  margin: 25px auto;
  cursor: pointer;
  width: 300px;
}
#calc .calc_body .step .block .img {
  height: 172px;
  width: 100%;
  background-size: contain;
  margin-bottom: 18px;
  background-repeat: no-repeat;
  background-position: center;
}
#calc .calc_body .step .block .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#calc .calc_body .step .block .text span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #84b734;
  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;
  margin-right: 5px;
}
#calc .calc_body .step .block .text span:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#calc .calc_body .step .block.active .text span:before {
  background-color: #298037;
}
#calc .calc_body .step .block:hover {
  -webkit-box-shadow: 0px 4px 20px 4px rgba(88, 143, 49, 0.18);
          box-shadow: 0px 4px 20px 4px rgba(88, 143, 49, 0.18);
}
#calc .calc_body .step .block_barselon .img {
  background-image: url("../img/models/barselona/Barselona2600_1800white_tree_see_tree.jpg");
}
#calc .calc_body .step .block_bruklin .img {
  background-image: url("../img/models/bruklin/Bruklin2800white_beton.jpg");
}
#calc .calc_body .step .block_keln .img {
  background-image: url("../img/models/kyoln/Kyoln2800toffy_soft.jpg");
}
#calc .calc_body .step .block_london .img {
  background-image: url("../img/models/london/London3400dub_white_dub_venge.jpg");
}
#calc .calc_body .step .block_loft .img {
  background-image: url("../img/styles/loft/zastavka.jpg");
}
#calc .calc_body .step .block_oliv .img {
  background-image: url("../img/models/oliva/Oliva2200white_metal.jpg");
}
#calc .calc_body .step .block_provans .img {
  background-image: url("../img/styles/provans/zastavka.jpg");
}
#calc .calc_body .step .block_romb .img {
  background-image: url("../img/models/romb/romb1750_2100sandal_white_grey.jpg");
}
#calc .calc_body .step .block_eco .img {
  background-image: url("../img/models/eco/eco_2400_2200beton_show.jpg");
}
#calc .calc_body .step .block_classic .img {
  background-image: url("../img/styles/classic/zastavka.jpg");
}
#calc .calc_body .step .block_mini .img {
  background-image: url("../img/styles/minimal/zastavka.jpg");
}
#calc .calc_body .step .block_hiteck .img {
  background-image: url("../img/styles/hiteck/zastavka.JPG");
}
#calc .calc_body .step .block_modern .img {
  background-image: url("../img/styles/modern/zastavka.png");
}
#calc .calc_body .step .block_i .img {
  background-image: url("../img/i_grup.svg");
}
#calc .calc_body .step .block_l .img {
  background-image: url("../img/p_grup.svg");
}
#calc .calc_body .step .block_p {
  margin-right: 10px;
  margin-left: 10px;
}
#calc .calc_body .step .block_p .img {
  background-image: url("../img/l_grup.svg");
}
#calc .calc_body .step .block_wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#calc .calc_body .step .block_max {
  width: calc(100% - 164px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#calc .calc_body .step .block_max .left_part {
  width: 50%;
}
#calc .calc_body .step .block_max .left_part .ask_line #calc_weight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
#calc .calc_body .step .block_max .left_part .ask_line #calc_weight label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
}
#calc .calc_body .step .block_max .left_part .ask_line #calc_weight input {
  -webkit-box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  border: none;
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  color: #000000;
  width: 220px;
  padding-left: 10px;
}
#calc .calc_body .step .block_max .left_part .ask_line #calc_weight input:focus {
  outline: none;
}
#calc .calc_body .step .block_max .left_part .ask_line #calc_weight input::-webkit-outer-spin-button,
#calc .calc_body .step .block_max .left_part .ask_line #calc_weight input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#calc .calc_body .step .block_max .left_part .ask_line #calc_weight .hid {
  font-family: 'Noto Sans', sans-serif;
  font-size: 24px;
  color: #000000;
  position: absolute;
  right: 10px;
  top: 8px;
}
#calc .calc_body .step .block_max .left_part .ask_line .block {
  display: none;
}
#calc .calc_body .step .block_max .left_part .doc_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 20px;
}
#calc .calc_body .step .block_max .left_part .doc_link .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #252b26;
  margin-left: 20px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#calc .calc_body .step .block_max .left_part .doc_link .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background-size: 50%;
  background-image: url("../img/lin.svg");
}
#calc .calc_body .step .block_max .left_part .doc_link .icon:hover .text {
  color: #298037;
}
#calc .calc_body .step .block_max .left_part .doc_link .icon:hover .icon {
  -webkit-box-shadow: -4px -4px 10px rgba(41, 128, 55, 0.1), 4px 4px 10px rgba(41, 128, 55, 0.1);
          box-shadow: -4px -4px 10px rgba(41, 128, 55, 0.1), 4px 4px 10px rgba(41, 128, 55, 0.1);
  background-size: 45%;
}
#calc .calc_body .step .block_max .right_part {
  width: 238.78px;
  height: 129.73px;
}
#calc .calc_body .step .block_max .right_part.block_i {
  background-image: url("../img/i_grup.svg");
}
#calc .calc_body .step .block_max .right_part.block_l {
  background-image: url("../img/l_grup.svg");
}
#calc .calc_body .step .block_max .right_part.block_p {
  background-image: url("../img/p_grup.svg");
}
#calc .calc_body .step .block_stol {
  width: 300px;
}
#calc .calc_body .step .block_stol_lit {
  margin-right: 10px;
}
#calc .calc_body .step .block_stol_lit .img {
  background-image: url("../img/stol_lit.png");
  background-size: cover;
  background-position: center bottom;
}
#calc .calc_body .step .block_stol_big .img {
  background-image: url("../img/stol_big.png");
  background-size: cover;
  background-position: center bottom;
}
#calc .calc_body .step .btn_next {
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}
#calc .calc_body .step .btn_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#calc .calc_body .step .btn_line .btn_green {
  background-color: #84b734;
}
#calc .calc_body .step .btn_line .btn_green span {
  color: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#calc .calc_body .step .btn_line .btn_green span:after {
  content: none;
}
#calc .calc_body .step .btn_line .btn_green:focus,
#calc .calc_body .step .btn_line .btn_green:hover {
  background-color: rgba(132, 183, 52, 0.3);
}
#calc .calc_body .step .btn_line .btn_green:focus span,
#calc .calc_body .step .btn_line .btn_green:hover span {
  color: #84b734;
}
#calc .calc_body .step .btn_line .btn_next {
  margin-top: 0;
  margin-left: 10px;
  margin-right: 0;
}
#calc .calc_body .step_5 .wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
#calc .calc_body .step_5 .wrapp .left_part {
  width: calc(100% - 550px);
  padding-right: 120px;
  padding-left: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#calc .calc_body .step_5 .wrapp .left_part .title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 30px;
  text-align: left;
}
#calc .calc_body .step_5 .wrapp .left_part .result_title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}
#calc .calc_body .step_5 .wrapp .left_part .result_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 25px;
}
#calc .calc_body .step_5 .wrapp .left_part .result_line .result_block {
  padding: 8px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
  margin-right: 10px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  color: #000000;
}
#calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp {
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding-left: 30px;
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 15px;
}
#calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .title {
  font-family: 'Noto Sans', sans-serif;
  color: #000000;
  font-size: 20px;
  margin-bottom: 0px;
}
#calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .line .col .dis {
  width: 61.03px;
  height: 34.46px;
  border-radius: 5px;
}
#calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .line .col .dis span {
  font-size: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .line .col .dis span:after {
  content: none;
}
#calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .line .col .old_prise {
  font-family: 'Noto Sans', sans-serif;
  color: #949494;
  font-size: 20px;
  text-decoration: line-through;
}
#calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .line .new_prise {
  font-family: 'Noto Sans', sans-serif;
  color: #200e32;
  font-size: 60px;
  margin-left: 10px;
}
#calc .calc_body .step_5 .wrapp .left_part .result .present {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
#calc .calc_body .step_5 .wrapp .left_part .result .present .img {
  border-radius: 50px 10px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-image: url("../img/present.png");
  min-width: 134.87px;
  height: 117.75px;
  margin-right: 30px;
}
#calc .calc_body .step_5 .wrapp .left_part .result .present .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}
#calc .calc_body .step_5 .wrapp .left_part .result .present .text .grad {
  font-family: 'Noto Sans', sans-serif;
  font-size: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#e64259), to(#f17032));
  background: linear-gradient(90deg, #e64259 0%, #f17032 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#calc .calc_body .step_5 .wrapp .right_part {
  width: 550px;
  background-color: #FFEC8A;
  padding: 0 60px;
  height: calc(100% + 115px);
  min-height: calc(100% + 115px);
  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;
  border-radius: 10px;
  top: -50px;
}
#calc .calc_body .step_5 .wrapp .right_part .title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #200e32;
  text-align: center;
  margin-bottom: 10px;
}
#calc .calc_body .step_5 .wrapp .right_part .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #322f2f;
  text-align: center;
  margin-bottom: 20px;
}
#calc .calc_body .step .err {
  font-family: 'Noto Sans', sans-serif;
  color: #fe5a1b;
  font-size: 16px;
  text-align: center;
}
#calc .calc_body .step_2 .owl-styl {
  display: none;
}
#calc .calc_body .step .owl-stol {
  display: none;
}
#ideal .body{
  align-items: center;
  display: flex;
  column-gap: 35px;
  justify-content: space-between;
  margin-bottom: 140px;
  padding-right: 40px;
}
#ideal .body .left .list{
  margin-top: 35px;
  list-style-type: none;
  margin-bottom: 40px;
  padding-left: 54px;
}
#ideal .body .left .list li{
  display: flex;
  align-items: center;
  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  position: relative;
  margin-bottom: 15px;
}
#ideal .body .left .list li:last-of-type{
  margin-bottom: 0;
}
#ideal .body .left .list li:before,
#ideal .body .left .list li:after{
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
}
#ideal .body .left .list li:before{
  width: 12px;
  height: 12px;
  background-color: #84B734;
  left: -32px;
}
#ideal .body .left .list li:after{
  width: 24px;
  height: 24px;
  border:2px solid #84B734;
  left: -38px
}
#ideal .body .left .btn_ins span:after {
  content: none;
}
#ideal .body .left .btn_ins span:before {
  content: "";
  width: 17px;
  height: 20px;
  display: inline-block;
  background-image: url("../img/doc_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
}
#ideal .body .right{
  position: relative;
}
#ideal .body .right .bg{
  width: 553px;
  height: 432px;
  background-image: url("../img/ideal_bg.jpg");
  background-size: contain;
  background-repeat: no-repeat;
}
#ideal .body .right .block{
  background-color: #fff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  right: 20px;
  border-radius: 10px;
  width: 290px;
  height: 103px;
}
#ideal .body .right .block svg{
  position: absolute;
  display: block;
  transition: all ease-in-out 0.3s;
}
#ideal .body .right .block .text_wr{
  position: absolute;
  padding: 7px 12px;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
#ideal .body .right .block .text_wr .tit{
  font-size: 14px;
  color: #298037;
  font-family: 'Noto Sans';
  font-weight: 600;

}
#ideal .body .right .block .text_wr .text{
  font-size: 11px;
  color: #322F2F;
  font-family: 'Noto Sans';
}
#ideal .body .right .block:hover svg{
  opacity: 0;
}
#ideal .body .right .block:hover .text_wr{
  opacity: 1;
}
#present {
  margin-bottom: 100px;
}
#present .block_title {
  text-align: center;
  margin-bottom: 30px;
}
#present .wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-image: url("../img/present_bg.png");
  background-repeat: no-repeat;
  background-position: calc(50% - 20px);
  background-size: contain;
  height: 636.1px;
}
#present .wrapp .left_part .text,
#present .wrapp .right_part .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 30px;
  color: #000000;
  font-weight: bold;
}
#present .wrapp .left_part .text_spec{
  font-size: 10px;
}
#present .wrapp .left_part .dis {
  font-family: 'Noto Sans', sans-serif;
  font-size: 100px;
  font-weight: bold;
}
#present .wrapp .left_part .img {
  width: 351.57px;
  height: 259.13px;
  background-image: url("../img/present_left_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#present .wrapp .right_part {
  margin-top: 100px;
  position: relative;
}
#present .wrapp .right_part .img {
  border-radius: 50px 10px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-image: url("../img/present_right_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 278px;
  height: 242.71px;
  margin-bottom: 20px;
}
#present .wrapp .right_part .img_1 {
  background-image: url("../img/present_right_bg.png");
  position: relative;
  z-index: 2;
}
#present .wrapp .right_part .img_2 {
  background-image: url("../img/present_right_bg_2.png");
  position: absolute;
  top: -90px;
  left: -100px;
  background-size: contain;
  z-index: 0;
  border: 5px solid #ffffff;
}
#present .wrapp .right_part .spec {
  font-family: 'Noto Sans', sans-serif;
  font-size: 40px;
  font-weight: bold;
}
#zakaz {
  margin-bottom: 50px;
}
#zakaz .block_title {
  text-align: center;
  margin-bottom: 60px;
}
#zakaz .icon_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 50px;
}
#zakaz .icon_line .block {
  width: 280px;
  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;
}
#zakaz .icon_line .block .icon {
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 20px;
}
#zakaz .icon_line .block .title {
  font-family: 'Noto Sans', sans-serif;
  color: #200e32;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#zakaz .icon_line .block .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #000000;
  text-align: center;
}
#zakaz .icon_line .block .text .bold {
  font-weight: bold;
}
#zakaz .icon_line .block_1 .icon {
  background-image: url("../img/kitchen_1.svg");
}
#zakaz .icon_line .block_2 .icon {
  background-image: url("../img/kitchen_2.svg");
}
#zakaz .icon_line .block_3 .icon {
  background-image: url("../img/kitchen_3.svg");
}
#zakaz .icon_line .block_4 .icon {
  background-image: url("../img/kitchen_4.svg");
}
#zakaz .btn_line {
  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;
}
#zakaz .btn_line .modal_open {
  margin-left: 20px;
}
#zamer .block_title {
  margin-bottom: 60px;
  text-align: center;
}
#zamer .body_zamer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px;
}
#zamer .body_zamer .left_part {
  width: 50%;
  padding-right: 30px;
}
#zamer .body_zamer .left_part .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 23px 26px;
  background-color: #200e32;
  border-radius: 10px;
  margin-bottom: 50px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
}
#zamer .body_zamer .left_part .header .icon {
  width: 50px;
  height: 56px;
  background-image: url("../img/rulet.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 25px;
}
#zamer .body_zamer .left_part .header .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #ffffff;
}
#zamer .body_zamer .left_part .body {
  position: relative;
}
#zamer .body_zamer .left_part .body .text {
  font-family: 'Noto Sans', sans-serif;
  color: #000000;
  font-size: 16px;
  margin-bottom: 10px;
}
#zamer .body_zamer .left_part .body .text_ins {
  font-weight: bold;
  color: #200e32;
  margin-bottom: 45px;
}
#zamer .body_zamer .left_part .body .arr {
  width: 70px;
  height: 74px;
  background-image: url("../img/arr_bl_rul.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 30px;
  left: 10px;
}
#zamer .body_zamer .left_part .body .btn_ins {
  margin-left: auto;
  margin-right: auto;
}
#zamer .body_zamer .left_part .body .btn_ins span {
  width: 214px;
}
#zamer .body_zamer .left_part .body .btn_ins span:after {
  content: none;
}
#zamer .body_zamer .left_part .body .btn_ins span:before {
  content: "";
  width: 17px;
  height: 20px;
  display: inline-block;
  background-image: url("../img/doc_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
}
#zamer .body_zamer .right_part {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 30px;
}
#zamer .body_zamer .right_part .img {
  background-image: url("../img/zamer_bg.jpg");
  border-radius: 170px 10px;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.call {
  padding-top: 140px;
  margin-bottom: 130px;
}
.call_wrap {
  position: relative;
}
.call_wrap .girl {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0;
  right: 180px;
  z-index: 0;
}
.call_wrap .girl .text_wr {
  width: 278.23px;
  height: 94.1px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  left: 40px;
  top: 130px;
}
.call_wrap .girl .text_wr .content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 12px;
  background: #fff;
  border-radius: 10px;
}
.call_wrap .girl .text_wr .content .title {
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  color: #000000;
  margin-bottom: 10px;
}
.call_wrap .girl .text_wr .content .title:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 21.11px;
  height: 19px;
  background-image: url("../img/peoples.svg");
  background-size: cover;
  background-position: center;
  top: 5px;
  margin-right: 10px;
}
.call_wrap .girl .text_wr .content .text {
  width: 100%;
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  color: #000000;
}
.call_wrap .girl .text_wr .content .text .green_text {
  color: #298037;
  font-weight: bold;
}
.call_wrap .girl .text_wr:after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  background: white;
  border: 10px solid transparent;
  -webkit-transform: rotate(45deg) translateX(15px) translateY(15px);
          transform: rotate(45deg) translateX(15px) translateY(15px);
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
}
.call_wrap .girl .img {
  width: 274.4px;
  height: 445px;
  background-image: url("../img/girl_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 105%;
}
.call_wrap .body {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 50px rgba(222, 222, 222, 0.6);
          box-shadow: 0px 4px 50px rgba(222, 222, 222, 0.6);
  border-radius: 10px;
  background-image: url("../img/call_bg.svg");
  background-repeat: no-repeat;
  background-position: right;
  padding: 36px 10px 40px 73px;
}
.call_wrap .body .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  width: 600px;
  margin-bottom: 20px;
}
.call_wrap .body .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 5;
}
.call_wrap .body .line .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 100px;
}
.call_wrap .body .line .contact .phone {
  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;
  margin-left: 15px;
}
.call_wrap .body .line .contact .phone .phone_link {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: right;
  color: #252b26;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.call_wrap .body .line .contact .phone .phone_link:hover {
  color: #298037;
}
.call_wrap .body .line .contact .phone .text {
  width: auto;
  margin-bottom: 0;
  font-family: 'Noto Sans', sans-serif;
  font-size: 12px;
  color: #949494;
  text-align: right;
}
#opl_dos {
  margin-bottom: 200px;
}
#opl_dos .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#opl_dos .block .left_part {
  width: 50%;
  padding-right: 30px;
}
#opl_dos .block .left_part .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5px;
  margin-top: 30px;
}
#opl_dos .block .left_part .link span {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-weight: bold;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #200e32;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#opl_dos .block .left_part .link span.border {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px dotted #200e32;
  height: 18px;
}
#opl_dos .block .left_part .link span.icon {
  width: 17px;
  height: 20px;
  background-image: url("../img/link_icon_blue.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  margin-right: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#opl_dos .block .left_part .link:hover span {
  color: #298037;
}
#opl_dos .block .left_part .link:hover span.icon {
  background-image: url("../img/link_icon_green.svg");
}
#opl_dos .block .right_part {
  padding-left: 30px;
  width: 50%;
}
#opl_dos .block .right_part .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5px;
  margin-top: 30px;
}
#opl_dos .block .right_part .link span {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-weight: bold;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #200e32;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#opl_dos .block .right_part .link span.border {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-bottom: 1px dotted #200e32;
  height: 18px;
}
#opl_dos .block .right_part .link span.icon {
  width: 17px;
  height: 20px;
  background-image: url("../img/sit.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  margin-right: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#opl_dos .block .right_part .link:hover span {
  color: #298037;
}
#opl_dos .block .right_part .link:hover span.icon {
  background-image: url("../img/sit_green.svg");
}
#opl_dos .block .right_part img {
  margin-top: 10px;
}
#opl_dos .block .icon_blocks {
  width: 50%;
}
#opl_dos .block .icon_blocks .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
#opl_dos .block .icon_blocks .block .img {
  min-width: 84px;
  height: 75px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
}
#opl_dos .block .icon_blocks .block .body {
  margin-left: 30px;
}
#opl_dos .block .icon_blocks .block .body .title {
  color: #200e32;
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}
#opl_dos .block .icon_blocks_dos {
  padding-left: 30px;
}
#opl_dos .block .icon_blocks_dos .block_1 .img {
  background-image: url("../img/clock.svg");
}
#opl_dos .block .icon_blocks_dos .block_2 .img {
  background-image: url("../img/big_car.svg");
}
#opl_dos .block .icon_blocks_dos .block_3 .img {
  background-image: url("../img/gear.svg");
}
#opl_dos .block .icon_blocks_opl {
  padding-right: 30px;
}
#opl_dos .block .icon_blocks_opl .block_1 .img {
  background-image: url("../img/nal.svg");
}
#opl_dos .block .icon_blocks_opl .block_2 .img {
  background-image: url("../img/credit_card.svg");
}
#opl_dos .block .icon_blocks_opl .block_3 .img {
  background-image: url("../img/0.svg");
}
#opl_dos .block .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #322f2f;
}
#opl_dos .block .text .bold {
  font-weight: bold;
  color: #000000;
}
#opl_dos .block .text a {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#opl_dos .block .text a:hover {
  color: #298037;
}
#opl_dos .block .block_title {
  margin-bottom: 40px;
}
#opl_dos .block_dos {
  margin-bottom: 100px;
}
#call_zamer .call_wrap .girl .img {
  background-image: url("../img/girl_2.png");
}
#map {
  margin-bottom: 90px;
}
#map .block_title {
  padding: 0 40px;
  text-align: center;
  margin-bottom: 60px;
}
#map .block_wrapp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 445px;
  overflow-y: scroll;
  position: relative;
}
#map .block_wrapp .right_part {
  width: calc(100% - 520px);
  height: 100%;
  overflow: hidden;
  margin-left: 20px;
}
#map .block_wrapp .right_part .map_block {
  height: 100%;
}
#map .block_wrapp .right_part .map_block .map_wr {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(205, 205, 205, 0.25)), to(rgba(205, 205, 205, 0.25)));
  background: linear-gradient(0deg, rgba(205, 205, 205, 0.25), rgba(205, 205, 205, 0.25));
  padding: 2px;
  display: none;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#map .block_wrapp .right_part .map_block .map_wr.active {
  display: block;
}
#map .block_wrapp .left_part {
  width: 500px;
  height: 100%;
  overflow-y: scroll;
  padding: 80px 5px 10px 5px;
}
#map .block_wrapp .left_part::-webkit-scrollbar-track {
  background-color: rgba(32, 14, 50, 0.1);
  border-radius: 5px;
}
#map .block_wrapp .left_part::-webkit-scrollbar {
  width: 9px;
  background-color: rgba(32, 14, 50, 0.1);
  border-radius: 5px;
}
#map .block_wrapp .left_part::-webkit-scrollbar-thumb {
  background-color: #200e32;
  border-radius: 5px;
}
#map .block_wrapp .left_part .adres_block {
  border-radius: 10px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}
#map .block_wrapp .left_part .adres_block .open_block {
  padding: 11px 10px 11px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
#map .block_wrapp .left_part .adres_block .open_block .name {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #000000;
  font-weight: bold;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#map .block_wrapp .left_part .adres_block .open_block .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-image: url("../img/Arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background-color: #ffffff;
}
#map .block_wrapp .left_part .adres_block .body_block {
  display: none;
  padding: 25px 18px 18px;
}
#map .block_wrapp .left_part .adres_block .body_block .text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #000000;
  margin-bottom: 15px;
}
#map .block_wrapp .left_part .adres_block .body_block .text:before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 25px;
  display: inline-block;
  position: relative;
  top: 4px;
}
#map .block_wrapp .left_part .adres_block .body_block .text.adress:before {
  background-image: url("../img/adres_icon.svg");
}
#map .block_wrapp .left_part .adres_block .body_block .text.time:before {
  background-image: url("../img/clock_square.svg");
}
#map .block_wrapp .left_part .adres_block .body_block .text.phone {
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#map .block_wrapp .left_part .adres_block[data-adres="3"]  .body_block .text.phone{
  margin-bottom: 15px;
  display: block;
}
#map .block_wrapp .left_part .adres_block .body_block .text.phone:before {
  background-image: url("../img/icn_phone_blue.svg");
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#map .block_wrapp .left_part .adres_block .body_block .text.phone:hover {
  color: #298037;
}
#map .block_wrapp .left_part .adres_block .body_block .text.phone:hover:before {
  background-image: url("../img/icn_phone_green.svg");
}
#map .block_wrapp .left_part .adres_block .body_block .img_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#map .block_wrapp .left_part .adres_block .body_block .img_line img {
  width: 150px;
  height: auto;
  margin-right: 10px;
  border-radius: 5px;
}
#map .block_wrapp .left_part .adres_block.active .open_block {
  background-color: #298037;
}
#map .block_wrapp .left_part .adres_block.active .open_block .name {
  color: #ffffff;
}
#map .block_wrapp .left_part .adres_block.active .open_block .icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#map .block_wrapp .left_part .adres_block.active_first .open_block {
  background-color: #298037;
}
#map .block_wrapp .left_part .adres_block.active_first .open_block .name {
  color: #ffffff;
}
#map .block_wrapp .left_part .adres_block.active_first .open_block .icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#map .block_wrapp .left_part .adres_block.active_first .body_block {
  display: block;
}
#map .block_wrapp .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #200e32;
  padding-left: 23px;
  padding-right: 40px;
  padding-top: 0;
  width: 500px;
  position: absolute;
  top: 0;
  z-index: 10;
}
#map .block_wrapp .header .num {
  font-family: 'Noto Sans', sans-serif;
  color: #ffffff;
  font-size: 50px;
  margin-right: 10px;
}
#map .block_wrapp .header .text {
  font-family: 'Noto Sans', sans-serif;
  color: #ffffff;
  font-size: 16px;
}
#stol_styl {
  margin-bottom: 100px;
}
#stol_styl .block_title {
  text-align: center;
  margin-bottom: 60px;
}
#stol_styl .owl-styl .item {
  background-color: #f5f5f5;
  padding: 10px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#stol_styl .owl-styl .item .img {
  margin-bottom: 10px;
}
#stol_styl .owl-styl .item .img img {
  background-color: #ffffff;
  border-radius: 10px;
}
#stol_styl .owl-styl .item .body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#stol_styl .owl-styl .item .body .name,
#stol_styl .owl-styl .item .body .set {
  font-family: 'Noto Sans', sans-serif;
  font-size: 10px;
  color: #949494;
  margin-bottom: 5px;
}
#stol_styl .owl-styl .item .body .big_name {
  font-family: 'Noto Sans', sans-serif;
  color: #000000;
  font-size: 14px;
  margin-bottom: 5px;
}
#stol_styl .owl-styl .item .body .prise_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#stol_styl .owl-styl .item .body .prise_block .old_prise {
  font-family: 'Noto Sans', sans-serif;
  font-size: 8px;
  color: #949494;
  margin-right: 5px;
  text-decoration: line-through;
}
#stol_styl .owl-styl .item .body .prise_block .new_prise {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #200e32;
}
#stol_styl .owl-styl .item .body .prise_block .label {
  width: 28px;
  height: 16px;
  background: -webkit-gradient(linear, left top, right top, from(#e64259), to(#f17032));
  background: linear-gradient(90deg, #e64259 0%, #f17032 100%);
  border-radius: 2px;
  color: #ffffff;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  font-family: 'Noto Sans', sans-serif;
  margin-left: 5px;
}
#stol_styl .owl-styl .item .body .modal_open {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #298037;
  margin-top: 10px;
  font-weight: bold;
}
#stol_styl .owl-styl .item .body .modal_open:before {
  content: "";
  display: inline-block;
  background-image: url("../img/bag.svg");
  width: 16px;
  height: 18px;
  position: relative;
  margin-right: 5px;
  top: 2px;
}
#stol_styl .owl-styl .owl-nav {
  position: absolute;
  top: 50%;
  left: -50px;
  width: calc(100% + 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
}
#stol_styl .owl-styl .owl-nav .owl-prev,
#stol_styl .owl-styl .owl-nav .owl-next {
  width: 40px;
  height: 40px;
}
#stol_styl .owl-styl .owl-nav .owl-prev .pref,
#stol_styl .owl-styl .owl-nav .owl-next .pref,
#stol_styl .owl-styl .owl-nav .owl-prev .next,
#stol_styl .owl-styl .owl-nav .owl-next .next {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#stol_styl .owl-styl .owl-nav .owl-prev .pref,
#stol_styl .owl-styl .owl-nav .owl-next .pref {
  background-image: url("../img/arrow_left.svg");
}
#stol_styl .owl-styl .owl-nav .owl-prev .pref:hover,
#stol_styl .owl-styl .owl-nav .owl-next .pref:hover,
#stol_styl .owl-styl .owl-nav .owl-prev .pref:focus,
#stol_styl .owl-styl .owl-nav .owl-next .pref:focus {
  outline: none;
  background-image: url("../img/arrow_left_active.svg");
}
#stol_styl .owl-styl .owl-nav .owl-prev .next,
#stol_styl .owl-styl .owl-nav .owl-next .next {
  background-image: url("../img/arrow_right.svg");
}
#stol_styl .owl-styl .owl-nav .owl-prev .next:hover,
#stol_styl .owl-styl .owl-nav .owl-next .next:hover,
#stol_styl .owl-styl .owl-nav .owl-prev .next:focus,
#stol_styl .owl-styl .owl-nav .owl-next .next:focus {
  outline: none;
  background-image: url("../img/arrow_right_active.svg");
}
#stol_styl .owl-styl .owl-nav .owl-prev:focus,
#stol_styl .owl-styl .owl-nav .owl-next:focus {
  outline: none;
}
.bez {
  background-color: #298037;
  padding: 10px 0;
}
.bez .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bez .line .text {
  font-family: 'Noto Sans', sans-serif;
  color: #ffffff;
  font-size: 22px;
}
.bez .line .text .bold {
  font-weight: bold;
}
.bez .line .icon {
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 43px;
}
.bez .line .icon_1 {
  min-width: 60px;
  background-image: url("../img/mask.svg");
  margin-left: 90px;
}
.bez .line .icon_2 {
  min-width: 33px;
  background-image: url("../img/sanitaixer.svg");
}
.bez .line .icon_3 {
  min-width: 40px;
  background-image: url("../img/distance.svg");
}
.form {
  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;
}
.form_input {
  -webkit-box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  height: 70px;
  min-height: 70px;
  width: 440px;
  border: none;
  padding-left: 80px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  color: #000000;
  position: relative;
}
.form_input:focus,
.form_input:active {
  outline: none;
  -webkit-box-shadow: inset -2px -2px 5px rgba(41, 128, 55, 0.1), inset 2px 2px 5px rgba(41, 128, 55, 0.1);
          box-shadow: inset -2px -2px 5px rgba(41, 128, 55, 0.1), inset 2px 2px 5px rgba(41, 128, 55, 0.1);
}
.form_block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form_block .icon {
  display: block;
  width: 25px;
  height: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 2;
  left: 30px;
}
.form_block_name {
  margin-bottom: 10px;
}
.form_block_name .icon {
  background-image: url("../img/icon_people.svg");
}
.form_block_phone .icon {
  background-image: url("../img/icn_phone_blue.svg");
}
.form_block_telegram .icon{
  background-image: url("../img/icn_telega_blue.svg");
}
.form .polit_line {
  margin-top: 20px;
}
.form .polit_line .polit_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  -o-flex-flow: row wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-flow: row wrap;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.form .polit_line .polit_checkbox input {
  position: absolute;
  opacity: 0;
}
.form .polit_line .polit_checkbox .polit_label {
  font-family: 'Noto Sans', sans-serif;
  color: #949494;
  font-size: 11px;
  position: relative;
  padding-left: 30px;
}
.form .polit_line .polit_checkbox .polit_label a {
  text-decoration: none;
  color: #949494;
}
.form .polit_line .polit_checkbox .polit_label a:hover{
  color:#298037;
}
.form .polit_line .polit_checkbox .polit_label:before,
.form .polit_line .polit_checkbox .polit_label:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-box-shadow: inset -1px -1px 1px rgba(0, 0, 0, 0.1), inset 1px 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset -1px -1px 1px rgba(0, 0, 0, 0.1), inset 1px 1px 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form .polit_line .polit_checkbox .polit_label:before {
  background-color: #ffffff;
}
.form .polit_line .polit_checkbox .polit_label:after {
  opacity: 0;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  background-image: url("../img/yes.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.form .polit_line .polit_checkbox .polit_checkbox_input:checked + .polit_label:after {
  opacity: 1;
}
.form .btn {
  border: none;
  margin-top: 30px;
}
.form .btn span {
  width: 200px;
}
.form .btn:focus,
.form .btn:active {
  outline: none;
}
.form_phone {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form_phone .title {
  font-family: 'Noto Sans', sans-serif;
  color: #298037;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 2px;
}
.form_phone .form_input {
  -webkit-box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1), inset 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 264.25px;
  height: 46.36px;
  min-height: 46.36px;
  padding-left: 10px;
}
.form_phone .btn_phone_call {
  -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background-color: #298037;
  width: 57.02px;
  height: 46.36px;
  border: none;
  position: absolute;
  right: 0;
}
.form_phone .btn_phone_call span {
  width: 21.53px;
  height: 18.65px;
  background-image: url("../img/arrow_btn.svg");
  display: block;
  background-repeat: no-repeat;
  margin: auto;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.form_phone .btn_phone_call:active {
  border: none;
  outline: none;
}
.form_phone .btn_phone_call:active span {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.soc .soc_link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  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;
}
.soc .soc_link:before {
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.soc .soc_link a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.soc .soc_link_viber {
  background: linear-gradient(208.07deg, #be61c9 11.96%, #9e47a8 85.87%), #ac5eb5;
}
.soc .soc_link_viber:before {
  background-image: url("../img/viber_icon.svg");
}
.soc .soc_link_wa {
  margin-left: 11px;
  background: linear-gradient(208.07deg, #58c763 11.96%, #4ba354 85.87%), #5eb567;
}
.soc .soc_link_wa:before {
  background-image: url("../img/whatsapp_icon.svg");
}
.soc .soc_link:hover:before {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.modal_form .body_form {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal_form .body_form .text {
  text-align: center;
}
.modal_ths .body_ths {
  padding-top: 65px;
  padding-left: 65px;
}
.modal_ths .body_ths .title {
  width: calc(100% - 160px);
}
.modal_ths .body_ths .text {
  margin-bottom: 10px;
  width: calc(100% - 230px);
}
.modal_ths .body_ths .modal_close_btn {
  position: relative;
  z-index: 1;
  top: 0;
  margin-top: 50px;
}
.modal_ths .body_ths .modal_close_btn:before,
.modal_ths .body_ths .modal_close_btn:after {
  content: none;
}
.modal_ths .body_ths .bg {
  width: 283.5px;
  height: 542.6px;
  background-image: url("../img/ths_bg.png");
  position: absolute;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
}
.modal_body .title {
  font-family: 'Noto Sans', sans-serif;
  color: #200e32;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 25px;
}
.modal_body .text {
  font-family: 'Noto Sans', sans-serif;
  color: #322f2f;
  font-size: 20px;
  margin-bottom: 30px;
}
#up {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: none;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#up a {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url('../img/arrow_top.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.uptop {
  height: 38px;
  width: 100%;
  background: url("../img/cenopad.png"), -webkit-gradient(linear, left top, left bottom, from(#ffeb00), to(#ffcc00));
  background: url("../img/cenopad.png"), linear-gradient(180deg, #ffeb00 0%, #ffcc00 100%);
  background-size: contain;
  background-repeat: round;
}
/**
* media
 */
@media (max-width: 1440px) {
  .header .down_line {
    width: 100%;
  }
  .banner {
    width: 100%;
  }
  .banner_body .left .banner_body_ny {
    right: 20px;
  }
  .banner_body .right {
    right: 0;
  }
  .banner_body .right img {
    width: 700px;
    height: auto;
  }
  .models .owl-modals {
    padding: 0 60px;
  }
  .models .owl-modals .item {
    width: 167px;
  }
  .models .owl-modals .owl-nav {
    width: 100%;
    left: 0;
    top: calc(50% - 20px);
  }
  .project .wrapp .owl-project .item .right_part {
    padding-left: 30px;
  }
  #calc .head .right_part {
    padding-right: 10px;
  }
  #calc .head .left_part .title {
    font-size: 35px;
  }
  #calc .calc_body {
    width: 100%;
  }
  #opl_dos {
    margin-bottom: 70px;
  }
  #zamer .body_zamer {
    padding-right: 0;
  }
  #stol_styl .owl-styl {
    padding: 0 60px;
  }
  #stol_styl .owl-styl .owl-nav {
    width: 100%;
    left: 0;
    top: calc(50% - 20px);
  }
}
@media (max-width: 1200px) {
  .header .top_line .header_btn_line {
    display: none;
  }
  .banner_body {
    overflow-x: hidden;
  }
  .banner_body .right {
    right: -100px;
  }
  .banner_body .left .banner_body_ny {
    right: -80px;
    bottom: 50px;
  }
  .banner_body .left .wrapp{
    width: 100%;
  }
  .banner_body .right img{
    width: 570px;
  }
  .banner_body .left .spec .text{
    font-size: 26px;
  }
  .banner_body .left h1{
    font-size: 32px;
    padding-left: 0;
  }
  .banner_line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
  .banner_line .block {
    padding-left: 40px;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .models {
    margin-bottom: 30px;
  }
  .models #model_info .model_wrapp .top .right_part {
    width: 50%;
  }
  .models #model_info .model_wrapp .top .right_part .prise_block {
    margin-top: 15px;
  }
  .models #model_info .model_wrapp .top .right_part .colors .colors_line {
    margin-bottom: 20px;
  }
  .models #model_info .model_wrapp .top .left_part {
    width: 50%;
  }
  .models #model_info .model_wrapp .top .left_part .img {
    width: 480px;
    height: 320px;
    overflow: hidden;
  }
  .models #model_info .model_wrapp .top .left_part .img img {
    width: 480px;
  }
  .models #model_info .model_wrapp .top .left_part .img:after {
    top: 210px;
    bottom: auto;
  }
  .models #model_info .model_wrapp .down .left {
    width: 50%;
  }
  .models #model_info .model_wrapp .down .left .block_set_wrapp a {
    bottom: -10px;
  }
  .models #model_info .model_wrapp .down .right {
    width: 50%;
  }
  .project .wrapp .owl-project .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project .wrapp .owl-project .item .left_part {
    width: 100%;
  }
  .project .wrapp .owl-project .item .left_part img {
    height: 440px;
  }
  .project .wrapp .owl-project .item .right_part {
    width: 763px;
    padding-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
  }
  .project .wrapp .owl-project .item .right_part .right_block {
    margin-left: 30px;
  }
  .project .wrapp .owl-project .item .right_part .right_block .prise_block {
    margin-top: 0;
    margin-bottom: 10px;
  }
  .project .wrapp .owl-project .item .right_part .info {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(50% - 30px);
  }
  .project .wrapp .owl-project .owl-nav {
    top: 490px;
    right: auto;
    width: 200px;
  }
  .project .wrapp .counter {
    width: 200px;
    top: 490px;
    right: auto;
  }
  .header_half {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header_half .left_part {
    width: 100%;
    padding-right: 40px;
  }
  .header_half .right_part {
    width: 100%;
    margin-top: 20px;
    height: 100px;
  }
  #calc {
    margin-bottom: 900px;
  }
  #calc .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #calc .head .left_part {
    width: 100%;
    padding-right: 40px;
  }
  #calc .head .right_part {
    width: 100%;
    margin-top: 20px;
  }
  #calc .calc_body .step {
    height: 812px;
  }
  #calc .calc_body .step .block_max {
    width: calc(100% - 30px);
  }
  #calc .calc_body .step_5 .wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #calc .calc_body .step_5 .wrapp .left_part {
    width: 100%;
    padding: 20px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result_line {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin-left: 10px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result .present {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    margin-left: 30px;
    margin-top: 0;
    -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;
    position: absolute;
    right: 60px;
  }
  #calc .calc_body .step_5 .wrapp .right_part {
    width: 100%;
    margin-top: 60px;
    padding: 20px;
    height: auto;
    min-height: auto;
  }
  #present .wrapp {
    background-image: none;
    padding: 0 40px;
    height: auto;
  }
  #present .wrapp .right_part {
    margin-top: 70px;
  }
  #present .wrapp .right_part .spec {
    font-size: 38px;
  }
  #ideal .body .right .block{
    right: -30px;
  }
  #zakaz .icon_line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 10px;
  }
  #zakaz .icon_line .block {
    width: auto;
    padding: 0 30px;
    margin-bottom: 30px;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  .call_wrap .body {
    background-position-x: 120%;
  }
  .call_wrap .girl {
    right: 10px;
  }
  #opl_dos .block .left_part {
    padding-right: 10px;
  }
  #zamer .block_title {
    margin-bottom: 30px;
  }
  #zamer .body_zamer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #zamer .body_zamer .left_part {
    width: 100%;
    margin-bottom: 30px;
  }
  #zamer .body_zamer .left_part .body .text_ins {
    margin-bottom: 15px;
  }
  #zamer .body_zamer .left_part .body .arr {
    bottom: 0px;
  }
  #zamer .body_zamer .right_part {
    width: 100%;
    height: 500px;
  }
  footer .footer_body .col_2 {
    padding-left: 30px;
  }
  footer .footer_body .col_3 {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  #stol_styl .owl-styl .item {
    height: 340px;
  }
  .block_title {
    font-size: 32px;
  }
  .header .down_line {
    display: none;
  }
  .header .down_line_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 50px;
    background-color: #298037;
  }
  .header .down_line_mob .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .down_line_mob .container .phone_link {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: bold;
  }
  .header .down_line_mob .container .icon {
    width: 35px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 999999;
  }
  .header .down_line_mob .container .icon span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .header .down_line_mob .container .icon span .top {
    top: 5px;
  }
  .header .down_line_mob .container .icon span .bottom {
    bottom: 5px;
  }
  .header .down_line_mob .container .icon.active {
    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;
  }
  .header .down_line_mob .container .icon.active .center {
    opacity: 0;
  }
  .header .down_line_mob .container .icon.active .top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
  }
  .header .down_line_mob .container .icon.active .bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
  }
  .banner .bg {
    right: 0;
  }
  .banner_body .right {
    right: -240px;
  }
  .banner_body .left .wrapp {
    width: calc(100% - 397px);
  }
  .banner_body .left .spec{
    width: 100%;
    margin-bottom: 20px;
  }
  .banner_body .left .spec .circus{
    flex-shrink: 0;
  }
  .banner_body .left .spec .text{
    line-height: 1;
  }
  .banner_body {
    overflow: visible;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 40px;
    height: auto;
  }
  .banner_body .left .spec .circus{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
  }
  .banner_body .left .spec .text{
    font-size: 24px ;
  }
  .banner_body .left h1 {
    font-size: 40px;
  }
  .banner_body .left .wrapp {
    width: 100%;
  }
  .banner_body .left .banner_body_ny {
    right: 50px;
    bottom: 20px;
  }
  .banner_body .right {
    position: relative;
    width: 100%;
    right: 0;
  }
  .banner_body .right img {
    width: 100%;
  }
  .mob_menu {
    width: 600px;
    display: none;
    right: -600px;
    -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    z-index: 9999;
    border-radius: 10px;
    padding: 40px;
    background-color: #ffffff;
    overflow-y: scroll;
  }
  .mob_menu_body {
    width: 600px;
    height: auto;
  }
  .mob_menu_body .header_btn_line {
    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;
  }
  .mob_menu_body .header_btn_line .header_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mob_menu_body .header_btn_line .header_btn .text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #252b26;
    margin-left: 20px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .mob_menu_body .header_btn_line .header_btn .icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    background-size: 50%;
  }
  .mob_menu_body .header_btn_line .header_btn_1 .icon {
    background-image: url("../img/lin.svg");
  }
  .mob_menu_body .header_btn_line .header_btn_2 {
    margin-top: 20px;
  }
  .mob_menu_body .header_btn_line .header_btn_2 .icon {
    background-image: url("../img/calc.svg");
  }
  .mob_menu_body .header_btn_line .header_btn:hover .text {
    color: #298037;
  }
  .mob_menu_body .header_btn_line .header_btn:hover .icon {
    -webkit-box-shadow: -4px -4px 10px rgba(41, 128, 55, 0.1), 4px 4px 10px rgba(41, 128, 55, 0.1);
            box-shadow: -4px -4px 10px rgba(41, 128, 55, 0.1), 4px 4px 10px rgba(41, 128, 55, 0.1);
    background-size: 45%;
  }
  .mob_menu_body .header_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mob_menu_body .header_contact .soc {
    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;
  }
  .mob_menu_body .header_contact .soc .soc_link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    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;
  }
  .mob_menu_body .header_contact .soc .soc_link:before {
    content: "";
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 1;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .mob_menu_body .header_contact .soc .soc_link a {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
  }
  .mob_menu_body .header_contact .soc .soc_link_viber {
    background: linear-gradient(208.07deg, #be61c9 11.96%, #9e47a8 85.87%), #ac5eb5;
  }
  .mob_menu_body .header_contact .soc .soc_link_viber:before {
    background-image: url("../img/viber_icon.svg");
  }
  .mob_menu_body .header_contact .soc .soc_link_wa {
    margin-left: 11px;
    background: linear-gradient(208.07deg, #58c763 11.96%, #4ba354 85.87%), #5eb567;
  }
  .mob_menu_body .header_contact .soc .soc_link_wa:before {
    background-image: url("../img/whatsapp_icon.svg");
  }
  .mob_menu_body .header_contact .soc .soc_link:hover:before {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  .mob_menu_body .header_contact .phone {
    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;
    margin-left: 15px;
  }
  .mob_menu_body .header_contact .phone .phone_link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: right;
    color: #252b26;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .mob_menu_body .header_contact .phone .phone_link:hover {
    color: #298037;
  }
  .mob_menu_body .header_contact .phone .text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px;
    color: #949494;
    text-align: right;
  }
  .mob_menu_body .header_contact .phone .modal_open {
    font-family: 'Noto Sans', sans-serif;
    color: #298037;
    text-align: right;
    font-size: 12px;
    position: relative;
  }
  .mob_menu_body .header_contact .phone .modal_open:after {
    content: "";
    width: 0px;
    height: 1px;
    right: 0;
    background-color: #298037;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    position: absolute;
    display: block;
  }
  .mob_menu_body .header_contact .phone .modal_open:hover:after {
    width: 104px;
  }
  .mob_menu_body .menu_list a {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    color: #200e32;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
  }
  .mob_menu_body .menu_list a:hover {
    color: #298037;
  }
  .mob_menu_body .soc_link {
    margin-top: 25px;
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mob_menu_body .soc_link .block {
    margin: 0 10px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #84b734;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .mob_menu_body .soc_link .block_vk {
    background-image: url("../img/vk.svg");
  }
  .mob_menu_body .soc_link .block_ins {
    background-image: url("../img/instagram.svg");
  }
  .mob_menu_body .soc_link .block_odn {
    background-image: url("../img/odnoklassniki.svg");
  }
  .mob_menu_body .soc_link .block_yt {
    background-image: url("../img/youtube.svg");
  }
  .mob_menu_body .soc_link .block:hover {
    background-color: #298037;
  }
  .mob_menu_body #menu_close span {
    width: 30px;
    height: 30px;
    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;
    position: absolute;
    right: 40px;
  }
  .mob_menu_body #menu_close span:before,
  .mob_menu_body #menu_close span:after {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background-color: #298037;
  }
  .mob_menu_body #menu_close span:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .mob_menu_body #menu_close span:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .mob_menu.active {
    display: block;
    right: 0;
  }
  .models #model_info .model_wrapp .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .models #model_info .model_wrapp .top .right_part {
    width: 100%;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .models #model_info .model_wrapp .top .right_part .title {
    font-size: 31px;
    margin-bottom: 10px;
  }
  .models #model_info .model_wrapp .top .right_part .wr {
    width: 50%;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob {
    width: 380px;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 20px;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp {
    border-radius: 10px;
    background-color: #ffffff;
    -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .head {
    border-radius: 10px;
    background-color: #84b734;
    padding: 15px 22px 15px 27px;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .head p {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .head .phone span {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .head .phone span:before {
    content: "";
    width: 28px;
    height: 28px;
    background-image: url("../img/phone_icon.svg");
    margin-right: 10px;
    background-size: 100%;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .head .phone:hover span {
    color: #200e32;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .head .phone:hover span:before {
    background-image: url("../img/icn_phone_blue.svg");
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .body {
    margin-top: 37px;
    padding-left: 25px;
    padding-bottom: 15px;
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .body .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .body .block .icon {
    width: 85px;
    height: 75px;
    -webkit-box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 85px;
    border-radius: 10px;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .body .block .text {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: black;
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .body .block_1 .icon {
    background-image: url("../img/line_blue.svg");
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .body .block_2 .icon {
    background-image: url("../img/big_car.svg");
  }
  .models #model_info .model_wrapp .top .right_part .right_mob .wrapp .body .block_3 .icon {
    background-image: url("../img/gear.svg");
  }
  .models #model_info .model_wrapp .top .left_part {
    width: 100%;
    height: 320px;
    margin-bottom: 20px;
  }
  .models #model_info .model_wrapp .down .right {
    display: none;
  }
  .models #model_info .model_wrapp .down .left {
    width: 100%;
  }
  .project .wrapp .owl-project .item {
    margin: 0 5px;
  }
  .project .wrapp .owl-project .item .right_part {
    padding-left: 5px;
  }
  .project .wrapp .owl-project .item .right_part .info {
    width: 50%;
  }
  .project .wrapp .owl-project .item .right_part .right_block {
    width: 50%;
  }
  #calc {
    margin-bottom: 960px;
  }
  #calc .calc_body .step_2 .block {
    display: none;
  }
  #calc .calc_body .step_2 .owl-styl {
    display: block;
  }
  #calc .calc_body .step_2 .owl-styl .block {
    display: block;
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% - 80px);
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav {
    width: 40px;
    height: 40px;
    position: absolute;
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev .next,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav .next,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev .pref,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav .pref {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev .pref,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav .pref {
    background-image: url("../img/arrow_left.svg");
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev .pref:hover,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav .pref:hover,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev .pref:focus,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav .pref:focus {
    outline: none;
    background-image: url("../img/arrow_left_active.svg");
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev .next,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav .next {
    background-image: url("../img/arrow_right.svg");
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev .next:hover,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav .next:hover,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev .next:focus,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav .next:focus {
    outline: none;
    background-image: url("../img/arrow_right_active.svg");
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev:focus,
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nav:focus {
    outline: none;
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-prev {
    left: 0;
  }
  #calc .calc_body .step_2 .owl-styl .owl-nav .owl-nezt {
    right: 0;
  }
  #calc .calc_body .step .block {
    margin-left: auto;
    margin-right: auto;
  }
  #calc .calc_body .step .block_max .left_part .ask_line #calc_weight {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #calc .calc_body .step .block_max .left_part .ask_line #calc_weight label {
    margin-bottom: 20px;
  }
  #calc .calc_body .step .block_max .left_part .ask_line #calc_weight input {
    width: 100%;
  }
  #calc .calc_body .step .block_max .left_part .ask_line #calc_weight .hid {
    top: auto;
    bottom: 6px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result_line {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result .present {
    width: 300px;
    right: 0;
  }
  #calc .calc_body .tabs .tab .text {
    font-size: 14px;
  }
  #present .wrapp {
    padding: 0;
  }
  #present .wrapp .right_part {
    left: 15px;
  }
  #ideal .body{
    flex-direction: column-reverse;
  }
  #ideal .body .right .bg{
    width: 400px;
    height: 480px;
  }
  #ideal .body .right .block{
    right: 0;
    width: 100%;
    box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.1);
  }
  .call {
    margin-bottom: 60px;
  }
  .call_wrap .body {
    padding: 36px 10px 40px 13px;
  }
  .call_wrap .body .line .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 30px;
  }
  .call_wrap .body .line .contact .soc {
    margin-bottom: 10px;
  }
  .call_wrap .body .line .contact .phone {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: 0;
  }
  .call_wrap .body .text {
    width: 520px;
  }
  .call_wrap .girl .text_wr{
    left: 50px;
    top: 100px;
  }
  #dos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #opl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #opl_dos .block .left_part {
    width: 100%;
  }
  #opl_dos .block .icon_blocks {
    width: 100%;
    margin-top: 40px;
  }
  #opl_dos .block .right_part {
    width: 100%;
  }
  #zamer .body_zamer .left_part .body .arr {
    left: calc(50% - 240px);
  }
  #call_zamer .body .block_title {
    padding-right: 240px;
  }
  #map .block_wrapp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: 565px;
  }
  #map .block_wrapp .left_part {
    width: 100%;
    height: 50%;
    margin-top: 20px;
  }
  #map .block_wrapp .right_part {
    width: 100%;
    height: 50%;
  }
  #map .block_wrapp .header {
    width: 100%;
    top: auto;
    bottom: 210px;
  }
  .bez .line .icon_1 {
    margin-left: 10px;
  }
  footer .footer_body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer_body .col {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
  }
  footer .footer_body .col_4 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .footer_body .col_1 .footer_btn_line .footer_btn_2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  #stol_styl .owl-styl .item {
    height: auto;
  }
  .container {
    padding: 0 15px;
  }
  .header .top_line .header_contact .phone {
    display: none;
  }
  .header .down_line_mob .container {
    width: 100%;
  }
  .banner {
    margin-bottom: 40px;
  }
  .banner .bg_ny {
    width: 100%;
    height: 170px;
  }
  .banner .left {
    margin-top: 60px;
  }
  .banner_body {
    padding-top: 0;
  }
  .banner_body .left h1 {
    font-size: 26px;
    padding-right: 0;
  }
  .banner_body .left .banner_body_ny {
    display: none;
  }
  .banner_line .block {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .banner_body .left .spec{
    width: 100%;
    margin-bottom: 20px;
  }
  .banner .bg {
    display: none;
  }
  .banner_body {
    overflow: visible;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
    height: auto;
  }
  .banner_body .left .spec .circus{
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 22px;
  }
  .banner_body .left .spec .text{
    font-size: 24px ;
  }
  .banner_body .left h1 {
    font-size: 40px;
  }
  .banner_body .left .wrapp {
    width: 100%;
  }
  .banner_body .left .banner_body_ny {
    right: 50px;
    bottom: 20px;
  }
  .banner_body .right {
    position: relative;
    width: 100%;
    right: 0;
  }
  .banner_body .right img {
    width: 100%;
  }
  .banner_line {
    margin-top: 40px;
  }
  .banner_line .block {
    padding-left: 0;
  }
  .models .owl-modals {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .models #model_info .model_wrapp .top .left_part .img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    width: 480px;
  }
  .models #model_info .model_wrapp .top .left_part .img:after {
    left: calc(50% - 230px);
  }
  .models #model_info .model_wrapp .top .left_part .label {
    left: calc(50% - 240px);
  }
  .models #model_info .model_wrapp .top .right_part .right_mob {
    display: none;
  }
  .models #model_info .model_wrapp .top .right_part .wr {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .models #model_info .model_wrapp .top .right_part .wr .title {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .models #model_info .model_wrapp .top .right_part .wr .text {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .models #model_info .model_wrapp .top .right_part .wr .prise_block {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .models #model_info .model_wrapp .top .right_part .wr .colors {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .models #model_info .model_wrapp .top .right_part .wr .btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 20px;
  }
  .models #model_info .model_wrapp .down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .models #model_info .model_wrapp .down .left {
    margin-bottom: 30px;
  }
  .models #model_info .model_wrapp .down .left .block_set_wrapp a {
    bottom: -20px;
  }
  .models #model_info .model_wrapp .down .right {
    display: block;
    width: 100%;
    padding-left: 0;
  }
  .project {
    margin-bottom: 50px;
  }
  .project .block_title {
    text-align: center;
  }
  .project .wrapp .owl-project .item .left_part .img_block {
    display: none;
  }
  .project .wrapp .owl-project .item .left_part .photos {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    overflow-y: hidden;
    height: 195px;
  }
  .project .wrapp .owl-project .item .left_part .photos .item {
    min-width: 187px;
    margin: 0 10px;
    height: 140px;
  }
  .project .wrapp .owl-project .item .left_part .photos .item img {
    border-radius: 10px;
  }
  .project .wrapp .owl-project .item .right_part {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 80px;
  }
  .project .wrapp .owl-project .item .right_part .info {
    width: 100%;
    margin-bottom: 30px;
  }
  .project .wrapp .owl-project .item .right_part .right_block {
    width: 100%;
  }
  .project .wrapp .owl-project .owl-nav {
    top: 210px;
    width: 100%;
  }
  .project .wrapp .owl-project .owl-nav:after {
    content: none;
  }
  .project .wrapp .counter {
    top: 210px;
    width: 100%;
  }
  .header_half .left_part .title {
    text-align: center;
  }
  #calc {

  }
  #calc .head .left_part .title {
    text-align: center;
  }
  #calc .calc_body .step_5 {
    padding-top: 0;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp {
    width: 100%;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result .present {
    position: relative;
    margin-top: 20px;
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result .present .text {
    text-align: center;
    margin-top: 10px;
  }
  #calc .calc_body .step .block_stol {
    width: 260px;
  }
  #calc .calc_body .tabs .tab {
    display: none;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  #calc .calc_body .tabs .tab.active {
    display: block;
  }
  #present {
    margin-bottom: 40px;
  }
  #present .wrapp {
    -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;
  }
  #present .wrapp .left_part {
    margin-bottom: 20px;
  }
  #present .wrapp .left_part .dis {
    text-align: center;
    line-height: 1;
    font-size: 80px;
  }
  #present .wrapp .left_part .text {
    text-align: center;
  }
  #present .wrapp .right_part {
    left: 0;
  }
  #present .wrapp .right_part .img {
    width: 198px;
    height: 172.71px;
    margin-left: auto;
    margin-right: auto;
  }
  #present .wrapp .right_part .img_2 {
    top: -70px;
    left: 10px;
  }
  #present .wrapp .right_part .spec {
    text-align: center;
  }
  #present .wrapp .right_part .text {
    text-align: center;
  }
  #zakaz .icon_line {
    margin-bottom: 0;
  }
  #zakaz .icon_line .block .title {
    text-align: center;
  }
  .call {
    padding-top: 0px;
    margin-bottom: 40px;
  }
  .call .body {
    background-image: url("../img/block_bg_tab.svg");
    background-position: top center;
    background-size: contain;
    padding-top: 50px;
  }
  .call .girl {
    display: none;
  }
  #opl_dos {
    margin-bottom: 30px;
  }
  #opl_dos .block .block_title {
    margin-bottom: 20px;
  }
  #opl_dos .block .left_part .link {
    margin-top: 10px;
  }
  #opl_dos .block .icon_blocks {
    margin-top: 20px;
    padding-left: 0;
  }
  #opl_dos .block .icon_blocks .block {
    margin-bottom: 20px;
  }
  #opl_dos .block_dos {
    margin-bottom: 20px;
  }
  #zamer {
    margin-bottom: 40px;
  }
  #zamer .block_title {
    margin-bottom: 20px;
  }
  #zamer .body_zamer .left_part {
    padding-right: 0;
  }
  #zamer .body_zamer .left_part .header {
    margin-bottom: 10px;
  }
  #map .block_title {
    margin-bottom: 20px;
  }
  .mob_menu {
    width: 100%;
    top: 0;
  }
  .mob_menu_body {
    width: 100%;
    height: 100%;
  }
  .bez .line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .bez .line .text {
    margin-bottom: 10px;
    font-size: 18px;
  }
  footer {
    background-image: url("../img/block_bg.svg");
  }
  footer .footer_body {
    padding-bottom: 0;
  }
  footer .footer_body .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 20px;
  }
  footer .footer_body .col_1 .soc_link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer_body .col_1 .soc_link .block {
    margin: 0 10px;
  }
  footer .footer_body .col_2,
  footer .footer_body .col_3 {
    padding-left: 0;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
  footer .footer_body:after {
    width: calc(100% - 30px);
  }
  .modal_body {
    width: calc(100% - 30px);
  }
  #call_zamer .body .block_title {
    padding-left: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .header .top_line .logo .img p {
    display: none;
  }
  .banner .bg_ny {
    height: 140px;
    width: 300px;
  }
  .banner_body {
    padding-top: 0;
  }
  .banner_body .left h1 {
    font-size: 26px;
    padding-right: 0;
  }
  .banner_body .left .banner_body_ny {
    display: none;
  }
  .banner_line .block {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .banner_body .left .spec{
    width: 100%;
    margin-bottom: 20px;
  }
  .btn {
    width: 290px;
  }
  .models {
    margin-bottom: 60px;
  }
  .models .block_title {
    text-align: center;
  }
  .models .owl-modals {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .models .owl-modals .item {
    width: 177px;
    height: 133.45px;
  }
  .models #model_info .model_wrapp .top .left_part {
    height: auto;
  }
  .models #model_info .model_wrapp .top .left_part .img {
    width: 100%;
    height: auto;
  }
  .models #model_info .model_wrapp .top .left_part .img img {
    width: 100%;
    height: auto;
    max-height: 354px;
    position: relative;
  }
  .models #model_info .model_wrapp .top .left_part .img:after {
    background-image: url("../img/model_img_mob.svg");
    top: auto;
    bottom: 5px;
    left: 15px;
    width: 90px;
    height: 40px;
  }
  .models #model_info .model_wrapp .top .left_part .img:before {
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .models #model_info .model_wrapp .top .left_part .label {
    left: -15px;
  }
  .models #model_info .model_wrapp .top .left_part .label_top {
    top: 5px;
  }
  .models #model_info .model_wrapp .top .left_part .label_down {
    top: 45px;
  }
  .models #model_info .model_wrapp .top .left_part .label_2 {
    top: 85px;
  }
  .models #model_info .model_wrapp .top .right_part .title {
    font-size: 24px;
  }
  .models #model_info .model_wrapp .top .right_part .prise_block .right .prise {
    font-size: 40px;
  }
  .models #model_info .model_wrapp .down {
    margin-top: 30px;
  }
  .models #model_info .model_wrapp .down .left .block {
    margin-bottom: 20px;
  }
  .models #model_info .model_wrapp .down .left .block .title {
    margin-bottom: 5px;
  }
  .models #model_info .model_wrapp .down .left .block_set .text span:last-child {
    text-align: right;
  }
  .models #model_info .model_wrapp .down .left .block_set_wrapp {
    height: 230px;
  }
  .models #model_info .model_wrapp .down .left .block_set_wrapp a {
    bottom: 10px;
  }
  .models #model_info .model_wrapp .down .left .block_set_wrapp a span {
    font-size: 12px;
  }
  .models #model_info .model_wrapp .down .left .block_set_wrapp a span.icon {
    min-width: 17px;
  }
  .models #model_info .model_wrapp .down .right .wrapp .head {
    padding: 15px;
  }
  .models #model_info .model_wrapp .down .right .wrapp .head p {
    font-size: 12px;
  }
  .models #model_info .model_wrapp .down .right .wrapp .head .phone span {
    font-size: 26px;
  }
  .models #model_info .model_wrapp .down .right .wrapp .head .phone span:before {
    width: 26px;
    height: 26px;
  }
  .models #model_info .model_wrapp .down .right .wrapp .block .text {
    font-size: 12px;
  }
  .project {
    margin-bottom: 40px;
  }
  .project .wrapp .owl-project {
    margin-top: 10px;
  }
  .project .wrapp .owl-project .item {
    margin: 0 10px;
  }
  .project .wrapp .owl-project .item .right_part {
    padding-left: 0;
  }
  .project .wrapp .owl-project .item .right_part .info {
    width: calc(100% - 10px);
    margin-bottom: 30px;
    margin-left: 5px;
  }
  .project .wrapp .owl-project .item .right_part .prise_block .right .prise {
    font-size: 40px;
  }
  .project .wrapp .owl-project .item .right_part .right_block {
    margin-left: 0;
  }
  .project .wrapp .owl-project .item .right_part .btn {
    width: 270px;
  }
  .project .wrapp .owl-project .item .left_part .photos .item.active {
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
  }
  .header_half {
    margin-bottom: 20px;
  }
  .header_half .left_part {
    padding-right: 0;
  }
  .header_half .left_part .title {
    font-size: 28px;
  }
  .header_half .right_part {
    padding: 10px;
  }
  .header_half .right_part .icon {
    display: none;
  }
  .header_half .right_part .text {
    font-size: 16px;
  }
  #calc {
    margin-bottom: 60px;
    /*.head{
      margin-bottom: 20px;
      .left_part{
        padding-right: 0;
        .title{
          font-size: 28px;
        }
      }
      .right_part{
        padding: 10px;
        .icon{
          display: none;
        }
        .text{
          font-size: 16px;
        }
      }
    }*/
  }
  #calc .calc_body .step {
    padding-top: 20px;
    top: 0px;
    position: relative;
    height: auto;
  }
  #calc .calc_body .step_num {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #calc .calc_body .step .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  #calc .calc_body .step .block {
    width: 260px;
  }
  #calc .calc_body .step .block_max {
    width: calc(100% - 30px);
  }
  #calc .calc_body .step .block_max .left_part {
    width: 100%;
  }
  #calc .calc_body .step .block_max .right_part {
    display: none;
  }
  #calc .calc_body .step .btn_next {
    margin-top: 20px;
  }
  #calc .calc_body .step .btn_line {
    margin-top: 20px;
    -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;
  }
  #calc .calc_body .step .btn_line .btn_next {
    margin-left: 0;
    margin-top: 10px;
  }
  #calc .calc_body .step .owl-stol {
    display: block;
  }
  #calc .calc_body .step_4 .block {
    display: none;
  }
  #calc .calc_body .step_4 .owl-stol .block {
    display: block;
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 80px);
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev {
    width: 40px;
    height: 40px;
    position: absolute;
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav .pref,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev .pref,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav .next,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev .next {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav .pref,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev .pref {
    background-image: url("../img/arrow_left.svg");
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav .pref:hover,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev .pref:hover,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav .pref:focus,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev .pref:focus {
    outline: none;
    background-image: url("../img/arrow_left_active.svg");
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav .next,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev .next {
    background-image: url("../img/arrow_right.svg");
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav .next:hover,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev .next:hover,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav .next:focus,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev .next:focus {
    outline: none;
    background-image: url("../img/arrow_right_active.svg");
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-nav:focus,
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev:focus {
    outline: none;
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-prev {
    left: 0;
  }
  #calc .calc_body .step_4 .owl-stol .owl-nav .owl-next {
    right: 0;
  }
  #calc .calc_body .step_5 {
    padding-bottom: 0;
  }
  #calc .calc_body .step_5 .wrapp .left_part .title {
    font-size: 26px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result_line {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result_line .result_block {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    margin-bottom: 5px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp {
    padding-left: 10px;
    padding-top: 16px;
    padding-right: 10px;
    padding-bottom: 15px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result_prise_wrapp .line .new_prise {
    font-size: 28px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result .present {
    width: calc(100% - 80px);
    margin-left: 0;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result .present .text {
    font-size: 20px;
  }
  #calc .calc_body .step_5 .wrapp .left_part .result .present .text .grad {
    font-size: 28px;
  }
  #calc .calc_body .step_5 .wrapp .right_part {
    margin-top: 20px;
    top: 0;
  }
  #calc .calc_body .step_5 .wrapp .right_part .title {
    font-size: 28px;
  }
  #calc .calc_body .tabs {
    display: none;
  }
  #ideal .body .right .bg{
    width: 290px;
    height: 410px;
  }
  #present {
    margin-bottom: 60px;
  }
  #present .wrapp .left_part .dis,
  #present .wrapp .right_part .dis {
    font-size: 70px;
  }
  #present .wrapp .left_part .text,
  #present .wrapp .right_part .text {
    font-size: 25px;
  }
  #present .wrapp .left_part {
    margin-bottom: 0;
  }
  #present .wrapp .left_part .img {
    width: 300px;
    height: 200px;
  }
  #present .wrapp .right_part .img {
    width: 158px;
    height: 142.71px;
  }
  #present .wrapp .right_part .spec {
    font-size: 26px;
  }
  #present .wrapp .left_part .text_spec{
    font-size: 10px;
  }
  #zakaz {
    margin-bottom: 70px;
  }
  #zakaz .block_title {
    margin-bottom: 20px;
  }
  #zakaz .icon_line .block {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-bottom: 55px;
    padding: 0 10px;
  }
  #zakaz .icon_line .block_4 {
    margin-bottom: 20px;
  }
  #zakaz .btn_line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #zakaz .btn_line .modal_open {
    margin-top: 10px;
    margin-left: 0;
  }
  .call_wrap .body .text {
    width: 100%;
  }
  .call_wrap .body .line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .call_wrap .body .line .contact {
    margin-left: 0;
    margin-top: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .call_wrap .body .line .contact .phone {
    margin-left: 10px;
  }
  #opl_dos .block .icon_blocks .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 40px;
    margin-top: 20px;
  }
  #opl_dos .block .icon_blocks .block .body {
    margin-left: 0;
    margin-top: 10px;
  }
  #opl_dos .block .right_part {
    padding-left: 0;
  }
  #zamer .body_zamer .left_part .header {
    padding: 10px;
  }
  #zamer .body_zamer .left_part .header .icon {
    display: none;
  }
  #zamer .body_zamer .left_part .body .arr {
    display: none;
  }
  #zamer .body_zamer .right_part {
    height: 280px;
    padding-left: 0;
  }
  #zamer .body_zamer .right_part .img {
    border-radius: 70px 10px;
  }
  #map {
    margin-bottom: 40px;
  }
  #map .block_title {
    padding: 0;
  }
  #map .block_wrapp {
    height: 860px;
  }
  #map .block_wrapp .header {
    padding-left: 13px;
    padding-right: 10px;
    bottom: 358px;
  }
  #map .block_wrapp .header .text {
    font-size: 14px;
  }
  #map .block_wrapp .left_part .adres_block .open_block .icon {
    min-width: 42px;
  }
  #stol_styl .block_title {
    margin-bottom: 20px;
  }
  .bez .line .text {
    font-size: 16px;
  }
  footer .footer_body .col_4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block_title {
    font-size: 24px !important;
  }
  .form_input {
    width: 290px;
  }
  .call {
    margin-bottom: 70px;
  }
  .call .body {
    background-image: url("../img/block_bg.svg");
  }
  .modal_ths .body_ths {
    height: auto;
    padding: 15px;
  }
  .modal_ths .body_ths .title {
    width: 100%;
    font-size: 28px;
  }
  .modal_ths .body_ths .text {
    width: 100%;
    font-size: 18px;
  }
  .modal_ths .body_ths .bg {
    display: none;
  }
  .modal_ths .body_ths .modal_close_btn {
    left: -15px;
  }
}



