@charset "utf-8";

/* ================================== Custom Classes Start ================================== */

.list li {
    list-style: none;
}

.hide {
    display: none !important;
    visibility: hidden;
}

.invisible {
    visibility: hidden;
}

.clear {
    display: table;
    clear: both;
    height: 0;
    visibility: hidden;
}

.dblock {
    display: block;
}

.justify {
    text-align: justify;
}

.justify:after {
    width: 100%;
    height: 0;
    visibility: hidden;
    overflow: hidden;
    content: '';
    display: inline-block;
}

.hr {
    height: 1px;
    background: #d7d7d7;
    clear: both;
}

.bold {
    font-weight: 600;
}

.pn_lab {
    margin-bottom: 0;
    vertical-align: middle;
    margin-top: 0;
}

.pn_lab sup,
.pn_textsub sup {
    color: #FF0A0A;
    top: -5px;
    position: relative;
    margin-left: 2px;
}

/* ====== Inputs ====== */

.inp,
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"] {
    padding: 3px 13px;
    color: #212121;
    box-shadow: none;
    font-family: 'formularregular', Arial, sans-serif;
    transition: 0.25s linear;
    height: 45px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fcfcfc;
    font-size: 17px;
    line-height: 30px;
    letter-spacing: -0.05px;
}

textarea {
    height: 125px;
    padding: 5px 10px;
    border-width: 2px;
    border-style: solid;
    border-color: #fff;
    border-radius: 3px;
    font-size: 16px;
    color: #3a3a3a;
    box-shadow: none;
    transition: border-color 0.25s linear;
}

textarea.inp,
textarea {
    min-height: 75px;
    max-height: 125px;
    resize: vertical;
}

form div.line {
    margin-bottom: .8em;
}

.inp:focus,
.inp:hover,
.inp:active,
input[type="text"]:hover,
input[type="text"]:focus,
input[type="text"]:active,
input[type="password"]:hover,
input[type="password"]:focus,
input[type="password"]:active,
textarea:hover,
textarea:focus,
textarea:active {
    border-color: #4aa7ab;
    box-shadow: inset 0px 0px 0px 1px #4aa7ab;
}

/* ====== Placeholders ====== */

input[type="text"]::-webkit-input-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="text"]::-moz-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="text"]::placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="text"]:focus::-webkit-input-placeholder {
    color: transparent;
}

input[type="text"]:focus::-moz-placeholder {
    color: transparent;
}

input[type="text"]:focus::placeholder {
    color: transparent;
}


input[type="password"]::-webkit-input-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="password"]::-moz-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="password"]::placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="password"]:focus::-webkit-input-placeholder {
    color: transparent;
}

input[type="password"]:focus::-moz-placeholder {
    color: transparent;
}

input[type="password"]:focus::placeholder {
    color: transparent;
}


input[type="tel"]::-webkit-input-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="tel"]::-moz-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="tel"]::placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="tel"]:focus::-webkit-input-placeholder {
    color: transparent;
}

input[type="tel"]:focus::-moz-placeholder {
    color: transparent;
}

input[type="tel"]:focus::placeholder {
    color: transparent;
}

input[type="tel"]:focus::placeholder {
    color: transparent;
}


input[type="email"]::-webkit-input-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="email"]::-moz-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="email"]::placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

input[type="email"]:focus::-webkit-input-placeholder {
    color: transparent;
}

input[type="email"]:focus::-moz-placeholder {
    color: transparent;
}

input[type="email"]:focus::placeholder {
    color: transparent;
}

input[type="email"]:focus::placeholder {
    color: transparent;
}


textarea::-webkit-input-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

textarea::-moz-placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

