/* @import "bootstrap.min.css";*/
@import url(css/bootstrap.min.css);
@font-face {
    font-family:'Museo Sans Cyrl';
    src:url(../fonts/MuseoSansCyrl_0.otf) format('opentype');
    font-weight:300;
}
@font-face {
    font-family:'Museo Sans Cyrl';
    src:url(../fonts/MuseoSansCyrl_1.otf) format('opentype');
    font-weight:500;
}
@font-face {
    font-family:'Museo Sans Cyrl';
    src:url(../fonts/MuseoSansCyrl_2.otf) format('opentype');
    font-weight:700;
}
@font-face {
    font-family:'Museo Sans Cyrl';
    src:url(../fonts/MuseoSansCyrl_3.otf) format('opentype');
    font-weight:900;
}
@font-face {
    font-family: "Futura-Normal";
    src:url(../fonts/futura-normal.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "FuturaLight Light";
    src:url(../fonts/futuralight-light.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}
body {
    padding: 0 !important;
    /*
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #000;
    */
    /*
    font-family: "Intro", sans-serif;
    color: #3e3e3e;
    */
    font-size: 16px;
    /*
    font-family:'FuturaLight Light', sans-serif;
    */
    font-family:'Museo Sans Cyrl', sans-serif;
    color: #2f2f2f;
}
.row {
    padding: 0;
    margin: 0;
}
.row div {
    padding: 0;
    margin: 0;
}
h1 {
    font-size: 30px;;
    font-weight: bold;
}
h2  {
    font-size: 30px;;
    font-weight: bold;
    line-height: 1.2;
}
h3 {
    font-size: 16px;
    font-weight: bold;
}
h4 {
    font-size: 14px;
    font-weight: bold;
}
h5 {
    font-size: 14px;
    font-weight: bold;
}
@media screen and (max-width: 480px) {
    h1 {
        margin-top: 0;
        /*
        font-size: 20px;
        */
        font-size: 19px;
    }
    h2 {
        margin-top: 0;
        font-size: 20px;
    }
}
@media screen and (min-width: 481px) {
    h1 {
        margin-top: 0;
        font-size: 22px;
    }
    h2 {
        margin-top: 0;
        font-size: 22px;
    }
}
@media screen and (min-width: 768px) {
    h1 {
        margin-top: 10px;
        font-size: 24px;
    }
    h2 {
        margin-top: 10px;
        font-size: 24px;
    }
}
@media screen and (min-width: 992px) {
    h1 {
        margin-top: 20px;
        font-size: 28px;
    }
    h2 {
        margin-top: 20px;
        font-size: 28px;
    }
}
@media screen and (min-width: 1200px) {
    h1 {
        margin-top: 20px;
        /*
        font-size: 30px;
        */
        font-size: 32px;
    }
    h2 {
        margin-top: 20px;
        /*
        font-size: 30px;
        */
        font-size: 32px;
    }
}
p {
    margin: 0 0 16px;
}
.form-control {
    font-size: 12px;
    padding: 6px 10px;
    font-family: 'Open Sans', sans-serif;
}
a {
    color: #216cc6;
    cursor: pointer;
}
a:hover {
    color: #216cc6;
}
a:focus {
    color: #216cc6;
}
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 374px) {
  .hidden-xs-374 {
    display: none !important;
  }
}
@media (max-width: 385px) {
  .hidden-xs-385 {
    display: none !important;
  }
}
.glyphicon {
    color: #C0C0C0;
}
.fa {
    color: #C0C0C0;
}
.antispam {
    display: none;
}
.modal_overflow-x-y {
    overflow-x: hidden;
    overflow-y: auto;
}
/*
Ubirayem brauzernuyu obvodku u ssylok, .btn, inputov - pri :focus
*/
a:active, a:focus {
    outline: none;
}
input, textarea {outline:none;}
input:active, textarea:active {outline:none;}
:focus {outline:none;}
textarea {resize:none;}
textarea {resize:vertical;}
textarea {resize:horizontal;}
button:active, button:focus {
    outline: none !important;
}
button::-moz-focus-inner {
    border: 0 !important;
}
.btn:active, .btn:focus {
    outline: none !important;
}
.btn::-moz-focus-inner {
    border: 0 !important;
}
.btn.active, .btn.focus {
    outline: none !important;
}
/*
Ubirayem brauzernuyu obvodku u ssylok, .btn, inputov - pri :focus
end
*/
/*
pulse
*/
.pulse{
    animation-name: pulse;
    -webkit-animation-name: pulse;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
}
/*
pulse
end
*/
/*
floating
*/
.floating{
    animation-name: floating;
    -webkit-animation-name: floating;

    animation-duration: 2.2s;
    -webkit-animation-duration: 2.2s;

    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
@keyframes floating {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(11%);
    }
    100% {
        transform: translateY(0%);
    }
}
@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }
    50% {
        -webkit-transform: translateY(11%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}
/*
floating
end
*/
/*
animated 
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}
/*
animated 
end
*/
/*
bounce
*/
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
/*
bounce
end
*/

/*
btn
*/
.btn {
    font-family: 'Open Sans', sans-serif;
}
/*
btn
end
*/

/*
.btn_orange
*/
.btn_orange {
    color: #fff;
    background: #ffa919;
    border-color: #ffa919;
    -webkit-transition: background-color 100ms ease-in-out;
    -khtml-transition: background-color 100ms ease-in-out;
    -moz-transition: background-color 100ms ease-in-out;
    -ms-transition: background-color 100ms ease-in-out;
    -o-transition: background-color 100ms ease-in-out;
    transition: background-color 100ms ease-in-out;
}
.btn_orange:hover,
.btn_orange:focus,
.btn_orange.focus,
.btn_orange:active,
.btn_orange.active,
.open > .dropdown-toggle.btn_orange {
color: #fff;
background: #f19907;
border-color: #f19907;
}
.btn_orange:active,
.btn_orange.active,
.open > .dropdown-toggle.btn_orange {
background-image: none;
}
.btn_orange.disabled,
.btn_orange[disabled],
fieldset[disabled] .btn_orange,
.btn_orange.disabled:hover,
.btn_orange[disabled]:hover,
fieldset[disabled] .btn_orange:hover,
.btn_orange.disabled:focus,
.btn_orange[disabled]:focus,
fieldset[disabled] .btn_orange:focus,
.btn_orange.disabled.focus,
.btn_orange[disabled].focus,
fieldset[disabled] .btn_orange.focus,
.btn_orange.disabled:active,
.btn_orange[disabled]:active,
fieldset[disabled] .btn_orange:active,
.btn_orange.disabled.active,
.btn_orange[disabled].active,
fieldset[disabled] .btn_orange.active {
background-color: #ffa919;
border-color: #ffa919;
}
.btn_orange .badge {
color: #ffa919;
background-color: #fff;
}
.btn_orange .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.btn_orange .fa {
    color: white;
}
/*
.btn_orange
end
*/

/*
.btn_blue_and_white_text
*/
.btn_blue_and_white_text {
    color: #fff;
    background: #406cdc;
    border-color: #406cdc;
    -webkit-transition: background-color 100ms ease-in-out;
    -khtml-transition: background-color 100ms ease-in-out;
    -moz-transition: background-color 100ms ease-in-out;
    -ms-transition: background-color 100ms ease-in-out;
    -o-transition: background-color 100ms ease-in-out;
    transition: background-color 100ms ease-in-out;
}
.btn_blue_and_white_text:hover,
.btn_blue_and_white_text:focus,
.btn_blue_and_white_text.focus,
.btn_blue_and_white_text:active,
.btn_blue_and_white_text.active,
.open > .dropdown-toggle.btn_blue_and_white_text {
color: #fff;
background: #4c76e3;
border-color: #4c76e3;
}
.btn_blue_and_white_text:active,
.btn_blue_and_white_text.active,
.open > .dropdown-toggle.btn_blue_and_white_text {
background-image: none;
}
.btn_blue_and_white_text.disabled,
.btn_blue_and_white_text[disabled],
fieldset[disabled] .btn_blue_and_white_text,
.btn_blue_and_white_text.disabled:hover,
.btn_blue_and_white_text[disabled]:hover,
fieldset[disabled] .btn_blue_and_white_text:hover,
.btn_blue_and_white_text.disabled:focus,
.btn_blue_and_white_text[disabled]:focus,
fieldset[disabled] .btn_blue_and_white_text:focus,
.btn_blue_and_white_text.disabled.focus,
.btn_blue_and_white_text[disabled].focus,
fieldset[disabled] .btn_blue_and_white_text.focus,
.btn_blue_and_white_text.disabled:active,
.btn_blue_and_white_text[disabled]:active,
fieldset[disabled] .btn_blue_and_white_text:active,
.btn_blue_and_white_text.disabled.active,
.btn_blue_and_white_text[disabled].active,
fieldset[disabled] .btn_blue_and_white_text.active {
background-color: #406cdc;
border-color: #406cdc;
}
.btn_blue_and_white_text .badge {
color: #406cdc;
background-color: #fff;
}
.btn_blue_and_white_text .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.btn_blue_and_white_text .fa {
    color: white;
}
/*
.btn_blue_and_white_text
end
*/

/*
.btn-default_white
*/
.btn-default_white {
    background-color: #ffffff;
    color: #000;
    /*
    color: #9d9ea1;
    */
    border-color: #ddd;
}
.btn-default_white:hover,
.btn-default_white:focus,
.btn-default_white.focus,
.btn-default_white:active,
.btn-default_white.active,
.open > .dropdown-toggle.btn-default_white {
    color: #000;
    /*
    color: #9d9ea1;
    */
    border-color: #ddd;
    background: #ddd;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-default_white:hover {
    /*
    background: #eee;
    */
    background-color: #ecf1f7;
}
.btn-default_white:focus,
.btn-default_white.focus,
.btn-default_white:active,
.btn-default_white.active,
.btn-default_white:focus:hover,
.btn-default_white.focus:hover,
.btn-default_white:active:hover,
.btn-default_white.active:hover,
.open > .dropdown-toggle.btn-default_white {
    /*
    background: #ddd;
    */
    background: #e4ebf3;
}
.btn-default_white:active,
.btn-default_white.active,
.open > .dropdown-toggle.btn-default_white {
    background-image: none;
}
.btn-default_white.disabled,
.btn-default_white[disabled],
fieldset[disabled] .btn-default_white,
.btn-default_white.disabled:hover,
.btn-default_white[disabled]:hover,
fieldset[disabled] .btn-default_white:hover,
.btn-default_white.disabled:focus,
.btn-default_white[disabled]:focus,
fieldset[disabled] .btn-default_white:focus,
.btn-default_white.disabled.focus,
.btn-default_white[disabled].focus,
fieldset[disabled] .btn-default_white.focus,
.btn-default_white.disabled:active,
.btn-default_white[disabled]:active,
fieldset[disabled] .btn-default_white:active,
.btn-default_white.disabled.active,
.btn-default_white[disabled].active,
fieldset[disabled] .btn-default_white.active {
    color: #000;
    /*
    color: #9d9ea1;
    */
    border-color: #ddd;
}
/*
.btn-default_white
end
*/

/*
.b_link
*/
.b_link {
    /*
    font-family: 'Open Sans', sans-serif;
    */
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
      touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #000000;
    background: #ffffff;
    border-color: #eeeeee;
}
.b_link:focus,
.b_link:active:focus,
.b_link.active:focus,
.b_link.focus,
.b_link:active.focus,
.b_link.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}
.b_link:hover,
.b_link:focus,
.b_link.focus {
    color: #000000;
    text-decoration: none;
}
.b_link:active,
.b_link.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.b_link.disabled,
.b_link[disabled],
fieldset[disabled] .b_link {
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
          box-shadow: none;
    opacity: .65;
}
/*
.b_link
end
*/

/*
.b_link_xs , .b_link_sm , .b_link_lg
*/
.b_link_xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.b_link_sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}
.b_link_lg {
    padding: 13px 35px;
    /*
    font-size: 16px;
    font-weight: bold;
    */
    font-size: 20px;
    font-weight: normal;
    line-height: 1.3333333;
    border-radius: 6px;
}
/*
.b_link_xs , .b_link_sm , .b_link_lg
end
*/

/*
b_link_with_blue_text
*/
.b_link_with_blue_text {
    color: #216cc6;
    border-color: #e8e8e8;
}
.b_link_with_blue_text:hover,
.b_link_with_blue_text:focus,
.b_link_with_blue_text.focus {
    color: #216cc6;
    text-decoration: none;
}
/*
b_link_with_blue_text
end
*/

/*
.b_link_orange
*/
.b_link_orange {
    color: #ffffff;
    /*
    background: #ff7830;
    border-color: #ff7830;
    */
    background: #ffa919;
    border-color: #ffa919;
    /*
    -webkit-transition: background-color 100ms ease-in-out;
    -khtml-transition: background-color 100ms ease-in-out;
    -moz-transition: background-color 100ms ease-in-out;
    -ms-transition: background-color 100ms ease-in-out;
    -o-transition: background-color 100ms ease-in-out;
    transition: background-color 100ms ease-in-out;
    */
    /*
    -webkit-box-shadow: 0 3px 5px rgba(36, 30, 10, 0.6);
    -moz-box-shadow: 0 3px 5px rgba(36, 30, 10, 0.6);
    box-shadow: 0 3px 5px rgba(36, 30, 10, 0.6);
    */
}
.b_link_orange:hover,
.b_link_orange:focus,
.b_link_orange.focus,
.b_link_orange:active,
.b_link_orange.active,
.open > .dropdown-toggle.b_link_orange {
    color: #ffffff;
    /*
    background: #f77029;
    border-color: #f77029;
    */
    /*
    background: #f99c00;
    border-color: #f99c00;
    */
    background: #f19907;
    border-color: #f19907;
}
.b_link_orange:active,
.b_link_orange.active,
.open > .dropdown-toggle.b_link_orange {
    background-image: none;
}
.b_link_orange .badge {
    color: #447FB0;
    background: #ffffff;
}
.b_link_orange .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_orange .fa {
    color: #ffffff;
}
/*
.b_link_orange
end
*/

/*
.b_link_light_orange
*/
.b_link_light_orange {
    color: #ffffff;
    background: #f8b200;
    border-color: #f8b200;
}
.b_link_light_orange:hover,
.b_link_light_orange:focus,
.b_link_light_orange.focus,
.b_link_light_orange:active,
.b_link_light_orange.active,
.open > .dropdown-toggle.b_link_orange {
    color: #ffffff;
    background: #f1ae06;
    border-color: #f1ae06;
}
.b_link_light_orange:active,
.b_link_light_orange.active,
.open > .dropdown-toggle.b_link_orange {
    background-image: none;
}
.b_link_light_orange .badge {
    color: #447FB0;
    background: #ffffff;
}
.b_link_light_orange .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_light_orange .fa {
    color: #ffffff;
}
/*
.b_link_light_orange
end
*/

/*
.b_link_orange_and_black_text
*/
.b_link_orange_and_black_text {
    color: #1e1e1e;
    background: #ffac0b;
    border-color: #ffac0b;
}
.b_link_orange_and_black_text:hover,
.b_link_orange_and_black_text:focus,
.b_link_orange_and_black_text.focus,
.b_link_orange_and_black_text:active,
.b_link_orange_and_black_text.active,
.open > .dropdown-toggle.b_link_orange {
    color: #1e1e1e;
    background: #f7a70b;
    border-color: #f7a70b;
}
.b_link_orange_and_black_text:active,
.b_link_orange_and_black_text.active,
.open > .dropdown-toggle.b_link_orange {
    background-image: none;
}
.b_link_orange_and_black_text .badge {
    color: #447FB0;
    background: #1e1e1e;
}
.b_link_orange_and_black_text .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_orange_and_black_text .fa {
    color: #1e1e1e;
}
/*
.b_link_orange_and_black_text
end
*/

/*
.b_link_white_and_blue_text
*/
.b_link_white_and_blue_text {
    color: #406cdc;
    background: #ffffff;
    border-color: #ffffff;
}
.b_link_white_and_blue_text:hover,
.b_link_white_and_blue_text:focus,
.b_link_white_and_blue_text.focus,
.b_link_white_and_blue_text:active,
.b_link_white_and_blue_text.active,
.open > .dropdown-toggle.b_link_white_and_blue_text {
    /*
    color: #406cdc;
    */
    color: #4b7dfb;
    background: #ffffff;
    border-color: #ffffff;
}
.b_link_white_and_blue_text:active,
.b_link_white_and_blue_text.active,
.open > .dropdown-toggle.b_link_white_and_blue_text {
    background-image: none;
}
.b_link_white_and_blue_text .badge {
    color: #447FB0;
    background: #1e1e1e;
}
.b_link_white_and_blue_text .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_white_and_blue_text .fa {
    color: #1e1e1e;
}
/*
.b_link_white_and_blue_text
end
*/

/*
.b_link_blue_and_white_text
*/
.b_link_blue_and_white_text {
    color: #ffffff;
    background: #406cdc;
    border-color: #406cdc;
}
.b_link_blue_and_white_text:hover,
.b_link_blue_and_white_text:focus,
.b_link_blue_and_white_text.focus,
.b_link_blue_and_white_text:active,
.b_link_blue_and_white_text.active,
.open > .dropdown-toggle.b_link_blue_and_white_text {
    /*
    color: #406cdc;
    */
    color: #ffffff;
    background: #4c76e3;
    border-color: #4c76e3;
}
.b_link_blue_and_white_text:active,
.b_link_blue_and_white_text.active,
.open > .dropdown-toggle.b_link_blue_and_white_text {
    background-image: none;
}
.b_link_blue_and_white_text .badge {
    color: #447FB0;
    background: #1e1e1e;
}
.b_link_blue_and_white_text .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_blue_and_white_text .fa {
    color: #1e1e1e;
}
/*
.b_link_blue_and_white_text
end
*/

/*
.b_link_red
*/
.b_link_red {
    color: #ffffff;
    background: #e61b00;
    border-color: #e61b00;
}
.b_link_red:hover,
.b_link_red:focus,
.b_link_red.focus,
.b_link_red:active,
.b_link_red.active,
.open > .dropdown-toggle.b_link_red {
    color: #ffffff;
    background: #d41b02;
    border-color: #d41b02;
}
.b_link_red:active,
.b_link_red.active,
.open > .dropdown-toggle.b_link_red {
    background-image: none;
}
.b_link_red .badge {
    color: #447FB0;
    background: #ffffff;
}
.b_link_red .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_red .fa {
    color: #ffffff;
}
/*
.b_link_red
end
*/

/*
.b_link_gray_blue
*/
.b_link_gray_blue {
    color: #ffffff;
    background: #2488b3;
    border-color: #2488b3;
}
.b_link_gray_blue:hover,
.b_link_gray_blue:focus,
.b_link_gray_blue.focus,
.b_link_gray_blue:active,
.b_link_gray_blue.active,
.open > .dropdown-toggle.b_link_gray_blue {
    color: #ffffff;
    background: #227ca2;
    border-color: #227ca2;
}
.b_link_gray_blue:active,
.b_link_red.active,
.open > .dropdown-toggle.b_link_gray_blue {
    background-image: none;
}
.b_link_gray_blue .badge {
    color: #447FB0;
    background: #ffffff;
}
.b_link_gray_blue .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_gray_blue .fa {
    color: #ffffff;
}
/*
.b_link_gray_blue
end
*/

/*
.b_link_gray
*/
.b_link_gray {
    color: #5f5f5f;
    background: #b3b3b3;
    border-color: #b3b3b3;
}
.b_link_gray:hover,
.b_link_gray:focus,
.b_link_gray.focus,
.b_link_gray:active,
.b_link_gray.active,
.open > .dropdown-toggle.b_link_gray {
    color: #5f5f5f;
    background: #a2a2a2;
    border-color: #a2a2a2;
}
.b_link_gray:active,
.b_link_gray.active,
.open > .dropdown-toggle.b_link_gray {
    background-image: none;
}
.b_link_gray .badge {
    color: #447FB0;
    background: #5f5f5f;
}
.b_link_gray .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_gray .fa {
    color: #5f5f5f;
}
/*
.b_link_gray
end
*/