textarea::placeholder {
    opacity: 0.5;
    color: #212121;
    font-size: 17px;
    letter-spacing: -0.05px;
    transition: color 0.25s linear;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus::placeholder {
    color: transparent;
}


/* ====== Buttons ====== */

.btn {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    font-family: 'formularbold', Arial, sans-serif;
    padding: 13px 42px;
    border-radius: 4px;
    border-width: 2px !important;
    border-style: solid;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    transition: color 0.25s linear, background-color 0.25s linear, border-color 0.25s linear;
    height: auto;
    text-transform: uppercase;
    letter-spacing: 0.25px;
}

.btn span {
    display: inline-block;
    vertical-align: middle;
}


.btn:hover,
.btn:focus,
.btn:active {
    color: #fff;
}

/* blue */
.btn.blue {
    background: #1779b1;
    border-color: #1779b1;
}

.btn.blue:hover {
    color: #1779b1;
    background: #fff;
}

.btn.blue.bord {
    color: #1779b1;
    background: #fff;
}

.btn.blue.bord:hover {
    color: #fff;
    background: #1779b1;
    border-color: #1779b1;
}

/* green */
.btn.green {
    background: #028f8a;
    border-color: #028f8a;
}

.btn.green:hover {
    color: #028f8a;
    background: #fff;
}

/* light_blue */
.btn.light_blue {
    background: #5bc0de;
    border-color: #5bc0de;
}

.btn.light_blue:hover {
    color: #5bc0de;
    background: #fff;
}

/* orange */
.btn.orange {
    background: #f0ad4e;
    border-color: #f0ad4e;
}

.btn.orange:hover {
    color: #f0ad4e;
    background: #fff;
}

/* red */
.btn.red {
    background: #fff;
    border-color: #d12e26;
    color: #212121;
}

.btn.red:hover {
    color: #d12e26;
    background: #fff;
    border-color: #d12e26;
}

.btn.red:focus {
    color: #fff;
    background: #d12e26;
    border-color: #d12e26;
}

.btn.red.bg {
    background: #d12e26;
    border-color: #d12e26;
    color: #fff;
}

.btn.red.bg:hover {
    background: #f8362d;
    border-color: #f8362d;
}

.btn.red.bg:focus {

    background: #ab241d;

    border-color: #ab241d;
}


.btn.btn-lg {
    font-size: 16px;
    line-height: 25px;
    padding: 10px 25px;
}

.btn.btnsm {
    font-size: 12px;
    padding: 5px 25px;
}

.btn_slide {
    padding: 10px 20px;
}

.btn_toggle {
    border-width: 0;
    width: 35px;
    height: 40px;
    line-height: 1;
    color: #fff;
    padding: 0;
    text-align: center;
    font-size: 20px;
    border-radius: 3px;
    transition: 0.25s linear;
    float: none;
    position: relative;
    border-style: solid;
    margin-right: 25px;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
    background: #fff;
}

.btn_toggle span {
    bottom: auto;
    display: inline-block;
    height: 3px;
    left: 50%;
    position: absolute;
    right: auto;
    top: 50%;
    width: 35px;
    z-index: 10;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: #000;
}

.btn_toggle span:before,
.btn_toggle span:after {
    content: "";
    background: #000;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.btn_toggle span:before {
    -moz-transform: translateY(-6px) rotate(0deg);
    -ms-transform: translateY(-6px) rotate(0deg);
    -webkit-transform: translateY(-6px) rotate(0deg);
    transform: translateY(-9px) rotate(0deg);
}

.btn_toggle span:after {
    -moz-transform: translateY(6px) rotate(0deg);
    -ms-transform: translateY(6px) rotate(0deg);
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(9px) rotate(0deg);
}

.btn_toggle:not(.drop):before {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.btn_toggle:not(.drop):after {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.btn_toggle:not(.drop) span {
    background: transparent !important;
}

.btn_toggle:not(.drop) span:before,
.btn_toggle:not(.collapsed) span:after {
    background: #000;
}

.btn_toggle:not(.drop) span:before {
    -moz-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}

.btn_toggle:not(.drop) span:after {
    -moz-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    -webkit-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}

.btn_toggle:hover,
.btn_toggle:not(.drop) {
    left: 0 !important;
}

.btn_toggle .icon-bar {
    display: block;
    width: 27px;
    height: 3px;
    border-radius: 1px;
    margin: 3px auto;
    background: #a9a9a9;
}

.btn_toggle .icon-bar + .icon-bar {
    margin-top: 8px;
}

.btn_toggle:hover .icon-bar,
.btn_toggle:not(.drop) .icon-bar {
    background: #fff;
}

a.btn {
    text-decoration: none !important;
}

/* blue btn */
.btn span {
    display: inline-block;
    vertical-align: middle;
}

.pn_whit {
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    padding: 3px 4px;
    border-radius: 5px;
}

img[align=right] {
    float: right;
    margin: 0 0 1em 1em;
}

img[align=left] {
    float: left;
    margin: 0 1em 1em 0;
}

.line_tr {
    margin-bottom: 15px;
}

.line_tr .pn_lab {
    display: inline-block;
    vertical-align: top;
    min-width: 160px;
}

.toTop {
    display: block;
    cursor: pointer;
    position: fixed;
    bottom: -100px;
    right: 14px;
    z-index: 1000;
    font-size: 17px;
    text-decoration: none;
    text-align: center;
    transition: background 0.25s linear, color 0.25s linear;
    color: #fff;
    background: #4aa7ab;
    border-radius: 50%;
    padding: 4px 4px;
    opacity: 0.85;
    border-width: 2px;
    border-style: solid;
    border-color: #4aa7ab;
    height: 30px;
    width: 30px;
}

.toTop:hover {
    background: #fff;
    color: #4aa7ab;
}

.pn_row {
    font-size: 0;
}

.pn_row [class*="col-"] {
    float: none;
    display: inline-block;
}

.pn_row.vm [class*="col-"] {
    vertical-align: middle;
}

.pn_row.vt [class*="col-"] {
    vertical-align: top;
}

.pn_row.vb [class*="col-"] {
    vertical-align: bottom;
}


.pn_mess {

    width: 50px;

    height: 50px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    background-color: #ffffff;

    border-radius: 50%;

    display: block;

    font-size: 20px;

    color: #afafaf;

    text-decoration: none;

    padding: 16px 14px;

    position: fixed;

    top: 77%;

    right: 14px;

    z-index: 30;
}

.pn_mess:hover {
    color: #767676;
}

.pn_mess i {

}

.pn_mess small {

    position: absolute;

    width: 18px;

    height: 18px;

    background-color: #d12e26;

    border-radius: 50%;

    color: #fff;

    text-align: center;

    font-size: 9px;

    line-height: 16px;

    top: 2px;

    right: 1px;
}

.pn_fav {

    width: 50px;
    height: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 50%;
    display: block;
    font-size: 20px;
    color: #afafaf;
    text-decoration: none;
    padding: 16px 14px;
    position: fixed;
    top: 85%;
    right: 14px;
    z-index: 30;
}

.pn_fav:hover {
    color: #767676;
}

.pn_fav:focus,
.pn_mess:focus {
    color: #d12e26;
}


.pn_fav i {

}

.pn_fav small {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: #d12e26;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 9px;
    line-height: 16px;
    top: 2px;
    right: 1px;
}

.pn_rev {

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    border-radius: 4px 0 0 4px;

    background-color: #4aa7ab;

    display: block;

    color: #fff;

    text-decoration: none;

    padding: 13px 21px;

    position: fixed;

    top: 29%;

    right: -73px;

    z-index: 30;

    font-family: 'formularregular', Arial, sans-serif;

    transform: rotate(-90deg);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.13px;

    border-radius: 5px 5px 0 0;
}

.pn_rev i {

}

.pn_rev span {

}

.pn_rev:hover {

    color: #767676;
}


/* ================================== Custom Classes End ================================== */

html, body {
    height: 100%;
    margin: 0;
    width: 100%;
    background: #fff;
    color: #212121;
    font-family: 'formularregular', Arial sans-serif;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: -0.03px;
}


body.nofitic {
    overflow: hidden;
}

.pn_bglayer {

    position: fixed;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.15);

    z-index: 30;

    display: none;
}

.pn_wrapper {
    overflow: hidden;
    margin: 0 auto;
    min-height: 100%;
}


.pn_indexb {
    font-size: 0;
    height: 100%;
    min-height: 100%;
}

.pn_menu {
    vertical-align: top;
    background-color: #fcfcfc;
    width: 12.666667%;
    height: 100%;
    box-shadow: inset 0px -2px 7px rgba(1, 1, 1, 0.3);
    padding-top: 0;
    padding-bottom: 0;
    top: 0;
    position: fixed;
    z-index: 25;
    transition: transform 0.5s ease-in-out;
    overflow: hidden;
}

.pn_body {
    transition: transform 0.5s ease-in-out;
}

.pn_menu + .pn_body {


}


.pn_menu + .pn_body .container {


}

/* ================================== Header Start ================================== */

.pn_header {
    z-index: 101;
    background-color: #fff;
    border-width: 0 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: background 0.25s linear;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 55px;
}

.pn_header.noshad {
    box-shadow: none;
}

.pn_btns .btn.red {
    color: #000;
    border-color: #d12e26;
    padding: 10px 34px;
}

.pn_btns .btn.red:hover {
    color: #d12e26;
    background: #fff;
}

.pn_btns .btn.red:focus {
    background: #d12e26;
    color: #fff;
}

.pn_btns a:not([class]) {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 12px;
    font-family: 'formularbold', Arial, sans-serif;
    padding: 13px 38px;
    border-radius: 4px;
    border-width: 0px !important;
    border-style: solid;
    box-shadow: none;
    transition: 0.25s linear;
    height: auto;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    color: #000;
    margin-right: 3px;
    text-decoration: none;

    cursor: pointer;
}

.pn_header [class*="col-"] + [class*="col-"] {
    text-align: right;
}

.pn_logo {
    display: inline-block;
    margin-right: 29px;
}


.pn_navbar {
    background: transparent;
    border-width: 0;
    border-radius: 0;
    min-height: auto;
    margin-bottom: 0;
}

.pn_navbar {
    background: transparent;
    border-width: 0;
    border-radius: 0;
    min-height: auto;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: -10px;
}

.pn_nav {
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
    border-width: 0;
}

.pn_navlist {
    margin: 0;
    float: none;
    font-family: 'formularbold', Arial, sans-serif;
    font-size: 13px;
}

.pn_navlist > li > a {
    display: block;
    position: relative;
    padding-top: 26px;
    padding-bottom: 7px;
    text-decoration: none;
    color: #767676;
    padding-left: 11px;
    padding-right: 11px;
    text-transform: uppercase;
    border-top-width: 4px;
    border-top-style: solid;
    border-top-color: transparent;
    transition: background 0.25s linear, color 0.25s linear, border-color 0.25s linear;
}

.pn_navlist > li > a > span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.pn_navlist > li > a > span:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    left: 0;
    bottom: -10px;
    background: transparent;
    transition: background 0.25s linear, color 0.25s linear;
}

.pn_navlist > li a:focus {

}

.pn_navlist > li:hover > a {
    color: #212121;
}


.pn_navlist > li.current > a,
.pn_navlist > li.open > a,
.pn_navlist > li a:focus {
    color: #d12e26;
    border-top-color: #d12e26;
}

.pn_toplist {
    display: inline-block;
    vertical-align: middle;
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.15);
}

.pn_toplist a {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 1;
    padding: 8px 17px;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.pn_toplist a:first-child {

    border-right: 2px solid rgba(0, 0, 0, 0.15);

    padding: 7px 14px;
}

.pn_toplist a i {

    display: inline-block;

    vertical-align: middle;

    margin-right: 5px;

    font-size: 14px;
}

.pn_toplist a span {

    color: #212121;

    font-family: 'formularbold', Arial, sans-serif;

    font-size: 13px;

    line-height: 18px;

    font-weight: 700;

    text-transform: uppercase; /* Text style for "8 800 555-" */

    letter-spacing: 0.27px;

    display: inline-block;

    vertical-align: middle;
}

/* ================================== Header End ================================== */
/* ================================== Middle Start ================================== */

.pn_middle {
    /* padding-top: 95px; */
    padding-bottom: 95px;
}

.pn_index_line {

    margin-bottom: 31px;
}

.pn_linehead {
    text-align: left;
    margin-bottom: 40px;
}

.pn_linehead.center {
    text-align: center;
}

.pn_linehead.right {
    text-align: right;
}

.pn_linehead h1,
.pn_linehead h2,
.pn_linehead h3,
.pn_linehead h4,
.pn_linehead h5,
.pn_linehead h6 {
    color: #212121;
    margin-top: 0;
    margin-bottom: 0px;
    font-family: 'formularbold', Arial, sans-serif;
    position: relative;
}

.pn_linehead h1 {
    font-size: 25px;
}

.pn_linehead h2 {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -0.55px;
}

.pn_linehead h3 {
    font-size: 36px;
}

.pn_linehead h4 {
    font-size: 19px;
}

.pn_linehead h5 {

}

.pn_linehead h6 {

}


.pn_rgform {
    padding-top: 17px;
}

.pn_rgform .pn_linehead {
    margin-bottom: 35px;
    padding-right: 40px;
}

/*
.dc_formline{
    margin-bottom: 25px;
}
*/

.dc_formline.men {
    margin-top: -9px;
}

.dc_formline.btns {

    margin-top: 35px;
}

.dc_formline.btns .btn {

    min-width: 160px;
}

.pn_indexblockrow {

}


.pn_indexblock {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 37px;
    position: relative;
}

.pn_indexblock:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.38);
    transition: background 0.25s linear;
}

.pn_indexblock:hover:before {
    background: rgba(0, 0, 0, 0.5);
}

.pn_indexblock .pn_img {

}

.pn_indexblock .pn_img img {

}


.pn_indexblock_txt {

    position: absolute;

    z-index: 2;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    color: #fff;

    padding: 30px;
}

.pn_indexblock_txt .pn_plash {

    border-radius: 3px;

    background-color: #ffffff;

    color: #212121;

    font-size: 15px; /* Text style for "983 ЖК" */

    letter-spacing: -0.06px;

    padding: 1px 9px;

    display: inline-block;

    vertical-align: top;

    margin-bottom: 17px;
}

.pn_indexblock_txt h3 {

    color: #ffffff;

    font-family: 'formularbold', Arial, sans-serif;

    font-size: 30px;

    line-height: 30px; /* Text style for "Новостройк" */

    letter-spacing: -0.06px;

    margin: 0;

    margin-bottom: 28px;
}

.pn_indexblock_txt h3 a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s linear;
}

.pn_indexblock_txt h3 a:hover {
    border-color: #fff;
}

.pn_indexblock_txt ul {

    font-size: 17px;

    padding: 0;

    margin: 0;

    list-style: none;

    width: 80%;

    position: absolute;

    left: 30px;

    bottom: 25px;
}

.pn_indexblock_txt ul li {

    display: inline-block;

    vertical-align: top;

    width: 44%;

    margin-bottom: 9px;
}

.pn_indexblock_txt ul li a {

    color: #fff;

    text-decoration: none;

    border-bottom: 1px solid #fff;

    transition: border-color 0.25s linear;
}

.pn_indexblock_txt ul li a:hover {

    border-color: transparent;
}

.pn_indmaps {
    margin-bottom: 75px;
}

.pn_indmapblock {

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    border-radius: 4px;

    border: 1px solid rgba(0, 0, 0, 0.1);

    background-color: #ffffff;

    padding: 34px 50px 45px;

    font-size: 17px;

    line-height: 30px; /* Text style for "Новая форм" */

    letter-spacing: -0.03px;

    margin-bottom: 21px;
}

.pn_indmapblock h3 {

    color: #212121;

    font-family: 'formularmedium', Arial, sans-serif;

    font-size: 30px;

    line-height: 40px; /* Text style for "Мотивация" */

    letter-spacing: -0.06px;

    margin: 0;

    margin-bottom: 11px;
}

.pn_indmapblock p {

    margin-bottom: 24px;
}


.pn_indmapblock .btn {
    padding: 12px 17px;
    min-width: 200px;
}

.pn_indevents {
    margin-bottom: 95px;
}

.pn_indevents.event {

    margin-bottom: 98px;
}

.pn_indeventblock {

    border-radius: 4px;

    border: 1px solid rgba(0, 0, 0, 0.15);

    background-color: #ffffff;

    padding: 25px 28px 37px;

    margin-bottom: 17px;
}

.pn_indeventblock .pn_date {

    color: rgba(33, 33, 33, 0.5);

    font-size: 15px;

    text-transform: uppercase; /* Text style for "7 февраля" */

    letter-spacing: -0.03px;

    display: inline-block;

    vertical-align: top;

    margin-bottom: 10px;
}

.pn_indeventblock h3 {

    margin: 0;

    color: #212121;

    font-family: 'formularbold', Arial, sans-serif;

    font-size: 24px;

    line-height: 30px; /* Text style for "10:30 — Об" */

    letter-spacing: -0.07px;
}

.pn_indeventblock h3 a {

    color: #212121;

    text-decoration: none;
    transition: opacity 0.25s linear;
}

.pn_indeventblock h3 a:hover {
    opacity: 0.75;
}

.pn_alls {

    margin-top: 25px;
}

.pn_alls .btn {
    min-width: 230px;
}


.pn_mailrss {

    border-radius: 4px;

    border: 1px solid rgba(0, 0, 0, 0.15);

    background-color: #ffffff;

    padding: 30px;
}

.pn_mailrss h3 {

    color: #212121;

    font-family: 'formularbold', Arial, sans-serif;

    font-size: 17px;

    font-weight: 700;

    line-height: 25px;

    text-transform: uppercase; /* Text style for "Подпишись" */

    letter-spacing: -0.03px;

    margin: 0;

    margin-bottom: 10px;
}