/*
.b_link_light_green
*/
.b_link_light_green {
    color: #000000;
    background: #b2cd32;
    border-color: #b2cd32;
    /*
    -webkit-transition: background-color 100ms ease-in-out;
    -khtml-transition: background-color 100ms ease-in-out;
    -moz-transition: background-color 100ms ease-in-out;
    -ms-transition: background-color 100ms ease-in-out;
    -o-transition: background-color 100ms ease-in-out;
    transition: background-color 100ms ease-in-out;
    */
    -webkit-box-shadow: 0 3px 5px rgba(36, 30, 10, 0.6);
    -moz-box-shadow: 0 3px 5px rgba(36, 30, 10, 0.6);
    box-shadow: 0 3px 5px rgba(36, 30, 10, 0.6);
}
.b_link_light_green:hover,
.b_link_light_green:focus,
.b_link_light_green.focus,
.b_link_light_green:active,
.b_link_light_green.active,
.open > .dropdown-toggle.b_link_light_green {
    color: #000000;
    background: #a9c32a;
    border-color: #a9c32a;
}
.b_link_light_green:active,
.b_link_light_green.active,
.open > .dropdown-toggle.b_link_light_green {
    background-image: none;
}
.b_link_light_green .badge {
    color: #447FB0;
    background: #ffffff;
}
.b_link_light_green .glyphicon {
    color: #c7dae7;
    font-size: 10px;
    font-weight: bold;
}
.b_link_light_green .fa {
    color: #ffffff;
}
/*
.b_link_light_green
end
*/
.section {
    padding: 80px 0 100px 0;
}
.section_t {
    margin-bottom: 60px;
}
.section_subt {
    font-size: 17px;
    margin-top: -45px;
    margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
    .section {
        padding: 50px 0 70px 0;
    }
    .section_t {
        margin-bottom: 20px;
    }
    .section_subt {
        font-size: 15px;
        margin-top: -10px;
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 481px) {
    .section {
        padding: 55px 0 75px 0;
    }
    .section_t {
        margin-bottom: 25px;
    }
    .section_subt {
        font-size: 15px;
        margin-top: -15px;
        margin-bottom: 25px;
    }
}
@media screen and (min-width: 768px) {
    .section {
        padding: 65px 0 85px 0;
    }
    .section_t {
        margin-bottom: 30px;
    }
    .section_subt {
        font-size: 17px;
        margin-top: -20px;
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 992px) {
    .section {
        padding: 80px 0 100px 0;
    }
    .section_t {
        margin-bottom: 60px;
    }
    .section_subt {
        /*
        font-size: 17px;
        */
        font-size: 18px;
        margin-top: -45px;
        margin-bottom: 60px;
    }
}
@media screen and (min-width: 1200px) {
    .section {
        padding: 80px 0 100px 0;
    }
}
.section_gray {
    background: #f4f6f6;
}
.light_gray {
    color: #a5a5a5;
}
.text_center {
    text-align: center;
}
.section_button_wrap {
    margin-top: 30px;
}

/*
navbar
*/
.navbar {
    /*
    background-color: #334e89;
    */
    background-color: #1e59aa;
    margin-bottom: 0;
}
.navbar-nav > li > a {
    color: #444444;
}
.navbar-default .navbar-brand {
    color: #4b85cb;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    color: #4b85cb;
    text-decoration: none;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #444444;
}
.navbar-default {
    /*
    border-color: #485e8e;
    */
    border: transparent;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #efefef;
}
.navbar-default .navbar-toggle {
    border-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #216cc6;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #ecf0f3;
}
.navbar-default .navbar-nav > li > a {
    color: #444444;
}
.navbar-nav > li > a:hover, .navbar-nav > li > a:focus {
    color: #444444;
    text-decoration: none;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    background-color: rgba(231,236,241,0.6);
}
.nav > li > a:hover, .nav > li > a:focus {
    background-color: rgba(0,0,0,0.07);
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #ecf0f3;
}
.dropdown-menu > li:hover {
    background-color: #ecf0f3;
}
.scrollable-menu {
    height: auto;
    max-height: 250px;
    overflow-x: hidden;
}
.navbar-brand {
	height: 84px;
}
.navbar_logo {
	width: 125px;
	margin-top: 18px;
}
.navbar_phone_wrap {
	display: inline-block;
    float: right;
    color: #ffffff;
    padding-top: 21px;
    padding-bottom: 21px;
    font-size: 30px;
    font-weight: bold;
}
.navbar_phone_wrap a {
    color: #ffffff;
}
@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse {
        margin-right: -10px;
        margin-left: -10px;
    }
    .navbar-default .navbar-brand {
        padding: 10px 0;
        height: 59px;
    }
    .navbar_logo {
        /*
        width: 150px;
        */
        /*
        width: 160px;
        */
        width: 125px;
        /*
        margin-top: 25px;
        */
        /*
        margin-top: 16px;
        */
        margin-top: 6px;
    }
    .navbar_phone_wrap {
        font-size: 15px;
        padding-top: 19px;
        padding-bottom: 19px;
    }
}
@media screen and (min-width: 481px) {
    .navbar-default .navbar-brand {
        padding-left: 0;
        padding-right: 0;
    }
    .navbar_logo {
        /*
        margin-top: 23px;
        */
        /*
        margin-top: 12px;
        */
        margin-top: 6px;
    }
    .navbar_phone_wrap {
        font-size: 24px;
        padding-top: 25px;
        padding-bottom: 25px;
    }
}
@media screen and (min-width: 768px) {
    .navbar-default .navbar-brand {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar_logo {
        /*
        margin-top: 18px;
        */
        margin-top: 7px;
    }
    .navbar_phone_wrap {
        font-size: 30px;
        padding-top: 21px;
        padding-bottom: 21px;
    }
}
@media screen and (min-width: 992px) {
}
@media screen and (min-width: 1200px) {
}
/*
navbar
end
*/

/*
navbar_with_menu
*/
.navbar_with_menu {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}
.navbar_with_menu .navbar-brand {
    /*
    padding-top: 14px;
    */
    padding-top: 13px;
    padding-bottom: 10px;
    height: 74px;
}
.navbar_with_menu .navbar_logo {
    /*
    margin-top: 0;
    */
}
.navbar_with_menu_navigation_items_wrap {
    display: inline-block;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-left: -10px;
}
.navbar_with_menu_navigation_items_wrap a {
    color: #3e3e3e;
    margin-left: 30px;
    border-bottom: 1px dotted;
}
.navbar_with_menu_navigation_items_wrap a:hover {
    color: #216cc6;
}
.navbar_with_menu_navigation_items_wrap a:hover,
.navbar_with_menu_navigation_items_wrap a:active,
.navbar_with_menu_navigation_items_wrap a:focus {
    text-decoration: none;
}
.navbar_with_menu_phone_wrap {
    display: inline-block;
    float: right;
    color: #3e3e3e;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 26px;
}
.navbar_with_menu_phone_wrap a {
    color: #3e3e3e;
}
.second_nav_for_mob {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    margin-top: 60px;
    min-height: 40px;
}
.second_nav_for_mob_navigation_items_wrap {
    display: inline-block;
    padding-top: 5px;
    padding-bottom: 5px;
}
.second_nav_for_mob_navigation_items_wrap a {
    margin-right: 15px;
    border-bottom: 1px dotted;
    /*
    font-size: 12px;
    */
    color: #777;
    font-size: 11px;
}
.second_nav_for_mob_navigation_items_wrap a:hover {
    color: #216cc6;
}
.second_nav_for_mob_navigation_items_wrap a:hover,
.second_nav_for_mob_navigation_items_wrap a:active,
.second_nav_for_mob_navigation_items_wrap a:focus {
    text-decoration: none;
}
.second_nav_for_mob_last_navigation_item a {
    margin-right: 0;
}
.navbar_with_menu_scroll .glyphicon {
    color: #f8b200;
}
.navbar-brand svg {
    width: 130px;
    height: auto;
}
.banya_navbar_brand svg {
    /*
    width: 120px;
    height: auto;
    */
}
.navbar_with_menu_phone_wrap .b_link_light_orange {
    margin-left: 10px;
    margin-top: -5px;
    color: #ffffff;
}
@media screen and (max-width: 374px) {
    .second_nav_for_mob_navigation_items_wrap a {
        margin-right: 12px;
    }
    .second_nav_for_mob_last_navigation_item a {
        margin-right: 0;
    }
    .navbar_with_menu_phone_wrap .b_link_light_orange {
        margin-left: 5px;
        border-radius: 50%;
    }
}
@media screen and (max-width: 480px) {
    .navbar_with_menu .navbar-brand {
        /*
        padding: 10px 0;
        */
        /*
        padding: 6px 0 10px 0;
        */
        padding: 12px 0 12px 0;
        height: 59px;
    }
    .navbar_with_menu .banya_navbar_brand {
        padding: 5px 0 5px 0;
    }
    .navbar_with_menu_phone_wrap {
        font-size: 15px;
        /*
        padding-top: 18px;
        padding-bottom: 18px;
        */
        padding-top: 22px;
        padding-bottom: 16px;
    }
    .navbar-brand svg {
        width: 120px;
    }
    .navbar_with_menu_phone_wrap .b_link_light_orange {
        border-radius: 50%;
    }
}
@media screen and (min-width: 481px) {
    .navbar_with_menu .navbar-brand {
        padding: 23px 0 23px 0;
    }
    .navbar_with_menu .banya_navbar_brand {
        padding: 15px 0 15px 0;
    }
    .navbar_with_menu_phone_wrap {
        font-size: 24px;
        padding-top: 25px;
        padding-bottom: 25px; 
    }
    .second_nav_for_mob {
        margin-top: 85px;
    }
    .navbar_with_menu_phone_wrap .b_link_light_orange {
        border-radius: 50%;
    }
}
@media screen and (min-width: 768px) {
    .navbar_with_menu .navbar-brand {
        padding: 18px 15px 18px 15px;
    }
    .navbar_with_menu .banya_navbar_brand {
        padding: 8px 15px 8px 15px;
    }
    .navbar_with_menu_phone_wrap {
        font-size: 26px;
        padding-top: 18px;
        padding-bottom: 18px;  
    }
    .navbar_with_menu_phone_wrap .b_link_light_orange {
        border-radius: 4px;
    }
    .navbar_with_menu_phone_wrap .b_link_light_orange i {
        margin-right: 10px;
    }
}
@media screen and (min-width: 992px) {
    .navbar_with_menu_phone_wrap {
        /*
        font-size: 26px;
        padding-top: 18px;
        padding-bottom: 18px;  
        */
        font-size: 24px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media screen and (min-width: 1200px) {
    .navbar_with_menu_phone_wrap {
        font-size: 26px;
        padding-top: 18px;
        padding-bottom: 18px;  
    }
}
/*
navbar_with_menu
end
*/

/*
section_zhk_list
*/
.section_zhk_list {
    background: #eeeeee;
}
.section_zhk_list h1 {
    /*
    text-align: center;
    */
    text-align: left;
    /*
    margin-bottom: 50px;
    */
    margin-bottom: 35px;
}
.row .szl_zhk_item_wrap {
    padding: 0 30px;
}
.row .szl_zhk_item {
    background: #ffffff;
    border-radius: 10px;
}
.row .szl_zhk_item_img_wrap img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.row .szl_zhk_item_description_wrap {
    padding: 18px 20px;
    font-size: 14px;
}
.row .szl_zhk_item_t {
    font-weight: bold;
}
.row .szl_zhk_item_description_metro_logo_wrap {
    margin-top: 2px;
    font-size: 12px;
}
.row .szl_zhk_item_description_metro_logo {
    width: 12px;
    margin-top: -4px;
}
.row .szl_zhk_item_description_button_wrap {

}
.row .szl_zhk_item_description_ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 12px 0;
    font-size: 12px;
}
.row .szl_zhk_item_description_ul_item_icon {
    width: 14px;
    color: #d62a09;
}
.row .szl_zhk_item_description_ul_item_icon_wrap {
    
}
.row .szl_zhk_item_description_ul_item_icon_area {
    margin-top: -3px;
}
.row .szl_zhk_item_description_ul_item_icon_area .fa-circle {
    font-size: 6px;
}
.row .szl_zhk_item_description_ul_item_text_area {
    
}
.section_zhk_list_modal_t {
    font-size: 18px;
}
.section_zhk_list_modal .modal-body {
    padding: 0;
}
.section_zhk_list_modal_ya_map_wrap {

}
#section_zhk_list_modal_ya_map_1 {
    width: 100%;
    height: 100%;
}
#section_zhk_list_modal_ya_map_2 {
    width: 100%;
    height: 100%;
}
#section_zhk_list_modal_ya_map_3 {
    width: 100%;
    height: 100%;
}
.section_zhk_list_modal_ya_map_area {
    height: 600px;
}
.section_zhk_list_modal_ya_map_placemark .fas {
    color: #d62a09;
    font-size: 48px;
}
.szl_advantages_wrap {
    margin-top: 80px;
    margin-left: -20px;
    margin-right: -20px;
}
.row .szl_advantages_item {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
}
.row .szl_advantages_item i {
    color: #d62a09;
}
.szl_advantages_item_area {
    border-radius: 10px;
    /* background: #f4f6f6; */
    /* background: #ffeebe; */
    box-shadow: 0 2px 14px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.02);
}
.row .szl_advantages_item_area:hover {
    background: #ffeebe;
    /* box-shadow: 0 1px 3px rgb(0 0 0 / 20%), inset 0px 0px 0px 1px #5da5e3; */
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #5da5e3;
}
.szl_advantages_item_area img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.row .szl_advantages_item_info {
    padding: 10px;
}
.row .szl_advantages_item_t {
    font-size: 16px;
}
.row .szl_advantages_item_text {
    color: #838383;
    margin-top: 2px;
}
.szl_advantages_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 480px) {
    .section_zhk_list {
        /*
        margin-top: 100px;
        */
        margin-top: 60px;
        padding-top: 15px;
    }
    .section_zhk_list h1 {
        line-height: 26px;
    }
    .row .szl_zhk_item_wrap {
        margin-bottom: 30px;
    }
    .row .szl_zhk_item_img_wrap img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .section_zhk_list_modal_ya_map_area {
        height: 300px;
    }
    .section_advantages {
        padding: 25px 0 10px 0;
    }
    .szl_advantages_wrap {
        margin-top: 40px;
        margin-left: 0;
        margin-right: -0;
    }
    .row .szl_advantages_item {
        /*
        padding-left: 30px;
        padding-right: 30px;
        */
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 25px;
        font-size: 14px;
    }
    .row .szl_advantages_item_t {
        font-size: 14px;
    }
    .row .szl_advantages_item_text {
        margin-top: 2px;
        font-size: 12px;
        margin-bottom: -5px;
    }
}
@media screen and (min-width: 481px) {
    .section_zhk_list {
        /*
        margin-top: 125px;
        */
        margin-top: 85px;
        padding-top: 15px;
    }
    .section_zhk_list h1 {
        line-height: 30px;
    }
    .row .szl_zhk_item_wrap {
        margin-bottom: 30px;
    }
    .row .szl_zhk_item_img_wrap img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .section_zhk_list_modal_ya_map_area {
        height: 450px;
    }
    .szl_advantages_wrap {
        margin-top: 50px;
        margin-left: 0;
        margin-right: -0;
    }
    .row .szl_advantages_item {
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 25px;
    }
}
@media screen and (min-width: 768px) {
    .section_zhk_list {
        /*
        margin-top: 115px;
        */
        margin-top: 75px;
        padding-top: 35px;
    }
    .section_zhk_list h1 {
        line-height: 35px;
    }
    .row .szl_zhk_item_wrap {
        margin-bottom: 0;
        padding: 0 15px;
    }
    .row .szl_zhk_item_img_wrap img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .szl_advantages_wrap {
        margin-top: 50px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .szl_advantages_item {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 0;
    }
    .szl_advantages_item_area {
        height: 346px;
    }
    .szl_advantages_item_area img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .szl_zhk_list_single {
        margin-left: -15px;
        margin-right: -15px;
    }
    .szl_zhk_item_single .row .szl_zhk_item_img_wrap img {
        border-top-left-radius: 10px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 0;
    }
}
@media screen and (min-width: 992px) {
    .section_zhk_list {
        margin-top: 75px;
        padding-top: 35px;
    }
    .section_zhk_list h1 {
        line-height: 40px;
    }
    .row .szl_zhk_item_wrap {
        padding: 0 30px;
    }
    .row .szl_zhk_item_img_wrap {
        /*
        padding: 12px 0 0 12px;
        */
    }
    .row .szl_zhk_item_img_wrap img {
        /*
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .section_zhk_list_modal_ya_map_area {
        height: 600px;
    }
    .szl_zhk_list_single {
        margin-left: -30px;
        margin-right: -30px;
    }
    .szl_advantages_wrap {
        margin-top: 80px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .szl_advantages_item_area {
        height: 155px;
    }
    .row .szl_advantages_item_pic {
        padding: 10px 0 0 10px;
    }
    .szl_advantages_item_area img {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}
@media screen and (min-width: 1200px) {
    .section_zhk_list {
        margin-top: 75px;
        padding-top: 35px; 
    }
    .section_zhk_list h1 {
        line-height: 45px;
    }
    .szl_zhk_list {
        margin-left: -30px;
        margin-right: -30px;
    }
    .row .szl_zhk_item_wrap {
        padding: 0 30px;
    }
    .row .szl_zhk_item_img_wrap {
        padding: 0;
    }
    .row .szl_zhk_item_img_wrap img {
        /*
        border-top-left-radius: 10px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 0;
        */
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .row .szl_zhk_item_description_ul {
        height: 68px;
    }
    .szl_advantages_item_area {
        height: auto;
    }
    .row .szl_advantages_item_pic {
        padding: 0;
    }
    .szl_advantages_item_area img {
        border-top-left-radius: 10px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 0;
    }
}
/*
section_zhk_list
end
*/

/*
f_list_navbar
*/
.f_list_navbar {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    /*
    position: sticky;
    top: 75px;
    z-index: 3;
    */
}
.f_list_navbar_filer_wrap {
    display: inline-block;
    padding-top: 20px;
    padding-bottom: 20px;
}
.f_list_navbar_filer_wrap .btn-group {
    margin-left: 6px;
}
.f_list_navbar_sorting_wrap {
    display: inline-block;
    padding-top: 28px;
    padding-bottom: 22px;   
    float: right;
}
.sort a:hover, .sort a:active, .sort a:focus {
    text-decoration: none;
}
.sort .active a {
    border-bottom: 1px dotted;
}
.sort_link.desc a:after {
    content: '↓';
}
.sort_link.asc a:after {
    content: '↑';
}
.sort_link {
    cursor: pointer;
}
.sort_link.desc {
    padding-left: 6px;
    padding-right: 6px;
}
.sort_link_middle {
    padding-left: 6px;
    padding-right: 6px;
}
.sort_link.asc {
    padding-left: 6px;
    padding-right: 6px;
}
.f_list_item_filterable_param {
    display: none;
}
.f_list_navbar_filer_wrap .btn-default.active,
.f_list_navbar_filer_wrap .btn-default:active,
.f_list_navbar_filer_wrap .btn-default.active.focus,
.f_list_navbar_filer_wrap .btn-default.active:focus,
.f_list_navbar_filer_wrap .btn-default.active:hover,
.f_list_navbar_filer_wrap .btn-default:active.focus,
.f_list_navbar_filer_wrap .btn-default:active:focus,
.f_list_navbar_filer_wrap .btn-default:active:hover,
.f_list_navbar_filer_wrap .btn-default.focus,
.f_list_navbar_filer_wrap .btn-default:focus,
.f_list_navbar_filer_wrap .btn-default:hover {
    /*
    border-color: #87dbff;
    background-color: #d8f4ff;
    */
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
@media screen and (max-width: 480px) {
    .f_list_navbar {
        top: 45px;
    }
    .f_list_navbar_filer_wrap {
        padding-bottom: 12px;
        line-height: 28px;
    }
    .f_list_navbar_filer_wrap .btn-group {
        margin-left: 0;
    }
    .f_list_navbar_sorting_wrap {
        padding-top: 0;
        padding-bottom: 10px;
        float: left;
        line-height: 24px;
        font-size: 12px;
    }
    .sort_link.desc {
        padding-left: 0;
        padding-right: 12px;
    }
    .sort_link_middle {
        padding-left: 0;
        padding-right: 12px;
    }
    .sort_link.asc {
        padding-left: 0;
        padding-right: 12px;
    }
}
@media screen and (min-width: 481px) {
    .f_list_navbar_filer_wrap {
        padding-bottom: 15px;
        line-height: 28px;
    }
    .f_list_navbar_filer_wrap .btn-group {
        margin-left: 0;
    }
    .f_list_navbar_sorting_wrap {
        padding-top: 15px;
        float: left;
        line-height: 24px;
    }
    .sort_link.desc {
        padding-left: 0;
        padding-right: 12px;
    }
    .sort_link_middle {
        padding-left: 0;
        padding-right: 12px;
    }
    .sort_link.asc {
        padding-left: 0;
        padding-right: 12px;
    }
}
@media screen and (min-width: 768px) {
    .f_list_navbar_filer_wrap {
        padding-top: 20px;
        padding-bottom: 20px;
        line-height: inherit;
    }
    .f_list_navbar_filer_wrap .btn-group {
        margin-left: 6px;
    }
    .f_list_navbar_sorting_wrap {
        padding-top: 0;
        padding-bottom: 20px;
        float: left;
        line-height: inherit;
    }
    .sort_link.desc {
        padding-left: 6px;
        padding-right: 6px;
    }
    .sort_link_middle {
        padding-left: 6px;
        padding-right: 6px;
    }
    .sort_link.asc {
        padding-left: 6px;
        padding-right: 6px;
    }
}
@media screen and (min-width: 992px) {
    .f_list_navbar_sorting_wrap {
        padding-top: 28px;
        float: right;
    }
}
@media screen and (min-width: 1200px) {
    .f_list_navbar {
        font-size: 14px;
    }
}
/*
f_list_navbar
end
*/

/*
f_list - custom styles for commerce
*/
.row .f_list_item_description_info_metro_logo_wrap {
    margin-top: 10px;
    margin-bottom: 10px;
}
.row .f_list_item_description_info_metro_logo {
    width: 16px;
    margin-top: -4px;
    margin-right: 4px;
}
.row .f_list_item_na_plane_btn_area {
    margin-left: 25px;
}
.section_f_list_modal_t {
    font-size: 18px;
}
.section_f_list_modal_text {
    color: #a5a5a5;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 2px;
}
.section_f_list_modal_metro_logo_wrap {
    color: #a5a5a5;
    font-size: 12px;
}
.section_f_list_modal_metro_logo {
    width: 12px;
    margin-top: -3px;
    margin-right: 2px;
}
.section_f_list_modal_text_about_zhk {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 2px;
}
.row .section_f_list_modal_planirovka_img_wrap {
    border-right: 1px dashed #ddd;
    padding-right: 25px;
}
.row .section_f_list_modal_korpus_img_wrap {
    /*
    padding-bottom: 30px;
    margin-bottom: 30px;
    */
    border-bottom: 1px dashed #ddd;
    padding-bottom: 25px;
    padding-left: 25px;
}
.row .section_f_list_modal_etazh_img_wrap {
    padding-top: 25px;
    padding-left: 25px;
}
.section_f_list_modal .modal-footer .b_link,
.section_f_list_modal .modal-footer .btn {
    /*
    margin: 0 5px;
    */
    margin: 0 4px;
}
.row .f_list_item_price {
    margin-top: 15px;
    font-weight: bold;
}
.f_list_item_download_link {
    float: right;
    color: #b0b0b0;
}
.f_list_item_download_link:hover {
    color: #216cc6;
}
@media screen and (max-width: 480px) {
    .f_list_item_btn_wrap a {
        width: 100%;
    }
    .row .f_list_item_na_plane_btn_area {
        margin-left: 0;
        margin-top: 15px;
    }
    .row .f_list_item_price {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .row .section_f_list_modal_planirovka_img_wrap {
        border-right: none;
        border-bottom: 1px dashed #ddd;
        padding-right: 0;
        padding-bottom: 5px;
    }
    .row .section_f_list_modal_korpus_img_wrap {
        border-bottom: 1px dashed #ddd;
        padding-bottom: 25px;
        padding-left: 0;
        padding-top: 25px;
    }
    .row .section_f_list_modal_etazh_img_wrap {
        padding-top: 25px;
        padding-left: 0;
    }
}
@media screen and (min-width: 481px) {
    .f_list_item_btn_wrap a {
        width: 100%;
    }
    .row .f_list_item_na_plane_btn_area {
        margin-left: 0;
        margin-top: 15px;
    }
    .row .f_list_item_price {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .row .section_f_list_modal_planirovka_img_wrap {
        border-right: none;
        border-bottom: 1px dashed #ddd;
        padding-right: 0;
        padding-bottom: 5px;
    }
    .row .section_f_list_modal_korpus_img_wrap {
        border-bottom: 1px dashed #ddd;
        padding-bottom: 25px;
        padding-left: 0;
        padding-top: 25px;
    }
    .row .section_f_list_modal_etazh_img_wrap {
        padding-top: 25px;
        padding-left: 0;
    }
}
@media screen and (min-width: 768px) {
    .f_list_item_btn_wrap a {
        width: 280px;
    }
    .row .f_list_item_price {
        margin-top: 15px;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 992px) {
    .f_list_item_btn_wrap a {
        width: auto;    
    }
    .row .f_list_item_na_plane_btn_area {
        margin-left: 25px;
        margin-top: 0;
    }
    .row .section_f_list_modal_planirovka_img_wrap {
        border-right: 1px dashed #ddd;
        border-bottom: none;
        padding-right: 25px;
        padding-bottom: 0;
    }
    .row .section_f_list_modal_korpus_img_wrap {
        /*
        padding-bottom: 30px;
        margin-bottom: 30px;
        */
        border-bottom: 1px dashed #ddd;
        padding-bottom: 25px;
        padding-left: 25px;
        padding-top: 0;
    }
    .row .section_f_list_modal_etazh_img_wrap {
        padding-top: 25px;
        padding-left: 25px;
    }
}
@media screen and (min-width: 1200px) {

}
/*
f_list - custom styles for commerce
end
*/

/*
section_first_screen
*/
.section_first_screen {
    /*
    background: #334e89;
    */
    background: #1e59aa;
    padding-top: 20px;
}
.section_first_screen_t {
    color: #ffffff;
}
.section_first_screen_subt {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;  
    margin-bottom: 25px;  
}
.section_first_screen_xs_button_wrap {
    margin-top: 35px;
    margin-bottom: 40px;
}
.section_first_screen_xs_button_wrap .b_link_sm {
    font-size: 13px;
    padding: 10px 10px;
}
.section_first_screen_image_wrap {
    text-align: right;
}
.section_first_screen_image_wrap img {
    border-radius: 12px;
}
.section_first_screen_image_planirovka img {
    /*
    background: #26417b;
    */
    background: rgba(0, 0, 0, 0.15);
}
.section_first_screen_text_wrap {
    text-align: left;
    color: #ffffff;
}
.row .section_first_screen_text_wrap {
    padding-left: 40px;
}
.section_first_screen ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.section_first_screen ul > li {
    margin-bottom: 12px;
}
.section_first_screen_list_item_icon {
    width: 29px;
    font-size: 15px;
}
.row .section_first_screen_list_item_icon {
    /*
    margin-top: 3px;
    */
}
.light_gray_icon .fa {
    /*
    color: #f0ae65;
    */
    color: #dde2e8;
}
.light_green_icon .fa {
    color: #b2cd32;
}
.section_first_screen_list_item_icon .fa-lock {
    padding-left: 2px;
}
.section_first_screen_list_item_icon .fa-exclamation {
    padding-left: 4px;
}
.section_first_screen_list_item_icon .metro_logo {
    width: 15px;
    margin-top: -2px;
    margin-left: -1px;
}
.arrow_down_wrap {
    margin-bottom: 12px;
}
.arrow_down_wrap img {
    width: 24px;
}
.row .arrow_up_wrap {
    margin: 7px 0 0 25px;
}
.row .section_first_screen_button_wrap {
    margin-top: 20px;
}
@media screen and (max-width: 480px) {
    .section_first_screen {
        padding-top: 20px;
    }
    .section_first_screen_subt {
        margin-bottom: 15px;
        font-size: 15px;
    }
    .section_first_screen_image_wrap {
        text-align: center;
    }
    .row .section_first_screen_image_wrap {
        margin-bottom: 15px;
    }
    .row .section_first_screen_text_wrap {
        padding-left: 0;
    }
    .row .section_first_screen_text_area {
        width: 280px;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }  
}
@media screen and (min-width: 481px) {
    .section_first_screen {
        padding-top: 20px;
    }
    .section_first_screen_subt {
        margin-bottom: 15px;
        /*
        font-size: 15px;
        */
        font-size: 16px;
    }
    .section_first_screen_image_wrap {
        text-align: center;
    }
    .row .section_first_screen_image_wrap {
        margin-bottom: 15px;
    }
    .row .section_first_screen_text_wrap {
        padding-left: 0;
    }
    .row .section_first_screen_text_area {
        width: 280px;
        margin-left: auto;
        margin-right: auto;
    } 
}
@media screen and (min-width: 768px) {
    .section_first_screen {
        padding-top: 20px;
    }
    .section_first_screen_subt {
        margin-bottom: 20px;
        font-size: 17px;
    }
    .section_first_screen_image_wrap {
        text-align: right;
    }
    .row .section_first_screen_image_wrap {
        margin-bottom: 0;
    }
    .row .section_first_screen_text_wrap {
        padding-left: 15px;
    }
    .row .section_first_screen_text_area {
        width: auto;
    }
    .section_first_screen_list_item_text_area {
        min-width: 430px;
    }
    .section_first_screen_button_wrap .b_link_lg {
        padding: 13px 20px;
    }
}
@media screen and (min-width: 992px) {
    .section_first_screen {
        padding-top: 20px;
    }
    .section_first_screen_subt {
        margin-bottom: 25px;
        font-size: 20px;
    }
    .row .section_first_screen_text_wrap {
        padding-left: 30px;
    }
    .section_first_screen_button_wrap .b_link_lg {
        padding: 13px 35px;
    }  
}
@media screen and (min-width: 1200px) {
    .section_first_screen {
        padding-top: 20px;
    }
    .section_first_screen_subt {
        font-size: 22px;
    }
    .row .section_first_screen_text_wrap {
        padding-left: 40px;
    }
    .section_first_screen_t_small_font_size {
        font-size: 20px;
    }
}
/*
section_first_screen
end
*/

/*
bc_first_screen
*/
.section_bc_first_screen {
    /*
    background: #eeeeee;
    */
    padding: 35px 0 100px 0;
    margin-top: 75px;
}
.bc_first_screen_t {
    margin-bottom: 35px;
    /*
    text-align: center;
    */
    text-align: left;
    font-weight: bold;
    line-height: 1.32;
    font-size: 32px;
}
.bc_first_screen_text_wrap i {
    /*
    color: #22a64c;
    */
    color: #ff9900;
    font-size: 25px;
}
.bc_first_screen_btn_wrap {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.bc_first_screen_cards_wrap {
    margin-left: -20px;
    margin-right: -20px;
}
.row .bc_first_screen_cards_item_wrap {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
.row .bfsciw_second_row_item_wrap {
    /*
    width: 236px;
    */
}
.row .bc_first_screen_cards_item {
    /*
    background: #e2e8f0;
    */
    /*
    background: #eaecee;
    */
    background: #ffffff;
    padding: 20px 23px 20px 23px;
    border-radius: 10px;
    min-height: 292px;
}
.row .bc_first_screen_cards_item_with_pic {
    display: flex;
    padding: 0;
}
.row .bc_first_screen_cards_item_with_pic i {
    color: #ffffff;
}
.row .bc_first_screen_cards_item_1 {
    /*
    background: #f9f3de;
    */
    background: #406cdc;
}
.row .bc_first_screen_cards_item_2 {
    /*
    background: #f9f3de;
    */
    /*
    background: #e1efeb;
    */
    background: #eaecee;
}
.row .bc_first_screen_cards_item_white {

}
.row .bc_first_screen_cards_item_content {
    height: 210px;
}
.row .bc_first_screen_cards_item_with_pic_text_area {
    width: 50%;
    padding: 20px 23px 20px 23px;
    color: #ffffff;
}
.row .bc_first_screen_cards_item_with_pic_img_area {
    width: 50%;
    position: relative;
}
.row .bc_first_screen_cards_item_with_pic_img_area img {
    position: absolute;
    bottom: 0%;
    right: 0%;
    border-bottom-right-radius: 10px;
}
.row .bc_first_screen_cards_item_icon {
    margin-bottom: 12px;
    font-size: 20px;
    /*
    color: #22a64c;
    */
    /*
    color: #bcc3d3;
    */
    color: #406cdc;
}
.row .bc_first_screen_cards_item_badge {
    background: #22a64c;
    width: 55px;
    text-align: center;
    padding: 3px 8px;
    border-radius: 5px;
    color: #f9f3de;
    font-size: 13px;
    margin-bottom: 10px;
}
.row .bc_first_screen_cards_item_t {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_t {
    /*
    margin-right: -30px;
    */
    font-size: 21px;
    margin-right: -80px;
}
.row .bc_first_screen_cards_item_text {
    font-size: 12px;
    margin-bottom: 15px;
    /*
    color: #838383;
    */
    color: #3e3e3e;
}
.row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_text {
    color: #ffffff;
}
.row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_text {
    margin-right: -30px;
}
.row .bc_first_screen_cards_item_btn_and_icon_wrap {
    display: flex;
}
.row .bc_first_screen_cards_item_btn_area {
    width: 80%;
}
.row .bc_first_screen_cards_item_icon_area {
    width: 20%;
}
.row .bc_first_screen_cards_item_icon_area i {
    /*
    float: right;
    */
    font-size: 20px;
    position: absolute;
    bottom: 20px;
    right: 40px;
}
.bc_first_screen_cards_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.bc_first_screen_cards_item:hover {
    /*
    background: #ffeebe;
    */
    /* box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3; */
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #5da5e3;
}
.bc_first_screen_cards_item:hover .b_link {
    /*
    color: #1e1e1e;
    background: #f7a70b;
    border-color: #f7a70b;
    */
    border-color: #ddd;
}
.bc_first_screen_cards_item_with_pic:hover .b_link {
    /*
    background: #f7a70b;
    border-color: #f7a70b;
    */
    background: #ffffff;
    border-color: #ffffff;
    color: #4b7dfb;
}  
.row .bc_first_screen_cards_item_text_fl_area {
    width: 230px;
    margin-top: 10px;
}
.row .bc_first_screen_cards_item_text_fl_area_item {
    margin-bottom: 5px;
}
.row .bc_first_screen_cards_item_text_dot_icon {
    color: #ffffff;
    margin-right: 0;
    font-size: 16px;
}
.bc_first_screen_cards_item_text_kp_area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bc_first_screen_cards_item_text_kp_area ul > li {
    margin-bottom: 10px;
}
.bc_first_screen_cards_item_text_kp_area_item_icon {
    width: 18px;
    color: #a5a5a5;
    color: #b7b7b7;
}
.row .bc_first_screen_cards_item_text_kp_area_item_icon_area {
    margin-top: -2px;
}
.bc_first_screen_cards_item_text_kp_area_item_icon_area .fa-circle {
    font-size: 7px;
}
@media screen and (max-width: 374px) {
    .bc_first_screen_cards_wrap .b_link_lg {
        padding: 13px 15px;
    }
}   
@media screen and (max-width: 480px) {
    .section_bc_first_screen {
        padding: 35px 0 40px 0;
        margin-top: 75px;
    }
    .bc_first_screen_t {
        margin-bottom: 18px;
        text-align: left;
        font-size: 20px;
    }
    .row .bc_first_screen_text_item {
        font-size: 14px;
        padding-right: 0;
        margin-bottom: 11px;
    }
    .bc_first_screen_text_item_icon_area {
        width: 37px;
    }
    .row .bc_first_screen_text_item_icon {
        margin-top: -3px;
    }
    .bc_first_screen_text_wrap i {
        font-size: 22px;
    }
    .bc_first_screen_btn_wrap {
        text-align: left;
        margin-top: 4px;
        margin-bottom: 30px;
    }
    .bc_first_screen_cards_wrap {
        margin-left: -10px;
        margin-right: -10px;
    }
    .row .bc_first_screen_cards_item_wrap {
        padding-left: 10px;
        padding-right: 10px;
        /*
        margin-bottom: 20px;
        */
        margin-bottom: 30px;
    }
    .row .bc_first_screen_cards_item {
        min-height: auto;
    }
    .row .bc_first_screen_cards_item_content {
        height: auto;
    }
    .row .bc_first_screen_cards_item_with_pic {
        display: block;
        padding: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area {
        width: 100%;
        padding: 20px 23px 20px 23px;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_t {
        font-size: 18px;
        margin-right: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_text {
        margin-right: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area {
        width: 100%;
        position: inherit;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area img {
        position: inherit;
        bottom: 0%;
        right: 0%;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
}
@media screen and (min-width: 481px) {
    .section_bc_first_screen {
        margin-top: 125px;
        padding-top: 15px;
        padding-bottom: 40px;
    }
    .bc_first_screen_t {
        margin-top: 35px;
        margin-bottom: 18px;
        text-align: left;
        font-size: 20px;
    }
    .row .bc_first_screen_text_item {
        font-size: 14px;
        padding-right: 0;
        margin-bottom: 11px;
    }
    .bc_first_screen_text_item_icon_area {
        width: 37px;
    }
    .row .bc_first_screen_text_item_icon {
        margin-top: -3px;
    }
    .bc_first_screen_text_wrap i {
        font-size: 22px;
    }
    .bc_first_screen_btn_wrap {
        text-align: left;
        margin-top: 4px;
        margin-bottom: 30px;
    }
    .bc_first_screen_cards_wrap {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row .bc_first_screen_cards_item_wrap {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 40px;
    }
    .row .bc_first_screen_cards_item {
        min-height: auto;
    }
    .row .bc_first_screen_cards_item_content {
        height: auto;
    }
    .row .bc_first_screen_cards_item_with_pic {
        display: block;
        padding: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area {
        width: 100%;
        padding: 20px 23px 20px 23px;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_t {
        font-size: 18px;
        margin-right: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_text {
        margin-right: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area {
        width: 100%;
        position: inherit;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area img {
        position: inherit;
        bottom: 0%;
        right: 0%;
        border-bottom-right-radius: 10px;
    }
}
@media screen and (min-width: 768px) {
    .section_bc_first_screen {
        margin-top: 115px;
        padding-top: 35px;
        padding-bottom: 60px;
    }
    .bc_first_screen_t {
        margin-top: 10px;
        margin-bottom: 35px;
        text-align: left;
        font-weight: bold;
        line-height: 1.32;
        font-size: 28px;
    }
    .bc_first_screen_text_wrap {
        width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .bc_first_screen_text_item {
        font-size: 15px;
        padding-right: 20px;
        margin-bottom: 21px;
    }
    .bc_first_screen_text_item_icon_area {
        width: 37px;
    }
    .row .bc_first_screen_text_item_icon {
        margin-top: 0;
    }
    .bc_first_screen_text_wrap i {
        font-size: 25px;
    }
    .bc_first_screen_btn_wrap {
        text-align: center;
        margin-top: 15px;
        margin-bottom: 40px;
    }
    .bc_first_screen_cards_wrap {
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .bc_first_screen_cards_item_wrap {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
    .row .bc_first_screen_cards_item {
        min-height: 202px;
    }
    .row .bc_first_screen_cards_item_content {
        height: 120px;
    }
    .row .bc_first_screen_cards_item_with_pic {
        display: block;
        padding: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area {
        width: 100%;
        padding: 20px 23px 20px 23px;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_t {
        /*
        font-size: 18px;
        */
        font-size: 17px;
        margin-right: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_text {
        margin-right: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area {
        width: 100%;
        position: inherit;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area img {
        position: inherit;
        bottom: 0%;
        right: 0%;
        border-bottom-right-radius: 10px;
    }
    .row .bc_first_screen_cards_item_1 {
        /*
        height: 495px;
        */
        height: 483px;
    }
    .row .bc_first_screen_cards_item_2 {
        /*
        height: 495px;
        */
        height: 483px;
    }
}
@media screen and (min-width: 992px) {
    .section_bc_first_screen {
        margin-top: 75px;
        padding-top: 35px;
        padding-bottom: 60px;
    }
    .bc_first_screen_t {
        margin-top: 0;
        margin-bottom: 35px;
        text-align: left;
        font-weight: bold;
        line-height: 1.32;
        font-size: 32px;
    }
    .bc_first_screen_text_wrap {
        width: auto;
    }
    .row .bc_first_screen_text_item {
        font-size: 16px;
        padding-right: 20px;
        margin-bottom: 0;
    }
    .bc_first_screen_text_item_icon_area {
        width: 35px;
    }
    .bc_first_screen_text_wrap i {
        font-size: 25px;
    }
    .bc_first_screen_btn_wrap {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    .bc_first_screen_cards_wrap {
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .bc_first_screen_cards_item_wrap {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
    .row .bfsciw_second_row_item_wrap {
        width: 196px;
    }
    .row .bc_first_screen_cards_item {
        min-height: 232px;
    }
    .row .bc_first_screen_cards_item_content {
        height: 175px;
    }
    .row .bc_first_screen_cards_item_with_pic {
        display: flex;
        padding: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area {
        width: 50%;
        padding: 20px 23px 20px 23px;
    }
    .row .bc_first_screen_cards_item_t {
        font-size: 16px;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_t {
        font-size: 18px;
        margin-right: -260px;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_text {
        margin-right: -260px;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area {
        width: 50%;
        position: relative;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area img {
        position: absolute;
        bottom: 0%;
        right: 0%;
        border-bottom-right-radius: 10px;
    }
    .row .bc_first_screen_cards_item_1 {
        height: 320px;
    }
    .row .bc_first_screen_cards_item_2 {
        height: 320px;
    }
}
@media screen and (min-width: 1200px) {
    .section_bc_first_screen {
        margin-top: 75px;
        padding-top: 35px;
        padding-bottom: 60px;
    } 
    .bc_first_screen_t {
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: left;
        font-weight: bold;
        line-height: 1.32;
        /*
        font-size: 34px;
        */
        font-size: 33px;
    }
    .row .bc_first_screen_text_item {
        font-size: 16px;
        padding-right: 30px;
        margin-bottom: 0;
    }
    .bc_first_screen_text_item_icon_area {
        width: 40px;
    }
    .bc_first_screen_text_wrap i {
        font-size: 25px;
    }
    .bc_first_screen_btn_wrap {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 60px;
    }
    .bc_first_screen_cards_wrap {
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .bc_first_screen_cards_item_wrap {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
    .row .bfsciw_second_row_item_wrap {
        width: 236px;
    }
    .row .bc_first_screen_cards_item {
        /*
        min-height: 292px;
        */
        min-height: 242px;
    }
    .row .bc_first_screen_cards_item_content {
        /*
        height: 210px;
        */
        height: 160px;
    }
    .row .bc_first_screen_cards_item_with_pic {
        display: flex;
        padding: 0;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area {
        width: 50%;
        padding: 20px 23px 20px 23px;
    }
    .row .bc_first_screen_cards_item_t {
        font-size: 17px;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_t {
        font-size: 21px;
        /*
        margin-right: -90px;
        */
        /*
        margin-right: -410px;
        */
        margin-right: -490px;
    }
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_text {
        margin-right: -30px;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area {
        /*
        width: 50%;
        */
        width: 70%;
        position: relative;
    }
    .row .bc_first_screen_cards_item_with_pic_img_area img {
        position: absolute;
        bottom: 0%;
        right: 0%;
        border-bottom-right-radius: 10px;
    }
}
@media screen and (max-width: 355px) {
    .row .bc_first_screen_cards_item_with_pic_text_area .bc_first_screen_cards_item_t {
        font-size: 16px;
    }
}
/*
@media screen and (max-width: 374px) {
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_content {
        height: 255px;
        margin-right: -5px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_t {
        font-size: 11px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_text {
        font-size: 11px;
    }
}
@media screen and (min-width: 375px) {
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_content {
        height: 250px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_t {
        font-size: 15px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_text {
        font-size: 11px;
    }
}
@media screen and (min-width: 425px) {
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_content {
        height: 220px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_t {
        font-size: 15px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_text {
        font-size: 11px;
    }
}
@media screen and (min-width: 481px) {
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_content {
        height: 235px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_t {
        font-size: 18px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_text {
        font-size: 12px;
    }
}
@media screen and (min-width: 768px) {
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_content {
        height: 170px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_t {
        font-size: 18px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_text {
        font-size: 12px;
    }
}
@media screen and (min-width: 992px) {
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_content {
        height: 235px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_t {
        font-size: 18px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_text {
        font-size: 12px;
    }
}
@media screen and (min-width: 1200px) {
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_content {
        height: 210px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_t {
        font-size: 18px;
    }
    .row .bc_first_screen_cards_item_white .bc_first_screen_cards_item_text {
        font-size: 12px;
    }
}
*/

/*
bc_first_screen
end
*/

/*
bp_first_screen
*/
.section_bp_first_screen {
    background: #eeeeee;
    padding: 35px 0 100px 0;
    margin-top: 75px;
}
.bp_first_screen_t {
    margin-bottom: 35px;
    text-align: center;
    font-weight: bold;
    line-height: 1.32;
    font-size: 32px;
}
.bp_first_screen_text_wrap i {
    /*
    color: #22a64c;
    */
    color: #ff9900;
    font-size: 25px;
}
.page_banya___bp_first_screen_text_wrap i {
    color: #22a64c;
}
.bp_first_screen_btn_wrap {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
    .section_bps_first_screen {
        margin-top: 100px;
        padding-top: 15px;
        padding-bottom: 40px;
    }
    .bp_first_screen_t {
        margin-bottom: 18px;
        text-align: left;
        font-size: 20px;
    }
    .row .bp_first_screen_text_item {
        font-size: 14px;
        padding-right: 0;
        margin-bottom: 11px;
    }
    .bp_first_screen_text_item_icon_area {
        width: 37px;
    }
    .row .bp_first_screen_text_item_icon {
        margin-top: -3px;
    }
    .bp_first_screen_text_wrap i {
        font-size: 22px;
    }
    .bp_first_screen_btn_wrap {
        text-align: left;
        margin-top: 4px;
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 481px) {
    .section_bp_first_screen {
        margin-top: 125px;
        padding-top: 15px;
        padding-bottom: 60px;
    }
    .bp_first_screen_t {
        margin-top: 35px;
        margin-bottom: 18px;
        text-align: left;
        font-size: 20px;
    }
    .row .bp_first_screen_text_item {
        font-size: 14px;
        padding-right: 0;
        margin-bottom: 11px;
    }
    .bp_first_screen_text_item_icon_area {
        width: 37px;
    }
    .row .bp_first_screen_text_item_icon {
        margin-top: -3px;
    }
    .bp_first_screen_text_wrap i {
        font-size: 22px;
    }
    .bp_first_screen_btn_wrap {
        text-align: left;
        margin-top: 4px;
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 768px) {
    .section_bp_first_screen {
        margin-top: 115px;
        padding-top: 35px;
        padding-bottom: 80px;
    }
    .bp_first_screen_t {
        margin-top: 10px;
        margin-bottom: 35px;
        text-align: center;
        font-weight: bold;
        line-height: 1.32;
        font-size: 28px;
    }
    .bp_first_screen_text_wrap {
        width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .bp_first_screen_text_item {
        font-size: 15px;
        padding-right: 20px;
        margin-bottom: 21px;
    }
    .bp_first_screen_text_item_icon_area {
        width: 37px;
    }
    .row .bp_first_screen_text_item_icon {
        margin-top: 0;
    }
    .bp_first_screen_text_wrap i {
        font-size: 25px;
    }
    .bp_first_screen_btn_wrap {
        text-align: center;
        margin-top: 15px;
        margin-bottom: 40px;
    }
}
@media screen and (min-width: 992px) {
    .section_bp_first_screen {
        margin-top: 75px;
        padding-top: 35px;
        padding-bottom: 100px;
    }
    .bp_first_screen_t {
        margin-top: 0;
        margin-bottom: 35px;
        text-align: center;
        font-weight: bold;
        line-height: 1.32;
        font-size: 32px;
    }
    .bp_first_screen_text_wrap {
        width: auto;
    }
    .row .bp_first_screen_text_item {
        font-size: 16px;
        padding-right: 20px;
        margin-bottom: 0;
    }
    .bp_first_screen_text_item_icon_area {
        width: 35px;
    }
    .bp_first_screen_text_wrap i {
        font-size: 25px;
    }
    .bp_first_screen_btn_wrap {
        text-align: center;
        margin-top: 30px;
        margin-bottom: 40px;
    }
}
@media screen and (min-width: 1200px) {
    .section_bp_first_screen {
        margin-top: 75px;
        padding-top: 35px;
    } 
    .bp_first_screen_t {
        margin-top: 30px;
        margin-bottom: 30px;
        text-align: center;
        font-weight: bold;
        line-height: 1.32;
        font-size: 34px;
    }
    .row .bp_first_screen_text_item {
        font-size: 16px;
        padding-right: 30px;
        margin-bottom: 0;
    }
    .bp_first_screen_text_item_icon_area {
        width: 40px;
    }
    .bp_first_screen_text_wrap i {
        font-size: 25px;
    }
    .bp_first_screen_btn_wrap {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 60px;
    }
}
/*
bp_first_screen
end
*/

/*
section_zhk_i_planirovki
*/
.section_zip .photogalereya_grid_item_photo_hover_text {
    /*
    font-size: 13px;
    */
    /*
    font-size: 12px;
    */
}
.zip_metro_wrap {
    margin-left: auto;
    margin-right: auto;
    display: flex;
}
.zip_metro_wrap_devyatkino {
    width: 125px;
}
.zip_metro_wrap_kupchino {
    width: 106px;
}
.zip_metro_wrap_dybenko {
    width: 138px;
}
.zip_metro_wrap_moskovskaya {
    width: 136px;
}
.zip_metro_wrap_chernaya_rechka {
    width: 148px;
}
.zip_metro_logo_area {
    width: 22px;
    height: 22px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 1px;
}
.zip_metro_logo_red {
    background: #d62a09;
}
.zip_metro_logo_blue {
    background: #14569d;
}
.zip_metro_logo_yellow {
    background: #ebb548;
}
.zip_metro_logo {
    width: 14px;
    margin: 0 0 5px 0;
}
.zip_f_list_block {
    margin-top: 50px;
    margin-left: -10px;
    margin-right: -10px;
}
.row .zip_f_list_item_wrap {
    padding-left: 10px;
    padding-right: 10px;
}
.row .zip_f_list_item_img_area {
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}
.row .zip_f_list_item {
    background: #ffffff;
    padding: 18px 10px 10px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%), 0 1px 4px 0 rgb(0 0 0 / 2%);
}
.row .zip_f_list_item_description {
    width: 220px;
    margin-left: auto;
    margin-right: auto;
}
.row .zip_f_list_item_t {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.row .zip_f_list_item_description_info {
    font-size: 13px;
    margin-left: -5px;
    margin-right: -5px;
    height: 40px;
    margin-bottom: 15px;
}
.row .zip_f_list_item_promo_area {
    text-align: left;
    height: 43px;
}
.row .zip_f_list_item_promo_icon {
    width: 35px;
}
.row .zip_f_list_item_promo_icon img {
    margin-top: -5px;
}
.row .zip_f_list_item_promo_text {
    font-size: 14px;
    color: #d62a09;
}
.row .zip_f_list_item_btn_wrap {
    margin-top: 10px;
    margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
    .zip_metro_logo_area {
        margin-top: -1px;
    }
    .zip_metro_logo {
        margin: 0 0 2px 0;
    }
    .row .zip_f_list_item_wrap {
        margin-bottom: 30px;
    }
    .row .zip_f_list_item {
        /*
        max-width: 400px;
        */
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .zip_f_list_item_img_area {
        width: 190px;
    }
    .row .zip_f_list_item_btn_wrap {
        margin-left: -19px;
        margin-right: -19px;
    }
    .row .zip_f_list_item_btn_wrap .b_link_lg {
        padding: 13px 15px;
    }
}
@media screen and (min-width: 481px) {
    .zip_metro_logo_area {
        margin-top: -1px;
    }
    .zip_metro_logo {
        margin: 0 0 2px 0;
    }
    .row .zip_f_list_item_wrap {
        margin-bottom: 30px;
    }
    .row .zip_f_list_item {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .zip_f_list_item_img_area {
        width: 190px;
    }
    .row .zip_f_list_item_btn_wrap {
        margin-left: -19px;
        margin-right: -19px;
    }
    .row .zip_f_list_item_btn_wrap .b_link_lg {
        padding: 13px 15px;
    }
}
@media screen and (min-width: 768px) {
    .zip_metro_logo_area {
        margin-top: 1px;
    }
    .zip_metro_logo {
        margin: 0 0 5px 0;
    }
    .row .zip_f_list_item_wrap {
        margin-bottom: 30px;
    }
    .row .zip_f_list_item {
        max-width: inherit;
    }
    .row .zip_f_list_item_img_area {
        width: 190px;
    }
    .row .zip_f_list_item_btn_wrap {
        margin-left: 0;
        margin-right: 0;
    }
    .row .zip_f_list_item_btn_wrap .b_link_lg {
        padding: 13px 35px;
    }
}
@media screen and (min-width: 992px) {
    .row .zip_f_list_item_wrap {
        margin-bottom: 0;
    }
    .row .zip_f_list_item_img_area {
        width: 190px;
    }
    .row .zip_f_list_item_description {
        width: 190px;
    }
    .row .zip_f_list_item_description_info {
        height: 47px;
        margin-bottom: 15px;
    }
    .row .zip_f_list_item_promo_icon {
        width: 31px;
    }
}
@media screen and (min-width: 1200px) {
    .row .zip_f_list_item_img_area {
        width: 220px;
    }
    .row .zip_f_list_item_description {
        width: 220px;
    }
    .row .zip_f_list_item_description_info {
        height: 40px;
        margin-bottom: 15px;
    }
    .row .zip_f_list_item_promo_icon {
        width: 35px;
    }
}
/*
section_zhk_i_planirovki
end
*/

/*
section_dokumentatsiya
*/
.sd_about {
    text-align: left;
    margin-bottom: 40px;
}
.sd_list {

}
.row .sd_list_item_wrap {

}
.row .sd_list_item {
    background: #ffffff;
    padding: 30px 30px 25px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%), 0 1px 4px 0 rgb(0 0 0 / 2%);
}
.row .sd_list_item_img_area {
    margin-bottom: 20px;
}
.row .sd_list_item_img_area img {
    width: 100%;
}
.row .sd_list_item_text_area {
    text-align: left;
}
.row .sd_list_item_t {
   font-weight: bold; 
   margin-bottom: 18px;
}
.row .sd_list_item_text {
    font-size: 14px;
}
.sd_list_item_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sd_list_item_text ul > li {
    margin-bottom: 10px;
}
.sd_list_item_text_item_icon {
    width: 18px;
    color: #a5a5a5;
    color: #b7b7b7;
}
.sd_list_item_text_item_icon_wrap {
    /* width: 25px; */
}
.row .sd_list_item_text_item_icon_area {
    margin-top: -2px;
}
.sd_list_item_text_item_icon_area .fa-circle {
    font-size: 7px;
}
.row .sd_list_item_text_item_text_area {

}
@media screen and (max-width: 480px) {
    .sd_about {
        font-size: 14px;
    }
    .row .sd_list_item_wrap {
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 481px) {
    .row .sd_list_item_wrap {
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 768px) {
    .sd_list {
        margin-bottom: 70px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .row .sd_list_item_wrap {
        margin-bottom: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    .row .sd_list_item {
        padding: 20px 20px 25px 20px;
        min-height: 615px;
    }
    .row .sd_list_item_t {
        font-size: 15px;
    }
    .row .sd_list_item_text {

    }
}
@media screen and (min-width: 992px) {
    .sd_list {
        margin-bottom: 70px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .sd_list_item_wrap {
        margin-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .row .sd_list_item {
        padding: 30px 30px 30px 30px;
        min-height: 531px;
    }
    .row .sd_list_item_t {
        font-size: 16px;
    }
    .row .sd_list_item_text {

    }
}
@media screen and (min-width: 1200px) {
    .sd_list {
        margin-bottom: 70px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .sd_list_item_wrap {
        margin-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .row .sd_list_item {
        padding: 30px 30px 35px 30px;
        min-height: 496px;
    }
    .row .sd_list_item_t {
        font-size: 16px;
    }
    .row .sd_list_item_text {
        min-height: 100px;
    }
    .row .sd_list_item_text_item_text_area {
        font-size: 14px;
    }
}
/*
section_dokumentatsiya
end
*/

/*
section_plusy
*/
.plusy_wrap {
    text-align: left;
    font-size: 15px;
}
.row .plusy_item {
    margin-bottom: 40px;
}
.row .plusy_item_img_area {

}
.row .plusy_item_img_area {

}
.row .plusy_item_photogalereya {

}
.row .plusy_pgi {
    width: 100%;
    height: 220px;
}
.row .plusy_item_text_wrap {

}
.section_btn_area {
    margin-top: 20px;
}
@media screen and (max-width: 480px) {
    .plusy_wrap {
        font-size: 14px;
        margin-left: -5px;
        margin-right: -5px;
    }
    .row .plusy_item {
        margin-bottom: 25px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .row .plusy_pgi {
        width: 100%;
        height: 170px;
    }
    .row .plusy_item_text_wrap {
        height: 75px;
    }
}
@media screen and (min-width: 481px) {
    .plusy_wrap {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row .plusy_item {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row .plusy_item_text_wrap {
        height: 45px;
    }
}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {

}
@media screen and (min-width: 1200px) {
    .plusy_wrap {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row .plusy_item {
        padding-left: 15px;
        padding-right: 15px;
    }
    .row .plusy_item_text_wrap {
        height: 45px;
    }
}
/*
section_plusy
end
*/

/*
section_arendatory
*/
.arendatory_list {
    margin-bottom: 70px;
}   
.row .arendatory_list_item_wrap {

}
.row .arendatory_list_item {
    background: #ffffff;
    padding: 25px 25px 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%), 0 1px 4px 0 rgb(0 0 0 / 2%);
}
.row .arendatory_list_item_img_area {
    /*
    margin-bottom: 15px;
    */
}
.row .arendatory_list_item_img_area img {
    /*
    width: 150px;
    */
}
.row .arendatory_item_photogalereya {

}
.row .arendatory_pgi {
    width: 100%;
    height: 190px;
}
.row .arendatory_list_item_text_area {
    text-align: left;
}
.row .arendatory_list_item_t {
   font-weight: bold; 
   margin-bottom: 18px;
}
.row .arendatory_list_item_text {
    font-size: 14px;
}
.arendatory_list_item_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.arendatory_list_item_text ul > li {
    margin-bottom: 10px;
}
.arendatory_list_item_text_item_icon {
    width: 18px;
    color: #a5a5a5;
    color: #b7b7b7;
}
.arendatory_list_item_text_item_icon_wrap {
    /* width: 25px; */
}
.row .arendatory_list_item_text_item_icon_area {
    margin-top: -2px;
}
.arendatory_list_item_text_item_icon_area .fa-circle {
    font-size: 7px;
}
.row .arendatory_list_item_text_item_text_area {

}
@media screen and (max-width: 480px) {
    .arendatory_list {
        margin-bottom: 30px;
    }
    .row .arendatory_list_item_wrap {
        margin-bottom: 30px;
    }
    .row .arendatory_item_photogalereya .photogalereya_grid_item {
        margin-left: 0;
        margin-right: 0;
    }
    .row .arendatory_list_item_img_area {
        margin: -25px -25px 0 -25px;
    }
    .row .arendatory_pgi {
        height: 220px;
    }
    .arendatory_pgi .photogalereya_grid_item_photo {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .arendatory_pgi .photogalereya_grid_item_photo_zoom_icon_wrap {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}
@media screen and (min-width: 481px) {
    .arendatory_list {
        margin-bottom: 30px;
    }
    .row .arendatory_list_item_wrap {
        margin-bottom: 30px;
    }
    .row .arendatory_item_photogalereya .photogalereya_grid_item {
        margin-left: 0;
        margin-right: 0;
    }
    .row .arendatory_list_item_img_area {
        margin: -25px -25px 0 -25px;
    }
    .row .arendatory_pgi {
        height: 240px;
    }
    .arendatory_pgi .photogalereya_grid_item_photo {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .arendatory_pgi .photogalereya_grid_item_photo_zoom_icon_wrap {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}
@media screen and (min-width: 768px) {
    .arendatory_list {
        margin-bottom: 50px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .arendatory_list_item_wrap {
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .row .arendatory_list_item_text {
        min-height: 210px;
    }
    .row .arendatory_list_item_img_area {
        margin: -25px -25px 0 -25px;
    }
    .row .arendatory_pgi {
        height: 200px;
    }
    .arendatory_pgi .photogalereya_grid_item_photo {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .arendatory_pgi .photogalereya_grid_item_photo_zoom_icon_wrap {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}
@media screen and (min-width: 992px) {
    .arendatory_list {
        margin-bottom: 70px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .row .arendatory_list_item_wrap {
        margin-bottom: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    .row .arendatory_list_item_img_area {
        margin: -25px -25px 0 -25px;
    }
    .row .arendatory_pgi {
        height: 160px;
    }
    .arendatory_pgi .photogalereya_grid_item_photo {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .arendatory_pgi .photogalereya_grid_item_photo_zoom_icon_wrap {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .row .arendatory_list_item_text {
        min-height: 185px;
    }
    .row .arendatory_list_item_text_item_text_area {
        font-size: 12px;
    }
    .row .arendatory_list_item_text_item_icon_area {
        margin-top: -5px;
    }
}
@media screen and (min-width: 1200px) {
    .arendatory_list {
        margin-bottom: 70px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .arendatory_list_item_wrap {
        margin-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .row .arendatory_list_item_img_area {
        margin: -25px -25px 0 -25px;
    }
    .row .arendatory_pgi {
        height: 190px;
    }
    .arendatory_pgi .photogalereya_grid_item_photo {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .arendatory_pgi .photogalereya_grid_item_photo_zoom_icon_wrap {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .row .arendatory_list_item_text {
        min-height: 210px;
    }
    .row .arendatory_list_item_text_item_text_area {
        font-size: 14px;
    }
    .row .arendatory_list_item_text_item_icon_area {
        margin-top: -2px;
    }
}
/*
section_arendatory
end
*/

/*
section_varianty_uchastkov
*/
.varianty_uchastkov_list {

}
.row .vu_list_item_wrap {

}
.row .vu_list_item {
    background: #ffffff;
    padding: 30px 30px 25px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%), 0 1px 4px 0 rgb(0 0 0 / 2%);
}
.row .vu_list_item_img_area {
    margin-bottom: 20px;
}
.row .vu_list_item_img_area img {
    /*
    width: 100%;
    */
}
.row .vu_list_item_text_area {
    text-align: left;
}
.row .vu_list_item_t {
   font-weight: bold; 
   margin-bottom: 18px;
}
.row .vu_list_item_text {
    font-size: 14px;
}
.row .vu_list_item_subt {
    font-weight: bold;
    margin-bottom: 12px;
}
.row .vu_list_item_text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
    .row .vu_list_item_wrap {
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 481px) {
    .row .vu_list_item_wrap {
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 768px) {
    .varianty_uchastkov_list {
        margin-bottom: 70px;
        margin-left: -10px;
        margin-right: -10px;
    }
    .row .vu_list_item_wrap {
        margin-bottom: 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    .row .vu_list_item {
        padding: 20px 20px 25px 20px;
    }
    .row .vu_list_item_t {
        font-size: 15px;
    }
    .row .vu_list_item_text {
        min-height: 180px;
    }
}
@media screen and (min-width: 992px) {
    .varianty_uchastkov_list {
        margin-bottom: 70px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .vu_list_item_wrap {
        margin-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .row .vu_list_item {
        padding: 30px 30px 30px 30px;
    }
    .row .vu_list_item_t {
        font-size: 16px;
    }
    .row .vu_list_item_text {
        min-height: 140px;
    }
}
@media screen and (min-width: 1200px) {
    .varianty_uchastkov_list {
        margin-bottom: 70px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .vu_list_item_wrap {
        margin-bottom: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .row .vu_list_item {
        padding: 30px 30px 35px 30px;
    }
    .row .vu_list_item_t {
        font-size: 16px;
    }
    .row .vu_list_item_text {
        min-height: 100px;
    }
    .row .vu_list_item_text_item_text_area {
        font-size: 14px;
    }
}

.row .vu_pgi {
    width: 100%;
    height: 190px;
}
.vu_pgi .photogalereya_grid_item_photo_zoom_icon_wrap {
    /*
    background: rgba(255, 172, 11, 0.5);
    */
    background: rgba(64, 108, 220, 0.7);
    border-radius: 50%;
    height: 3.2em;
    width: 3.2em;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -1.6em 0 0 -1.6em;
}
.vu_pgi .photogalereya_grid_item_photo_zoom_icon {
    height: 1.6em;
    width: 1.6em;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -0.7em 0 0 -0.7em;
}
@media screen and (max-width: 374px) {
    .row .vu_pgi {
        width: 100%;
        height: 160px;
    }
}
@media screen and (min-width: 375px) {
    .row .vu_pgi {
        width: 100%;
        height: 175px;
    }
}
@media screen and (min-width: 390px) {
    .row .vu_pgi {
        width: 100%;
        height: 185px;
    }
}
@media screen and (min-width: 400px) {
    .row .vu_pgi {
        width: 100%;
        height: 210px;
    }
}
@media screen and (min-width: 440px) {
    .row .vu_pgi {
        width: 100%;
        height: 230px;
    }
}
@media screen and (min-width: 481px) {
    .row .vu_pgi {
        width: 100%;
        height: 260px;
    }
}
@media screen and (min-width: 768px) {
    .row .vu_pgi {
        width: 100%;
        height: 120px;
    }
}
@media screen and (min-width: 992px) {
    .row .vu_pgi {
        width: 100%;
        height: 150px;
    }
}
@media screen and (min-width: 1200px) {
    .row .vu_pgi {
        width: 100%;
        height: 190px;
    }
}
/*
section_varianty_uchastkov
end
*/

/*
section_primer_proekta
*/
.row .pp_item_info_subt {
    font-weight: bold;
    margin-bottom: 10px;    
}
.row .pp_pgi {
    width: 100%;
    height: 273px;
}
.pp_pgi .photogalereya_grid_item_photo_zoom_icon_wrap {
    /*
    background: rgba(255, 172, 11, 0.5);
    */
    background: rgba(64, 108, 220, 0.7);
    border-radius: 50%;
    height: 3.2em;
    width: 3.2em;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -1.6em 0 0 -1.6em;
}
.pp_pgi .photogalereya_grid_item_photo_zoom_icon {
    height: 1.6em;
    width: 1.6em;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -0.7em 0 0 -0.7em;
}
@media screen and (max-width: 374px) {
    .row .pp_pgi {
        width: 100%;
        height: 175px;
    }
}
@media screen and (min-width: 375px) {
    .row .pp_pgi {
        width: 100%;
        height: 185px;
    }
}
@media screen and (min-width: 390px) {
    .row .pp_pgi {
        width: 100%;
        height: 195px;
    }
}
@media screen and (min-width: 400px) {
    .row .pp_pgi {
        width: 100%;
        height: 210px;
    }
}
@media screen and (min-width: 440px) {
    .row .pp_pgi {
        width: 100%;
        height: 230px;
    }
}
@media screen and (min-width: 481px) {
    .row .pp_pgi {
        width: 100%;
        height: 260px;
    }
}
@media screen and (min-width: 768px) {
    .row .pp_pgi {
        width: 100%;
        height: 210px;
    }
}
@media screen and (min-width: 992px) {
    .row .pp_pgi {
        width: 100%;
        height: 255px;
    }
}
@media screen and (min-width: 1200px) {
    .row .pp_pgi {
        width: 100%;
        height: 255px;
    }
}
/*
section_primer_proekta
end
*/

/*
section_gotovye_proekty
*/
.section_gotovye_proekty {
    /*
    padding-bottom: 0;
    */
    padding-bottom: 30px;
}
.gotovye_proekty_item {
    text-align: left;
    margin-bottom: 10px;
}
.gotovye_proekty_item_t {
    font-weight: bold;
    margin-bottom: 10px;
}
.gotovye_proekty_item_text {

}
.section_gotovye_proekty .my-photogalereya-grid {
    margin-bottom: 70px;
}
/*
section_gotovye_proekty
end
*/

/*
section_novye_proekty
*/
.section_novye_proekty {
    /*
    padding-top: 0;
    */
}
@media screen and (max-width: 480px) {
    .section_novye_proekty {
        /*
        padding-top: 0;
        */
    }
}
@media screen and (min-width: 481px) {
    .section_novye_proekty {
        /*
        padding-top: 0;
        */
    }
}
@media screen and (min-width: 768px) {
    .section_novye_proekty {
        /*
        padding-top: 0;
        */
    }
}
@media screen and (min-width: 992px) {
    .section_novye_proekty {
        /*
        padding-top: 0;
        */
    }
}
@media screen and (min-width: 1200px) {
    .section_novye_proekty {
        /*
        padding-top: 0;
        */
    }
}
/*
section_novye_proekty
end
*/

/*
section_arenda_s_vykupom
*/
.arenda_s_vykupom_wrap {
    position: relative;
    display: flex;
    border-radius: 10px;
    text-align: left;     
    /*
    background: #d0f4f2;
    background: #f1ebd6;
    background: #daebf2;
    background: linear-gradient(-45deg, #85C9C8, #D4FEE6, #E5FDC9);
    */
    background: #f9f3de;
}
.arenda_s_vykupom_text_area {
    width: 50%;
    padding: 32px;
}
.arenda_s_vykupom_t {
    font-weight: bold;
    font-size: 32px;
}
.arenda_s_vykupom_text {
    margin-top: 15px;
    margin-bottom: 25px;
}
.arenda_s_vykupom_img_area {
    width: 50%;
    position: relative;
}
.arenda_s_vykupom_img_area img {
    position: absolute;
    bottom: 0%;
    right: 0%;
    border-radius: 10px;
}
.arenda_s_vykupom_wrap_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 480px) {
    .arenda_s_vykupom_wrap {
        display: block;
    }
    .section_arenda_s_vykupom {
        padding-bottom: 0;
    }
    .arenda_s_vykupom_text_area {
        width: 100%;
        padding: 22px;
    }
    .arenda_s_vykupom_t {
        font-size: 20px;
    }
    .arenda_s_vykupom_img_area {
        width: 100%;
    }
    .arenda_s_vykupom_img_area img {
        position: inherit;
    }
}
@media screen and (min-width: 481px) {
    .arenda_s_vykupom_wrap {
        display: block;
    }
    .section_arenda_s_vykupom {
        padding-bottom: 0;
    }
    .arenda_s_vykupom_text_area {
        width: 100%;
        padding: 22px;
    }
    .arenda_s_vykupom_t {
        font-size: 20px;
    }
    .arenda_s_vykupom_img_area {
        width: 100%;
    }
    .arenda_s_vykupom_img_area img {
        position: inherit;
    }
}
@media screen and (min-width: 768px) {
    .arenda_s_vykupom_wrap {
        display: flex;
    }
    .section_arenda_s_vykupom {
        padding-bottom: 0;
    }
    .arenda_s_vykupom_text_area {
        width: 60%;
        padding: 26px;
    }
    .arenda_s_vykupom_t {
        font-size: 24px;
    }
    .arenda_s_vykupom_img_area {
        width: 40%;
    }
    .arenda_s_vykupom_img_area img {
        position: absolute;
    }
}
@media screen and (min-width: 992px) {
    .section_arenda_s_vykupom {
        padding-bottom: 0;
    }
    .arenda_s_vykupom_text_area {
        width: 55%;
        padding: 28px;
    }
    .arenda_s_vykupom_t {
        font-size: 30px;
    }
    .arenda_s_vykupom_img_area {
        width: 45%;
    }
}
@media screen and (min-width: 1200px) {
    .section_arenda_s_vykupom {
        padding-bottom: 0;
    }
    .arenda_s_vykupom_text_area {
        width: 50%;
        padding: 32px;
    }
    .arenda_s_vykupom_t {
        font-size: 32px;
    }
    .arenda_s_vykupom_img_area {
        width: 50%;
    }
}
/*
section_arenda_s_vykupom
end
*/

/*
section_video_o_komplekse
*/
.section_video_o_komplekse_text_wrap {
    text-align: left;
    margin-bottom: 30px;
}
.section_video_o_komplekse_video_wrap video {
    border-radius: 10px;
}
.row .section_video_o_komplekse_text_wrap_item {
    margin-bottom: 25px;
}
.video_o_komplekse_text_item_icon_area {

}
.video_o_komplekse_text_item_icon {

}
.video_o_komplekse_text_item_icon i {
    /*
    color: #ff9900;
    */
    color: #22a64c;
    font-size: 25px;
}
@media screen and (max-width: 480px) {
    .row .section_video_o_komplekse_text_wrap_column_left {
        margin-bottom: 30px;
    }
    .video_o_komplekse_text_item_icon_area {
        width: 37px;
    }
    .row .video_o_komplekse_text_item_icon {
        margin-top: -3px;
    }
    .video_o_komplekse_text_wrap i {
        font-size: 22px;
    }
}
@media screen and (min-width: 481px) {
    .row .section_video_o_komplekse_text_wrap_column_left {
        margin-bottom: 30px;
    }
    .video_o_komplekse_text_item_icon_area {
        width: 37px;
    }
    .row .video_o_komplekse_text_item_icon {
        margin-top: -3px;
    }
    .video_o_komplekse_text_wrap i {
        font-size: 22px;
    }
}
@media screen and (min-width: 768px) {
    .row .section_video_o_komplekse_text_wrap_column_left {
        margin-bottom: 0;
        padding-right: 0;
    }
    .row .section_video_o_komplekse_text_wrap_column_right {
        padding-left: 30px;
    }
    .video_o_komplekse_text_item_icon_area {
        width: 37px;
    }
    .row .video_o_komplekse_text_item_icon {
        margin-top: 0;
    }
    .video_o_komplekse_text_wrap i {
        font-size: 25px;
    }
    .video_o_komplekse_text_item_text_area {
        width: 180px;
    }

}
@media screen and (min-width: 992px) {
    .row .section_video_o_komplekse_text_wrap_column_left {
        margin-bottom: 0;
        padding-right: 20px;
    }
    .row .section_video_o_komplekse_text_wrap_column_right {
        padding-left: 20px;
    }
    .video_o_komplekse_text_item_icon_area {
        width: 35px;
    }
    .video_o_komplekse_text_wrap i {
        font-size: 25px;
    }
    .video_o_komplekse_text_item_text_area {
        width: 83.33333333%;
    }
}
@media screen and (min-width: 1200px) {
    .section_video_o_komplekse_text_wrap_item {
        height: 46px;
    }
    .video_o_komplekse_text_item_icon_area {
        width: 40px;
    }
    .video_o_komplekse_text_wrap i {
        font-size: 25px;
    }
}
/*
section_video_o_komplekse
end
*/

/*
section_banya
*/
.section_banya_about_wrap {
    text-align: left;
}
.row .section_banya_about_text_area {

}
.section_banya_time_text_area {
    margin-top: -15px;
    margin-bottom: 50px;
}
.row .section_banya_about_video_area video {
    border-radius: 10px;
    object-fit: cover;
    width: 300px;
    height: 400px;
}
.section_banya_benefits_wrap {
    text-align: left;
    margin-top: 75px;
}
.section_banya_benefits_item {
   margin-bottom: 30px; 
}
.section_banya_benefits_item_img_area img {
    border-radius: 10px;
}
.row .section_banya_benefits_item_t {
    font-weight: bold;
    margin-bottom: 18px;
}
@media screen and (max-width: 480px) {
    .section_banya_about_wrap {
        margin-bottom: 15px;
    }
    .row .section_banya_about_text_area {
        margin-bottom: 30px;
        font-size: 14px;
    }
    .row .section_banya_about_video_area {
        margin-bottom: 30px;         
    }
    .row .section_banya_about_video_area video {
        width: 100%;
        height: 500px;
    }
    .section_banya_benefits_wrap {
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .row .section_banya_benefits_item_text_area {
        padding-left: 10px;
    }
    .section_banya_benefits_item_t {
        font-size: 14px;
    }
    .section_banya_benefits_item_text {
        font-size: 13px;
    }
}
@media screen and (min-width: 481px) {
    .section_banya_about_wrap {
        margin-bottom: 15px;
    }
    .row .section_banya_about_text_area {
        margin-bottom: 30px;
        font-size: 14px;
    }
    .row .section_banya_about_video_area {
        margin-bottom: 30px;            
    }
    .row .section_banya_about_video_area video {
        width: 100%;
        height: 500px;
    }
    .section_banya_benefits_wrap {
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .row .section_banya_benefits_item_text_area {
        padding-left: 10px;
    }
    .section_banya_benefits_item_t {
        font-size: 14px;
    }
    .section_banya_benefits_item_text {
        font-size: 13px;
    }
}
@media screen and (min-width: 768px) {
    .section_banya_about_wrap {
        margin-bottom: 70px;
        background: #f4f6f6;
        padding: 30px 30px 70px 30px;
        border-radius: 10px;
    }
    .row .section_banya_about_text_area {
        margin-bottom: 0;
        padding-right: 30px;
        font-size: 16px;
    }
    .row .section_banya_about_video_area {
        margin-bottom: 0;            
    }
    .row .section_banya_about_video_area video {
        width: 100%;
        height: 616px;
    }
    .section_banya_benefits_wrap {
        margin-bottom: 45px;
    }
    .row .section_banya_benefits_item_text_area {
        padding-left: 15px;
    }
    .section_banya_benefits_item_t {
        font-size: 15px;
    }
    .section_banya_benefits_item_text {
        font-size: 14px;
    }
}
@media screen and (min-width: 992px) {
    .section_banya_about_wrap {
        margin-bottom: 75px;
    }
    .row .section_banya_about_video_area video {
        width: 100%;
        height: 525px;
    }
    .section_banya_benefits_wrap {
        margin-bottom: 60px;
    }
    .row .section_banya_benefits_item_text_area {
        padding-left: 20px;
    }
    .section_banya_benefits_item_t {
        font-size: 16px;
    }
    .section_banya_benefits_item_text {
        font-size: 15px;
    }
}
@media screen and (min-width: 1200px) {
    .section_banya_about_wrap {
        margin-bottom: 85px;
    }
    .row .section_banya_about_video_area video {
        width: 100%;
        height: 411px;
    }
    .section_banya_benefits_wrap {
        margin-bottom: 70px;
    }
    .section_banya_benefits_item {
       margin-bottom: 45px; 
    }
    .row .section_banya_benefits_item_text_area {
        padding-left: 25px;
    }
    .section_banya_benefits_item_t {
        font-size: 16px;
    }
    .section_banya_benefits_item_text {
        font-size: 16px;
    }
}
/*
section_banya
end
*/

/*
section_tip
*/
.section_tip_subt_icon {
    margin-left: 14px;
    margin-right: 14px;
}
.section_tip_subt_icon i {
    margin-right: 12px;
}
.section_tip_desc {
    text-align: left;
    /*
    margin-top: -30px;
    */
    margin-bottom: 30px;
    margin-top: -10px;
}
@media screen and (max-width: 480px) {
    .section_tip_desc {
        margin-top: -10px;
    }
}
@media screen and (min-width: 481px) {

}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {

}
@media screen and (min-width: 1200px) {

}
/*
section_tip
end
*/

/*
section_...
*/
@media screen and (max-width: 480px) {

}
@media screen and (min-width: 481px) {

}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {

}
@media screen and (min-width: 1200px) {

}
/*
section_...
end
*/

/*
benefits_and_pics_first_screen
*/
.section_benefits_and_pics_first_screen {
    background: #eeeeee;
    padding: 35px 0 100px 0;
    margin-top: 75px;
}
.section_benefits_and_pics_first_screen_two_columns_wrap {
    margin-bottom: 10px;
}
.section_benefits_and_pics_first_screen_t {
    /*
    font-family: 'Intro', sans-serif;
    */
    font-weight: bold;
    font-size: 36px;
    margin-top: 0;
}
.section_benefits_and_pics_first_screen_subt {
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
}
.row .section_benefits_and_pics_first_screen_ribbon_text_area {
    font-weight: bold;
    color: #ffffff;
    background: #6258a3;
    /*
    font-size: 16px;
    padding: 7px 0 5px 11px;
    */
    font-size: 15px;
    padding: 8px 0 5px 11px;
    height: 38px;
    width: auto;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.row .section_benefits_and_pics_first_screen_ribbon_right_corner {
    width: 0;
    height: 0;
    border-right: 13px solid transparent;
    border-top: 19px solid #6258a3;
    border-left: 13px solid #6258a3;
    border-bottom: 19px solid #6258a3;
}
.row .section_benefits_and_pics_first_screen_text_wrap {
    margin-top: 28px;
}
.section_benefits_and_pics_first_screen_text_wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.section_benefits_and_pics_first_screen_text_wrap ul > li {
    /*
    margin-bottom: 19px;
    */
    margin-bottom: 24px;
}
.section_benefits_and_pics_first_screen_list_item_icon {
    /*
    width: 50px;
    */
    width: 43px;
}
.section_benefits_and_pics_first_screen_list_item_icon img {
    margin-top: -5px;
    /*
    width: 35px;
    */
    width: 25px;
}
/*
.section_benefits_and_pics_first_screen_list_item_icon .metro_logo {
    width: 25px;
}
*/
.section_benefits_and_pics_first_screen_list_item_text_area {
    /*
    color: #6258a3;
    */
    font-size: 15px;
}
.row .section_benefits_and_pics_first_screen_btn_wrap {
    margin-bottom: 25px;
}
.section_benefits_and_pics_first_screen_img_columns {
    max-width: 665px;
}
.section_benefits_and_pics_first_screen_img_column_2 {
    text-align: right;
}
.section_benefits_and_pics_first_screen_img_column_1 img,
.section_benefits_and_pics_first_screen_img_column_2 img {
    margin-bottom: 27px;
    border-radius: 5px;
}
.row .section_benefits_and_pics_first_screen_flats_types_item_wrap {
    text-align: center;
    padding: 0 55px;
}
.section_benefits_and_pics_first_screen_flats_types_item {
    position: relative;
}
.row .section_benefits_and_pics_first_screen_flats_types_item_t {
    font-size: 18px;
    margin-bottom: 8px;
}
.row .section_benefits_and_pics_first_screen_flats_types_item_ploshad_text {
    margin-bottom: 5px;
}
.section_benefits_and_pics_first_screen_flats_types_item_t span,
.section_benefits_and_pics_first_screen_flats_types_item_ploshad_text span,
.section_benefits_and_pics_first_screen_flats_types_item_sdacha_text span {
    border-bottom: 1px dotted;
}
.section_benefits_and_pics_first_screen_flats_types_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.section_benefits_and_pics_first_screen_flats_types_item:hover span {
    color: #216cc6;
}

.row .section_benefits_and_pics_first_screen_promo_subt {

}
.row .section_benefits_and_pics_first_screen_promo_subt_icon {
    color: white;
    background: #d62a09;
    padding: 10px;
    text-align: center;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.row .section_benefits_and_pics_first_screen_promo_subt_text {
    width: auto;
    padding: 10px 15px 10px 12px;
    background: #f8d4d1;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.sbpfs_promo_subt_text_dotted {
    border-bottom: 2px dotted #d62a09;
}
@media screen and (max-width: 480px) {
    .section_benefits_and_pics_first_screen {
        margin-top: 100px;
        padding-top: 15px;
        padding-bottom: 40px;
    }
    .section_benefits_and_pics_first_screen_t {
        font-size: 22px;
    }
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-28_lg-28 {
        font-size: 19px;
    }    
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-25_lg-25 {
        font-size: 19px;
    }
    .section_benefits_and_pics_first_screen_subt {
        font-size: 16px;
    }
    .row .section_benefits_and_pics_first_screen_text_wrap {
        margin-top: 22px;
    }
    .section_benefits_and_pics_first_screen_list_item_text_area {
        font-size: 14px;
    }
    .section_benefits_and_pics_first_screen_list_item_icon {
        /*
        width: 43px;
        */
        width: 38px;
    }
    .row .section_benefits_and_pics_first_screen_img_column_1 {
        padding-right: 10px;
    }
    .row .section_benefits_and_pics_first_screen_img_column_2 {
        padding-left: 4px;
    }
    .section_benefits_and_pics_first_screen_img_column_1 img, .section_benefits_and_pics_first_screen_img_column_2 img {
        margin-bottom: 14px;
    }    
    .row .section_benefits_and_pics_first_screen_ribbon_text_area {
        height: 48px;
        padding: 5px 0 5px 11px;
        line-height: 18px;
        max-width: 265px;
    }
    .row .section_benefits_and_pics_first_screen_ribbon_right_corner {
        border-right: 16px solid transparent;
        border-top: 24px solid #6258a3;
        border-left: 16px solid #6258a3;
        border-bottom: 24px solid #6258a3;
    }
    .row .section_benefits_and_pics_first_screen_promo_subt_icon {
        height: 64px;
    }
    .row .section_benefits_and_pics_first_screen_promo_subt_text {
        height: 64px;
        max-width: 275px;
        font-size: 13px;
    }
    .section_benefits_and_pics_first_screen_btn_wrap .b_link_lg {
        padding: 13px 32px;
    }
    .section_benefits_and_pics_first_screen_btn_wrap_long_text .b_link_lg {
        padding: 13px 16px;
        font-size: 15px;
    }
    .row .section_benefits_and_pics_first_screen_flats_types_item_wrap {
        text-align: left;
        padding: 0 12px 0 12px;
        margin: 18px 0;
        font-size: 14px;
    }
    .row .section_benefits_and_pics_first_screen_flats_types_item_t {
        font-size: 16px;
    }
    .section_benefits_and_pics_first_screen_flats_types_item_ploshad_text span,
    .section_benefits_and_pics_first_screen_flats_types_item_sdacha_text span {
        border-bottom: none;
    }
}
@media screen and (min-width: 481px) {
    .second_nav_for_mob_navigation_items_wrap a {
        /*
        font-size: 14px;
        */
        /*
        font-size: 13px;
        margin-right: 25px;
        */
        font-size: 12px;
        margin-right: 20px;
    }
    .section_benefits_and_pics_first_screen {
        margin-top: 125px;
        padding-top: 15px;
        padding-bottom: 60px;
    }
    .section_benefits_and_pics_first_screen_t {
        font-size: 28px;
    }
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-28_lg-28 {
        font-size: 25px;
    }    
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-25_lg-25 {
        font-size: 25px;
    }
    /*
    В две строки:
    */
    .row .section_benefits_and_pics_first_screen_promo_subt_icon {
        height: 64px;
    }
    .row .section_benefits_and_pics_first_screen_promo_subt_text {
        height: 64px;
        /*
        max-width: 360px;
        */
        /*
        max-width: 365px;
        */
        max-width: 368px;
        margin-right: -5px;
    }
    /*
    В две строки
    end
    */
    .row .section_benefits_and_pics_first_screen_img_column_1 {
        padding-right: 10px;
    }
    .row .section_benefits_and_pics_first_screen_img_column_2 {
        padding-left: 4px;
    }
    .section_benefits_and_pics_first_screen_img_column_1 img,
    .section_benefits_and_pics_first_screen_img_column_2 img {
        margin-bottom: 14px;
    }  
    .section_benefits_and_pics_first_screen_btn_wrap_long_text .b_link_lg {
        padding: 13px 22px;
        font-size: 19px;
    }
    .row .section_benefits_and_pics_first_screen_flats_types_item_wrap {
        text-align: left;
        padding: 0 12px 0 12px;
        margin: 18px 0;
        font-size: 15px;
    }   
    .section_benefits_and_pics_first_screen_flats_types_item_ploshad_text span,
    .section_benefits_and_pics_first_screen_flats_types_item_sdacha_text span {
        border-bottom: none;
    }
}
@media screen and (min-width: 768px) {
    .navbar_with_menu .navbar_logo {
        /*
        margin-top: 0;
        */
    }
    .second_nav_for_mob {
        margin-top: 75px;
    }
    .second_nav_for_mob_navigation_items_wrap a {
        /*
        margin-right: 35px;
        */
        margin-right: 32px;
    }
    .section_benefits_and_pics_first_screen {
        margin-top: 115px;
        padding-top: 35px;
        padding-bottom: 80px;
    }
    .row .section_benefits_and_pics_first_screen_text_column {
        padding-right: 20px;
    }
    .section_benefits_and_pics_first_screen_t {
        font-size: 28px;
    }
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-28_lg-28 {
        font-size: 25px;
    }    
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-25_lg-25 {
        font-size: 25px;
    }
    .row .section_benefits_and_pics_first_screen_subt {
        font-size: 18px;
        padding-right: 20px;
    }
    .row .section_benefits_and_pics_first_screen_ribbon_text_area {
        font-size: 14px;
        padding: 9px 0 5px 11px;
    }
    .section_benefits_and_pics_first_screen_list_item_text_area {
        font-size: 14px;
    }
    .row .section_benefits_and_pics_first_screen_img_column_1 {
        /*
        padding-right: 10px;
        */
        padding-right: 0;
    }
    .row .section_benefits_and_pics_first_screen_img_column_2 {
        padding-left: 4px;
    }
    .section_benefits_and_pics_first_screen_img_column_1 img,
    .section_benefits_and_pics_first_screen_img_column_2 img {
        margin-bottom: 14px;
    }
    .section_benefits_and_pics_first_screen_btn_wrap_long_text .b_link_lg {
        padding: 13px 22px;
        font-size: 17px;
    }
    .row .section_benefits_and_pics_first_screen_flats_types_item_wrap {
        padding: 0 25px;
        text-align: center;
        margin: 0;
        font-size: 16px;
    }   
    .section_benefits_and_pics_first_screen_flats_types_item {
        font-size: 14px;
    }
    .row .section_benefits_and_pics_first_screen_flats_types_item_t {
        font-size: 16px;
    }
    .section_benefits_and_pics_first_screen_flats_types_item_ploshad_text span,
    .section_benefits_and_pics_first_screen_flats_types_item_sdacha_text span {
        border-bottom: 1px dotted;
    } 
}
@media screen and (min-width: 992px) {
    .navbar_with_menu_navigation_items_wrap a {
        /*
        margin-left: 20px;
        */
        margin-left: 22px;
        /*
        font-size: 14px;
        */
        /*
        font-size: 13px;
        */
        font-size: 12px;
    }
    .section_benefits_and_pics_first_screen {
        margin-top: 75px;
        padding-top: 35px;
        padding-bottom: 100px;
    }
    .section_benefits_and_pics_first_screen_t {
        font-size: 32px;
    }    
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-28_lg-28 {
        font-size: 28px;
    }    
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-25_lg-25 {
        font-size: 25px;
    }
    .row .section_benefits_and_pics_first_screen_subt {
        font-size: 20px;
    }
    .row .section_benefits_and_pics_first_screen_ribbon_text_area {
        font-size: 15px;
        padding: 8px 0 5px 11px;
    }
    .section_benefits_and_pics_first_screen_list_item_text_area {
        font-size: 15px;
    }
    .section_benefits_and_pics_first_screen_img_column_1 img,
    .section_benefits_and_pics_first_screen_img_column_2 img {
        margin-bottom: 18px;
    }
    .row .section_benefits_and_pics_first_screen_img_column_1 {
        /*
        padding-right: 18px;
        */
        padding-right: 17.91px;
    }
    .row .section_benefits_and_pics_first_screen_img_column_2 {
        padding-left: 0;
    }    
    .section_benefits_and_pics_first_screen_btn_wrap_long_text .b_link_lg {
        padding: 13px 22px;
        font-size: 18px;
    }
    .row .section_benefits_and_pics_first_screen_flats_types_item_wrap {
        padding: 0 40px;
    }
    .section_benefits_and_pics_first_screen_flats_types_item {
        font-size: 16px;
    }
    .row .section_benefits_and_pics_first_screen_flats_types_item_t {
        font-size: 18px;
    } 
}
@media screen and (min-width: 1200px) {
    .navbar_with_menu_navigation_items_wrap a {
        /*
        margin-left: 30px;
        */
        /*
        margin-left: 28px;
        */
        margin-left: 20px;
        /*
        font-size: 16px;
        */
        /*
        font-size: 15px;
        */
        /*
        font-size: 14px;
        */
        /*
        font-size: 13px;
        */
        font-size: 12px;
    }
    .section_benefits_and_pics_first_screen {
        margin-top: 75px;
        padding-top: 35px;
    }    
    .section_benefits_and_pics_first_screen_t {
        font-size: 36px;
    } 
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-28_lg-28 {
        font-size: 28px;
    }
    .first_screen_t_xsmax480-19_xsmin481-25_sm-25_md-25_lg-25 {
        font-size: 25px;
    }
    .row .section_benefits_and_pics_first_screen_ribbon_text_area {
        /*
        font-size: 16px;
        padding: 7px 0 5px 11px;
        */
        font-size: 15px;
        padding: 8px 0 5px 11px;

    }
    .section_benefits_and_pics_first_screen_img_column_1 img,
    .section_benefits_and_pics_first_screen_img_column_2 img {
        margin-bottom: 26px;
    }
    .row .section_benefits_and_pics_first_screen_img_column_2 {
        /*
        padding-left: 8px;
        */
        padding-left: 7.08px;
    }
    .section_benefits_and_pics_first_screen_btn_wrap_long_text .b_link_lg {
        padding: 13px 22px;
        font-size: 18px;
    }
    .row .section_benefits_and_pics_first_screen_flats_types_item_wrap {
        padding: 0 55px;
    }
}
/*
benefits_and_pics_first_screen
end
*/

/*
section_paket_garant
*/
.paket_garant__list_block {
    max-width: 1010px;
    margin-left: auto;
    margin-right: auto;
}
.row .paket_garant_item_wrap {
    padding: 20px 20px 20px 20px;
}
.row .paket_garant_item {
    /*
    border-radius: 4px;
    */
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    box-shadow: 0 2px 14px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.02);
    padding: 32px 32px 50px 32px;
    text-align: left;
}
.row .paket_garant_item:hover {
    background: #ffeebe;
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
}
.row .paket_garant_item:hover .paket_garant_item_t {
    /*
    color: #216cc6;
    border-bottom: 1px dotted;
    */
}
.row .paket_garant_item_icon {
    font-size: 28px;
    color: #d62a09;
    width: 28px;
    margin-right: 16px;
}
.row .paket_garant_item_icon .fa {
    color: #d62a09;
}
.row .paket_garant_item_t_area {
    font-size: 18px;
    font-weight: bold;
    margin-top: 7px;
}
.row .paket_garant_item_text {
    margin-top: 20px;
    margin-bottom: 30px;
    color: #838383;
}
.paket_garant_item_text_highlighted {
    font-weight: bold;
    /*
    border-bottom: double #d62a09;
    */
}
.paket_garant_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 480px) {
    .row .paket_garant_item_wrap {
        padding: 15px 10px 15px 10px;
    }
    .row .paket_garant_item_t_area {
        font-size: 16px;
        margin-top: 7px;
    }
    .row .paket_garant_item_text {
        height: auto;
        font-size: 14px;
    }
}
@media screen and (min-width: 481px) {
    .row .paket_garant_item_text {
        height: auto;
    }
}
@media screen and (min-width: 768px) {
    .row .paket_garant_item_wrap {
        padding: 10px 10px 10px 10px;
    }
    .row .paket_garant_item_t_area {
        height: 50px;
    }
    .row .paket_garant_item_text {
        /*
        height: 176px;
        */
        /*
        height: 326px;
        */
        height: 200px;
        font-size: 14px;
    }
}
@media screen and (min-width: 992px) {
    .row .paket_garant_item_wrap {
        padding: 20px 20px 20px 20px;
    }
    .row .paket_garant_item_t_area {
        /*
        height: auto;
        */
    }
    .row .paket_garant_item_text {
        /*
        height: 132px;
        */
        /*
        height: 237px;
        */
        height: 200px;
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px) {
    .row .paket_garant_item_text {
        /*
        height: 110px;
        */
        /*
        height: 215px;
        */
        height: 180px;
    }
}
/*
section_paket_garant
end
*/

/*
prognoz-rosta-tseny-unita
*/
.prognoz-rosta-tseny-unita_wrap {
   margin-top: 80px; 
}
.prognoz-rosta-tseny-unita_btn {
   margin-top: 50px; 
}
/*
prognoz-rosta-tseny-unita
end
*/

/*
section_preimushestva_apartamentov
*/
.preim_apartamentov_list_block {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 50px;
    max-width: 700px;
    background: #ffffff;
}
.preim_apartamentov_list_columns_t_block {
    /*
    border: 1px solid #edf4f7;
    */
    /*
    background: #f7f8fa;
    */
    border: solid 1px #d0d0d0;
    background: #f7f8fa;
}
.preim_apartamentov_list_item_wrap {
    position: relative;
    /*
    border-left: 1px solid #edf4f7;
    border-right: 1px solid #edf4f7;
    border-bottom: 1px solid #edf4f7;
    */
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
}
.preim_apartamentov_list_item {
    /*
    line-height: 50px;
    */
}
.row .preim_apartamentov_list_column_t {
    /*
    color: #636466;
    */
    font-weight: bold;
    padding: 18px 0;
}
.row .preim_apartamentov_list_column_content {
    text-align: left;
    padding: 18px 0;
}
.row .preim_apartamentov_list_column_content i {
    margin-right: 10px;
}
.pa_1_column, .pa_2_column, .pa_3_column {
    /*
    border-right: 1px solid #edf4f7;
    */
    border-right: solid 1px #d0d0d0;
}
.row .preim_apartamentov_list_item .pa_1_column {
    padding-left: 20px;
}
.row .preim_apartamentov_list_item .pa_2_column,
.row .preim_apartamentov_list_item .pa_3_column,
.row .preim_apartamentov_list_item .pa_4_column {
    padding-left: 40px;
}
.pa_icon_red {
    color: #bc0000;
}
.pa_icon_yellow {
    color: #fedb00;
}
.pa_icon_green {
    color: #86b503;
}
@media screen and (max-width: 480px) {
    .preim_apartamentov_list_block {
        font-size: 9px;
        margin-top: 40px;
    }
    .preim_apartamentov_list_item {
        /*
        line-height: 10px;
        */
    }
    .row .preim_apartamentov_list_column_content i {
        margin-right: 5px;
    }
    .row .preim_apartamentov_list_item .pa_1_column {
        padding-left: 7px;
    }
    .row .preim_apartamentov_list_item .pa_2_column,
    .row .preim_apartamentov_list_item .pa_3_column,
    .row .preim_apartamentov_list_item .pa_4_column {
        padding-left: 14px;
    }
    .row .preim_apartamentov_list_column_t {
        height: 60px;
    }
}
@media screen and (min-width: 481px) {
    .preim_apartamentov_list_block {
        font-size: 12px;
    }
    .row .preim_apartamentov_list_item .pa_2_column,
    .row .preim_apartamentov_list_item .pa_3_column,
    .row .preim_apartamentov_list_item .pa_4_column {
        padding-left: 20px;
    }
    .row .preim_apartamentov_list_column_t {
        height: 70px;
    }
}
@media screen and (min-width: 768px) {
    .preim_apartamentov_list_block {
        font-size: 16px;
    }
    .row .preim_apartamentov_list_item .pa_2_column,
    .row .preim_apartamentov_list_item .pa_3_column,
    .row .preim_apartamentov_list_item .pa_4_column {
        padding-left: 40px;
    }
    .row .preim_apartamentov_list_column_t {
        height: 80px;
    }
}
@media screen and (min-width: 992px) {
    .row .preim_apartamentov_list_column_t {
        height: 80px;
    }
}
@media screen and (min-width: 1200px) {
    .row .preim_apartamentov_list_column_t {
        height: 80px;
    }
}
/*
section_preimushestva_apartamentov
end
*/

.row .apartments_plannings_item_wrap {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 85px;
}
.row .apartments_plannings_item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    padding: 50px 20px 55px 20px;
}
.apartments_plannings_item:hover {
    background: #ffeebe;
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
}
.row .apartments_plannings_item_image_wrap {
    margin-bottom: 10px;
}
.apartments_plannings_item_text_wrap {
    
}
.row .apartments_plannings_item_t {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 8px 0;
}
.row .apartments_plannings_item_text_of_apartment_area {
    margin-bottom: 8px;
    font-size: 16px;
}
.row .apartments_plannings_item_text_new_price {
    margin-bottom: 15px;
    font-size: 16px;
}
.apartments_plannings_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.apartments_plannings_item:hover .b_link_orange {
    background: #f19907;
    border-color: #f19907;
}

/*
f_plannings_first_screen
*/
.section_f_plannings_first_screen {
    background: #1e59aa;
    padding-top: 0;
}
.f_plannings_first_screen_advantages {
    margin-bottom: 20px;
}
.f_plannings_first_screen_advantages_item {
    background: #22a64c;
    color: #fff;
    /*
    padding: 3px 8px 4px 8px;
    */
    padding: 4px 9px 5px 9px;
    border-radius: 3px;
    font-size: 17px;
    margin-left: 1px;
    margin-right: 1px;
}
.row .f_plannings_first_screen_item_wrap {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 25px;
}
.row .f_plannings_first_screen_item {
    background: #ffffff;
    border-radius: 5px;
    /*
    padding: 20px 20px 25px 20px;
    */
    padding: 20px;
}
.row .f_plannings_first_screen_item_img_wrap {
    /*
    max-width: 200px;
    */
    margin-left: auto;
    margin-right: auto;
}
.row .f_plannings_first_screen_item_description {
    margin-top: 20px;
}
.row .f_plannings_first_screen_item_t {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
}
.row .f_plannings_first_screen_item_description_info {
    color: #777;
    /*
    margin-bottom: 20px;
    text-align: left;
    */
    margin-bottom: 5px;
}
.row .f_plannings_first_screen_item_btn_wrap {
    /*
    margin-top: 20px;
    */
    margin-top: 16px;
}
.f_plannings_first_screen_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.f_plannings_first_screen_item:hover {
    background: #ffeebe;
    /*
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
    */
    /*
    box-shadow: inset 0 0 0 1px #5da5e3, 0 0 0 2px #ffeebe;
    */
    box-shadow: inset 0 0 0 1px #ffeebe, inset 0 0 0 2px #5da5e3;
    cursor: pointer;
}
.f_plannings_first_screen_item:hover .b_link_orange {
    background: #f19907;
    border-color: #f19907;
}
.f_plannings_modal_content {
    padding: 10px 25px 25px 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.f_plannings_modal_img_wrap {
    /*
    height: 250px;
    */
    margin: 20px 0 35px 0;
}
.f_plannings_modal_t {
    font-size: 24px;
    margin-top: 12px;
}
.f_plannings_modal_agreement_text {
    color: #333333;
    margin-bottom: 15px;
    position: static;
    /*
    font-size: 10px;
    opacity: .7;
    */
    font-size: 9px;
    opacity: .5;
    line-height: 1.0;
    font-weight: normal;
}
.f_plannings_modal_agreement_text a {
    color: #333333;
}
.f_plannings_modal_cta_text_1 {
    margin-top: 20px;
    margin-bottom: 5px;
    /*
    font-weight: bold;
    font-size: 17px;
    */
    text-align: left;
    font-size: 20px;
}
.f_plannings_modal_cta_text_2 {
    margin-bottom: 15px;
    text-align: left;
}
.f_plannings_modal_btn_wrap {
    margin-top: 15px;
    margin-bottom: 10px;
}
.f_plannings_modal_btn_wrap .btn {
    width: 100%;
}
.big_form_item .form-control {
    height: 44px;
    font-size: 16px;
}
.blue_form_item .form-control {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
.blue_form_item .form-control::-webkit-input-placeholder { /* Chrome */
    color: #555;
}
.blue_form_item .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #555;
}
.blue_form_item .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #555;
    opacity: 1;
}
.blue_form_item .form-control:-moz-placeholder { /* Firefox 4 - 18 */
    color: #555;
    opacity: 1;
}
.blue_form_item .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
.orange_form_item .form-control {
    border: .15em solid #ffd21c;
    -webkit-box-shadow: 0 0 1em 0.1em rgba(255,222,39,0.25);
    -moz-box-shadow: 0 0 1em .1em rgba(255,222,39,0.25);
    box-shadow: 0 0 1em 0.1em rgba(255,222,39,0.25);
}
.orange_form_item .form-control::-webkit-input-placeholder { /* Chrome */
    color: #555;
}
.orange_form_item .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #555;
}
.orange_form_item .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #555;
    opacity: 1;
}
.orange_form_item .form-control:-moz-placeholder { /* Firefox 4 - 18 */
    color: #555;
    opacity: 1;
}
.orange_form_item .form-control:focus {
    border: .15em solid #ffd21c;
    -webkit-box-shadow: 0 0 1em 0.1em rgba(255,222,39,0.25);
    -moz-box-shadow: 0 0 1em .1em rgba(255,222,39,0.25);
    box-shadow: 0 0 1em 0.1em rgba(255,222,39,0.25);
}
.modal_close_text {
    font-weight: normal;
    /*
    font-size: 10px;
    opacity: .4;
    */
    font-size: 9px;
    opacity: .3;
}
.modal_close_text:focus, .modal_close_text:hover {
    opacity: .4;
}
@media screen and (max-width: 480px) {
    .section_f_plannings_first_screen {
        padding-top: 0;
    }
}
@media screen and (min-width: 481px) {
    .section_f_plannings_first_screen {
        padding-top: 0;
    }
}
@media screen and (min-width: 768px) {
    .section_f_plannings_first_screen {
        padding-top: 0;
    }
}
@media screen and (min-width: 992px) {
    .section_f_plannings_first_screen {
        padding-top: 0;
    }
    .section_f_plannings_first_screen h1 {
        margin-top: 0;
    }
}
@media screen and (min-width: 1200px) {
    .section_f_plannings_first_screen {
        padding-top: 0;
    }
    .section_f_plannings_first_screen h1 {
        margin-top: 0;
    }
}
/*
f_plannings_first_screen
end
*/

/*
section_planirovki (kontseptsiya) 
*/
.kontseptsiya_content {
    text-align: left;
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #eaeaea;
    padding: 100px;
}
.row .kontseptsiya_content_img_wrap {
    padding-right: 18px;
}
.row .photoplan_mark {
    position: absolute;
    color: #333;
    background: #f5f5f5;
    font-size: 11px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 22px 6px;
    line-height: 13px;
    text-align: center;
}
.row .tooltip-inner {
    padding: 3px 8px;
}
.photoplan_mark_link {
    /* color: #ffffff; */
    /* background: #f8b200; */
    /* border-color: #f8b200; */
}
.photoplan_mark_link:hover, .photoplan_mark_link:focus, .photoplan_mark_link.focus, .photoplan_mark_link:active, .photoplan_mark_link.active {
    color: #ffffff;
    text-decoration: none;
    background: #f1ae06;
    border-color: #f1ae06;
}
.row .photoplan_mark_spalnaya_zona {
    top: 25%;
    left: 3%;
}
.row .photoplan_mark_shtory {
    top: 2%;
    left: 50%;
}
.row .photoplan_mark_stol {
    top: 14%;
    left: 74%;
    padding-top: 17px;
}
.row .photoplan_mark_ul_odezhda {
    top: 59%;
    left: 79%;
    padding-top: 17px;
}
.row .photoplan_mark_garderob {
    top: 87%;
    left: 52%;
    padding-top: 17px;
}
.row .photoplan_mark_sanuzel {
    top: 83%;
    left: 8%;
    padding-top: 17px;
}
.row .photoplan_mark_obedennaya_zona {
    top: 45%;
    left: 19%;
}
.row .kontseptsiya_content_text_wrap {
    padding-left: 18px;
}
.row .kontseptsiya_content_text_area {
    margin-bottom: 35px;
    /*
    border: 2px solid #eee;
    padding: 22px 24px;
    background: #eeeeee;
    */
    font-size: 24px;
}
.kontseptsiya_content_text_area_highlighted_text {
    background: #fff2c0;
}
.row .kontseptsiya_content_list_area {
    margin-bottom: 35px;
}
.row .kontseptsiya_content_list_area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.row .kontseptsiya_content_list_area ul > li {
    margin-bottom: 25px;
}
.kontseptsiya_content_list_item_icon {
    width: 26px;
    color: #d62a09;
}
.row .kontseptsiya_content_list_item_icon_area {
    margin-top: -3px;
}
.kontseptsiya_content_list_item_icon_area .fa-circle {
    font-size: 8px;
}
@media screen and (max-width: 480px) {
    .kontseptsiya_content {
        border: none;
        padding: 0;
    }
    .row .kontseptsiya_content_img_wrap {
        padding-right: 0;
    }
    .row .photoplan_mark_ul_odezhda {
        left: 76%;
    }
    .row .photoplan_mark_garderob {
        top: 86%;
        left: 51%;
    }
    .row .kontseptsiya_content_text_wrap {
        padding-left: 0;
        margin-top: 35px;
    }
    .row .kontseptsiya_content_text_area {
        font-size: 20px;
    }
    .kontseptsiya_content_list_item_icon {
        width: 25px;
    }
}
@media screen and (min-width: 481px) {
    .kontseptsiya_content {
        padding: 20px;
    }
    .row .kontseptsiya_content_img_wrap {
        padding-right: 0;
    }
    .row .kontseptsiya_content_text_wrap {
        padding-left: 0;
        margin-top: 35px;
    }
    .row .kontseptsiya_content_text_area {
        font-size: 20px;
    }
}
@media screen and (min-width: 768px) {
    .kontseptsiya_content {
        padding: 20px;
    }
    .row .kontseptsiya_content_img_wrap {
        padding-right: 13px;
    }
    .row .photoplan_mark_ul_odezhda {
        left: 74%;
    }
    .row .photoplan_mark_garderob {
        left: 47%;
    }
    .row .kontseptsiya_content_text_wrap {
        padding-left: 13px;
        margin-top: 0;
    }
    .row .kontseptsiya_content_text_area {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .row .kontseptsiya_content_list_area ul > li {
        margin-bottom: 20px;
    }
    .row .kontseptsiya_content_list_area {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 992px) {
    .kontseptsiya_content {
        padding: 42px;
    }
    .row .kontseptsiya_content_img_wrap {
        padding-right: 18px;
    }
    .row .photoplan_mark_ul_odezhda {
        left: 79%;
    }
    .row .photoplan_mark_garderob {
        left: 52%;
    }
    .row .kontseptsiya_content_text_wrap {
        padding-left: 18px;
    }
    .row .kontseptsiya_content_text_area {
        font-size: 24px;
        margin-bottom: 35px;
    }
    .row .kontseptsiya_content_list_area ul > li {
        margin-bottom: 25px;
    }
    .row .kontseptsiya_content_list_area {
        margin-bottom: 35px;
    }
}
@media screen and (min-width: 1200px) {
    .kontseptsiya_content {
        padding: 100px;
    }
}
/*
section_planirovki (kontseptsiya)
end
*/

/*
section_dohodnost
*/
.row .programma_dohodnosti_wrap {
    padding: 0 20px;
}
.row .programma_dohodnosti {
    position: relative;
    background: #ffffff;
    text-align: left;
    padding: 28px 35px 35px 35px;
    border: 1px solid #eaeaea;
}
.programma_dohodnosti:hover {
    background: #ffeebe;
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
}
.row .programma_dohodnosti_t {
    font-size: 26px;
    font-weight: bold;
    color: #d62a09;
    margin-bottom: 2px;
    text-align: center;
}
.row .programma_dohodnosti_text_area {
    margin-bottom: 45px;
}
.row .programma_dohodnosti_text_item {
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
    font-size: 18px;
}
.row .programma_dohodnosti_text_item_first {
    border-top: none;
    color: #838383;
    font-size: 16px;
}
.programma_dohodnosti_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.row .programma_dohodnosti_text_item_label {
    color: #838383;
    font-size: 14px;
    margin-top: 3px;
}
.row .programma_dohodnosti_btn_area {
    text-align: center;
    margin-bottom: 30px;
}
.dohodnost_discl {
    margin-top: 40px;
    font-size: 13px;
    color: #a5a5a5;
}
@media screen and (max-width: 480px) {
    .row .programma_dohodnosti_wrap {
        padding: 0;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .row .programma_dohodnosti_t {
        font-size: 20px;
    }
    .row .programma_dohodnosti_text_item {
        font-size: 16px;
    }
    .row .programma_dohodnosti_text_item_label {
        font-size: 13px;
        padding-right: 10px;
        margin-top: 2px;
    }
}
@media screen and (min-width: 481px) {
    .row .programma_dohodnosti_wrap {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .row .programma_dohodnosti_t {
        font-size: 22px;
    }
}
@media screen and (min-width: 768px) {
    .row .programma_dohodnosti_wrap {
        margin-top: 0;
        margin-bottom: 0;
        padding: 0 10px;
    }
    .row .programma_dohodnosti_t {
        font-size: 24px;
    }
    .row .programma_dohodnosti_text_item {
        font-size: 17px;
    }
    .row .programma_dohodnosti_text_item_first {
        font-size: 15px;
    }
    .row .programma_dohodnosti_text_item_label {
        padding-right: 10px;
    }
}
@media screen and (min-width: 992px) {
    .dohodnost_content {
        max-width: 770px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .programma_dohodnosti_wrap {
        padding: 0 15px;
    }
    .row .programma_dohodnosti_t {
        font-size: 26px;
    }
    .row .programma_dohodnosti_text_item {
        font-size: 16px;
    }
    .row .programma_dohodnosti_text_item_first {
        font-size: 16px;
    }
    .row .programma_dohodnosti_text_item_label {
        margin-top: 2px;
    }
}
@media screen and (min-width: 1200px) {
    .dohodnost_content {
        /*
        max-width: 1100px;
        */
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .programma_dohodnosti_wrap {
        padding: 0 20px;
    }
    .row .programma_dohodnosti_text_item {
        font-size: 18px;
    }
    .row .programma_dohodnosti_text_item_label {
        margin-top: 3px;
    }
}
/*
section_dohodnost
end
*/

/*
section_otdelka (photogalereya)
*/
.section_photogalereya_about_zhk_text {
    text-align: left;
    margin-bottom: 30px;
}
.chistovaya_otdelka_dot_icon {
    /*
    color: #d62a09;
    */
    color: #a5a5a5;
}
.section_tip_doh_wrap {

}
.section_tip_doh_area {
    text-decoration: underline #22a64c;;
}
.section_photogalereya_promo_wrap {
    margin-bottom: 30px;
    text-align: left;
    border-radius: 8px;
    border: 1px dashed #ccc;
    padding: 20px;
}
.row .section_photogalereya_promo_icon {
    width: 43px;
}
.row .section_photogalereya_promo_icon img {
    margin-top: -5px;
}
.row .section_photogalereya_promo_text {
    font-size: 15px;
    /*
    color: #d62a09;
    */
}
.section_photogalereya_video_wrap {
    position: relative;
    padding-bottom: 56.25%;
    /*
    padding-top: 30px;
    */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}
.section_photogalereya_video_wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.otdelka_section_button_wrap {
    margin-top: 70px;
}
.photogalereya_grid {
    margin-right: -10px;
    margin-bottom: 100px;
}
.photogalereya_grid_item {
    position: relative;
    display: inline-block;
    height: 354px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.photogalereya_grid_item_photo {
    background-position: center;
    background-size: cover;
    background-color: #ccc;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    transition: opacity .2s;
    border-radius: 5px;
}
.photogalereya_grid_item_photo_zoom_icon_wrap {
    /*
    background: rgba(0,0,0,.5);
    */
    /*
    background: rgba(0,0,0,.3);
    */
    background: rgba(130, 66, 9, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 5px;
}
.photogalereya_grid_item_photo_zoom_icon_area {
    width: 100%;
    height: 100%;
    text-align: center;
    left: 50%;
    top: 50%;
}
.photogalereya_grid_item_photo_zoom_icon {
    height: 2em;
    width: 2em;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -1em 0 0 -1em;
}
.photogalereya_grid_item_photo:hover {
    /*
    -webkit-filter: saturate(1.5);
    */
}
.photogalereya_grid_item_photo .photogalereya_grid_item_photo_zoom_icon_wrap {
    display:none;
}
.photogalereya_grid_item_photo:hover .photogalereya_grid_item_photo_zoom_icon_wrap {
    display:block;
}
.photogalereya_grid_item_photo_hover_text {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0%;
    color: #ffffff;
    padding: 50px 8px 8px 8px;
    /*
    font-size: 14px;
    */
    font-size: 13px;
    background: rgba(0, 0, 0, 0.01);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.8));
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.8));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.8));
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
}
.photogalereya_grid_item_photo .photogalereya_grid_item_photo_hover_text {
    display:none;
}
.photogalereya_grid_item_photo:hover .photogalereya_grid_item_photo_hover_text {
    display:block;
}
.photogalereya_grid_item figcaption {
    display: flex;
    display: none;
}
.zip_photogalereya_grid_item_photo_zoom_icon_wrap {
    background: none;
}
.zip_photogalereya_grid_item_photo_zoom_icon_area {
    background: rgba(255, 172, 11, 0.5);
    border-radius: 50%;
    height: 3.2em;
    width: 3.2em;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -1.6em 0 0 -1.6em;
}
.zip_photogalereya_grid_item_photo_zoom_icon {
    height: 1.6em;
    width: 1.6em;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -0.7em 0 0 -0.7em;
}
.pgi_display_none {
    display: none;
}
.pgi_1 {
    width: 370px
}
.pgi_2 {
    width: 440px
}
.pgi_3 {
    width: 310px
}
.pgi_4 {
    width: 340px
}
.pgi_5 {
    width: 370px
}
.pgi_6 {
    width: 410px
}
@media screen and (max-width: 480px) {
    .section_otdelka {
        padding-bottom: 30px;
    }
    .photogalereya_grid {
        /*
        При @media screen and (max-width: 480px):
        Общая ширина сетки не имеет значения,
        так как фотки размещаем в 2 колонки 
        (каждое фото занимает 48% + по 1% отступ слева и справа) 
        */
        margin-left: -1%;
        margin-right: -1%;
    }
    .photogalereya_grid_item {
        /*
        height: 198px;
        */
        height: 132px;
        margin-left: 1%;
        margin-right: 1%;
        margin-bottom: 2%;
    }
    .pgi_1 {
        width: 48%;
    }
    .pgi_2 {
        width: 48%;
    }
    .pgi_3 {
        width: 48%;
    }
    .pgi_4 {
        width: 48%;
    }
    .pgi_5 {
        width: 48%;
    }
    .pgi_6 {
        width: 48%;
    }
    .pgi_7 {
        width: 48%;
    }
    .pgi_8 {
        width: 48%;
    }
    .section_otdelka figcaption {
        /*
        font-size: 10px;
        */
    }
    .otdelka_section_button_wrap {
        margin-top: 35px;
    }   
    .photogalereya_grid_item figcaption {
        font-size: 14px;
    }
    .section_photogalereya_about_zhk_text {
    	font-size: 14px;
    	line-height: 1.9;
    }
    .chistovaya_otdelka_dot_icon {
        /*
	    color: #d62a09;
        */
        color: #22a64c;
	    margin-right: 5px;
    	font-size: 15px;
	}
}
@media screen and (min-width: 481px) {
    .section_otdelka {
        padding-bottom: 35px;
    }
    .photogalereya_grid {
        /*
        При @media screen and (min-width: 768px):
        Общая ширина сетки не имеет значения,
        так как фотки размещаем в 2 колонки 
        (каждое фото занимает 48% + по 1% отступ слева и справа) 
        */
        margin-left: -1%;
        margin-right: -1%;
    }
    .photogalereya_grid_item {
        /*
        height: 260px;
        */
        height: 193px;
        margin-left: 1%;
        margin-right: 1%;
        margin-bottom: 2%;
    }
    .pgi_1 {
        width: 48%;
    }
    .pgi_2 {
        width: 48%;
    }
    .pgi_3 {
        width: 48%;
    }
    .pgi_4 {
        width: 48%;
    }
    .pgi_5 {
        width: 48%;
    }
    .pgi_6 {
        width: 48%;
    }
    .pgi_7 {
        width: 48%;
    }
    .pgi_8 {
        width: 48%;
    }
    .section_photogalereya_about_zhk_text {
    	font-size: 14px;
    	line-height: 1.9;
    }
    .chistovaya_otdelka_dot_icon {
        /*
	    color: #d62a09;
        */
        color: #22a64c;
	    margin-right: 5px;
    	font-size: 15px;
	}
}
@media screen and (min-width: 768px) {
    .section_otdelka {
        padding-bottom: 45px;
    }
    .photogalereya_grid {
        /*
        При @media screen and (min-width: 768px):
        Общая ширина сетки = 720px + доп. margin-right
        */
        margin-left: 0;
        margin-right: -10px;
    }
    .photogalereya_grid_item {
        /*
        height: 354px;
        */
        height: 236px;
        margin-left: 0;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .pgi_1 {
        width: 355px;
    }
    .pgi_2 {
        width: 355px;
    }
    .pgi_3 {
        width: 355px;
    }
    .pgi_4 {
        width: 355px;
    }
    .pgi_5 {
        width: 355px;
    }
    .pgi_6 {
        width: 355px;
    }
    .pgi_7 {
        width: 355px;
    }
    .pgi_8 {
        width: 355px;
    }
    .section_photogalereya_about_zhk_text {
    	font-size: 16px;
    	line-height: 1.6;
    }
    .chistovaya_otdelka_dot_icon {
	    color: #a5a5a5;
	    margin-right: 0;
    	font-size: 16px;
	}
}
@media screen and (min-width: 992px) {
    .section_otdelka {
        padding-bottom: 60px;
    }
    .photogalereya_grid {
        /*
        При @media screen and (min-width: 992px):
        Общая ширина сетки = 940px + доп. margin-right
        */
        margin-right: -10px;
    }
    .photogalereya_grid_item {
        /*
        height: 292px;
        */
        height: 150px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .pgi_1 {
        width: 225px;
    }
    .pgi_2 {
        width: 225px;
    }
    .pgi_3 {
        width: 225px;
    }
    .pgi_4 {
        width: 225px;
    }
    .pgi_5 {
        width: 225px;
    }
    .pgi_6 {
        width: 225px;
    }
    .pgi_7 {
        width: 225px;
    }
    .pgi_8 {
        width: 225px;
    }
}
@media screen and (min-width: 1200px) {
    .section_otdelka {
        padding-bottom: 60px;
    }
    .photogalereya_grid {
        /*
        При @media screen and (min-width: 1200px):
        Общая ширина сетки = 1140px + доп. margin-right
        */
        margin-right: -10px;
    }
    .photogalereya_grid_item {
        /*
        height: 354px;
        */
        height: 185px;
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .pgi_1 {
        width: 277.5px;
    }
    .pgi_2 {
        width: 277.5px;
    }
    .pgi_3 {
        width: 277.5px;
    }
    .pgi_4 {
        width: 277.5px;
    }
    .pgi_5 {
        width: 277.5px;
    }
    .pgi_6 {
        width: 277.5px;
    }
    .pgi_7 {
        width: 277.5px;
    }
    .pgi_8 {
        width: 277.5px;
    }
}
/*
section_otdelka (photogalereya)
end
*/

/*
section_mop (photogalereya)
*/
.mop_pgi_1 {
    width: 370px
}
.mop_pgi_2 {
    width: 440px
}
.mop_pgi_3 {
    width: 310px
}
.mop_pgi_4 {
    width: 340px
}
.mop_pgi_5 {
    width: 370px
}
.mop_pgi_6 {
    width: 410px
}
@media screen and (max-width: 480px) {
    /*
    При @media screen and (max-width: 480px):
    Общая ширина сетки не имеет значения,
    так как фотки размещаем в 2 колонки 
    (каждое фото занимает 48% + по 1% отступ слева и справа) 
    */
    .mop_pgi_1 {
        width: 48%;
    }
    .mop_pgi_2 {
        width: 48%;
    }
    .mop_pgi_3 {
        width: 48%;
    }
    .mop_pgi_4 {
        width: 48%;
    }
    .mop_pgi_5 {
        width: 48%;
    }
    .mop_pgi_6 {
        width: 48%;
    }
}
@media screen and (min-width: 481px) {
    /*
    При @media screen and (min-width: 768px):
    Общая ширина сетки не имеет значения,
    так как фотки размещаем в 2 колонки 
    (каждое фото занимает 48% + по 1% отступ слева и справа) 
    */
    .mop_pgi_1 {
        width: 48%;
    }
    .mop_pgi_2 {
        width: 48%;
    }
    .mop_pgi_3 {
        width: 48%;
    }
    .mop_pgi_4 {
        width: 48%;
    }
    .mop_pgi_5 {
        width: 48%;
    }
    .mop_pgi_6 {
        width: 48%;
    }
}
@media screen and (min-width: 768px) {
    /*
    При @media screen and (min-width: 768px):
    Общая ширина сетки = 720px + доп. margin-right = 10 px
    */
    .mop_pgi_1 {
        width: 355px;
    }
    .mop_pgi_2 {
        width: 355px;
    }
    .mop_pgi_3 {
        width: 290px;
    }
    .mop_pgi_4 {
        width: 420px;
    }
    .mop_pgi_5 {
        width: 420px;
    }
    .mop_pgi_6 {
        width: 290px;
    }
}
@media screen and (min-width: 992px) {
    /*
    При @media screen and (min-width: 992px):
    Общая ширина сетки = 940px + доп. margin-right = 10 px
    */
    .mop_pgi_1 {
        width: 304px;
    }
    .mop_pgi_2 {
        width: 327px;
    }
    .mop_pgi_3 {
        width: 289px;
    }
    .mop_pgi_4 {
        width: 378px;
    }
    .mop_pgi_5 {
        width: 337px;
    }
    .mop_pgi_6 {
        width: 205px;
    }
}
@media screen and (min-width: 1200px) {
    /*
    При @media screen and (min-width: 1200px):
    Общая ширина сетки = 1140px + доп. margin-right = 10 px
    */
    .mop_pgi_1 {
        width: 370px;
    }
    .mop_pgi_2 {
        width: 400px;
    }
    .mop_pgi_3 {
        width: 350px;
    }
    .mop_pgi_4 {
        width: 460px;
    }
    .mop_pgi_5 {
        width: 410px;
    }
    .mop_pgi_6 {
        width: 250px;
    }
}
/*
section_mop (photogalereya)
end
*/

/*
section_benefits_and_pics_first_screen_img_grid (photogalereya)
*/
.section_benefits_and_pics_first_screen_img_grid {
    display: grid;
    grid-template-columns: 370px 270px;
    grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                        8px 8px 8px 8px 8px 8px 8px;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}
.sbapfs_ig_item_1 {
    grid-row-start: 1;
    grid-row-end: 8;
    height: auto;
    width: auto;
    margin-right: 0;
    margin-bottom: 0;
}
.sbapfs_ig_item_2 {
    grid-row-start: 1;
    grid-row-end: 10;
    height: auto;
    width: auto;
    margin-right: 0;
    margin-bottom: 0;
}
.sbapfs_ig_item_3 {
    grid-row-start: 8;
    grid-row-end: 18;
    height: auto;
    width: auto;
    margin-right: 0;
    margin-bottom: 0;
}
.sbapfs_ig_item_4 {
    grid-row-start: 10;
    grid-row-end: 18;
    height: auto;
    width: auto;
    margin-right: 0;
    margin-bottom: 0;
}
@media screen and (max-width: 480px) {
    .section_benefits_and_pics_first_screen_img_grid {
        display: grid;
        grid-template-columns: 55% 40%;
        grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                            8px 8px 8px;
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
    .sbapfs_ig_item_1 {
        grid-row-start: 1;
        grid-row-end: 7;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 8;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_3 {
        grid-row-start: 7;
        grid-row-end: 14;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_4 {
        grid-row-start: 8;
        grid-row-end: 14;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 481px) {
    .section_benefits_and_pics_first_screen_img_grid {
        display: grid;
        grid-template-columns: 55% 40%;
        grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                            8px 8px 8px 8px 8px 8px;
        grid-column-gap: 15px;
        grid-row-gap: 15px;
    }
    .sbapfs_ig_item_1 {
        grid-row-start: 1;
        grid-row-end: 8;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 10;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_3 {
        grid-row-start: 8;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_4 {
        grid-row-start: 10;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 768px) {
    .section_benefits_and_pics_first_screen_img_grid {
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                            8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                            8px 8px 8px 8px 8px;
        grid-column-gap: 0;
        grid-row-gap: 15px;
    }
    .sbapfs_ig_item_1 {
        grid-row-start: 1;
        grid-row-end: 8;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_2 {
        grid-row-start: 8;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_3 {
        grid-row-start: 17;
        grid-row-end: 26;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 992px) {
    .section_benefits_and_pics_first_screen_img_grid {
        display: grid;
        grid-template-columns: 256px 196px;
        grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                            8px 8px 8px 8px 8px 8px 8px 8px 8px 8px;
        grid-column-gap: 18px;
        grid-row-gap: 18px;
    }
    .sbapfs_ig_item_1 {
        grid-row-start: 1;
        grid-row-end: 10;
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 12;
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_3 {
        grid-row-start: 10;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_4 {
        grid-row-start: 12;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1200px) {
    .section_benefits_and_pics_first_screen_img_grid {
        display: grid;
        grid-template-columns: 370px 270px;
        grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                            8px 8px 8px 8px 8px 8px 8px;
        grid-column-gap: 25px;
        grid-row-gap: 25px;
    }
    .sbapfs_ig_item_1 {
        grid-row-start: 1;
        grid-row-end: 8;
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 10;
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_3 {
        grid-row-start: 8;
        grid-row-end: 18;
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sbapfs_ig_item_4 {
        grid-row-start: 10;
        grid-row-end: 18;
        height: auto;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
}
/*
section_benefits_and_pics_first_screen_img_grid (photogalereya)
end
*/

/*
section_okruzhenie
*/
/*
section_okruzhenie
*/
.section_okruzhenie {
    padding-bottom: 50px;
}
@media screen and (max-width: 480px) {
    .section_okruzhenie {
        padding-bottom: 35px;
    }
}
@media screen and (min-width: 481px) {
    .section_okruzhenie {
        padding-bottom: 37px;
    }
}
@media screen and (min-width: 768px) {
    .section_okruzhenie {
        padding-bottom: 42px;
    }
}
@media screen and (min-width: 992px) {
    .section_okruzhenie {
        padding-bottom: 50px;
    }
}
@media screen and (min-width: 1200px) {
    .section_okruzhenie {
        padding-bottom: 50px;
    }  
}
.section_okruzhenie_img_grid {
    display: grid;
    grid-template-columns: 370px 270px;
    grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                        8px 8px 8px 8px 8px 8px 8px;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}
.so_ig_item_1 {
    grid-row-start: 1;
    grid-row-end: 8;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.so_ig_item_2 {
    grid-row-start: 1;
    grid-row-end: 10;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.so_ig_item_3 {
    grid-row-start: 8;
    grid-row-end: 18;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.so_ig_item_4 {
    grid-row-start: 10;
    grid-row-end: 18;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
@media screen and (max-width: 480px) {
    .section_okruzhenie_img_grid {
        display: grid;
        grid-template-columns: 48.5% 48.5%; /* общая ширина 100% */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .so_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 13;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_2 {
        grid-row-start: 13;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_3 {
        grid-row-start: 13;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_4 {
        grid-row-start: 19;
        grid-row-end: 25;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_5 {
        grid-row-start: 19;
        grid-row-end: 25;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 481px) {
    .section_okruzhenie_img_grid {
        display: grid;
        grid-template-columns: 49% 49%; /* общая ширина 100% */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .so_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 14;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_2 {
        grid-row-start: 14;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_3 {
        grid-row-start: 14;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_4 {
        grid-row-start: 21;
        grid-row-end: 28;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_5 {
        grid-row-start: 21;
        grid-row-end: 28;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 768px) {
    .section_okruzhenie_img_grid {
        display: grid;
        grid-template-columns: 350px 175px 175px; /* общая ширина 720 px */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .so_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 10;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_3 {
        grid-row-start: 1;
        grid-row-end: 10;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_4 {
        grid-row-start: 10;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_5 {
        grid-row-start: 10;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 992px) {
    .section_okruzhenie_img_grid {
        display: grid;
        grid-template-columns: 460px 230px 230px; /* общая ширина 940 px */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .so_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 25;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 13;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_3 {
        grid-row-start: 1;
        grid-row-end: 13;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_4 {
        grid-row-start: 13;
        grid-row-end: 25;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_5 {
        grid-row-start: 13;
        grid-row-end: 25;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1200px) {
    .section_okruzhenie_img_grid {
        display: grid;
        grid-template-columns: 560px 280px 280px; /* общая ширина 1140 px */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .so_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 15;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_3 {
        grid-row-start: 1;
        grid-row-end: 15;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_4 {
        grid-row-start: 15;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .so_ig_item_5 {
        grid-row-start: 15;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
/*
section_okruzhenie (photogalereya)
end
*/
/*
section_okruzhenie (photogalereya)
end
*/

/*
section_lobby
*/
.section_lobby {
    /*
    padding-top: 0;
    */
}
.section_lobby_text_wrap {
    margin-bottom: 40px;
    text-align: left;
}
@media screen and (max-width: 480px) {

}
@media screen and (min-width: 481px) {

}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {

}
@media screen and (min-width: 1200px) {
 
}
.section_lobby_img_grid {
    display: grid;
    grid-template-columns: 370px 270px;
    grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                        8px 8px 8px 8px 8px 8px 8px;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}
.sl_ig_item_1 {
    grid-row-start: 1;
    grid-row-end: 8;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.sl_ig_item_2 {
    grid-row-start: 1;
    grid-row-end: 10;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.sl_ig_item_3 {
    grid-row-start: 8;
    grid-row-end: 18;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
@media screen and (max-width: 480px) {
    .section_lobby_img_grid {
        display: grid;
        grid-template-columns: 48.5% 48.5%; /* общая ширина 100% */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sl_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 13;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_2 {
        grid-row-start: 13;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_3 {
        grid-row-start: 13;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 481px) {
    .section_lobby_img_grid {
        display: grid;
        grid-template-columns: 49% 49%; /* общая ширина 100% */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sl_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 14;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_2 {
        grid-row-start: 14;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_3 {
        grid-row-start: 14;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 768px) {
    .section_lobby_img_grid {
        display: grid;
        grid-template-columns: 473px 237px; /* общая ширина 720 px */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sl_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 9;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_3 {
        grid-row-start: 9;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 992px) {
    .section_lobby_img_grid {
        display: grid;
        grid-template-columns: 620px 310px; /* общая ширина 940 px */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sl_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 23;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 12;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_3 {
        grid-row-start: 12;
        grid-row-end: 23;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1200px) {
    .section_lobby_img_grid {
        display: grid;
        grid-template-columns: 753px 377px; /* общая ширина 1140 px */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sl_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 27;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 14;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sl_ig_item_3 {
        grid-row-start: 14;
        grid-row-end: 27;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
/*
section_lobby (photogalereya)
end
*/

/*
f_list_item_photogalereya (photogalereya)
*/
.f_list_item_photogalereya {

}
.f_list_pgi {
    width: 100%;
    height: 220px;
}
@media screen and (max-width: 480px) {
    .f_list_pgi {
        width: 100%;
        height: 190px;
    }
}
@media screen and (min-width: 481px) {
    .f_list_pgi {
        width: 100%;
        height: 190px;
    }
}
@media screen and (min-width: 768px) {
    .f_list_pgi {
        width: 100%;
        height: 190px;
    }
}
@media screen and (min-width: 992px) {
    .f_list_pgi {
        width: 100%;
        height: 220px;
    }
}
@media screen and (min-width: 1200px) {
    .f_list_pgi {
        width: 100%;
        height: 220px;
    }
}
/*
f_list_item_photogalereya (photogalereya)
end
*/

/*
zip_f_list_item_photogalereya (photogalereya)
*/
.zip_f_list_item_photogalereya {

}
.zip_f_list_pgi {
    width: 100%;
    height: 220px;
}
@media screen and (max-width: 480px) {
    .zip_f_list_pgi {
        width: 100%;
        height: 190px;
    }
}
@media screen and (min-width: 481px) {
    .zip_f_list_pgi {
        width: 100%;
        height: 190px;
    }
}
@media screen and (min-width: 768px) {
    .zip_f_list_pgi {
        width: 100%;
        height: 190px;
    }
}
@media screen and (min-width: 992px) {
    .zip_f_list_pgi {
        width: 100%;
        height: 190px;
    }
}
@media screen and (min-width: 1200px) {
    .zip_f_list_pgi {
        width: 100%;
        height: 220px;
    }
}
/*
zip_f_list_item_photogalereya (photogalereya)
end
*/

/*
section_videoreportazh
*/
.section_videoreportazh .thumb-wrap {
    position: relative;
    padding-bottom: 56.25%; /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
    /*
    padding-top: 30px;
    */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}
.section_videoreportazh .thumb-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*
section_videoreportazh
end
*/

/*
section_o_komplekse
*/
.about_bc_item {
    text-align: left;
    /*
    max-width: 792px;
    */
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
.row .about_bc_item_info_wrap {
    padding: 44px 60px 44px 60px;
}
.row .about_bc_item_info_t {
    /*
    font-size: 26px;
    */
    font-weight: bold;
    margin-bottom: 26px;
    font-weight: 600;
    /*
    font-size: 27px;
    */
    /*
    font-size: 20px;
    */
    /*
    font-size: 24px;
    */
    font-size: 22px;
}
.row .data_vvoda {
    /*
    background: #f6c5ac;
    background: #b99276;
    color: #ffffff;
    */
    background: #ffffff;
    max-width: 270px;
    padding: 8px 12px;
}
.about_bc_item_info_area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about_bc_item_info_area ul > li {
    margin-bottom: 19px;
}
.about_bc_item_info_list_item_icon {
    width: 26px;
    /*
    color: #d62a09;
    */
    color: #b7b7b7;
}
.about_bc_item_info_list_item_icon_wrap {
    /*
    width: 25px;
    */
}
.row .about_bc_item_info_list_item_icon_area {
    margin-top: -3px;
}
.about_bc_item_info_list_item_icon_area .fa-circle {
    font-size: 8px;
}
.row .about_bc_item_info_wrap_btn_area {
    margin-top: 26px;
}
.about_bc_item_image_wrap img {
    border-radius: 10px;
}
@media screen and (max-width: 480px) {
	.section_o_komplekse {
		padding-bottom: 40px;
	}
	.about_bc_item {
        /*
	    margin-bottom: 30px;
        */
        margin-bottom: 20px;
	}
    .row .about_bc_item_info_wrap {
        padding: 30px 0 30px 0;
    }
    .row .about_bc_item_info_t {
        /*
        font-size: 18px;
        */
        font-size: 20px;
    }
}
@media screen and (min-width: 481px) {
	.section_o_komplekse {
		padding-bottom: 40px;
	}
	.about_bc_item {
	    margin-bottom: 30px;
	}
    .row .about_bc_item_info_wrap {
        padding: 30px 0 30px 0;
    }
}
@media screen and (min-width: 768px) {
	.section_o_komplekse {
		padding-bottom: 35px;
	}
	.about_bc_item {
	    margin-bottom: 60px;
	}
    .row .about_bc_item_info_wrap {
        /*
        padding: 44px 60px 44px 60px;
        */
        padding: 0 50px 0 0;
        /*
        height: 360px;
        */
        height: 260px;
        display: table;
    }
    .row .about_bc_item_info_wrap_min-width-768_float_right {
        float: right;
        padding: 0 0 0 60px;
    }
    .about_bc_item_info_area {
        vertical-align: middle;
        display: table-cell;
        font-size: 14px;
    }
}
@media screen and (min-width: 992px) {
	.section_o_komplekse {
		padding-bottom: 50px;
	}
    .row .about_bc_item_info_wrap {
        /*
        height: 396px;
        */
        /*
        height: 323px;
        */
        height: 290px;
        display: table;
    }
    .about_bc_item_info_area {
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px) {
	.section_o_komplekse {
		padding-bottom: 50px;
	}
    .about_bc_item_info_wrap {
        /*
        height: 570px;
        */
        height: 396px;
        display: table;
    }
    .about_bc_item_info_area {
        vertical-align: middle;
        display: table-cell;
    }
}
/*
section_o_komplekse
end
*/


/*
section_f_list
*/
.section_f_list {
    /*
    padding-bottom: 0;
    */
}
.row .f_list_ribbon_text_area {
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    background: #6258a3;
    padding: 7px 0 5px 11px;
    height: 38px;
    width: auto;
}
.row .f_list_ribbon_right_corner {
    width: 0;
    height: 0;
    border-right: 13px solid transparent;
    border-top: 19px solid #6258a3;
    border-left: 13px solid #6258a3;
    border-bottom: 19px solid #6258a3;
}
.f_list_block {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -5px;
    max-width: 970px;
}
.f_list_item {
    position: relative;
    margin-bottom: 31px;
    max-width: 100%;
    /*
    border-radius: 3px;
    */
    border-radius: 5px;
    /*
    border: solid 1px #d0d0d0;
    */
    border: solid 1px #eeeeee;
    /*
    border: solid 1px #ddd;
    */
    padding: 25px;
    text-align: left;
}
.row .f_list_item_img_wrap {
    margin-right: 55px;
    margin-bottom: 0;
    width: 250px;
}
.row .f_list_item_img_area {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
}
.row .f_list_item_description {
    padding-left: 25px;
}
.row .f_list_item_t {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    /*
    font-size: 22px;
    */
}
.row .f_list_item_description_info {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 15px;
}
.row .f_list_item_promo_icon {
    width: 43px;
}
.f_list_item_promo_icon img {
    margin-top: -5px;
}
.custom_fli_promo_icon {
    width: 35px;
}
.row .f_list_item_promo_text {
    font-size: 15px;
    /*
    color: #6258a3;
    */
    /*
    color: #d35443;
    */
    color: #d62a09;
}
.row .f_list_item_btn_wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}
.row .f_list_item_btn_area {
    width: auto;
}
.f_list_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.f_list_item:hover .b_link_light_orange {
    background: #f1ae06;
    border-color: #f1ae06;
}
@media screen and (max-width: 480px) {
    .f_list_item {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .f_list_item_img_wrap {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
    }
    .row .f_list_item_description {
        padding: 0;
        margin-top: 15px;
    }
    .row .f_list_item_description_info {
        margin-top: 0;
        margin-bottom: 15px;
        margin-right: -5px;
    }
    .row .f_list_item_promo_icon {
        width: 38px;
    }
    .row .f_list_item_btn_wrap {
        margin-bottom: 5px;
    }
    .f_list_item_btn_wrap .b_link_lg {
        padding: 13px 20px;
        font-size: 18px;
    }
    .row .f_list_item_t {
        /*
        font-size: 16px;
        */
        font-size: 15px;
        margin-right: -5px;
    }
}
@media screen and (min-width: 481px) {
    .f_list_item {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .f_list_item_img_wrap {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
    }
    .row .f_list_item_description {
        padding: 0;
        margin-top: 15px;
    }
    .row .f_list_item_description_info {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .row .f_list_item_promo_icon {
        width: 38px;
    }
    .row .f_list_item_btn_wrap {
        margin-bottom: 5px;
    }
    .f_list_item_btn_wrap .b_link_lg {
        padding: 13px 20px;
        font-size: 18px;
    }
}
@media screen and (min-width: 768px) {
    .f_list_item {
        max-width: 100%;
    }
    .row .f_list_item_img_wrap {
        width: 250px;
    }
    .row .f_list_item_t {
        margin-top: 20px;
    }
    .row .f_list_item_description {
        margin-top: 0;
        padding-left: 0;
    }
    .row .f_list_item_description_info {
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .row .f_list_item_promo_icon {
        width: 43px;
    }
    .row .f_list_item_btn_wrap {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .f_list_item_btn_wrap .b_link_lg {
        padding: 13px 35px;
        font-size: 20px;
    }
}
@media screen and (min-width: 992px) {
    .section_f_list {
        /*
        padding-bottom: 5px;
        */
    }
    .row .f_list_item_img_wrap {
        margin-right: 40px;
    }
    .row .f_list_item_img_area {
        width: 220px;
    }
    .row .f_list_item_description {
        padding-left: 25px;
    }
}
@media screen and (min-width: 1200px) {
    .row .f_list_item_img_wrap {
        margin-right: 55px;
    }
    .row .f_list_item_description {
        padding-left: 25px;
    }
}
/*
section_f_list
end
*/

/*
section_parking_list
*/
.section_parking_list {
    /*
    padding-bottom: 0;
    */
}
.row .parking_list_ribbon_text_area {
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    background: #6258a3;
    padding: 7px 0 5px 11px;
    height: 38px;
    width: auto;
}
.row .parking_list_ribbon_right_corner {
    width: 0;
    height: 0;
    border-right: 13px solid transparent;
    border-top: 19px solid #6258a3;
    border-left: 13px solid #6258a3;
    border-bottom: 19px solid #6258a3;
}
.parking_list_block {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -5px;
    max-width: 970px;
}
.parking_list_item {
    position: relative;
    margin-bottom: 31px;
    max-width: 100%;
    border-radius: 3px;
    /*
    border: solid 1px #d0d0d0;
    */
    border: solid 1px #eeeeee;
    /*
    border: solid 1px #ddd;
    */
    padding: 25px;
    text-align: left;
}
.row .parking_list_item_img_wrap {
    margin-right: 55px;
    margin-bottom: 0;
    width: 250px;
}
.row .parking_list_item_img_area {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
}
.row .parking_list_item_description {
    padding-left: 25px;
}
.row .parking_list_item_t {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    /*
    font-size: 22px;
    */
}
.parking_list_item_download_link {
    float: right;
    color: #b0b0b0;
}
.row .parking_list_item_description_info {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 15px;
}
.row .parking_list_item_description_info_metro_logo {
    width: 16px;
    margin-top: -4px;
    margin-right: 4px;
}
.row .parking_list_item_promo_icon {
    width: 43px;
}
.parking_list_item_promo_icon img {
    margin-top: -5px;
}
.row .parking_list_item_promo_text {
    font-size: 15px;
    /*
    color: #6258a3;
    */
    /*
    color: #d35443;
    */
    color: #d62a09;
}
.row .parking_list_item_btn_wrap {
    margin-top: 20px;
    margin-bottom: 20px;
}
.row .parking_list_item_btn_area {
    width: auto;
}
.parking_list_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.parking_list_item:hover .b_link_light_orange {
    background: #f1ae06;
    border-color: #f1ae06;
}
.section_parking_list_modal_text {
    color: #a5a5a5;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 2px;
}
.section_parking_list_modal_metro_logo_wrap {
    color: #a5a5a5;
    font-size: 12px;
}
.section_parking_list_modal_metro_logo {
    width: 12px;
    margin-top: -3px;
    margin-right: 2px;
}
.section_parking_list_modal_img_wrap {
    text-align: center;
}
@media screen and (max-width: 480px) {
    .parking_list_item {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .parking_list_item_img_wrap {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
    }
    .row .parking_list_item_description {
        padding: 0;
        margin-top: 15px;
    }
    .row .parking_list_item_description_info {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .row .parking_list_item_promo_icon {
        width: 38px;
    }
    .row .parking_list_item_btn_wrap {
        margin-bottom: 5px;
    }
    .parking_list_item_btn_wrap .b_link_lg {
        padding: 13px 20px;
        font-size: 18px;
    }
    .row .parking_list_item_t {
        font-size: 16px;
    }
}
@media screen and (min-width: 481px) {
    .parking_list_item {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .parking_list_item_img_wrap {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
    }
    .row .parking_list_item_description {
        padding: 0;
        margin-top: 15px;
    }
    .row .parking_list_item_description_info {
        margin-top: 0;
        margin-bottom: 15px;
    }
    .row .parking_list_item_promo_icon {
        width: 38px;
    }
    .row .parking_list_item_btn_wrap {
        margin-bottom: 5px;
    }
    .parking_list_item_btn_wrap .b_link_lg {
        padding: 13px 20px;
        font-size: 18px;
    }
}
@media screen and (min-width: 768px) {
    .parking_list_item {
        max-width: 100%;
    }
    .row .parking_list_item_img_wrap {
        width: 250px;
    }
    .row .parking_list_item_t {
        margin-top: 20px;
    }
    .row .parking_list_item_description {
        margin-top: 0;
        padding-left: 0;
    }
    .row .parking_list_item_description_info {
        margin-top: 20px;
        margin-bottom: 40px;
    }
    .row .parking_list_item_promo_icon {
        width: 43px;
    }
    .row .parking_list_item_btn_wrap {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .parking_list_item_btn_wrap .b_link_lg {
        padding: 13px 35px;
        font-size: 20px;
    }
}
@media screen and (min-width: 992px) {
    .section_parking_list {
        /*
        padding-bottom: 5px;
        */
    }
    .row .parking_list_item_img_wrap {
        margin-right: 40px;
    }
    .row .parking_list_item_img_area {
        width: 220px;
    }
    .row .parking_list_item_description {
        padding-left: 25px;
    }
}
@media screen and (min-width: 1200px) {
    .row .parking_list_item_img_wrap {
        margin-right: 55px;
    }
    .row .parking_list_item_description {
        padding-left: 25px;
    }
}
/*
section_parking_list
end
*/

/*
q_first_screen
*/
.section_q_first_screen {
    background: #1e59aa;
    padding-top: 0;
}
.q_first_screen_advantages {
    margin-bottom: 20px;
}
.q_first_screen_advantages_item {
    background: #22a64c;
    color: #fff;
    /*
    padding: 3px 8px 4px 8px;
    */
    padding: 4px 9px 5px 9px;
    border-radius: 3px;
    font-size: 17px;
    margin-left: 1px;
    margin-right: 1px;
}
.q_first_screen_first_question_text {
    font-size: 40px;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 35px;
}
.q_first_screen {
    margin-bottom: 90px;
}
.row .q_first_screen_item_wrap {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 25px;
}
.row .q_first_screen_item {
    color: #ffffff;
    background: #ffa919;
    border-radius: 5px;
    padding: 20px;
}
.row .q_first_screen_item_description {
    /*
    margin-top: 20px;
    */
}
.row .q_first_screen_item_t {
    font-size: 16px;
    font-weight: bold;
}
.q_first_screen_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.q_first_screen_item:hover {
    background: #f19907;
    cursor: pointer;
}
.qmodal-content {
    background: #f4f6f6;
}
.q_modal_content {
    padding: 10px 25px 25px 25px;
    /*
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    */
}
.q_modal_t {
    font-size: 24px;
    margin-top: 12px;
    margin-bottom: 5px;
}
.row .q_modal_text_q_list_item {
    border: 1px solid #eaeaea;
    padding: 12px;
    margin: 5px 0;
    background: #ffffff;
}
.q_modal_text_q_list_item:hover {
    background: #ffeebe;
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
}
.row .q_modal_text_q_list_item_icon {
    width: 15px;
    font-size: 7px;
    margin-top: 6px;
}
.row .q_modal_img_q_list_item_wrap {
    padding-right: 10px;
}
.row .q_modal_img_q_list_item {
    border: 1px solid #eaeaea;
    padding: 12px;
    margin: 5px 0;
    background: #ffffff;
    text-align: center;
}
.row .q_modal_img_q_list_item_image_wrap {
    margin-bottom: 10px;
    font-size: 30px;
    color: #22a64c;
}
.q_modal_img_q_list_item_image_wrap .fa {
    color: #22a64c;
}
.row .q_modal_img_q_list_item_t {
    text-align: left;
    margin-bottom: 10px;
    font-size: 20px;
    color: #22a64c;
}
.q_modal_img_q_list_item:hover {
    background: #ffeebe;
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
}
.q_modal_img_q_list_item_description {
    text-align: left;
}
.q_modal_q_list_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.q_modal_img_q_list_item_planirovki .q_modal_img_q_list_item_image_wrap img {
    height: 200px;
}
.q_modal_f_plannings_modal_content {
    padding: 10px 25px 25px 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.q_modal_f_plannings_modal_img_wrap {
    height: 250px;
}
.q_modal_f_plannings_modal_last_step_text {
    text-align: left;
    margin-top: 15px;
    margin-bottom: -10px;
}
.q_modal_f_plannings_modal_cta_text_1 {
    margin-top: 20px;
    margin-bottom: 5px;
    /*
    font-weight: bold;
    font-size: 17px;
    */
    text-align: left;
    font-size: 20px;
}
.q_modal_f_plannings_modal_cta_text_2 {
    margin-bottom: 15px;
    text-align: left;
}
.q_modal_f_plannings_modal_btn_wrap {
    margin-top: 15px;
    margin-bottom: 10px;
}
.q_modal_f_plannings_modal_btn_wrap .btn {
    width: 100%;
}
.q_modal_f_plannings_modal_agreement_text {
    color: #333333;
    font-size: 10px;
    margin-bottom: 15px;
    position: static;
    opacity: .7;
    line-height: 1.0;
    font-weight: normal;
}
.q_modal_f_plannings_modal_agreement_text a {
    color: #333333;
}
@media screen and (max-width: 480px) {
    .section_q_first_screen {
        padding-top: 0;
    }
}
@media screen and (min-width: 481px) {
    .section_q_first_screen {
        padding-top: 0;
    }
}
@media screen and (min-width: 768px) {
    .section_q_first_screen {
        padding-top: 0;
    }
}
@media screen and (min-width: 992px) {
    .section_q_first_screen {
        padding-top: 0;
    }
}
@media screen and (min-width: 1200px) {
    .section_q_first_screen {
        padding-top: 0;
    }
}
/*
q_first_screen
end
*/

/*
responseModal
end
*/
.modal {
    z-index: 999999999999999 !important;
}
.response_modal_content {
    padding: 25px 25px 15px 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.response_modal_img_wrap .fa {
    color: #22a64c;
    font-size: 60px;
}
.response_modal_text_wrap {
    margin-top: 25px;
    margin-bottom: 45px;
}
.response_modal_t {
    margin-bottom: 10px;
    font-size: 20px;
}
.response_modal_text_1 {
    margin-bottom: 10px;
}
/*
responseModal
end
*/
/*
spisok_planirovok
*/
.flats_plannings_list_block {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 75px;
    max-width: 970px;
}
.flats_plannings_list_item {
    position: relative;
    background: #fff;
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid #eaeaea;
}
.flats_plannings_list_item:hover {
    background: #ffeebe;
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
}
.flats_plannings_list_item:hover .b_link_orange {
    background: #f19907;
    border-color: #f19907;
}
.flats_plannings_list_item:hover .b_link_light_orange {
    background: #f1ae06;
    border-color: #f1ae06;
}
.flats_plannings_list_item:hover .flats_plannings_list_item_info .row {
    border-top: 1px solid #ccc;
}
.flats_plannings_list_item:hover .row .flats_plannings_list_item_info_t {
    border-top: none;
}
.row .flats_plannings_list_item_img_wrap {
    width: 250px;
}
.row .flats_plannings_list_item_t {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}
.row .flats_plannings_list_item_metro_logo {
    width: 15px;
    margin-top: -2px;
}
.row .flats_plannings_list_item_metro_text {
    padding-left: 5px;
}
.row .flats_plannings_list_item_advantages {
    margin-top: 20px;
}
.flats_plannings_list_item_advantages_icon {
    width: 20px;
}
.row .flats_plannings_list_item_btn_wrap {
    margin-top: 20px;
}
.row .flats_plannings_list_item_description_info {
    color: #777;
    margin-bottom: 20px;
}
.flats_plannings_list_item_description_info_label {
    width: 130px;
}
.flats_plannings_list_item_price_btn_area {
    width: 210px;
}
.flats_plannings_list_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
/*
spisok_planirovok
end
*/
.about_zhk_text {
    margin-bottom: 15px;
}
.about_zhk_zastrojshik_t {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    font-size: 17px;
}
.korpusa_list_block {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 50px;
    max-width: 700px;
}
.korpusa_list_columns_t_block {
    border-bottom: 1px solid #edf4f7;
}
.korpusa_list_item_wrap {
    position: relative;
    border-bottom: 1px solid #edf4f7;
}
.korpusa_list_item_wrap:hover {
    background: #ffeebe;
}
.korpusa_list_item_wrap:hover .b_link_light_orange {
    background: #f1ae06;
    border-color: #f1ae06;
}
.korpusa_list_item_wrap_last {
    border-bottom: none;
}
.korpusa_list_item {
    line-height: 50px;
}
.row .korpusa_list_column_t {
    color: #636466;
    font-weight: bold;
    padding: 10px 0;
}
.row .kl_1_column {
    /*
    width: 200px;
    */
}
.row .kl_4_column {
    /*
    text-align: right;
    float: right;
    padding-right: 11px;
    */
}
.kl_4_column .b_link {
    width: 175px;
}
.korpusa_list_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.korpusa_list_item_instead_of_button_text {
    font-size: 12px;
}
.genplan_wrap {
    position: relative;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.genplan_mark {
    position: absolute;
    color: #ffffff;
    background: #22a64c;
    font-size: 11px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 9px 3px;
    line-height: 13px;
}
.genplan_mark_link {
    color: #ffffff;
    /*
    background: #ffa919;
    border-color: #ffa919;
    */
    background: #f8b200;
    border-color: #f8b200;
}
.genplan_mark_link:hover,
.genplan_mark_link:focus,
.genplan_mark_link.focus,
.genplan_mark_link:active,
.genplan_mark_link.active {
    color: #ffffff;
    text-decoration: none;    
    /*
    background: #f19907;
    border-color: #f19907;
    */
    background: #f1ae06;
    border-color: #f1ae06;
}
.genplan_mark_koprus_1 {
    /*
    top: 3%;
    left: 68%;
    */
    top: 0.5%;
    left: 67%;
}
.genplan_mark_koprus_2 {
    /*
    top: 15%;
    left: 71%;
    */
    top: 14%;
    left: 71%;
}
.genplan_mark_koprus_3 {
    /*
    top: 21%;
    left: 64%;
    */
    top: 21%;
    left: 62%;
}
.genplan_mark_koprus_4 {
    top: 18%;
    left: 48%;
}
.genplan_mark_koprus_5 {
    top: 52%;
    left: 45%;
}
.genplan_mark_detsad {
    top: 18%;
    left: 33%;
    padding-top: 13px;
}
.genplan_mark_parking {
    top: 18%;
    left: 83%;
    padding-top: 18px;
}
.genplan_mark_logo_and_metro {
    bottom: 2%;
    width: 350px;
    height: auto;
    border-radius: 0;
    padding: 0;
    background: #22a64c;
}
.row .genplan_mark_metro {
    border-radius: 0;
    text-align: left;
    height: 55px;
    padding: 8px;
}
.genplan_mark_metro_logo {
    width: 40px;
}
.row .genplan_mark_metro_text_area {
    padding-left: 10px;
    padding-top: 4px;
}
.row .genplan_mark_metro_t {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 4px;
}
.row .genplan_mark_logo {
    border-radius: 0;
    background: #5f2f93;
    height: 55px;
    padding: 8px;
}
.genplan_mark_koprus_number {
    font-weight: bold;
    font-size: 15px;
}

/*
section_otdelka
*/
.variant_otdelki_t {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: bold;
}
.variant_otdelki_text {
    text-align: left;
    margin-bottom: 30px;
}
.otdelka_pgi_1 {
    width: 370px
}
.otdelka_pgi_2 {
    width: 440px
}
.otdelka_pgi_3 {
    width: 310px
}
.otdelka_pgi_4 {
    width: 340px
}
.otdelka_section_button_wrap {
    margin-top: 60px;
}
@media screen and (max-width: 480px) {
    .otdelka_pgi_1 {
        width: 98%;
        height: 200px;
    }
    .otdelka_pgi_2 {
        width: 48%;
    }
    .otdelka_pgi_3 {
        width: 48%;
    }
}
@media screen and (min-width: 481px) {
    .otdelka_pgi_1 {
        width: 31.33%;
    }
    .otdelka_pgi_2 {
        width: 31.33%;
    }
    .otdelka_pgi_3 {
        width: 31.33%;
    }
}
@media screen and (min-width: 768px) {
    .otdelka_pgi_1 {
        width: 233.33px;
        height: 155.50px;
    }
    .otdelka_pgi_2 {
        width: 233.33px;
        height: 155.50px;
    }
    .otdelka_pgi_3 {
        width: 233.33px;
        height: 155.50px;
    }
}
@media screen and (min-width: 992px) {
    .otdelka_pgi_1 {
        width: 306.66px;
        height: 204.50px;
    }
    .otdelka_pgi_2 {
        width: 306.66px;
        height: 204.50px;
    }
    .otdelka_pgi_3 {
        width: 306.66px;
        height: 204.50px;
    }
}
@media screen and (min-width: 1200px) {
    .otdelka_pgi_1 {
        width: 373.33px;
        height: 249px;
    }
    .otdelka_pgi_2 {
        width: 373.33px;
        height: 249px;
    }
    .otdelka_pgi_3 {
        width: 373.33px;
        height: 249px;
    }
}
/*
section_otdelka
end
*/

/*
Yandex map
*/
.section_na_karte {
    /*
    padding-bottom: 0;
    */
}
.ya_map_wrap {
    margin-bottom: 15px;
    box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%), 0 1px 4px 0 rgb(0 0 0 / 2%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
#ya_map_1 {
    width: 100%;
    height: 100%;
    margin-top: 13px;
}
#ya_map_2 {
    width: 100%;
    height: 100%;
    margin-top: 13px;
}
.ya_map_area {
    height: 600px;
}
.ya_map_legend {
    position: relative;
    margin-top: -35px;
    background: #eee;
    min-height: 50px;
    text-align: left;
    padding: 25px 25px 15px 25px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.ya_map_legend_xs {
    position: relative;
    margin-top: -35px;
    background: #eee;
    min-height: 50px;
}
.ya_map_xs_placemark .fas {
    color: #d62a09;
    /*
    color: #22a64c;
    */
    font-size: 48px;
}
.ya_map_placemark_infrastructure {
    height: 25px;
    width: 25px;
    border-radius: 50%;
}
.ya_map_placemark_infrastructure .fa {
    color: #ffffff;
    margin-top: 5px;
}
.ya_map_placemark_school {
    /*
    background: #c0bd03;
    */
    background: #029078;
}
.ya_map_placemark_school .fa {
    margin-top: 6px;
    margin-left: 1px;
}
.ya_map_placemark_detsad {
    /*
    background: #e00074;
    */
    background: #00b266;
}
.ya_map_placemark_detsad .fa {
    margin-left: 1px;
}
.ya_map_placemark_apteka {
    /*
    background: #e76318;
    */
    background: #3d86bb;
}
.ya_map_placemark_apteka .fa {
    margin-top: 6px;
    margin-left: 1px;
}
.ya_map_placemark_produkty {
    /*
    background: #018027;
    */
    background: #3aafda;
}
.ya_map_placemark_salon_krasoty {
    /*
    background: #02a6ea;
    background: #967bdc;
    */
    background: #829091;
}
.ya_map_placemark_tc {
    background: #4a748a;
}
.ya_map_placemark_tc .fa {
    margin-top: 5px;
    margin-left: 1px;
}
.ya_map_placemark_fitness {
    /*
    background: #025b81;
    */
    background: #4a748a;
}
.ya_map_placemark_fitness .fa {
    margin-top: 6px;
    margin-left: 1px;
}
.row .ya_map_legend_item {
    margin-bottom: 15px;
}
.row .ya_map_legend_item_img {
    margin-top: -2px;
}
.row .ya_map_legend_item_img .fa {
    font-size: 17px;
}
.row .ya_map_legend_item_img .ya_map_placemark_school {
    padding-top: 1px;    
    padding-left: 2px;
}
.row .ya_map_legend_item_img .ya_map_placemark_detsad {
    padding-left: 6px;
    padding-top: 1px;
}
.row .ya_map_legend_item_img .ya_map_placemark_produkty {
    padding-left: 2px;
    padding-top: 2px;
}
.row .ya_map_legend_item_img .ya_map_placemark_apteka {
    padding-top: 1px;
    padding-left: 4px;
}
.row .ya_map_legend_item_img .ya_map_placemark_salon_krasoty {
    padding-left: 4px;
    padding-top: 1px;
}
.row .ya_map_legend_item_img .ya_map_placemark_fitness {
    padding-top: 1px;
    padding-left: 3px;
}
.row .ya_map_legend_item_img .ya_map_placemark_tc {
    padding-top: 0;
    padding-left: 4px;
}
@media screen and (max-width: 480px) {
    .section_na_karte .section_subt {
        text-align: left;
    }
}
/*
Yandex map
end
*/
.aerotour_wrap {
    height: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hod_stroitelstva_nav_pills_wrap {
    /*
    max-width: 930px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    */
    margin-bottom: 20px;
}
.hod_stroitelstva_nav_pills_wrap a {
    margin-right: 15px;
    margin-bottom: 15px;
    color: #000000;
    border: 1px solid #eeeeee;
    /*
    width: 131px;
    */
    /*
    font-family: 'Open Sans', sans-serif;
    */
    font-size: 14px;
    width: 133px;
}
.hod_stroitelstva_nav_pills_wrap .nav>li>a {
    padding-left: 12px;
    padding-right: 12px;
}
.hod_stroitelstva_nav_pills_wrap .nav-pills>li+li {
    margin-left: 0;
}
.hod_stroitelstva_nav_pills_wrap .nav-pills>li.active>a,
.hod_stroitelstva_nav_pills_wrap .nav-pills>li.active>a:focus,
.hod_stroitelstva_nav_pills_wrap .nav-pills>li.active>a:hover {
    color: #000000;
    background-color: #eeeeee;
}
.hod_stroitelstva_nav_pills_wrap .nav > li > a:hover,
.hod_stroitelstva_nav_pills_wrap .nav > li > a:focus {
    background-color: #f7f7f7;
}
.my-gallery {
    /*
    max-width: 930px;
    */
    margin-left: auto;
    margin-right: auto;
}
.my-gallery figure {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
.my-gallery figcaption {
    font-weight: bold;
    margin-top: 10px;
    height: 42px;
}
.section_hod_stroitelstva figcaption {
    height: 0;
}
.section_hod_stroitelstva img {
    border-radius: 8px;
}
.row .payment_options_item_wrap {
    /*
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 85px;
    */
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
}
.row .payment_options_item {
    background: #ffffff;
    /*
    border: 1px solid #eaeaea;
    */
    padding: 50px 20px 55px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%), 0 1px 4px 0 rgb(0 0 0 / 2%);
}
.payment_options_item:hover {
    background: #ffeebe;
    /*
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
    */
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #5da5e3;
}
.payment_options_item:hover .b_link_orange {
    background: #f19907;
    border-color: #f19907;
}
.payment_options_item:hover .b_link_light_orange {
    background: #f1ae06;
    border-color: #f1ae06;
}
.row .payment_options_item_image_wrap {
    margin-bottom: 10px;
    font-size: 30px;
    /*
    color: #d62a09;
    */
    color: #22a64c;
}
.payment_options_item_image_wrap .fa {
    /*
    color: #d62a09;
    */
    color: #22a64c;
}
.row .payment_options_item_t {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 28px 0;
}
.payment_options_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.bank_fin_logo_wrap {
    margin-left: auto;
    margin-right: auto; 
    margin-top: 60px;
    width: 296px;
}
.banki_list_block {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 50px;
    max-width: 650px;
}
.banki_list_columns_t_block {
    border-bottom: 1px solid #edf4f7;
}
.banki_list_item_wrap {
    position: relative;
    border-bottom: 1px solid #edf4f7;
}
.banki_list_item_wrap:hover {
    background: #ffeebe;
}
.banki_list_item_wrap:hover .b_link_light_orange {
    background: #f1ae06;
    border-color: #f1ae06;
}
.banki_list_item_wrap_last {
    border-bottom: none;
}
.banki_list_item {
    line-height: 84px;
}
.row .banki_list_column_t {
    color: #636466;
    font-weight: bold;
    padding: 10px 0;
}
.row .bl_3_column {
    text-align: right;
    float: right;
    padding-right: 11px;
}
.banki_list_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.banki_list_item img {
    height: 60px;
}
.about_zastrojshik_wrap {
    background: #ffffff;
    padding: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    border-radius: 10px;
}
.about_zastrojshik_logo_area {
    width: 300px;
    margin-top: 10px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}
.about_zastrojshik_text_area {
    margin-bottom: 50px;
}
.about_zastrojshik_site_link_area {
    margin-bottom: 50px;
}
.row .about_zastrojshik_facts_item {
    /*
    height: 130px;
    */
    margin-top: 18px;    
    margin-bottom: 18px;
}
.about_zastrojshik_facts_item_t {
    font-size: 28px;
    font-weight: bold;
    /*
    color: #d62a09;
    */
    /*
    color: #22a64c;
    */
    color: #406cdc;
}
@media screen and (max-width: 480px) {
    .about_zastrojshik_text_area {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .row .about_zastrojshik_facts_item {
        padding: 0 5px 0 5px;
        text-align: left;
    }
    .row .about_zastrojshik_facts_item_t {
        line-height: 15px;
        margin-bottom: 8px;  
    }  
}
@media screen and (min-width: 481px) {
    .row .about_zastrojshik_facts_item {
        padding: 0 10px 0 10px;
    }
}
.about_zastrojshik_facts_item_t_small_text {
    /*
    font-size: 15px;
    */
    font-size: 16px;
}
.section_discount_and_disclaimer {
    padding-bottom: 35px;
}
.discount_and_disclaimer_notes_wrap {
    /*
    margin-top: 175px;
    */
    margin-top: 0;
    padding-top: 30px;
    /*
    border-top: 1px solid #eee;
    */
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}
.discount_and_disclaimer_address_text {
    font-size: 20px;
    margin-bottom: 30px;
}
.discount_and_disclaimer_notes_text {
    font-size: 12px;
    margin-bottom: 15px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 30px;
}
@media screen and (max-width: 480px) {
   .discount_and_disclaimer_notes_text {
        font-size: 9px;
        margin-bottom: 0;
    } 
}
.discount_and_disclaimer_notes_text a {
    color: #000000;
}
.discount_and_disclaimer_notes_phone_wrap {
    font-size: 24px;
}
.discount_and_disclaimer_notes_phone_wrap a {
    color: #000000;
}
.discount_and_disclaimer_notes_email_wrap {
    margin-top: 15px;
}
.discount_and_disclaimer_notes_email_wrap a {
    color: #000000;
}
/*
one_screen
*/
.one_screen_body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.navbar_one_screen {
    background: transparent;
}
.navbar_one_screen .navbar_phone_wrap a {
    color: #000000;
}
.section_one_screen_content {
    flex: 1;
}
.section_one_screen {
    padding-top: 20px;
    padding-bottom: 20px;
}
.section_one_screen .section_first_screen_t {
    color: #000000;
    font-size: 20px;
}
.section_one_screen .section_first_screen_subt {
    color: #000000;
    margin-top: 15px;
}
.section_one_screen .genplan_mark_logo_and_metro {
    background: transparent;
    bottom: 4%;
}
.section_one_screen .genplan_mark_metro {
    background: rgba(34, 166, 76, 0.75);
}
.one_screen_advantages {
    margin-top: -5px;
    margin-bottom: 30px;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
}
.one_screen_advantages_item_1 {
    width: 23%;
}
.one_screen_advantages_item_2 {
    width: 19%;
}
.one_screen_advantages_item_3 {
    width: 10%;
}
.one_screen_advantages_item_4 {
    width: 24%;
}
.one_screen_advantages_item_5 {
    width: 12%;
}
.row .one_screen_advantages_item_icon {
    width: 3%;
    margin-top: 3px;
    font-size: 8px;
}
.section_one_screen_image_wrap img {
    border-radius: 12px;
}
.section_one_screen_image_wrap .genplan_mark_metro_logo {
    border-radius: 0;
}
.row .section_one_screen_text_wrap {
    padding-left: 40px;
    margin-top: -20px;
    margin-bottom: 30px;
}
.one_screen_form_wrap {
    box-shadow: 0 0 10px 5px rgba(221, 221, 221, 1);
    color: #000000;
}
.row .one_screen_form_wrap {
    padding: 20px;
}
.row .one_screen_form_wrap_t {
    font-weight: bold;
    margin-bottom: 8px;
}
.row .one_screen_form_wrap_text {
    margin-bottom: 20px;
}
.one_screen_form_wrap .btn {
    margin-top: 20px;
    margin-bottom: 12px;
    width: 100%;
}
.one_screen_form_item .form-control {
    height: 44px;
    font-size: 16px;
    border: .15em solid #ffd21c;
    -webkit-box-shadow: 0 0 1em 0.1em rgba(255,222,39,0.25);
    -moz-box-shadow: 0 0 1em .1em rgba(255,222,39,0.25);
    box-shadow: 0 0 1em 0.1em rgba(255,222,39,0.25);
}
.one_screen_form_item .form-control::-webkit-input-placeholder { /* Chrome */
    color: #555;
}
.one_screen_form_item .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #555;
}
.one_screen_form_item .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #555;
    opacity: 1;
}
.one_screen_form_item .form-control:-moz-placeholder { /* Firefox 4 - 18 */
    color: #555;
    opacity: 1;
}
.one_screen_form_item .form-control:focus {
    border: .15em solid #ffd21c;
    -webkit-box-shadow: 0 0 1em 0.1em rgba(255,222,39,0.25);
    -moz-box-shadow: 0 0 1em .1em rgba(255,222,39,0.25);
    box-shadow: 0 0 1em 0.1em rgba(255,222,39,0.25);
}
.row .one_screen_form_wrap_agreement_text {
    color: #333333;
    font-size: 10px;
    margin-bottom: 15px;
    position: static;
    opacity: .7;
    line-height: 1.0;
    font-weight: normal;
}
.one_screen_form_wrap_agreement_text a {
    color: #333333;
}
.one_screen_form_wrap_agreement_text a:hover {
    color: #333333;
}
.section_one_screen_disclaimer_notes {
    margin-bottom: 25px;
}
.section_one_screen_disclaimer_notes_company {
    margin-right: 50px;
}
.section_one_screen_disclaimer_notes_link {
    margin-right: 50px;
}
.section_one_screen_disclaimer_notes_link a {
    color: #a5a5a5;
}
.section_one_screen_disclaimer_notes_link a:hover {
    cursor: pointer;
}
.section_one_screen_disclaimer_notes_phone {
    float: right;
}
.section_one_screen_disclaimer_notes_phone a {
    color: #a5a5a5;
}
.disclaimer_modal_t {
    font-weight: bold;
    text-align: center;
}
.one_screen_without_form_arrow_down_wrap {
    height: 55px;
    margin-top: -20px;
    margin-bottom: -65px;
}
.one_screen_without_form_button_wrap {
    margin-top: 75px;
    margin-bottom: 55px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
.one_screen_without_form_button_wrap a {
    width: 100%
}
.one_screen_without_form_b_link_xs {
    font-size: 14px;
    padding: 13px 18px;
}
.one_screen_without_form_genplan_wrap {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -80px;
}
.one_screen_without_form_genplan_wrap .genplan_wrap {
    margin-bottom: 25px;
}
.one_screen_without_form_genplan_wrap img {
    border-radius: 12px;
}
.one_screen_without_form_genplan_wrap .genplan_mark_metro_logo {
    border-radius: 0;
}
/*
one_screen
end
*/
/*
agreement_page
*/
.agreement_text_on_agreement_page {
    max-width: 800px;
    background: #ffffff;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 25px 35px 25px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}
.agreement_text_on_agreement_page .section_t {
    margin-bottom: 30px;
    font-size: 20px;
}
.flats_plannings_list_item_price_btn_discount_text {

}
/*
agreement_page
end
*/
.flats_plannings_list_item_discount_text {
    padding: 4px 9px 5px 9px;
    background: #ffff00;
}
.flats_plannings_list_item_price_btn_discount_text {
    padding: 13px 15px;
    font-size: 20px;
}
.f_plannings_first_screen_item_discount_text {
    padding: 4px 9px 5px 9px;
    background: #ffff00;
    font-size: 15px;
}
.f_plannings_modal_cta_text_2_discount_text {
    /*
    background: #ebf9ff;
    */
    background: #d8f4ff;
}
.modal_with_auto_opening___studii_discount_text_wrap,
.modal_with_auto_opening___discount_text_wrap {
    margin: 20px 0 0 0;
    padding: 7px 9px 8px 9px;
    background: #ffeebe;
    border-radius: 8px;
}
.modal_with_auto_opening___two_stage_step1___modal_content {
    text-align: center;
    padding: 25px 25px 25px 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 55px;
    margin-bottom: 40px;
}
.modal_with_auto_opening___two_stage_step1___text_wrap {
    font-size: 24px;
}
.modal_with_auto_opening___two_stage_step1___buttons_wrap {
    /*
    border: 1px solid #eee;
    border-radius: 7px;
    */
    margin: 30px 0 0 0;
    padding: 30px 30px;
}
.modal_with_auto_opening___two_stage_step1___buttons_wrap button {
    width: 100%;
}
.modal_with_auto_opening___two_stage_step1___close_button {
    margin-top: 25px;
}
/*
modal_with_background_image
*/
.modal_with_background_image {

}
.modal_background_image_wrap {
    position: relative;
}
.modal_background_image_mark {
    position: absolute;
}
.modal_background_image_mark_close_icon {
    top: 1.1%;
    right: 1.6%;
}
.modal_background_image_mark_more_info_and_close_btn_wrap {
    /*
    bottom: 12.8%;
    right: 4.1%;
    */
    bottom: 11.3%;
    right: 35%;
}
/*
modal_with_background_image
end
*/
/*
ribbon
*/
.ribbon_left_corner {
    width: 0;
    height: 0;
    border-right: 19px solid transparent;
    border-top: 19px solid transparent;
    border-left: 6px solid transparent;
    border-bottom: 19px solid transparent;
}
.ribbon_left_corner:before {
    content: ' ';
    position: absolute;
    width: 19px;
    height: 0;
    left: -6px;
    top: -19px;
    border-width: 19px 13px;
    border-style: solid;
    border-color: #6258a3 #6258a3 #6258a3 transparent;
}
.row .ribbon_text_area {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    background: #6258a3;
    padding: 6px 0;
    height: 38px;
}
.ribbon_right_corner {
    width: 0; height: 0;
    border-right: 13px solid transparent;
    border-top: 19px solid #6258a3;
    border-left: 13px solid #6258a3;
    border-bottom: 19px solid #6258a3;
}
/*
ribbon
end
*/

/*
section_dohod_garantii
*/
.row .dohod_garantii_text_item_wrap {
    padding: 0 40px 0 0;
}
.row .dohod_garantii_text_item {
    position: relative;
    /*
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    box-shadow: 0 2px 14px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.02);
    */
    padding: 35px 35px 50px 35px;
    margin-bottom: 40px;
    text-align: left;
    border-radius: 10px;
    background: #ffffff;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    transition: -webkit-transform .4s cubic-bezier(0,0,.4,1);
    transition: transform .4s cubic-bezier(0,0,.4,1);
    transition: transform .4s cubic-bezier(0,0,.4,1),-webkit-transform .4s cubic-bezier(0,0,.4,1);
    will-change: transform;
}
.row .dohod_garantii_text_item:hover {
    /*
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    box-shadow: 0 2px 14px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.02);
    */
    -webkit-transform: scale3d(1.02,1.02,1.02);
    transform: scale3d(1.02,1.02,1.02);
}
.row .dohod_garantii_text_item_icon {
    font-size: 28px;
    /*
    color: #d62a09;
    */
    color: #22a64c;
    width: 28px;
    margin-right: 16px;
}
.row .dohod_garantii_text_item_icon .fa {
    /*
    color: #d62a09;
    */
    color: #22a64c;
}
.row .dgti_t {
    margin-top: 7px;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
}
.row .dgti_text {
    font-size: 15px;
    margin-bottom: 20px;
}
.row .dohod_garantii_cifry_column {
    background: #ffffff;
    /*
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    box-shadow: 0 2px 14px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.02);
    */
    padding: 35px 35px 105px 35px;
    text-align: left;
    border-radius: 10px;
}
.row .dohod_garantii_cifry_item {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: solid 1px #eeeeee;
}
.row .dgci_last_item {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.row .dgci_text {
    /*
    color: #838383;
    */
    color: #757575;
    margin-bottom: 10px;
    /*
    font-size: 14px;
    */
    font-size: 15px;
}
.row .dgci_cifra {
    color: #ea4e1b;
    color: #22a64c;
    font-size: 32px;
}
.dohod_garantii_discl_wrap {
    margin-top: 10px;
    color: #a5a5a5;
    font-size: 12px;
    text-align: left;
}
.dohod_garantii_text_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 480px) {
    .row .dohod_garantii_text_item_wrap {
        padding: 0;
    }
    .row .dohod_garantii_text_item {
        padding: 25px 25px 40px 25px;
        margin-bottom: 30px;
    }
    .row .dgti_t {
        margin-top: 7px;
        font-weight: bold;
        font-size: 17px;
        margin-bottom: 15px;
    }
    .row .dohod_garantii_cifry_column {
        padding: 25px 25px 0 25px;
        margin-bottom: 20px;
    }
    .row .dohod_garantii_cifry_item {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }
    .row .dgci_cifra {
        font-size: 28px;
    }
}
@media screen and (min-width: 481px) {
    .row .dohod_garantii_text_item_wrap {
        padding: 0;
    }
    .row .dgti_t {
        margin-top: 7px;
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 15px;
    }
    .row .dohod_garantii_cifry_column {
        padding: 25px 25px 0 25px;
        margin-bottom: 20px;
    }
    .row .dohod_garantii_cifry_item {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }
}
@media screen and (min-width: 768px) {
    .row .dohod_garantii_text_item_wrap {
        padding: 0;
    }
    .row .dgti_t {
        margin-top: 7px;
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 15px;
    }
    .row .dohod_garantii_cifry_column {
        padding: 25px 25px 0 25px;
        margin-bottom: 20px;
    }
    .row .dohod_garantii_cifry_item {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }
}
@media screen and (min-width: 992px) {
    .row .dohod_garantii_text_item_wrap {
        padding: 0 40px 0 0;
    }
    .row .dgti_t {
        font-size: 20px;
    }
    .row .dohod_garantii_cifry_column {
        padding: 35px 35px 61px 35px;
        margin-bottom: 0;
    }
    .row .dohod_garantii_cifry_item {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }
}
@media screen and (min-width: 1200px) {
    .row .dohod_garantii_text_item_wrap {
        padding: 0 40px 0 0;
    }
    .row .dgti_t {
        font-size: 22px;
    }
    .row .dohod_garantii_cifry_column {
        padding: 35px 35px 42px 35px;
        margin-bottom: 0;
    }
}
/*
section_dohod_garantii
end
*/

/*
section_dohod_plusy
*/
.dohod_plusy__list_block {
    margin-left: -20px;
    margin-right: -20px;
}
.row .dohod_plusy_item_wrap {
    padding: 20px 20px 20px 20px;
}
.row .dohod_plusy_item {
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.16);
    box-shadow: 0 2px 14px 0 rgba(0,0,0,.08), 0 1px 4px 0 rgba(0,0,0,.02);
    padding: 32px 32px 50px 32px;
    text-align: left;
}
.row .dohod_plusy_item:hover {
    background: #ffeebe;
    box-shadow: 0 1px 3px rgba(0,0,0,.20), inset 0px 0px 0px 1px #5da5e3;
}
.row .dohod_plusy_item_icon_wrap {
    width: 50px;
    height: 50px;
    background: #e94d1a;
    padding: 12px;
    border-radius: 50%;
}
.row .dohod_plusy_item_text {
    margin-top: 20px;
    /*
    margin-bottom: 30px;
    */
    margin-bottom: 0;
    color: #838383;
    font-size: 14px;
}
.dpi_text_with_decoration {
    /*
    text-decoration: underline dotted #22a64c;
    */
    border-bottom: 1px dotted #22a64c;
}
.row .dohod_plusy_item_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.row .dohod_plusy_item_text ul li {
    margin-top: 7px;
}
.dohod_plusy_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.section_dohod_plusy_btn_area {
    margin-top: 70px;
}
@media screen and (max-width: 480px) {
    .dohod_plusy__list_block {
        margin-left: 0;
        margin-right: 0;
    }
}
@media screen and (min-width: 481px) {
    .dohod_plusy__list_block {
        margin-left: 0;
        margin-right: 0;
    }
}
@media screen and (min-width: 768px) {
    .dohod_plusy__list_block {
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .dohod_plusy_item_text {
        height: 170px;
    }
}
@media screen and (min-width: 992px) {
    .dohod_plusy__list_block {
        margin-left: -15px;
        margin-right: -15px;
    }
    .row .dohod_plusy_item_wrap {
        padding: 15px 15px 15px 15px;
    }
    .row .dohod_plusy_item {
        padding: 25px 25px 40px 25px;
    }
    .row .dohod_plusy_item_text {
        height: 250px;
        font-size: 13px;
    }
}
@media screen and (min-width: 1200px) {
    .dohod_plusy__list_block {
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .dohod_plusy_item_wrap {
        padding: 20px 20px 20px 20px;
    }
    .row .dohod_plusy_item {
        padding: 32px 32px 50px 32px;
    }
    .row .dohod_plusy_item_text {
        height: 240px;
        font-size: 14px;
    }
}
/*
section_dohod_plusy
end
*/

/*
section_dohod_photogalereya_bwzh
*/
.section_dohod_photogalereya_bwzh_btn_area {
    margin-top: 70px;
}
.section_dohod_photogalereya_bwzh_img_grid {
    display: grid;
    grid-template-columns: 370px 270px;
    grid-template-rows: 8px 8px 8px 8px 8px 8px 8px 8px 8px 8px
                        8px 8px 8px 8px 8px 8px 8px;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}
.sdpb_ig_item_1 {
    grid-row-start: 1;
    grid-row-end: 8;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.sdpb_ig_item_2 {
    grid-row-start: 1;
    grid-row-end: 10;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.sdpb_ig_item_3 {
    grid-row-start: 8;
    grid-row-end: 18;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
.sdpb_ig_item_4 {
    grid-row-start: 10;
    grid-row-end: 18;
    height: auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}
@media screen and (max-width: 480px) {
    .section_dohod_photogalereya_bwzh_img_grid {
        display: grid;
        grid-template-columns: 48.5% 48.5%; /* общая ширина 100% */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sdpb_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 13;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_2 {
        grid-row-start: 13;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_3 {
        grid-row-start: 13;
        grid-row-end: 19;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_4 {
        grid-row-start: 19;
        grid-row-end: 25;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_5 {
        grid-row-start: 19;
        grid-row-end: 25;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_6 {
        grid-row-start: 25;
        grid-row-end: 31;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_7 {
        grid-row-start: 25;
        grid-row-end: 31;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 481px) {
    .section_dohod_photogalereya_bwzh_img_grid {
        display: grid;
        grid-template-columns: 49% 49%; /* общая ширина 100% */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sdpb_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 14;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_2 {
        grid-row-start: 14;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_3 {
        grid-row-start: 14;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_4 {
        grid-row-start: 21;
        grid-row-end: 28;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_5 {
        grid-row-start: 21;
        grid-row-end: 28;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_6 {
        grid-row-start: 28;
        grid-row-end: 35;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_7 {
        grid-row-start: 28;
        grid-row-end: 35;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 768px) {
    .section_dohod_photogalereya_bwzh_img_grid {
        display: grid;
        grid-template-columns: 111.66px 111.66px 111.66px 111.66px; /* общая ширина 720 px */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sdpb_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 9;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_3 {
        grid-row-start: 1;
        grid-row-end: 9;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_4 {
        grid-row-start: 1;
        grid-row-end: 9;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_5 {
        grid-row-start: 9;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_6 {
        grid-row-start: 9;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_7 {
        grid-row-start: 9;
        grid-row-end: 17;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 992px) {
    .section_dohod_photogalereya_bwzh_img_grid {
        display: grid;
        grid-template-columns: 148.33px 148.33px 148.33px 148.33px 148.33px; /* общая ширина 940 px */
        grid-template-rows: 10px 10px 10px 10px 10px 10px 10px 10px 10px 10px
                            10px 10px 10px 10px 10px 10px 10px 10px 10px 10px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sdpb_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 11;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_3 {
        grid-row-start: 1;
        grid-row-end: 11;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_4 {
        grid-row-start: 1;
        grid-row-end: 11;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_5 {
        grid-row-start: 11;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_6 {
        grid-row-start: 11;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_7 {
        grid-row-start: 11;
        grid-row-end: 21;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1200px) {
    .section_dohod_photogalereya_bwzh_img_grid {
        display: grid;
        grid-template-columns: 373px 181px 181px 181px 181px; /* общая ширина 1140 px */
        grid-template-rows: 4px 4px 4px 4px 4px 4px 4px 4px 4px 4px
                            4px 4px 4px 4px 4px 4px 4px 4px 4px 4px
                            4px 4px 4px 4px 4px 4px 4px 4px;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
    }
    .sdpb_ig_item_1 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_2 {
        grid-row-start: 1;
        grid-row-end: 15;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_3 {
        grid-row-start: 1;
        grid-row-end: 15;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_4 {
        grid-row-start: 1;
        grid-row-end: 15;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_5 {
        grid-row-start: 15;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_6 {
        grid-row-start: 15;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_7 {
        grid-row-start: 15;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_8 {
        grid-row-start: 15;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
    .sdpb_ig_item_9 {
        grid-row-start: 15;
        grid-row-end: 29;
        height: auto;
        width: auto;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}
/*
section_dohod_photogalereya_bwzh
end
*/

/*
section_dohod_grafik
*/
.section_dohod_grafik_text_wrap {
    margin-top: 30px;
}
.section_dohod_grafik_text_area {
    /*
    background: #f8d4d1;
    */
    border-top: solid 1px #e94d1a;
    border-bottom: solid 1px #e94d1a;
    /*
    border-radius: 5px;
    */
    /*
    font-weight: bold;
    */
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%), 0 1px 4px 0 rgb(0 0 0 / 2%);
    padding: 12px 16px 12px 16px;
}
.section_dohod_grafik_text_with_decoration {
    /*
    text-decoration: underline dotted #22a64c;
    */
    border-bottom: 2px dashed #22a64c;
}
.section_dohod_grafik_btn_area {
    margin-top: 70px;
}
@media screen and (max-width: 480px) {
    .section_dohod_grafik_text_area {
        border-top: none;
        border-bottom: none;
        box-shadow: none;
        padding: 12px 16px 12px 16px;
    }
}
@media screen and (min-width: 481px) {
    .section_dohod_grafik_text_area {
        border-top: none;
        border-bottom: none;
        box-shadow: none;
        padding: 12px 16px 12px 16px;
    }
}
@media screen and (min-width: 768px) {
    .section_dohod_grafik_text_area {
        border-top: solid 1px #e94d1a;
        border-bottom: solid 1px #e94d1a;
        box-shadow: 0 1px 2px 0 rgb(0 0 0 / 16%);
        box-shadow: 0 2px 14px 0 rgb(0 0 0 / 8%), 0 1px 4px 0 rgb(0 0 0 / 2%);
        padding: 12px 16px 12px 16px;
    }
}
@media screen and (min-width: 992px) {

}
@media screen and (min-width: 1200px) {
 
}
/*
section_dohod_grafik
end
*/

/*
devyatkino-v1
*/
@font-face {
    font-family: 'Intro';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/intro/400/Intro-Book.eot');
    src: local('Intro Book'), local('Intro-Book'),
        url('../fonts/intro/400/Intro-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/intro/400/Intro-Book.woff2') format('woff2'),
        url('../fonts/intro/400/Intro-Book.woff') format('woff'),
        url('../fonts/intro/400/Intro-Book.ttf') format('truetype');
}
@font-face {
    font-family: 'Intro';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/intro/700/Intro-Bold.eot');
    src: local('Intro Bold'), local('Intro-Bold'),
        url('../fonts/intro/700/Intro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/intro/700/Intro-Bold.woff2') format('woff2'),
        url('../fonts/intro/700/Intro-Bold.woff') format('woff'),
        url('../fonts/intro/700/Intro-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'Intro Caps';
    font-weight: bold;
    font-style: normal;
    src: url('../fonts/intro/bold/Intro-Bold-Caps.eot');
    src: local('Intro Bold Caps'), local('Intro-Bold'),
    url('../fonts/intro/bold/Intro-Bold-Caps.eot?#iefix') format('embedded-opentype'),
    url('../fonts/intro/bold/Intro-Bold-Caps.woff2') format('woff2'),
    url('../fonts/intro/bold/Intro-Bold-Caps.woff') format('woff'),
    url('../fonts/intro/bold/Intro-Bold-Caps.ttf') format('truetype');
}
@font-face {
    font-family: 'Intro';
    font-weight: 900;
    font-style: normal;
    src: url('../fonts/intro/bold/Intro-Bold-Caps.eot');
    src: local('Intro Bold Caps'), local('Intro-Bold-Caps'),
        url('../fonts/intro/bold/Intro-Bold-Caps.eot?#iefix') format('embedded-opentype'),
        url('../fonts/intro/bold/Intro-Bold-Caps.woff2') format('woff2'),
        url('../fonts/intro/bold/Intro-Bold-Caps.woff') format('woff'),
        url('../fonts/intro/bold/Intro-Bold-Caps.ttf') format('truetype');
}
/*
@font-face {
    font-family: 'intro-reg';
    src: url('../fonts/intro/intro-regular.eot');
    src: url('../fonts/intro/intro-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/intro/intro-regular.woff2') format('woff2'),
         url('../fonts/intro/intro-regular.woff') format('woff'),
         url('../fonts/intro/intro-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'intro-bold';
    src: url('../fonts/intro/intro-bold.eot');
    src: url('../fonts/intro/intro-bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/intro/intro-bold.woff2') format('woff2'),
         url('../fonts/intro/intro-bold.woff') format('woff'),
         url('../fonts/intro/intro-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*/
.v1_body {
    /*
    font-family: intro-reg;
    */
    font-family: "Intro", sans-serif;
    font-size: 16px;
    color: #3e3e3e;
}
.v1_navbar {
    background-color: #6258a3;
}
.row .v1_navbar_brand {
    height: 84px;
    padding-top: 18px;
    padding-bottom: 4px;
    text-align: center;
}
.v1_navbar_logo {
    width: 222px;
    margin-top: 2px;
}
.row .v1_navbar_button_wrap {
    text-align: right;
    padding-top: 19px;
    padding-bottom: 4px;
}
.v1_navbar_phone_wrap {
    font-size: 36px;
    font-weight: bold;
}
.row .v1_navbar_phone_wrap {
    padding-top: 19px;
    padding-bottom: 4px;
}
.v1_navbar_phone_wrap a {
    color: #ffffff;
}
.v1_b_link {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    padding: 12px 45px;
    border-radius: 0;
    border: none;
    color: #ffffff;
}
.v1_b_link:hover, .v1_b_link:focus, .v1_b_link.focus {
    color: #ffffff;
    text-decoration: none;
}
.v1_b_link_lg {
    padding: 17px 61px;
}
.v1_b_link_orange {
    background-color: #f8b200;
}
.v1_b_link_violet {
    background-color: #6258a3;
}
.v1_b_link_light_green {
    background-color: #77ba2d;
}
.v1_header_menu_section {
    background-color: #6258a3;
    padding: 10px 0 10px 0;
    margin-top: 84px;
}
.v1_header_menu_wrap {
    max-width: 905px;
    margin-left: auto;
    margin-right: auto;
}
.v1_header_menu_wrap a {
    color: #ffffff;
    padding: 0 20px;    
}
.v1_header_menu_wrap .v1_header_menu_first_item {
    padding-left: 0;
}
.v1_header_menu_wrap .v1_header_menu_last_item {
    padding-right: 0;
}
.v1_section {
    padding: 40px 0 40px 0;
}
.v1_section_dark_gray {
    background-color: #eeeeee;
}
.v1_section_violet {
    background-color: #6258a3;
}
.v1_section_violet .v1_section_t {
    color: #ffffff;
}
.v1_section_violet .v1_section_subt {
    color: #ffffff;
}
.v1_section_first_screen_two_columns_wrap {
    margin-bottom: -15px;
}
.v1_section_first_screen_t {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
    font-size: 36px;
    margin-top: 0;
}
.v1_section_first_screen_subt {
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
}
.v1_section_first_screen_img_columns {
    max-width: 665px;
}
.v1_section_first_screen_img_column_2 {
    text-align: right;
}
.v1_section_first_screen_img_column_1 img, .v1_section_first_screen_img_column_2 img {
    margin-bottom: 27px;
}
.row .v1_section_first_screen_text_wrap {
    margin-top: 35px;
}
.v1_section_first_screen_text_wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v1_section_first_screen_text_wrap ul > li {
    margin-bottom: 19px;
}
.v1_section_first_screen_list_item_icon {
    width: 43px;
}
.v1_section_first_screen_list_item_icon img {
    margin-top: -5px;
}
.v1_section_first_screen_list_item_icon .metro_logo {
    width: 25px;
}
.v1_section_first_screen_list_item_text_area {
    color: #6258a3;
    /*
    font-size: 14px;
    */
    font-size: 15px;
}
.v1_section_button_wrap {
    margin-top: 30px;
}
.v1_section_t {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
    font-size: 36px;
}
.v1_section_subt {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #6258a3;
}
.v1_flats_plannings_list_item {
    border-radius: 3px;
    border: solid 1px #d0d0d0;
    margin-bottom: 31px;
}
.v1_flats_plannings_list_item:hover {
    background: transparent;
    box-shadow: none;
}
.v1_flats_plannings_list_item_t {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
}
.row .v1_flats_plannings_list_item_description_info {
    /*
    font-size: 14px;
    */
    margin-top: 20px;
    margin-bottom: 40px;
}
.v1_flats_plannings_list_item_btn_wrap .v1_b_link {
    width: 257px;
    padding-left: 0;
    padding-right: 0;
}
.v1_flats_plannings_list_item_img_area {
    width: 190px;
}
.v1_flats_plannings_list_item_ribbon_left {
    position: absolute;
    top: -7.5%;
    left: -3.5%;
}
.v1_flats_plannings_list_item_ribbon_left .ribbon_text_area {
    /*
    width: 283px;
    */
    width: auto;
}
.v1_flats_plannings_list_item_ribbon_right {
    position: absolute;
    top: -7.5%;
    right: -3.5%;
}
.v1_flats_plannings_list_item_ribbon_right .ribbon_text_area {
    /*
    width: 283px;
    */
    width: auto;
}
.v1_about_zhk_wrap {
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.row .v1_about_zhk_column_left {
    /*
    font-size: 14px;
    */
    padding-right: 80px;
}
.row .v1_about_zhk_column_right {
    background: #ffffff;
    padding: 17px 25px;
}
.v1_about_zhk_column_right_t {
    font-size: 24px;
}
.row .v1_about_zhk_column_right_text {
    font-size: 18px;
    margin-bottom: 20px;
}
.v1_korpusa_list_block {
    margin-top: 35px;
    margin-bottom: 35px;
    padding-top: 35px;
    border-top: 1px solid #979797;
    /*
    font-size: 14px;
    */
}
.v1_korpusa_list_block_korpusa_columns_wrap {
    float: right;
}
.v1_korpusa_list_korpus_wrap {
    width: 190px;
}
.row .v1_korpusa_list_korpus_area {
    position: relative;
    float: right;
    width: 143px;
}
.v1_korpusa_list_korpus_area .b_link {
    padding-left: 22px;
    padding-right: 22px;
}
.row .v1_korpusa_list_korpus_content_wrap {
    margin-bottom: 24px;
    /*
    position: relative;
    */
}
.v1_korpusa_list_korpus_content_wrap:hover .v1_korpusa_list_korpus_content  {
    border-radius: 9px;
    background-color: #ffffff;
    box-shadow: 0 0 19px 0 rgba(192, 192, 192, 0.5);
}
.v1_korpusa_list_korpus_content_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.row .v1_korpusa_list_string_content {
    padding-top: 24px;
    padding-bottom: 24px;
}
.v1_korpusa_list_string_t {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #6258a3;
    text-align: left;
}
.v1_genplan_wrap {
    margin-bottom: -40px;
}
.v1_section_na_karte .ya_map_wrap {
    margin-top: -20px;
    margin-bottom: -40px;
}
.v1_section_na_karte .ya_map_legend_item {
    font-size: 14px;
}
.v1_section_aerotour .aerotour_wrap {
    margin-top: -20px;
}
.v1_section_hod_stroitelstva .tab-content {
    margin-left: -15px;
    margin-right: -15px;
}
.v1_section_hod_stroitelstva .my-gallery {
    max-width: inherit;
}
.v1_section_hod_stroitelstva .my-gallery figure {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.v1_hod_stroitelstva_nav_pills_wrap {
    max-width: inherit;
    padding-left: 0;
    padding-right: 0;
    margin-left: -15px;
    margin-right: -15px;
}
.v1_hod_stroitelstva_nav_pills_wrap a {
    font-family: 'Open Sans', sans-serif;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    color: #3e3e3e;
    border: 1px solid #8b8b8b;
    width: 165px;
    font-size: 16px;
}
.v1_hod_stroitelstva_nav_pills_wrap .nav>li>a {
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 0;
}
.v1_hod_stroitelstva_nav_pills_wrap .nav > li > a:hover, .v1_hod_stroitelstva_nav_pills_wrap .nav > li > a:focus {
    background-color: #f7f7f7;
}
.v1_hod_stroitelstva_nav_pills_wrap .nav-pills>li.active>a, .v1_hod_stroitelstva_nav_pills_wrap .nav-pills>li.active>a:focus, .v1_hod_stroitelstva_nav_pills_wrap .nav-pills>li.active>a:hover {
    color: #ffffff;
    background-color: #6258a3;
    border: 1px solid #6258a3;
}
.v1_section_u_nas_uzhe_zhivut .my-gallery {
    max-width: inherit;
    margin-left: -15px;
    margin-right: -15px;
}
.v1_section_u_nas_uzhe_zhivut .my-gallery figure {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.v1_section_u_nas_uzhe_zhivut .my-gallery figcaption {
    font-weight: normal;
    /*
    font-size: 14px;
    */
}
.v1_section_otdelka .my-gallery {
    max-width: inherit;
    margin-left: -15px;
    margin-right: -15px;
}
.v1_section_otdelka .my-gallery figure {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.v1_section_otdelka .my-gallery figcaption {
    height: 0;
    font-weight: normal;
    /*
    font-size: 14px;
    */
}
.v1_payment_options {
    border-top: 1px solid #ffffff;
    padding-top: 35px;
    padding-bottom: 35px;
}
.row .v1_payment_options_item_wrap {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #ffffff;
    padding: 35px;
    height: 121px;
}
.row .v1_payment_options_item_wrap:hover {
    border-radius: 10px;
    background-color: #6258a3;
    box-shadow: 0 0 34px 0 #453c7f;
}
.row .v1_payment_options_item_wrap_mat_kapital {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.3;
}
.v1_payment_options_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.v1_banki_list_block {
    margin-bottom: 58px;
    margin-left: -20px;
    margin-right: -20px;
}
.row .v1_banki_list_item_wrap {
    width: 128px;
    margin-left: 20px;
    margin-right: 20px;
}
.row .v1_banki_list_item {
    padding-left: 10px;
    padding-right: 10px;
}
.v1_banki_list_item:hover {
    border-radius: 9px;
    background-color: #ffffff;
    box-shadow: 0 0 19px 0 rgba(192, 192, 192, 0.5);
}
.row .v1_banki_list_item_img_wrap {
    padding-top: 12px;
    padding-bottom: 12px;
}
.row .v1_banki_list_item_text_wrap {
    padding-bottom: 55px;
    /*
    font-size: 14px;
    */
}
.v1_banki_list_item_link_mask {
    border: 0 none;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.v1_about_zastrojshik_text_area {
    text-align: left;
    /*
    font-size: 14px;
    */
}
.row .v1_about_zastrojshik_logo_area {
    padding-top: 30px;
    padding-bottom: 30px;
}
.v1_section_o_zastrojshike .about_zastrojshik_facts {
    /*
    margin-top: 20px;
    */
}
.v1_section_o_zastrojshike .row .about_zastrojshik_facts_item {
    height: 100px;
    margin-top: 55px;
    margin-bottom: 15px;
}
.v1_section_o_zastrojshike .about_zastrojshik_facts_item_t {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #6258a3;
}
.v1_about_zastrojshik_facts_item_text {
    /*
    font-size: 14px;
    */
}
.v1_section_discount_and_disclaimer .discount_and_disclaimer_notes_wrap {
    max-width: inherit;
    border-top: 1px solid #979797;
    padding-top: 55px;
    margin-top: 100px;
}
.v1_section_discount_and_disclaimer .discount_and_disclaimer_notes_text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    text-align: left;
    margin-bottom: 30px;
}
.v1_section_discount_and_disclaimer .discount_and_disclaimer_notes_text a {
    color: #3e3e3e;
}
.v1_section_discount_and_disclaimer .discount_and_disclaimer_notes_phone_wrap {
    /*
    font-family: intro-bold;
    */
    font-family: 'Intro', sans-serif;
    font-weight: bold;
    font-size: 36px;
    margin-bottom: 5px;
}
.v1_section_discount_and_disclaimer .discount_and_disclaimer_notes_phone_wrap a {
    color: #3e3e3e;
}
/*
devyatkino-v1
end
*/
/*
@media
*/
@media screen and (max-width: 480px) {
    .row .apartments_plannings_item_wrap {
        margin-bottom: 70px;
    }
    .row .apartments_plannings_item {
        padding-top: 30px;
    }
    .row .apartments_plannings_item_t {
        font-size: 18px;
    }
    .row .f_plannings_first_screen_item_wrap {
        margin-bottom: 15px;
    }
    .f_plannings_modal_img_wrap {
        margin-left: auto;
        margin-right: auto;
        /*
        width: 120px;
        height: 120px;
        */
        height: auto;
    }
    .q_modal_f_plannings_modal_img_wrap {
        width: 120px;
        height: 120px;
        margin-left: auto;
        margin-right: auto;
    }
    .f_plannings_modal_t {
        font-size: 22px;
    }
    .f_plannings_modal_cta_text_1 {
        /*
        font-size: 18px;
        */
        font-size: 17px;
    }
    .q_modal_f_plannings_modal_cta_text_1 {
        font-size: 18px;
    }
    .f_plannings_modal_cta_text_2 {
        font-size: 14px;
    }
    .modal_with_auto_opening___studii_discount_text_wrap,
    .modal_with_auto_opening___discount_text_wrap {
        font-size: 15px;
    }
    .q_modal_f_plannings_modal_cta_text_2 {
        font-size: 13px;
        margin-right: -10px;
    }
    .q_modal_f_plannings_modal_last_step_text {
        font-size: 13px;
        margin-bottom: -13px;
    }
    .flats_plannings_list_item {
        margin-bottom: 10px;
    }
    .row .flats_plannings_list_item_img_wrap {
        margin-bottom: 10px;
        width: 100%;
    }
    .row .flats_plannings_list_item_img_area {
        margin-left: auto;
        margin-right: auto;
        width: 250px;
    }
    .row .flats_plannings_list_item_t {
        font-size: 16px;
    }
    .flats_plannings_list_item_description_info {
        font-size: 15px;
    }
    .flats_plannings_list_item_description_info_label {
        width: 50%;
    }
    .flats_plannings_list_item_discount_text {
        font-size: 15px;
    }
    .row .flats_plannings_list_item_price_btn_area {
        margin-bottom: 20px;
        width: 100%;
    }
    .flats_plannings_list_item_btn_wrap .b_link {
        width: 100%;
        font-size: 19px;
    }
    .about_zhk_text {
        text-align: left;
    }
    .korpusa_list_block {
        font-size: 10px;
        margin-top: 40px;
    }
    .row .kl_1_column {
        width: 50px;
    }
    .row .kl_4_column {
        float: left;
    }
    .kl_4_column .b_link {
        /*
        width: 170px;
        */
        width: 175px;
    }
    .korpusa_list_item_instead_of_button_text {
        font-size: 8px;
    }
    .genplan_mark_logo_and_metro {
        max-width: 100%;
        bottom: -20%;
    }
    .genplan_mark_koprus_1 {
        font-size: 7px;
        line-height: 7px;
        width: 32px;
        height: 32px;
        top: 0.5%;
        left: 63%;
    }
    .genplan_mark_koprus_2 {
        font-size: 7px;
        line-height: 7px;
        width: 32px;
        height: 32px;
        top: 11%;
        left: 72%;
    }
    .genplan_mark_koprus_3 {
        font-size: 7px;
        line-height: 7px;
        width: 32px;
        height: 32px;
        top: 22%;
        left: 62%;
    }
    .genplan_mark_koprus_4 {
        font-size: 7px;
        line-height: 7px;
        width: 32px;
        height: 32px;
        top: 18%;
        left: 46%;
    }
    .genplan_mark_koprus_5 {
        font-size: 7px;
        line-height: 7px;
        width: 32px;
        height: 32px;
    }
    .genplan_mark_detsad {
        font-size: 7px;
        line-height: 7px;
        width: 32px;
        height: 32px;
        padding-top: 11px;
        top: 10%;
        left: 30%;
    }
    .genplan_mark_parking {
        font-size: 7px;
        line-height: 7px;
        width: 32px;
        height: 32px;
        padding-top: 12px;
        top: 13%;
        left: 84%;
    }
    .genplan_mark_koprus_number {
        font-size: 9px;
    }
    .ya_map_area {
        /*
        height: 250px;
        */
        height: 330px;
    }
    .hod_stroitelstva_nav_pills_wrap {
        padding-left: 10px;
        padding-right: 10px;
    }
    .hod_stroitelstva_nav_pills_wrap a {
        font-size: 11px;
        /*
        margin-right: 7px;
        width: 85px;
        margin-right: 5px;
        width: 88px;
        */
        margin-right: 10px;
        width: 93px;
    }
    .hod_stroitelstva_nav_pills_wrap .nav>li>a {
        padding-left: 3px;
        padding-right: 3px;
    }
    .my-gallery figure {
        margin-bottom: 18px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .my-gallery figcaption {
        font-size: 11px;
        margin-top: 5px;
    }
    .row .payment_options_item_wrap {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    .row .payment_options_item {
        padding: 40px 20px 45px 20px;
    }
    .row .payment_options_item_t {
        font-size: 16px;
    }
    .banki_list_block {
        font-size: 10px;
        margin-top: 40px;
        margin-bottom: 30px;
        max-width: 305px;
    }
    .bl_1_column {
        width: 95px;
    }
    .banki_list_item img {
        height: 60px;
    }
    .bl_2_column {
        width: 70px;
    }
    .row .bl_3_column {
        float: left;
    }
    .about_zastrojshik_wrap {
        padding: 30px 15px;
    }
    .about_zastrojshik_logo_area {
        width: 240px;
        margin-bottom: 40px;
    }
    .about_zastrojshik_text_area {
        text-align: left;
    }
    .about_zastrojshik_facts_item {
        /*
        font-size: 12px;
        */
        font-size: 14px;
    }
    .section_discount_and_disclaimer {
        padding-bottom: 35px;
    }
    .discount_and_disclaimer_notes_wrap {
        /*
        margin-top: 120px;
        */
        margin-top: 0;
    }
    .section_one_screen {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .section_one_screen .section_first_screen_t {
        font-size: 15px;
    }
    .one_screen_advantages {
        text-align: left;
    }
    .row .one_screen_advantages_item_1 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_2 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_3 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_4 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_5 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_icon {
        width: 5%;
        margin-top: 3px;
        font-size: 8px;
    }
    .row .section_one_screen_text_wrap {
        padding-left: 0;
    }
    .one_screen_without_form_arrow_down_wrap {
        margin-top: -30px;
        margin-bottom: 25px;
    }
    .one_screen_without_form_button_wrap {
        margin-top: -10px;
    }
    .one_screen_without_form_genplan_wrap {
        margin-bottom: -20px;
    }
    .section_one_screen .genplan_mark_logo_and_metro {
        bottom: 5%;
    }
    .section_one_screen_disclaimer_notes {
        text-align: center;
    }
    .section_one_screen_disclaimer_notes_company {
        margin-right: 25px;
    }
    .section_one_screen_disclaimer_notes_link {
        margin-right: 0;
    }
    .section_one_screen_disclaimer_notes_phone {
        float: inherit;
    }
    .modal_with_auto_opening___two_stage_step1___text_wrap {
        font-size: 19px;
    }
    .modal_with_auto_opening___two_stage_step1___buttons_wrap {
        padding: 30px 0;
    }
    .q_first_screen_first_question_text {
        font-size: 30px;
        margin-top: 35px;
        margin-bottom: 15px;
    }
    .q_modal_t {
        font-size: 20px;
    }
    .row .q_modal_img_q_list_item_t {
        margin-bottom: 5px;
        font-size: 18px;
    }
    .q_modal_img_q_list_item_text {
        font-size: 13px;
    }
    .q_modal_img_q_list_item_oplata {
        min-height: 115px;
    }
    .modal_background_image_mark_more_info_and_close_btn_wrap {
        /*
        bottom: 9.1%;
        right: 2.0%;
        */
        bottom: -4.5%;
        right: 21%;
    }
    .modal_with_background_image .b_link_lg {
        padding: 7px 12px;
        font-size: 16px;
        font-weight: normal;
    }
    .v1_header_menu_section {
        padding: 10px 0 10px 0;
    } 
    .v1_header_menu_section a {
        font-size: 12px;
    }
    .v1_section {
        padding: 40px 0 40px 0;
    }
    .v1_section_first_screen_t {
        font-size: 22px;
    }
    .v1_section_first_screen_subt {
        font-size: 16px;
    }
    .v1_section_t {
        font-size: 26px;
    }
    .v1_section_subt {
        font-size: 18px;
    }
    .row .v1_navbar_brand {
        padding: 10px 0;
        height: 59px;
    }
    .v1_navbar_logo {
        width: 150px;
    }
    .row .v1_navbar_phone_wrap {
        font-size: 15px;
        float: right;
        text-align: right;
    }
    .row .v1_navbar_brand {
        float: left;
        text-align: left;
    }
    .v1_section_first_screen {
        margin-top: 59px;
        padding-top: 20px;
    }
    .v1_section_button_wrap .v1_b_link {
        font-size: 13px;
        padding: 10px 9px;
    }
    .row .v1_section_first_screen_text_wrap {
        margin-top: 22px;
    }
    .v1_section_first_screen_list_item_text_area {
        font-size: 14px;
    }
    .v1_section_first_screen_list_item_icon {
        width: 38px;
    }
    .row .v1_section_first_screen_img_column_1 {
        padding-right: 10px;
    }
    .row .v1_section_first_screen_img_column_2 {
        padding-left: 4px;
    }
    .v1_section_first_screen_img_column_1 img, .v1_section_first_screen_img_column_2 img {
        margin-bottom: 14px;
    }
    .v1_section_spisok_planirovok {
        padding-bottom: 0;
        margin-bottom: -20px;
    }
    .v1_flats_plannings_list_item_btn_wrap .v1_b_link {
        width: 257px;
        padding-left: 0;
        padding-right: 0;
    }
    .v1_flats_plannings_list_item {
        margin-bottom: 31px;
    }
    .v1_flats_plannings_list_item_ribbon_left {
        top: -3.3%;
        left: 0.1%;
    }
    .v1_flats_plannings_list_item_ribbon_right {
        top: -3.3%;
        right: 0.1%;
    }
    .v1_flats_plannings_list_item_ribbon_left .ribbon_text_area {
        /*
        width: 237px;
        font-size: 15px;
        padding: 8px 0 6px 0;
        */
        font-size: 12px;
        padding: 10px 0 6px 0;
    }
    .v1_flats_plannings_list_item_ribbon_right .ribbon_text_area {
        /*
        width: 237px;
        font-size: 15px;
        padding: 8px 0 6px 0;
        */
        font-size: 12px;
        padding: 10px 0 6px 0;
    }
    .row .v1_flats_plannings_list_item_description_info {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .row .v1_about_zhk_column_left {
        padding-right: 0;
        padding-bottom: 20px;
        font-size: 14px;
    }
    .row .v1_about_zhk_column_right {
        padding: 15px 18px;
    }
    .v1_about_zhk_column_right_t {
        font-size: 20px;
    }
    .row .v1_about_zhk_column_right_text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .v1_korpusa_list_block {
        margin-top: 0;
        margin-bottom: 10px;
        border-top: 0;
    }
    .row .v1_korpusa_list_korpus_wrap {
        width: auto;
        margin-bottom: 25px;
        margin-left: 3px;
        margin-right: 3px;
    }
    .row .v1_korpusa_list_string_content {
        font-size: 14px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .row .v1_korpusa_list_korpus_content_wrap {
        margin-bottom: 6px;
    }
    .v1_korpusa_list_korpus_area .b_link {
        padding-left: 16px;
        padding-right: 16px;
    }
    .v1_genplan_wrap {
        margin-bottom: 12px;
    }
    .v1_section_na_karte .ya_map_wrap {
        margin-top: 0;
    }
    .v1_hod_stroitelstva_nav_pills_wrap a {
        width: 89px;
        margin-left: 3px;
        margin-right: 3px;
        margin-bottom: 15px;
    }
    .v1_section_u_nas_uzhe_zhivut .section_button_wrap .v1_b_link_lg {
        padding: 17px 41px;
    }
    .v1_section_otdelka .section_button_wrap .v1_b_link_lg {
        padding: 17px 41px;
    }
    .v1_hod_stroitelstva_nav_pills_wrap {
        margin-left: -3px;
        margin-right: -3px;
    }
    .v1_section_hod_stroitelstva .tab-content {
        margin-left: auto;
        margin-right: auto;
    }
    .v1_section_hod_stroitelstva .my-gallery figure {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 18px;
    }
    .v1_section_u_nas_uzhe_zhivut .my-gallery {
        margin-left: auto;
        margin-right: auto;
    }
    .v1_section_u_nas_uzhe_zhivut .my-gallery figure {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 18px;
    }
    .v1_section_u_nas_uzhe_zhivut .my-gallery figcaption {
        font-size: 12px;
    }
    .v1_section_otdelka .my-gallery {
        margin-left: auto;
        margin-right: auto;
    }
    .v1_section_otdelka .my-gallery figure {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 18px;
    }
    .v1_payment_options {
        padding-bottom: 0;
    }
    .row .v1_payment_options_item_wrap {
        font-size: 16px;
        padding: 20px 20px;
        height: auto;
    }
    .v1_banki_list_block {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }
    .row .v1_banki_list_item_wrap {
        margin-left: 10px;
        margin-right: 10px;
    }
    .row .v1_banki_list_item_img_wrap {
        padding-top: 0;
        padding-bottom: 0;
    }
    .row .v1_banki_list_item_text_wrap {
        padding-bottom: 30px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .v1_about_zastrojshik_text_area {
        font-size: 14px;
    }
    .row .v1_about_zastrojshik_logo_area {
        padding-top: 25px;
        padding-bottom: 15px;
    }
    .v1_section_o_zastrojshike .row .about_zastrojshik_facts_item {
        margin-top: 15px;
        height: auto;
    }
    .v1_section_o_zastrojshike .about_zastrojshik_facts_item_t {
        font-size: 22px;
    }
    .v1_section_discount_and_disclaimer {
        padding-bottom: 35px;
    }
    .v1_section_discount_and_disclaimer .discount_and_disclaimer_notes_wrap {
        padding-top: 30px;
    }
    .v1_section_discount_and_disclaimer .discount_and_disclaimer_notes_text {
        font-size: 11px;
        margin-bottom: 15px;
    }
    .v1_section_discount_and_disclaimer .discount_and_disclaimer_notes_phone_wrap {
        font-size: 26px;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 481px) {
    .apartments_plannings  {
        padding: 0 40px;
    }
    .row .apartments_plannings_item_t {
        font-size: 20px;
    }
    .flats_plannings_list_item {
        margin-bottom: 10px;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .f_plannings_first_screen_item {
        max-width: 370px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .f_plannings_first_screen_item_description_info {
        max-width: 225px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .flats_plannings_list_item_img_wrap {
        margin-bottom: 10px;
        width: 100%;
    }
    .row .flats_plannings_list_item_img_area {
        margin-left: auto;
        margin-right: auto;
        width: 250px;
    }
    .row .flats_plannings_list_item_t {
        font-size: 16px;
    }
    .flats_plannings_list_item_description_info_label {
        width: 138px;
    }
    .row .flats_plannings_list_item_price_btn_area {
        margin-bottom: 20px;
        width: 100%;
    }
    .flats_plannings_list_item_btn_wrap .b_link {
        width: 100%;
    }
    .ya_map_area {
        /*
        height: 250px;
        */
        height: 330px;
    }
    .payment_options {
        padding: 0 40px;
    }
    .row .payment_options_item_t {
        font-size: 20px;
    }
    .section_discount_and_disclaimer {
        padding-bottom: 35px;
    }
    .section_one_screen {
        padding-top: 20px;
        padding-bottom: 20px;
    }    
    .section_one_screen .section_first_screen_t {
        font-size: 15px;
    }
    .one_screen_advantages {
        text-align: left;
    }
    .row .one_screen_advantages_item_1 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_2 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_3 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_4 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_5 {
        width: 95%;
        margin-bottom: 8px;
    }
    .row .one_screen_advantages_item_icon {
        width: 5%;
        margin-top: 3px;
        font-size: 8px;
    }
    .row .section_one_screen_text_wrap {
        padding-left: 0;
    }
    .one_screen_without_form_arrow_down_wrap {
        margin-top: -30px;
        margin-bottom: 25px;
    }    
    .one_screen_without_form_button_wrap {
        margin-top: -10px;
    }
    .one_screen_without_form_genplan_wrap {
        margin-bottom: -20px;
    }
    .section_one_screen .genplan_mark_logo_and_metro {
        bottom: 5%;
    }
    .section_one_screen_disclaimer_notes {
        text-align: center;
    }
    .section_one_screen_disclaimer_notes_company {
        margin-right: 25px;
    }
    .section_one_screen_disclaimer_notes_link {
        margin-right: 0;
    }
    .section_one_screen_disclaimer_notes_phone {
        float: inherit;
    }
    .modal_background_image_mark_more_info_and_close_btn_wrap {
        /*
        bottom: 10.1%;
        right: 3.1%;
        */
        bottom: 0.1%;
        right: 20.3%;
    }
    .modal_with_background_image .b_link_lg {
        padding: 9px 22px;
        font-size: 18px;
        font-weight: normal;
    }
    .v1_header_menu_section {
        padding: 10px 0 10px 0;
    }  
    .v1_section {
        padding: 40px 0 40px 0;
    }
    .v1_section_subt {
        font-size: 20px;
    }
    .row .v1_navbar_phone_wrap {
        padding-top: 24px;
        padding-bottom: 4px;
        font-size: 22px;
        float: right;
        text-align: right;
    }
    .v1_section_button_wrap .v1_b_link {
        padding: 17px 45px;
    }
    .v1_section_first_screen {
        margin-top: 84px;
    }
    .row .v1_section_first_screen_img_column_1 {
        padding-right: 10px;
    }
    .row .v1_section_first_screen_img_column_2 {
        padding-left: 4px;
    }
    .v1_section_first_screen_img_column_1 img, .v1_section_first_screen_img_column_2 img {
        margin-bottom: 14px;
    }
    .v1_flats_plannings_list_item_btn_wrap .v1_b_link {
        width: 257px;
        padding-left: 0;
        padding-right: 0;
    }
    .row .v1_flats_plannings_list_item_img_area {
        width: 190px;
    }
    .v1_flats_plannings_list_item {
        margin-bottom: 31px;
    }
    .v1_flats_plannings_list_item_ribbon_left {
        position: absolute;
        top: -3.5%;
        left: -3.5%;
    }
    .v1_flats_plannings_list_item_ribbon_right {
        position: absolute;
        top: -3.5%;
        right: -3.5%;
    }
    .row .v1_about_zhk_column_left {
        padding-bottom: 20px;
    }
    .v1_korpusa_list_block {
        margin-top: 0;
        border-top: 0;
    }
    .row .v1_payment_options_item_wrap {
        font-size: 26px;
        padding: 30px 20px;
    }
    .v1_banki_list_block {
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (min-width: 768px) {
    .apartments_plannings  {
        padding: 0 0;
    }
    .row .apartments_plannings_item_t {
        font-size: 22px;
    }
    .flats_plannings_list_item {
        max-width: 100%;
    }
    .row .flats_plannings_list_item_img_wrap {
        margin-bottom: 0;
        width: 250px;
    }
    .row .flats_plannings_list_item_description {
        padding-left: 25px;
    }
    .flats_plannings_list_item_btn_wrap .b_link {
        /*
        width: 250px;
        */
        width: 265px;
    }
    .about_zhk_text {
        width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .row .kl_1_column {
        width: 168px;
    }
    .row .kl_2_column {
        width: 168px;
    }
    .row .kl_3_column {
        width: 167px;
    }
    .row .kl_4_column {
        width: 197px;
    }
    .row .bl_4_column {
        padding-right: 22px;
    }
    .ya_map_area {
        height: 600px;
    }
    .payment_options {
        padding: 0 0;
    }
    .row .payment_options_item_t {
        font-size: 16px;
    }   
    .section_discount_and_disclaimer {
        padding-bottom: 35px;
    }
    .section_one_screen {
        padding-top: 20px;
        padding-bottom: 20px;
    }    
    .section_one_screen .section_first_screen_t {
        font-size: 17px;
    }
    .one_screen_advantages {
        text-align: center;
    }
    .row .one_screen_advantages_item_1 {
        width: 20%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_2 {
        width: 22%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_3 {
        width: 10%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_4 {
        width: 24%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_5 {
        width: 12%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_icon {
        width: 3%;
        margin-top: 3px;
        font-size: 8px;
    }
    .row .section_one_screen_text_wrap {
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 15px;
    }
    .section_one_screen_text_wrap {
        float: right;
    }
    .section_one_screen_image_wrap {
        float: left;
    }
    .one_screen_without_form_arrow_down_wrap {
        margin-top: -20px;
        margin-bottom: -65px;
    }       
    .one_screen_without_form_button_wrap {
        margin-top: 75px;
    }
    .one_screen_without_form_genplan_wrap {
        margin-bottom: -20px;
    }
    .section_one_screen .genplan_mark_logo_and_metro {
        bottom: 5%;
    }
    .section_one_screen_disclaimer_notes {
        text-align: left;
    }
    .section_one_screen_disclaimer_notes_company {
        margin-right: 50px;
    }
    .section_one_screen_disclaimer_notes_link {
        margin-right: 50px;
    }
    .section_one_screen_disclaimer_notes_phone {
        float: right;
    }   
    .q_modal_img_q_list_item_otdelka {
        min-height: 300px;
    }
    .modal_background_image_mark_more_info_and_close_btn_wrap {
        /*
        bottom: 11.7%;
        right: 2.3%;
        */
        bottom: 0.5%;
        right: 23.3%;
    }
    .modal_with_background_image .b_link_lg {
        font-size: 20px;
        font-weight: normal;
    }  
    .v1_header_menu_section {
        padding: 10px 0 10px 0;
    } 
    .v1_section {
        padding: 40px 0 40px 0;
    }
    .v1_section_subt {
        font-size: 20px;
    }
    .row .v1_navbar_phone_wrap {
        padding-bottom: 4px;
        float: left;
        text-align: left;
        font-size: 26px;
        padding-top: 23px;
    }
    .v1_header_menu_wrap a {
        font-size: 14px;
        padding: 0 11px;
    }
    .v1_section_button_wrap .v1_b_link {
        padding: 17px 61px;
    }
    .v1_section_first_screen {
        margin-top: 0;
    }
    .row .v1_section_first_screen_img_column_1 {
        padding-right: 10px;
    }
    .row .v1_section_first_screen_img_column_2 {
        padding-left: 4px;
    }
    .v1_section_first_screen_t {
        font-size: 28px;
        padding-right: 20px;
    }
    .row .v1_section_first_screen_subt {
        font-size: 18px;
        padding-right: 20px;
    }
    .v1_section_first_screen_list_item_text_area {
        font-size: 14px;
    }
    .v1_section_first_screen_img_column_1 img, .v1_section_first_screen_img_column_2 img {
        margin-bottom: 14px;
    }
    .v1_flats_plannings_list_item_btn_wrap .v1_b_link {
        width: 257px;
        padding-left: 0;
        padding-right: 0;
    }
    .v1_flats_plannings_list_item {
        margin-bottom: 31px;
    }
    .v1_flats_plannings_list_item_ribbon_left {
        position: absolute;
        top: -6.5%;
        left: -2.5%;
    }
    .v1_flats_plannings_list_item_ribbon_right {
        position: absolute;
        top: -6.5%;
        right: -2.5%;
    }
    .row .flats_plannings_list_item_t {
        font-size: 18px;
    }
    .row .v1_about_zhk_column_left {
        padding-bottom: 0;
    }
    .v1_korpusa_list_block {
        margin-top: 35px;
        border-top: 1px solid #979797;
    }
    .v1_korpusa_list_korpus_wrap {
        width: auto;
    }
    .v1_korpusa_list_korpus_area .b_link {
        padding-left: 16px;
        padding-right: 16px;
    }
    .v1_hod_stroitelstva_nav_pills_wrap a {
        width: 157px;
    }
    .v1_section_u_nas_uzhe_zhivut .my-gallery figcaption {
        font-size: 14px;
    }
    .v1_banki_list_block {
        margin-left: -20px;
        margin-right: -20px;
    }
    .row .v1_payment_options_item_wrap {
        font-size: 26px;
        padding: 35px;
    }
    .row .v1_payment_options_item_wrap_mat_kapital {
        padding: 35px;
        line-height: inherit;
    }
    .v1_section_o_zastrojshike .about_zastrojshik_facts_item_t {
        font-size: 26px;
    }
}
@media screen and (min-width: 992px) {
    .apartments_plannings  {
        padding: 0 50px;
    }
    .f_plannings_first_screen_item_description_info {
        font-size: 14px;
    }
    .f_plannings_first_screen_item_btn_wrap .b_link_lg {
        padding: 13px 30px;
    }
    .flats_plannings_list_item {
        margin-bottom: 0;
    }
    .row .flats_plannings_list_item_price_btn_area {
        width: auto;
        margin-right: 26px;
    }
    .flats_plannings_list_item_btn_wrap .b_link {
        width: auto;
    }
    .row .ya_map_legend_item_img {
        width: 45px;
    }
    .section_aerotour {
        padding-bottom: 0;
    }
    .payment_options {
        /*
        padding: 0 50px;
        */
        padding: 0;
    }    
    .section_discount_and_disclaimer {
        padding-bottom: 35px;
    }
    .section_one_screen {
        padding-top: 20px;
        padding-bottom: 20px;
    }    
    .section_one_screen .section_first_screen_t {
        font-size: 20px;
    }
    .row .section_one_screen_text_wrap {
        padding-left: 30px;
    }
    .one_screen_without_form_arrow_down_wrap {
        margin-top: -30px;
        margin-bottom: -50px;
    }       
    .one_screen_without_form_button_wrap {
        margin-top: 60px;
        margin-bottom: 40px;
    }
    .one_screen_without_form_genplan_wrap {
        margin-bottom: -80px;
        max-width: 300px;
    }
    .section_one_screen .genplan_mark_logo_and_metro {
        bottom: 5%;
    }
    .modal_with_background_image .modal-dialog {
        width: 900px;
    }
    .modal_with_background_image .close {
        /*
        font-size: 55px;
        */
        font-weight: normal;
        font-size: 27px;
    }
    .modal_with_background_image .b_link_lg {
        font-size: 28px;
        font-weight: bold;
    }
    .modal_background_image_mark_more_info_and_close_btn_wrap {
        /*
        bottom: 12.8%;
        right: 4.1%;
        */
        bottom: 1.7%;
        right: 25.3%;
    }
    .modal_background_image_mark_close_btn {
        margin-left: 8px;
    }
    .v1_header_menu_section {
        padding: 10px 0 10px 0;
    } 
    .v1_section {
        padding: 40px 0 40px 0;
    }
    .v1_section_subt {
        font-size: 20px;
    }
    .row .v1_navbar_phone_wrap {
        padding-top: 19px;
        padding-bottom: 4px;
        font-size: 34px;
    }
    .v1_header_menu_wrap a {
        font-size: 16px;
        padding: 0 20px;
    }
    .v1_section_first_screen_t {
        font-size: 36px;
    }
    .row .v1_section_first_screen_subt {
        font-size: 20px;
    }
    .v1_section_first_screen_list_item_text_area {
        font-size: 15px;
    }
    .v1_section_first_screen_img_column_1 img, .v1_section_first_screen_img_column_2 img {
        margin-bottom: 26px;
    }
    .row .v1_section_first_screen_img_column_1 {
        padding-right: 18px;
    }
    .row .v1_section_first_screen_img_column_2 {
        padding-left: 8px;
    }
    .v1_flats_plannings_list_item_btn_wrap .v1_b_link {
        width: 257px;
        padding-left: 0;
        padding-right: 0;
    }
    .v1_flats_plannings_list_item {
        margin-bottom: 31px;
    }
    .v1_flats_plannings_list_item_ribbon_left {
        position: absolute;
        top: -7.5%;
        left: -2.5%;
    }
    .v1_flats_plannings_list_item_ribbon_right {
        position: absolute;
        top: -7.5%;
        right: -2.5%;
    }
    .row .v1_korpusa_list_string_content {
        height: 70px;
    }
    .v1_korpusa_list_korpus_wrap {
        width: 155px;
    }
    .v1_korpusa_list_korpus_area .b_link {
        padding-left: 22px;
        padding-right: 22px;
    }
    .v1_section_aerotour {
        padding-bottom: 20px;
    }
    .v1_hod_stroitelstva_nav_pills_wrap a {
        width: 164px;
    }
    .v1_section_u_nas_uzhe_zhivut .my-gallery figcaption {
        font-size: 16px;
    }
    .row .v1_payment_options_item_wrap {
        font-size: 28px;
    }
    .row .v1_payment_options_item_wrap_mat_kapital {
        padding-top: 15px;
        padding-bottom: 15px;
        line-height: 1.3;
    }
    .row .v1_banki_list_item_wrap {
        width: 110px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .v1_section_o_zastrojshike .about_zastrojshik_facts_item_t {
        font-size: 36px;
    }
}
@media screen and (min-width: 1200px) {
    .apartments_plannings  {
        padding: 0 150px;
    }
    .f_plannings_first_screen_item_description_info {
        font-size: 15px;
    }
    .f_plannings_first_screen_item_btn_wrap .b_link_lg {
        padding: 13px 35px;
    }
    .section_aerotour {
        padding-bottom: 0;
    }
    .payment_options {
        /*
        padding: 0 150px;
        */
        padding: 0;
    }   
    .section_discount_and_disclaimer {
        padding-bottom: 35px;
    }    
    .section_one_screen {
        padding-top: 20px;
        padding-bottom: 20px;
    }     
    .row .one_screen_advantages_item_1 {
        width: 23%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_2 {
        width: 19%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_3 {
        width: 10%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_4 {
        width: 24%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_5 {
        width: 12%;
        margin-bottom: 0;
    }
    .row .one_screen_advantages_item_icon {
        width: 3%;
        margin-top: 3px;
        font-size: 8px;
    }
    .row .section_first_screen_text_wrap {
        padding-left: 40px;
    }
    .one_screen_without_form_arrow_down_wrap {
        margin-top: -20px;
        margin-bottom: -65px;
    } 
    .one_screen_without_form_button_wrap {
        margin-top: 75px;
        margin-bottom: 55px;
    }
    .one_screen_without_form_genplan_wrap {
        margin-bottom: -80px;
        max-width: 400px;
    }
    .section_one_screen .genplan_mark_logo_and_metro {
        bottom: 4%;
    }
    .flats_plannings_list_item_price_btn_discount_text {
        padding: 15px 16px;
        font-size: 17px;
    }
    .f_plannings_first_screen_item_discount_text {
        margin-left: -50px;
        margin-right: -50px;
        padding-left: 6px;
        padding-right: 7px;
        font-size: 13px;
    }
    .v1_header_menu_section {
        padding: 10px 0 10px 0;
    } 
    .v1_section {
        padding: 40px 0 40px 0;
    }
    .v1_section_subt {
        font-size: 20px;
    }
    .row .v1_navbar_phone_wrap {
        font-size: 36px;
    }
    .v1_section_first_screen_img_column_1 img, .v1_section_first_screen_img_column_2 img {
        margin-bottom: 27px;
    }
    .v1_flats_plannings_list_item_btn_wrap .v1_b_link {
        width: 257px;
        padding-left: 0;
        padding-right: 0;
    }
    .v1_flats_plannings_list_item {
        margin-bottom: 31px;
    }
    .v1_flats_plannings_list_item .row .flats_plannings_list_item_img_wrap {
        margin-right: 55px;
    }
    .v1_flats_plannings_list_item_ribbon_left {
        position: absolute;
        top: -7.5%;
        left: -3.5%;
    }
    .v1_flats_plannings_list_item_ribbon_right {
        position: absolute;
        top: -7.5%;
        right: -3.5%;
    }
    .v1_korpusa_list_korpus_wrap {
        width: 189px;
    }
    .row .v1_korpusa_list_string_content {
        height: auto;
    }
    .v1_section_aerotour {
        padding-bottom: 20px;
    }
    .row .v1_payment_options_item_wrap {
        font-size: 36px;
    }
    .row .v1_banki_list_item_wrap {
        width: 128px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .section_hod_stroitelstva .tab-content {
        margin-left: -10px;
        margin-right: -10px;
    }
    .hod_stroitelstva_nav_pills_wrap {
        /*
        padding-left: 10px;
        padding-right: 10px;
        */
        margin-right: -10px;
    }
    .hod_stroitelstva_nav_pills_wrap a {
        font-size: 11px;
        /*
        margin-right: 7px;
        width: 85px;
        margin-right: 5px;
        width: 88px;
        */
        margin-right: 10px;
        width: 93px;
    }
    .hod_stroitelstva_nav_pills_wrap .nav>li>a {
        padding-left: 3px;
        padding-right: 3px;
    }
    .my-gallery figure {
        margin-bottom: 18px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .my-gallery figcaption {
        font-size: 11px;
        margin-top: 5px;
    }
}
@media screen and (min-width: 481px) {
    .section_hod_stroitelstva .tab-content {
        margin-left: -15px;
        margin-right: -15px;
    }
    .hod_stroitelstva_nav_pills_wrap {
        margin-right: -15px;
    }
    .hod_stroitelstva_nav_pills_wrap a {
        font-size: 13px;
        width: 122px;
    }
    .my-gallery figure {
        margin-bottom: 28px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media screen and (min-width: 768px) {
    .section_hod_stroitelstva .tab-content {
        margin-left: -15px;
        margin-right: -15px;
    }
    .hod_stroitelstva_nav_pills_wrap {
        margin-right: -15px;
    }
    .hod_stroitelstva_nav_pills_wrap a {
        /*
        font-size: 13px;
        width: 121px;
        */
        font-size: 14px;
        width: 132px;
    }
    .my-gallery figure {
        margin-bottom: 28px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media screen and (min-width: 992px) {
    .section_hod_stroitelstva .tab-content {
        margin-left: -20px;
        margin-right: -20px;
    }
    .hod_stroitelstva_nav_pills_wrap {
        margin-right: -15px;
    }
    .hod_stroitelstva_nav_pills_wrap a {
        /*
        font-size: 15px;
        width: 135px;
        */
        font-size: 13px;
        width: 121px;
    }
    .my-gallery figure {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
}
@media screen and (min-width: 1200px) {
    .hod_stroitelstva_nav_pills_wrap {
        margin-right: -15px;
    }
    .hod_stroitelstva_nav_pills_wrap a {
        font-size: 14px;
        width: 129px;
    }
}
/*
@media
end
*/

/*
.grey_form_item .form-control
*/
.grey_form_item .form-control:focus {
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
/*
.grey_form_item .form-control
end
*/
.modal_on_link .close {
    font-size: 26px;
    font-weight: 500;
}
.modal_on_link_content {
    padding: 40px 60px 60px;
}
.mol_t {
	font-size: 24px;
    font-weight: bold;
}
.modal_on_link .big_form_item {
    /*
    margin-top: 15px;
    */
    margin-top: 25px;
}
.modal_on_link_btn_wrap {
    margin-top: 25px;
    margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
    .modal_on_link_content {
        padding: 5px 15px 15px;
    }
}
/*
Custom style for checkbox
*/
.checkbox label {
  min-height: 18px;
  padding-left: 25px;
  font-size: 14px;
}
.custom_checkbox label {
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  padding-left: 0;
  background: #ffffff;
  color: #555;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.custom_checkbox label:after {
  content: '';
  width: 7px;
  height: 4px;
  position: absolute;
  top: 3px;
  left: 3px;
  border: 3px solid #555;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
    -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
}
.custom_checkbox label:hover::after {
  opacity: 0;
}
.custom_checkbox input[type=checkbox] {
  visibility: hidden;
}
.custom_checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}
/*
Custom style for checkbox end
*/
.modal_on_link .checkbox {
    text-align: left;
}
.modal_on_link .checkbox a:hover, .modal_on_link .checkbox a:focus, .modal_on_link .checkbox a:active {
    color: #cac3a9;
}
.modal_on_link .checkbox a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 480px) {
	.mol_t {
		font-size: 20px;
	}
}
@media screen and (min-width: 481px) {

}
@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {

}
@media screen and (min-width: 1200px) {

}