.pn_mailrss p {

    color: #212121;

    font-size: 17px;

    line-height: 25px; /* Text style for "Поиск объе" */

    letter-spacing: -0.03px;

    margin-bottom: 28px;
}


.pn_indevents.news {

    margin-bottom: 100px;
}

.pn_indnewsblock {

    border-radius: 4px;

    border: 1px solid rgba(0, 0, 0, 0.15);

    background-color: #ffffff;

    padding: 26px 20px 18px 29px;

    margin-bottom: 16px;

    font-size: 15px;

    line-height: 25px; /* Text style for "Предмет де" */

    letter-spacing: -0.03px;
}

.pn_indnewsblock .pn_date {

    color: rgba(33, 33, 33, 0.5);

    font-size: 15px;

    text-transform: uppercase; /* Text style for "7 февраля" */

    letter-spacing: -0.03px;

    display: inline-block;

    vertical-align: top;

    margin-bottom: 9px;
}

.pn_indnewsblock h3 {

    margin: 0;

    color: #212121;

    font-family: 'formularbold', Arial, sans-serif;

    font-size: 24px;

    line-height: 30px; /* Text style for "10:30 — Об" */

    letter-spacing: -0.07px;

    margin-bottom: 11px;
}

.pn_indnewsblock h3 a {

    color: #212121;

    text-decoration: none;

    transition: opacity 0.25s linear;
}

.pn_indnewsblock h3 a:hover {
    opacity: 0.75;
}

.pn_indnewsblock p {

    margin-bottom: 26px;

    letter-spacing: -0.03px;
}

.pn_indnewsblock p + p {

    margin-top: 0;
}

.pn_indnewsblock a {

}

.pn_moresmb a {
    text-decoration: none;
    position: relative;
}

.pn_moresmb a span {
    text-decoration: none;
    border-bottom: 1px dotted;
    position: relative;
    display: inline-block;
    vertical-align: text-bottom;
    line-height: 18px;

}

.pn_morereset {
    text-decoration: none;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #4aa7ab;
}

.pn_indnewsblock a:hover {

}

.pn_moresmb.current {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin-top: 29px;
    padding-top: 26px;
    padding-bottom: 15px;
}

.pn_moresmb {

    /* padding-top: 20px; */

    padding-bottom: 12px;
}


.pn_hidenews {
    display: none;
}


.pn_hidenews h4 {

    opacity: 0.4;

    color: #212121;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase; /* Text style for "Участвующи" */

    letter-spacing: 0.25px;

    font-family: 'formularbold', Arial, sans-serif;

    margin: 0;

    margin-bottom: 12px;
}


.pn_hidenews {

}

.pn_hidenews ul {
    font-size: 14px;
    line-height: 25px;
    text-decoration: underline;
    letter-spacing: -0.03px;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
    list-style: none;
}

.pn_hidenews ul li {

    margin-bottom: 5px;
}

.pn_hidenews ul li:last-child {
    margin-bottom: 0;
}


.pn_files {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    display: inline-block;
    vertical-align: middle;
    color: #212121;
    font-family: Formular;
    font-size: 13px;
    line-height: 20px; /* Text style for "Презентаци" */
    letter-spacing: -0.03px;
    padding: 12px 18px;
    text-decoration: none;
    margin-right: 8px;
    margin-top: 8px;
}

.pn_files i {
    color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    font-size: 14px;
}

.pn_files span {

}

.pn_hide_lblock {

    border-top: 1px solid rgba(0, 0, 0, 0.15);

    margin-top: 30px;

    padding-top: 25px;
}


.pn_actionlnk {

    text-decoration: none;

    position: relative;

    display: block;
    transition: opacity 0.25s linear;
}

.pn_actionlnk:hover {
    opacity: 0.6;
}

.pn_indevents.actions {

    margin-bottom: 35px;
}

.pn_owlslide {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 55PX;
}

.pn_owlslide .owl-item .item {

    padding-left: 18px;

    padding-right: 18px;
}


.pn_actionlnk .pn_imgs {

    border-radius: 4px;

    overflow: hidden;

    margin-bottom: 20px;
}


.pn_actionlnk.full {
    color: #fff;
    text-align: center;
}

.pn_actionlnk.full .pn_actiontxt {

    position: absolute;

    z-index: 3;

    width: 95%;

    height: 35%;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    margin: auto;
}


.pn_actionlnk.full .pn_imgs {
    margin-bottom: 0;
}

.pn_actionlnk .pn_imgs img {

}


.pn_actionlnk .pn_tags {

    border-radius: 4px;

    border: 1px solid #d12e26;

    color: #d12e26;

    font-family: Formular;

    font-size: 13px; /* Text style for "Квартиры" */

    line-height: 15px;

    letter-spacing: -0.04px;

    padding: 3px 9px;
}

.pn_actionlnk h3 {

    color: #212121;

    font-size: 19px;

    line-height: 25px; /* Text style for "Однушка за" */

    letter-spacing: -0.05px;

    font-family: 'formularbold', Arial, sans-serif;

    margin-top: 7px;

    margin-bottom: 6px;
}

.pn_actionlnk.full h3 {

    margin-top: 7px;
}

.pn_actionlnk .pn_dates {

    color: rgba(33, 33, 33, 0.5);

    font-size: 15px; /* Text style for "7 июля – 3" */

    letter-spacing: -0.04px;
}

.pn_actionlnk.full .pn_tags,
.pn_actionlnk.full h3,
.pn_actionlnk.full .pn_dates {
    color: #fff;
}

.pn_actionlnk.full .pn_tags {
    border-color: #fff;
}


.pn_sidemenu {

    color: #212121;

    font-size: 11px;

    font-weight: 600;

    line-height: 15px;

    margin: 0;

    padding: 0;

    list-style: none;

    z-index: 20;
}


.pn_sidemenu > li {
    position: relative;
}

.pn_sidemenu > li ul {

    color: #212121;

    font-size: 12px;

    font-weight: 600;

    line-height: 15px;

    margin: 0;

    padding: 0;

    margin-top: 12px;

    margin-bottom: 12px;
}

.pn_sidemenu > li ul > li {

    padding: 0px 10px 0px;
}

.pn_sidemenu > li ul > li > a {
    display: block;
    color: #212121;
    text-decoration: none;
    padding: 17px 20px 16px;
    border-radius: 23px;
    white-space: nowrap;
    transition: color 0.25s linear, background 0.25s linear;
}


.pn_sidemenu > li ul > li > a:hover {
    background: #efefef;
}

.pn_sidemenu > li ul > li.current > a {
    background: rgba(209, 46, 38, 0.1);
    color: #d12e26;
}

.pn_sidemenu > li ul > li.current > a i {
    color: #d12e26;
}


.pn_sidemenu > li ul > li > a i {

    display: inline-block;

    vertical-align: middle;

    color: #afafaf;

    font-size: 14px;

    margin-right: 7px;

    transition: color 0.25s linear, background 0.25s linear;
}


.pn_sidemenu > li.dropdown > a {
    padding: 27px 19px 28px;
    font-size: 13px;
}

.pn_sidemenu > li ul > li > a span {

}


.pn_sidemenu > li > a {

    padding: 22px 30px 26px;

    display: block;

    color: #212121;

    text-decoration: none;

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

    position: relative;

    text-transform: uppercase;

    transition: color 0.25s linear, background 0.25s linear;
}


.pn_sidemenu > li:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    border-radius: 2px 0 0 2px;
    background-color: #d12e26;
    opacity: 0;
}

.pn_sidemenu > li.current:after {
    opacity: 1;
}

.pn_sidemenu > li > a:hover {
    background: #efefef;
}

.pn_sidemenu > li.current > a {
    background: rgba(209, 46, 38, 0.1);
    color: #d12e26;
}

.pn_sidemenu > li.current > a i {

    color: #d12e26;
}

.pn_sidemenu > li.current > a span {

}


.pn_sidemenu > li.dropdown > a {

    text-transform: none;
}

.pn_sidemenu > li.dropdown > a:after {
    content: "\e902";
    font-family: 'icomoon' !important;
    transition: transform 0.25s linear;
    position: absolute;
    right: 16px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    text-align: center;
    height: 14px;
    left: auto;
    font-size: 9px;
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.pn_sidemenu li.dropdown.open > a:after,
.pn_sidemenu li.dropdown:hover > a:after {
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


.pn_sidemenu li a img {

    display: inline-block;

    vertical-align: middle;

    border-radius: 50%;

    margin-right: 7px;
}

.pn_sidemenu li a i {
    display: inline-block;
    vertical-align: middle;
    color: #afafaf;
    font-size: 14px;
    margin-right: 8px;
    transition: color 0.25s linear, background 0.25s linear;
}

.pn_sidemenu li a span {

    display: inline-block;

    vertical-align: middle;

    letter-spacing: 0.75px;

    transition: color 0.25s linear, background 0.25s linear;
}


/* ================================== Middle End ================================== */

/* ================================== Footer Start ================================== */

.pn_footer {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin-top: -95px;
}

.tt_footbl {
    font-size: 15px;
}


.tt_footbl.menu {
    overflow: hidden;
}

.tt_footbl h4 {
    margin-bottom: 17px;
    margin-top: 0;
    color: #212121;
    font-family: Formular;
    font-size: 17px;
    font-weight: 500;
    line-height: 17px; /* Text style for "Недвижимос" */
    letter-spacing: -0.05px;
    min-height: 20px;
}

.tt_footbl h4 a {
    color: #212121;
    font-weight: normal;
    margin-top: 0;
    transition: color 0.15s linear, border-color 0.15s linear !important;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    padding-bottom: 2px;
    text-decoration: none;
}

.tt_footbl h4 a:hover {
    color: #4aa7ab;
}

.tt_footbl p {

    margin-bottom: 15px;
}


.tt_footul {
    margin: 0;
    padding: 0;
    font-size: 15px;
    margin-bottom: 25px;
}

.tt_footul li {
    list-style: none;
    margin-bottom: 5px;
}

.tt_footul li a {
    text-decoration: none;
    transition: 0.15s linear !important;
}

.tt_footul li a:hover {
    color: #2c93d6;
    border-bottom-color: #2c93d6;
}


.tt_soclist {
    margin: 0;
    list-style: none;
    font-size: 21px;
    vertical-align: middle;
    margin-bottom: 20px;
    line-height: 1;
    display: inline-block;
}

.tt_soclist li {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    margin-right: 4px;
}

.tt_soclist li:last-child {
    margin-right: 0;
}

.tt_soclist li a {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    transition: color 0.25s linear, background 0.25s linear;
    border-radius: 50%;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.2);
    position: relative;
    height: 34px;
    width: 34px;
    line-height: 34px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.tt_soclist li:hover a,
.tt_soclist li a:focus {
    /*color: #d12e26;*/
    color: #767676;;
}

.tt_soclist li a i {
    position: relative;
    z-index: 1;
}


.pn_tel {

    display: block;

    color: #4aa7ab;

    font-size: 25px;

    line-height: 20px; /* Text style for "8 800 555-" */

    letter-spacing: -0.07px;

    margin-bottom: 25px;
}

.pn_tel a {

    text-decoration: none;
}


.pn_footmenu {

    padding-top: 50px;

    padding-bottom: 9px;
}

.pn_footmenuList {

    margin: 0;

    display: inline-block;

    vertical-align: middle;

    font-size: 14px;
}

.pn_footmenuList > li {

    display: inline-block;

    vertical-align: middle;

    margin-right: 10px;
}

.pn_footmenuList > li:last-child {
    margin-right: 0;
}

.pn_footmenuList > li > a {
    color: #1779b1 !important;

    text-decoration: none;

    border-bottom-width: 1px;

    border-bottom-style: solid;

    border-bottom-color: transparent;

    transition: border-color 0.25s linear;
}

.pn_footmenuList > li > a:hover {
    border-bottom-color: #1779b1;
}

.pn_footcopyright {

    padding-top: 15px;

    padding-bottom: 0;

    font-size: 12px;
}

.pn_footcopyright .container {

}

.pn_footcopyright .container [class*="col-"] {
}

.pn_footbord {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 30px;
    display: block;
    padding-bottom: 15px;
}

.pn_cop {
    text-align: left;
}

.pn_soc {
    text-align: right;
    font-size: 13px;
}

.pn_soc span {

    font-size: 17px;

    line-height: 25px;

    letter-spacing: -0.09px;

    font-family: 'formularregular', Arial, sans-serif;

    color: rgba(33, 33, 33, 0.5);

    display: inline-block;

    vertical-align: middle;

    margin-right: 27px;
}


.pn_footcopyright .container [class*="col-"] a {
    text-decoration: none;
}

.pn_footcopyright small {

    display: block;

    margin-bottom: 5px;

    color: rgba(33, 33, 33, 0.5);

    font-size: 17px;

    line-height: 25px; /* Text style for "Площадка А" */

    letter-spacing: -0.09px;

    font-family: 'formularregular', Arial, sans-serif;
}

.pn_footcopyright p {

    font-size: 13px;

    margin-bottom: 0;
}


.pn_indimg {

}

.pn_indimg img {

    position: relative;

    width: 135%;

    max-width: inherit;
    /* Style for "Тенюшка" */

    border-radius: 7px;

    box-shadow: 36px 33px 0px rgba(74, 167, 171, 0.15);

    margin-left: 20px;

    border: 1px solid rgba(0, 0, 0, 0.1);
}


.pn_indcont {

    margin-bottom: 90px;

    margin-top: 79px;
}

.pn_indcont.reg {
    margin-bottom: 11px;
}

.pn_footer.nobord {
    border: 0;

}

.tt_soclist.mb0 {
    margin-bottom: 0;
}


.form-horizontal h6 {
    color: #212121;
    font-size: 15px;
    line-height: 25px; /* Text style for "Наш менедж" */
    letter-spacing: -0.03px;
    font-family: 'formularregular', Arial, sans-serif;
}

.btn.red.bg + a {
    font-size: 16px;
    line-height: 22px;
    text-decoration: underline;
    letter-spacing: -0.03px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 16px;
}

.btn.red.bg + a + a {
    font-size: 16px;
    line-height: 22px;
    text-decoration: underline;
    letter-spacing: -0.03px;
    margin-top: 15px;
    display: inline-block;
    vertical-align: middle;
}


.pn_cop.sm small {

    color: #212121;

    font-size: 13px;

    line-height: 20px; /* Text style for "© 2010–201" */

    letter-spacing: -0.04px;
}

.pn_cop.sm a {
    color: #4aa7ab;
    font-size: 13px;
    line-height: 20px;
    /* Text style for "Политика к" */
    letter-spacing: -0.03px;
}

.pn_cop.sm a:hover {
    color: #212121;
}


.pn_notif {

    background-color: #ffffff;

    width: 372px;

    height: 100%;

    padding-top: 0;

    padding-bottom: 0;

    top: 0;

    position: fixed;

    z-index: 31;

    transition: transform 0.5s ease-in-out;

    overflow: hidden;

    right: 0;

    box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);

    background-color: #ffffff;

    padding-top: 25px;

    right: -395px;
}

.pn_notiflnk {

    position: absolute;

    top: 10px;

    right: 10px;

    transform: rotate(45deg);

    font-size: 20px;

    text-decoration: none;

    color: rgba(0, 0, 0, 0.4);
}

.pn_notiflnk i {

}


.pn_notif .pn_linehead {

    padding-left: 25px;

    margin-bottom: 15px;
}

.pn_notif .pn_linehead h3 {

    color: #212121;

    font-size: 22px;

    font-weight: 700;

    line-height: 30px; /* Text style for "Уведомлени" */

    letter-spacing: -0.06px;
}

.pn_newnoft {

    background-color: #f8f8f8;

    color: #212121;

    font-size: 10px;

    font-weight: 500;

    text-transform: uppercase; /* Text style for "Новые" */

    letter-spacing: 0.5px;

    padding: 6px 40px;

    border-top: 1px solid rgba(33, 33, 33, 0.05);
    border-bottom: 1px solid rgba(33, 33, 33, 0.05);
}

.pn_notifrow {

}

.pn_notifitem {

    padding: 12PX 0;

    border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.pn_notifitem h3 {

    font-size: 15px;

    line-height: 20px;

    /* Text style for "Сдан 4-ый" */

    color: #212121;


    /* Text style for "ЖК «LEGEND" */

    font-weight: 500;

    letter-spacing: -0.04px;

    font-family: 'formularregular', Arial sans-serif;

    margin-bottom: 10px;

    margin-top: 0;

    padding: 0 40px;
}

.pn_notifitem h3 a {

}

.pn_notifitem span {

    padding: 0 40px;

    color: rgba(33, 33, 33, 0.5);

    font-size: 13px; /* Text style for "15 февраля" */

    letter-spacing: -0.04px;
}

/* start edit login page    */


/*  My styles   */
.login:not(.reg) #reg_mob {
    display: none;
}

.login:not(.reg) #auth_mob {
    display: block;
}

.login.reg #reg_mob {
    display: block;
}

.login.reg #auth_mob {
    display: none;
}

.pn_login_tab_btns {
    border-bottom: none !important;
}

.pn_login_tab_btns a:not([class]) {
    transition: none !important;
}

.pn_indcont.reg {
    margin-bottom: 7px !important;
}

.grecaptcha-badge {
    display: none;
}

.ta-c {
    text-align: center;
}

.c-r {
    color: red;
}

.login .dc_formline.forgot_pass {
    margin-top: -8px;
}

.login a.login_forget_pass_btn {
    color: rgba(33, 33, 33, 0.5);
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.03px;
    display: inline-block;
}

.footer_soc_icon {
    opacity: 0.25;
    transition: all 0.25s linear;
    display: block;
    padding: 7px;
}

.tt_soclist li a:hover .footer_soc_icon {
    opacity: 0.6;
}

.btn > i.icon {
    vertical-align: middle;
}


/*------------------------------------ md ------------------------------------*/

@media (min-width: 992px) and (max-width: 1199px) {

    .pn_rgform .pn_linehead {
        text-align: center;
    }

}


/*------------------------------------ sm ------------------------------------*/

@media (min-width: 768px) and (max-width: 991px) {


}


/*------------------------------------ xs ------------------------------------*/

@media (max-width: 767px) {
    .pn_header .logo-wrap {
        text-align: center;
    }

    .pn_header .btns-wrap {
        text-align: center !important;
    }

    .pn_rgform .pn_linehead {
        text-align: center;
    }
}

.login .pn_rgform .pn_linehead {
    padding-right: 0;
}

.login .pn_linehead h2 {
    font-size: 46px;
    line-height: 55px;
    font-family: 'formularbold';
}

@media screen and (max-width: 991px) {
    .login .pn_linehead h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

@media screen and (max-width: 767px) {
    .login .pn_linehead h2 {
        font-size: 26px;
        line-height: 30px;
    }
}

@media screen and (max-width: 485px) {
    .login .pn_linehead h2 {
        font-size: 28px;
        line-height: 35px;
    }
}

.login .form-horizontal h6 {
    font-size: 13px;
    line-height: 1.4em;
}

.login .pn_rgform .pn_linehead {
    margin-bottom: 28px;
}

.login .form-group {
    margin-bottom: 24px;
}

.login .form-group .inp {
    padding: 3px 21px;
}

.login .dc_formline.btns {
    margin-top: -8px;
}

.login .dc_formline.btns .btn {
    padding: 12px 42px;
}

.login .dc_formline.btns .btn.red.bg + a {
    margin-left: 26px;
    line-height: 21px;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    .login .dc_formline.btns .btn.red.bg + a {
        margin-left: 0;
    }
}

.login__forgot {
    padding-top: 10px;
    font-size: 17px;
    line-height: 30px;
}

.login__forgot a {
    color: #afafaf;
    text-decoration: none;
}

.login__forgot a:hover {
    color: #4aa7ab;
}

.login .display-block {
    position: relative;
    max-width: 482px;
    float: right;
    margin-top: 93px;
    z-index: 0;
}

@media screen and (max-width: 1199px) {
    .login .display-block {
        float: none;
        margin: 60px auto 0;
    }
}

@media screen and (max-width: 991px) {
    .login .display-block {
        margin-top: 10px;
    }
}

.login .display-block:before {
    position: absolute;
    top: -66px;
    left: -227px;
    background-image: url(../../img/src/man-hand.svg);
    background-size: 100%;
    width: 420px;
    height: 468px;
    content: '';
    z-index: -1;
}

@media screen and (max-width: 991px) {
    .login .display-block:before {
        display: none;
    }
}

.login .display-block img {
    max-width: 100%;
    height: auto;
    width: 100%;
    position: static;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: 0;
    border: none;
}

.login .display-descr {
    position: absolute;
    top: 33%;
    left: 0;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 375px) {
    .login .display-descr {
        top: 29%;
    }
}

.login .display-descr .button {
    margin: 0 auto;
    background-image: url(../../img/src/play-icon.svg);
    border-radius: 5px;
    background: #ef4035;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.13);
    width: 100%;
    line-height: 1;
    max-width: 224px;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    border: none;
    outline: none;
    padding: 17px 47px 16px 5px;
    height: auto;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    font-size: 13px;
}

.login .display-descr .button:hover {
    background-color: #d12e26;
}

.login .display-descr .button span {
    position: absolute;
    top: calc(50% - 12px);
    right: 23px;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.login .display-descr .button span img {
    width: 100%;
    display: block;
}

/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImxvZ2luLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7RUFHSSxpQkFBZ0IsRUFDakI7O0FBSkg7RUFPSSxnQkFBZTtFQUNmLGtCQUFpQjtFQUNqQiw0QkFBMkIsRUFnQjVCO0VBZEM7SUFYSjtNQVlNLGdCQUFlO01BQ2Ysa0JBQWlCLEVBWXBCLEVBQUE7RUFUQztJQWhCSjtNQWlCTSxnQkFBZTtNQUNmLGtCQUFpQixFQU9wQixFQUFBO0VBSkM7SUFyQko7TUFzQk0sZ0JBQWU7TUFDZixrQkFBaUIsRUFFcEIsRUFBQTs7QUF6Qkg7RUE0QkksZ0JBQWU7RUFDZixrQkFBaUIsRUFDbEI7O0FBOUJIO0VBaUNJLG9CQUFtQixFQUNwQjs7QUFsQ0g7RUFxQ0ksb0JBQW1CLEVBS3BCO0VBMUNIO0lBd0NNLGtCQUFpQixFQUNsQjs7QUF6Q0w7RUE2Q0ksaUJBQWdCLEVBZWpCO0VBNURIO0lBZ0RNLG1CQUFrQixFQUNuQjtFQWpETDtJQW9ETSxrQkFBaUI7SUFDakIsa0JBQWlCO0lBQ2pCLHNCQUFxQixFQUt0QjtJQUhDO01BeEROO1FBeURRLGVBQWMsRUFFakIsRUFBQTs7QUFHSDtFQUNFLGtCQUFpQjtFQUNqQixnQkFBZTtFQUNmLGtCQUFpQixFQVVsQjtFQWJEO0lBTUksZUFBYztJQUNkLHNCQUFxQixFQUt0QjtJQVpIO01BVU0sZUFBYyxFQUNmOztBQXpFUDtFQThFSSxtQkFBa0I7RUFDbEIsaUJBQWdCO0VBQ2hCLGFBQVk7RUFDWixpQkFBZ0I7RUFDaEIsV0FBVSxFQXFDWDtFQW5DQztJQXBGSjtNQXFGTSxZQUFXO01BQ1gsb0JBQW1CLEVBaUN0QixFQUFBO0VBOUJDO0lBekZKO01BMEZNLGlCQUFnQixFQTZCbkIsRUFBQTtFQXZISDtJQThGTSxtQkFBa0I7SUFDbEIsV0FBVTtJQUNWLGFBQVk7SUFDWixrREFBaUQ7SUFDakQsc0JBQXFCO0lBQ3JCLGFBQVk7SUFDWixjQUFhO0lBQ2IsWUFBVztJQUNYLFlBQVcsRUFLWjtJQUhDO01BeEdOO1FBeUdRLGNBQWEsRUFFaEIsRUFBQTtFQTNHTDtJQThHTSxnQkFBZTtJQUNmLGFBQVk7SUFDWixZQUFXO0lBQ1gsaUJBQWdCO0lBQ2hCLGlCQUFnQjtJQUNoQix5QkFBZ0I7WUFBaEIsaUJBQWdCO0lBQ2hCLGVBQWM7SUFDZCxhQUFZLEVBQ2I7O0FBdEhMO0VBMEhJLG1CQUFrQjtFQUNsQixTQUFRO0VBQ1IsUUFBTztFQUNQLFlBQVc7RUFDWCxtQkFBa0IsRUFnRG5CO0VBOUNDO0lBaElKO01BaUlNLFNBQVEsRUE2Q1gsRUFBQTtFQTlLSDtJQXFJTSxlQUFjO0lBQ2QsbURBQWtEO0lBQ2xELG1CQUFrQjtJQUNsQixvQkFBbUI7SUFDbkIsb0RBQTJDO1lBQTNDLDRDQUEyQztJQUMzQyxZQUFXO0lBQ1gsZUFBYztJQUNkLGlCQUFnQjtJQUNoQixlQUFjO0lBQ2QsbUJBQWtCO0lBQ2xCLFlBQVc7SUFDWCxnQkFBZTtJQUNmLGdCQUFlO0lBQ2YsaUNBQXdCO0lBQXhCLHlCQUF3QjtJQUN4QixhQUFZO0lBQ1osY0FBYTtJQUNiLDRCQUEyQjtJQUMzQixhQUFZO0lBQ1osaUJBQWdCO0lBQ2hCLHNCQUFxQjtJQUNyQixtQkFBa0I7SUFDbEIsZ0JBQWUsRUFtQmhCO0lBN0tMO01BNkpRLDBCQUF5QixFQUMxQjtJQTlKUDtNQWlLUSxtQkFBa0I7TUFDbEIsc0JBQXFCO01BQ3JCLFlBQVc7TUFDWCxZQUFXO01BQ1gsYUFBWTtNQUNaLHNCQUFxQixFQU10QjtNQTVLUDtRQXlLVSxZQUFXO1FBQ1gsZUFBYyxFQUNmIiwiZmlsZSI6ImxvZ2luLW5ldy5jc3MiLCJzb3VyY2VzQ29udGVudCI6WyIubG9naW4ge1xyXG5cclxuICAucG5fcmdmb3JtIC5wbl9saW5laGVhZCB7XHJcbiAgICBwYWRkaW5nLXJpZ2h0OiAwO1xyXG4gIH1cclxuXHJcbiAgLnBuX2xpbmVoZWFkIGgyIHtcclxuICAgIGZvbnQtc2l6ZTogNDZweDtcclxuICAgIGxpbmUtaGVpZ2h0OiA1NXB4O1xyXG4gICAgZm9udC1mYW1pbHk6ICdmb3JtdWxhcmJvbGQnO1xyXG5cclxuICAgIEBtZWRpYSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDk5MXB4KSB7XHJcbiAgICAgIGZvbnQtc2l6ZTogNDBweDtcclxuICAgICAgbGluZS1oZWlnaHQ6IDUwcHg7XHJcbiAgICB9XHJcblxyXG4gICAgQG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogNzY3cHgpIHtcclxuICAgICAgZm9udC1zaXplOiAyNnB4O1xyXG4gICAgICBsaW5lLWhlaWdodDogMzBweDtcclxuICAgIH1cclxuXHJcbiAgICBAbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiA0ODVweCkge1xyXG4gICAgICBmb250LXNpemU6IDI4cHg7XHJcbiAgICAgIGxpbmUtaGVpZ2h0OiAzNXB4O1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgLmZvcm0taG9yaXpvbnRhbCBoNiB7XHJcbiAgICBmb250LXNpemU6IDEzcHg7XHJcbiAgICBsaW5lLWhlaWdodDogMjJweDtcclxuICB9XHJcblxyXG4gIC5wbl9yZ2Zvcm0gLnBuX2xpbmVoZWFkIHtcclxuICAgIG1hcmdpbi1ib3R0b206IDI4cHg7XHJcbiAgfVxyXG5cclxuICAuZm9ybS1ncm91cCB7XHJcbiAgICBtYXJnaW4tYm90dG9tOiAyNHB4O1xyXG5cclxuICAgIC5pbnAge1xyXG4gICAgICBwYWRkaW5nOiAzcHggMjFweDtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIC5kY19mb3JtbGluZS5idG5zIHtcclxuICAgIG1hcmdpbi10b3A6IC04cHg7XHJcblxyXG4gICAgLmJ0biB7XHJcbiAgICAgIHBhZGRpbmc6IDEycHggNDJweDtcclxuICAgIH1cclxuXHJcbiAgICAuYnRuLnJlZC5iZyArIGEge1xyXG4gICAgICBtYXJnaW4tbGVmdDogMjZweDtcclxuICAgICAgbGluZS1oZWlnaHQ6IDIxcHg7XHJcbiAgICAgIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcclxuXHJcbiAgICAgIEBtZWRpYSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDk5MXB4KSB7XHJcbiAgICAgICAgbWFyZ2luLWxlZnQ6IDA7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gICZfX2ZvcmdvdCB7XHJcbiAgICBwYWRkaW5nLXRvcDogMTBweDtcclxuICAgIGZvbnQtc2l6ZTogMTdweDtcclxuICAgIGxpbmUtaGVpZ2h0OiAzMHB4O1xyXG5cclxuICAgIGEge1xyXG4gICAgICBjb2xvcjogI2FmYWZhZjtcclxuICAgICAgdGV4dC1kZWNvcmF0aW9uOiBub25lO1xyXG5cclxuICAgICAgJjpob3ZlciB7XHJcbiAgICAgICAgY29sb3I6ICM0YWE3YWI7XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcblxyXG4gIC5kaXNwbGF5LWJsb2NrIHtcclxuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcclxuICAgIG1heC13aWR0aDogNDgycHg7XHJcbiAgICBmbG9hdDogcmlnaHQ7XHJcbiAgICBtYXJnaW4tdG9wOiA5M3B4O1xyXG4gICAgei1pbmRleDogMDtcclxuXHJcbiAgICBAbWVkaWEgc2NyZWVuIGFuZCAobWF4LXdpZHRoOiAxMTk5cHgpIHtcclxuICAgICAgZmxvYXQ6IG5vbmU7XHJcbiAgICAgIG1hcmdpbjogNjBweCBhdXRvIDA7XHJcbiAgICB9XHJcblxyXG4gICAgQG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogOTkxcHgpIHtcclxuICAgICAgbWFyZ2luLXRvcDogMTBweDtcclxuICAgIH1cclxuXHJcbiAgICAmOmJlZm9yZSB7XHJcbiAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcclxuICAgICAgdG9wOiAtNjZweDtcclxuICAgICAgbGVmdDogLTIyN3B4O1xyXG4gICAgICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoLi4vLi4vaW1nL3NyYy9tYW4taGFuZC5zdmcpO1xyXG4gICAgICBiYWNrZ3JvdW5kLXNpemU6IDEwMCU7XHJcbiAgICAgIHdpZHRoOiA0MjBweDtcclxuICAgICAgaGVpZ2h0OiA0NjhweDtcclxuICAgICAgY29udGVudDogJyc7XHJcbiAgICAgIHotaW5kZXg6IC0xO1xyXG5cclxuICAgICAgQG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogOTkxcHgpIHtcclxuICAgICAgICBkaXNwbGF5OiBub25lO1xyXG4gICAgICB9XHJcbiAgICB9XHJcblxyXG4gICAgaW1nIHtcclxuICAgICAgbWF4LXdpZHRoOiAxMDAlO1xyXG4gICAgICBoZWlnaHQ6IGF1dG87XHJcbiAgICAgIHdpZHRoOiAxMDAlO1xyXG4gICAgICBwb3NpdGlvbjogc3RhdGljO1xyXG4gICAgICBib3JkZXItcmFkaXVzOiAwO1xyXG4gICAgICBib3gtc2hhZG93OiBub25lO1xyXG4gICAgICBtYXJnaW4tbGVmdDogMDtcclxuICAgICAgYm9yZGVyOiBub25lO1xyXG4gICAgfVxyXG4gIH1cclxuXHJcbiAgLmRpc3BsYXktZGVzY3Ige1xyXG4gICAgcG9zaXRpb246IGFic29sdXRlO1xyXG4gICAgdG9wOiAzMyU7XHJcbiAgICBsZWZ0OiAwO1xyXG4gICAgd2lkdGg6IDEwMCU7XHJcbiAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XHJcblxyXG4gICAgQG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogMzc1cHgpIHtcclxuICAgICAgdG9wOiAyOSU7XHJcbiAgICB9XHJcblxyXG4gICAgLmJ1dHRvbiB7XHJcbiAgICAgIG1hcmdpbjogMCBhdXRvO1xyXG4gICAgICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoLi4vLi4vaW1nL3NyYy9wbGF5LWljb24uc3ZnKTtcclxuICAgICAgYm9yZGVyLXJhZGl1czogNXB4O1xyXG4gICAgICBiYWNrZ3JvdW5kOiAjZWY0MDM1O1xyXG4gICAgICBib3gtc2hhZG93OiAwIDJweCAycHggMCByZ2JhKDAsIDAsIDAsIDAuMTMpO1xyXG4gICAgICB3aWR0aDogMTAwJTtcclxuICAgICAgbGluZS1oZWlnaHQ6IDE7XHJcbiAgICAgIG1heC13aWR0aDogMjI0cHg7XHJcbiAgICAgIGRpc3BsYXk6IGJsb2NrO1xyXG4gICAgICB0ZXh0LWFsaWduOiBjZW50ZXI7XHJcbiAgICAgIGNvbG9yOiAjZmZmO1xyXG4gICAgICBmb250LXNpemU6IDE3cHg7XHJcbiAgICAgIGN1cnNvcjogcG9pbnRlcjtcclxuICAgICAgdHJhbnNpdGlvbjogYWxsIC41cyBlYXNlO1xyXG4gICAgICBib3JkZXI6IG5vbmU7XHJcbiAgICAgIG91dGxpbmU6IG5vbmU7XHJcbiAgICAgIHBhZGRpbmc6IDE3cHggNDdweCAxNnB4IDVweDtcclxuICAgICAgaGVpZ2h0OiBhdXRvO1xyXG4gICAgICBmb250LXdlaWdodDogNDAwO1xyXG4gICAgICB0ZXh0LWRlY29yYXRpb246IG5vbmU7XHJcbiAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcclxuICAgICAgZm9udC1zaXplOiAxM3B4O1xyXG5cclxuICAgICAgJjpob3ZlciB7XHJcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogI2QxMmUyNjtcclxuICAgICAgfVxyXG5cclxuICAgICAgc3BhbiB7XHJcbiAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xyXG4gICAgICAgIHRvcDogY2FsYyg1MCUgLSAxMnB4KTtcclxuICAgICAgICByaWdodDogMjNweDtcclxuICAgICAgICB3aWR0aDogMjRweDtcclxuICAgICAgICBoZWlnaHQ6IDI0cHg7XHJcbiAgICAgICAgZGlzcGxheTogaW5saW5lLWJsb2NrO1xyXG5cclxuICAgICAgICBpbWcge1xyXG4gICAgICAgICAgd2lkdGg6IDEwMCU7XHJcbiAgICAgICAgICBkaXNwbGF5OiBibG9jaztcclxuICAgICAgICB9XHJcbiAgICAgIH1cclxuICAgIH1cclxuICB9XHJcbn0iXX0= */

/* End edit login page    */


/* ================================== Footer End ================================== */
/* ================================== Modal Login Start ================================== */


