*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html { 
    line-height: 1.15;
    font-family: "Roboto", sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    color: #212529;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

.bottom__margin li::before {
    content: "✔";
    padding-right: 0.5em;
    color: #ff4c03;
    font-weight: 900;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #055bb0;
    text-decoration: underline;
}

img {
    vertical-align: middle;
    border-style: none;
}
button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input, button, select, optgroup, textarea {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}

textarea {
    overflow: auto;
    resize: vertical;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

:root {
  --color-red: #F70406;
  --color-blue: #031c8d;
  --color-orange: #ff4c03;
}


.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col_12, .col_lg6, .col_xl5, .col_xl7 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col_12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}
.modalka-open {
    overflow: hidden;
}

.modalka-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.dial-window {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .dial-window {
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal.show .dial-window {
    -webkit-transform: none;
    transform: none;
}

.dial-window-centered {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
    -ms-flex-align: center;
}

.dial-window-centered::before {
    content: "";
    display: block;
    height: calc(100vh - 1rem);
}

.ct-win {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    outline: 0;
    pointer-events: auto;
}

.modalka-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modalka-backdrop.fade {
    opacity: 0;
}

.modalka-backdrop.show {
    opacity: 0.5;
}

.modalka-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.jf-content {
    justify-content: space-between !important;
    -ms-flex-pack: justify !important;
}

.ae_content {
    align-items: flex-end !important;
    -ms-flex-align: end !important;
}

.nav {
    display: inline-block;
    margin: 0;
    padding: 15px;
    overflow: visible;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
}

.nav.is-active:hover, .nav:hover {
    opacity: 0.7;
}

.nav.is-active .navigation--inner, .nav.is-active .navigation--inner:after, .nav.is-active .navigation--inner:before {
    background-color: #000;
}

.navigation--box {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.navigation--inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.navigation--inner, .navigation--inner:after, .navigation--inner:before {
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

.navigation--inner:after, .navigation--inner:before {
    content: "";
    display: block;
}

.navigation--inner:before {
    top: -10px;
}

.navigation--inner:after {
    bottom: -10px;
}

.slider-navigation .navigation--inner {
    top: 2px;
}

.slider-navigation .navigation--inner:before {
    top: 10px;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

.slider-navigation .navigation--inner:after {
    top: 20px;
}

.slider-navigation.is-active .navigation--inner {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.slider-navigation.is-active .navigation--inner:before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}

.slider-navigation.is-active .navigation--inner:after {
    -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
    transform: translate3d(0, -20px, 0) rotate(-90deg);
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .container, .container-sm {
        max-width: 540px;
    }

    .dial-window {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .dial-window-centered {
        min-height: calc(100% - 3.5rem);
    }

    .dial-window-centered::before {
        height: calc(100vh - 3.5rem);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .container, .container-sm, .container-md {
        max-width: 720px;
    }

}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .container, .container-sm, .container-md, .container-lg {
        max-width: 960px;
    }

    .col_lg6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
		margin-right: auto;
		margin-left: auto;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1140px;
    }
	
	.smesitel .ofer_title_h1 {
		font-size: 34px;
	}

    .col_xl5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col_xl7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.2;
    
    color: #000;
}

main {
    overflow: hidden;
}

.button {
    display: -ms-inline-flexbox;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    line-height: normal;
    text-decoration: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.button:hover, .button:focus {
    text-decoration: none;
    outline: none;
}

.button:active, .button_active {
    outline: none;
}
.textfield {
    display: inline-block;
}

.inp_text_control {
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.inp_text_control::-webkit-input-placeholder {
    color: #000;
}

.inp_text_control:focus {
    outline: none;
}

.st-navigation_ul {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
}

.st-navigation_li {
    list-style: none;
}

.st-navigation_a {
    color: #000;
    text-decoration: none;
}

.st-navigation_a:visited {
    color: inherit;
}

.st-navigation_a:hover {
    color: var(--color-blue);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mob-navigation {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mob-navigation-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    -ms-flex-align: center;
}

.mob-navigation_templ {
    padding-top: 30px;
    padding-bottom: 30px;
}
.st-navigation_templ {
    padding: 0;
}

.st-navigation_templ .st-navigation_li {
    position: relative;
    flex-grow: 1;
    flex-basis: auto;
    text-align: center;
    -ms-flex-preferred-size: auto;
    -ms-flex-positive: 1;
    padding-right: 10px;
}

.st-navigation_templ .st-navigation_a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    font-weight: 700;
    font-size: 16px;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.st-navigation_templ .st-navigation_a::before {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #05b2ff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.st-navigation_templ .st-navigation_a:hover {
    color: #05b2ff;
}

.st-navigation_templ .st-navigation_a:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    visibility: visible;
}

.call {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    align-items: center;
    font-weight: bold;
    font-size: 29px;
    color: inherit;
    text-decoration: none;
    -ms-flex-align: center;
}
.nav {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 0;
    -ms-flex-align: center;
}

.header {
    background-color: #fff;
}

.top_headblock {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navigation_headblock {
    width: 100%;
}

.mob_trigg_headblock_navigation {
    display: none;
}

.templ_headblock .top_headblock {
    z-index: 6;
    padding: 0;
    background-color: #fff;
}

.templ_headblock .cont_headblock {
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 87px;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
}

.templ_headblock .headblock_navigation_mob {
    position: fixed;
    left: 0;
    z-index: 999;
    display: none;
    width: 100%;
    max-height: 100%;
    overflow-y: scroll;
    background: #fffafa;
}

.templ_headblock .headblock_navigation_mob.show {
    display: block;
}
.form__ptoperty {
    margin-bottom: 15px;
}

.modal {
    padding-right: 0 !important;
}

.ct__win {
    background-color: #fff;
    border: none;
    -webkit-box-shadow: 0px 8px 51px 0px rgba(19, 53, 105, 0.26);
    box-shadow: 0px 8px 51px 0px rgba(19, 53, 105, 0.26);
}

.h_line__modal {
    position: relative;
}

.win--close {
    position: absolute;
    top: 5px;
    right: 12px;
    z-index: 5;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    background-color: transparent;
    border: none;
    outline: none;
    -ms-flex-align: start;
    -ms-flex-pack: end;
}

.win--close:active, .win--close:focus {
    outline: none;
}

.win--close-btn {
    font-weight: normal;
    font-size: 45px;
    outline: none;
    opacity: 1;
}

.win--close-btn:active, .win--close-btn:focus, .win--close-btn:hover {
    outline: none;
}

.part--title {
    margin-bottom: 33px;
    font-size: 25px;
    
    font-weight: 600;
    text-align: center;
    color: #000;
}

.part--title span {
    font-size: 75%;
    font-weight: 300;
    color: #000;
}

.logo {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    color: #000;
    -ms-flex-align: center;
}

.logo:hover {
    color: #000;
    text-decoration: none;
}

.icon_logotip {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.wr-text-logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 16px;
    
    color: #000;
}

.text_logotip {
    font-size: 140%;
    font-weight: 600;
}

.subtext_logotip {
    font-size: 75%;
}

.text_logotip_r {
    color: var(--color-red);
}

.text_logotip_b {
    color: var(--color-blue);
}

.a_foot-logo .wr-text-logo {
    font-size: 11px;
}
.main-call .number_call {
    font-size: 18px;
    
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.main-call:hover {
    text-decoration: none;
}

.main-call .number_call {
    color: var(--color-red);
}

.schedule_w {
    font-size: 14px;
    color: grey;
    margin-left: 10px;
}

.templ_contacts_call {
    position: relative;
}
.templ_contacts_call .number_call {
    font-size: 26px;
    color: var(--color-blue);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.button {
    position: relative;
    z-index: 3;
    height: 38px;
}

.text__button {
    font-size: 13px;
    
}

.bord_butt_templ {
    padding-right: 15px;
    padding-left: 15px;
    border: 2px solid var(--color-blue);
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.bord_butt_templ:hover {
    border-color: var(--color-blue);
    background-color: #B2C5E1;
}
.bord_butt_templ:hover::before {
    background-color: var(--color-blue);
}

.width_48 {
    width: 48%;
}

.width_100 {
    width: 100%;
}

.color_butt_thempl {
    background-color: #ff4c03;
    color: #fff;
    border-radius: 5px;
}

.color_butt_thempl:hover {
    background-color: #ff4c03;
    opacity: 0.5;
}

.blue_button_theme {
    background-color: var(--color-blue);
    color: #fff;
    border-radius: 5px;
}

.blue_button_theme:hover {
    background-color: var(--color-blue);
    opacity: 0.5;
}

.templ_red_butt {
    width: 200px;
    height: 38px;
    color: #fff;
    background-color: #ff4c03;
    border-radius: 5px;
}

.f_text_templ_color .inp_text_control {
    height: 38px;
    padding-left: 20px;
    font-size: 14px;
    color: #000;
    border: 2px solid #ff4c03;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.f_text_templ_color .inp_text_control::-webkit-input-placeholder {
    font-size: 14px;
    
    color: #000;
}

.f_text_templ_color .inp_text_control:hover, .f_text_templ_color .inp_text_control:focus {
    border-color: #d40b11;
}

.f_text_gray .inp_text_control {
    height: 41px;
    padding-left: 15px;
    border: 2px solid #cbced2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.f_text_gray .inp_text_control:hover, .f_text_gray .inp_text_control:focus {
    border-color: #9ea0a2;
}

.f_text_blue .inp_text_control {
    height: 41px;
    padding-left: 15px;
    border: 2px solid var(--color-red);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.f_text_blue .inp_text_control:hover, .f_text_blue .inp_text_control:focus {
    border-color: var(--color-blue);
}
.templ_headblock .top_headblock {
    padding-top: 18px;
    padding-bottom: 18px;
}

.templ_headblock .select_headblock {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-left: 70px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -ms-flex-align: center;
}

.templ_headblock .cont_headblock {
    height: auto;
    padding: 0 15px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.templ_headblock .navigation_headblock {
    height: auto;
}

.templ_headblock .headblock__logo, .templ_headblock .call_headblock {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.templ_headblock .call_headblock {
    margin-right: auto;
}

.templ_headblock .call_headblock {
    margin-left: auto;
}

.templ_headblock .mob_trigg_headblock_navigation {
    margin-left: auto;
}

.templ_headblock .headblock_navigation_mob {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.st-navigation_templ .st-navigation_a {
    height: 50px;
    font-size: 12px;
    color: #000;
    font-weight: 400;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.st-navigation_templ .st-navigation_a:hover {
    color: var(--color-blue);
}

.st-navigation_templ .st-navigation_a:hover::before {
    display: none;
}

.st-navigation_footer .st-navigation_a {
    padding: 18px 10px;
    font-size: 11px;
    
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.st-navigation_footer .st-navigation_a:hover {
    color: var(--color-blue);
}
.mob-navigation_templ .mob-navigation-container {
    padding-bottom: 20px;
}

.mob-navigation .st-navigation_a {
    color: #000;
}

.mob-navigation-butt button {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    width: 213px;
}
.ofer {
    position: relative;
    background-color: #fff;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-top: 86px;
}

.ofer::before {
    content: "";
    position: absolute;
    background: #000000a3;
    width: 100%;
    height: 100%;
}

.ofer2 {
    margin-top: 86px;
}

.main-background {
    background-image: url("../img/main-background.jpg");
}

.utp_wrapper {
    position: relative;
    width: 100%;
    z-index: 6;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #fff;
}

.ofer_title_h1 {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.2;   
    font-weight: 900;
	text-align: center;
	color: #fff;
}
.utp_sub {
    margin-bottom: 25px;
    font-size: 18px;
    font-style: italic;
    line-height: 1.2;   
    font-weight: 400;
    text-align: center;
    color: #fff;
}

.ofer_title_h1 span {
    color: #ff4c03;
}
.utp_items{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width:  900px;
    gap: 20px 60px;
    margin: 0 auto 50px;
}
.utp_item{
    flex: 0 0 260px;
    display: flex;  
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 5px; 
    border: 1px solid #ffffff;
    padding: 10px 15px;
}
.utp_icon{
    width: 38px;
	height: 38px;
    margin-right: 15px;
	margin-top: 2px;	
}
.utp_item-text{
    font-size: 17px;
    line-height: 1.25;   
    font-weight: 400;
    text-align: left;
    color: #fff;
    margin: 0;  

}

li {
    list-style-type: none;
}
.part_form_template {
    color: #ffffff;
}

.part_form_template .part_form__title {
    text-align: center; 
    margin-bottom: 18px;
    font-size: 18px;
    
}

.part_form_templ-cosult {
    padding-left: 30px;
}

.part_form_templ-cosult .part_form__title {
    font-size: 30px;
    
    font-weight: 600;
}

.part_form_templ-cosult .part_form__description {
    margin-bottom: 20px;
    font-size: 20px;
    
}

.part_form_templ_title .part_form__title {
	margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
}

.part_form_templ_message .part_form__title {
    margin-bottom: 30px;
    font-size: 18px;
    
    text-align: center;
}

.form_templ_size {
    width: 470px;
    margin: 0 auto;
}

.form_templ_size .textfield {
    width: 48%;
}

.form_templ_size .line__form {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-align: center;
}

.form_templ_size .form--butt {
    width: 48%;
    margin-left: 10px;
}
.form-cosult {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.form-cosult .form__ptoperty {
    margin-bottom: 20px;
}

.form-cosult .form__consent, .form-cosult .form__consent-link {
    font-size: 12px;
}

.form__consent, .form__consent-link {
    margin-top: 15px;
    font-size: 14px;
    
    color: #000;
}
.agree--form{
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #ffffff;
}

.form__consent:hover, .form__consent-link:hover {
    color: #000;
    text-decoration: none;
}

.templ_message_form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
}

.templ_message_form .textfield {
    width: 203px;
    margin-right: auto;
    margin-left: auto;
}

.templ_message_form .form--butt {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    width: 100%;
    -ms-flex-pack: center;
}

.templ_message_form .form__consent, .templ_message_form .form__consent-link {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

.advantages {
    position: relative;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
    color: #000000;
}
.wrapper_adv{
    position: relative;
    width: 100%;
    z-index: 6;
    padding-top: 60px;
    padding-bottom: 60px;
    color: #000000;
}
.title--h2 {
    margin-bottom: 50px;
    font-size: 36px;
    line-height: 1.2;   
    font-weight: 900;
    text-align: center;
    color: var(--color-orange);
}

.title--h2 span {
    color: var(--color-blue);
}
.area--h2 {
	padding: 10px 0;
	background: #fffc;
	border-radius: 10px;
}
.adv__items{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width:  900px;
    gap: 40px 40px;
    margin: 0 auto 50px;
}
.adv_item{
    flex: 0 0 270px;
    display: flex;  
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-radius: 5px; 
    border: 2px solid var(--color-orange);
    padding: 15px 15px;
}
.adv__icon{
    width: 38px;
    margin-right: 15px;  
}
.adv__item-text{
    font-size: 16px;
    line-height: 1.25;   
    font-weight: 400;
    text-align: left;
    color: var(--color-blue);
    margin: 0;  

}
.advantages .agree--form{
    color: #000000;
}
.advantages .part_form__title{
    color: #000000;
    text-align: center;
}

.item--price:nth-child(n+17) {
    display: none;
}
.title__cost {
    margin-bottom: 40px;
    color: var(--color-orange);
}

.price_all_butt {
    cursor: pointer;
    margin-top: 20px;
}

.price_all_butt span {
    position: relative;
    font-size: 14px;
}

.price_all_butt span::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.price_all_butt span:hover::before {
    opacity: 0;
}

.cost {
    padding-bottom: 50px;
	background: linear-gradient(#f2f2f2, #fff);
}

.cost h2 {
    padding-top: 60px;
}

.work__title--steps {
    margin-bottom: 80px;
}

.work__item-steps {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-bottom: 110px;
    -ms-flex-pack: center;
}

.stage {
    padding-top: 60px;
    padding-bottom: 80px;
    background-color: #000000;
    background: url("../img/bg-steps.jpg"), #000000;
    background-size: cover;
    background-position: center center;
}
.title--steps{
    color: #ffffff;
    margin-bottom: 30px;
}
.steps--block{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}
.item-steps{
    position: relative;
    flex: 1 1 260px;
    background-color: #fffc;
    border-radius: 10px;
    padding:50px 20px 50px;
    margin-top:30px;

}
.icon--item{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-blue);
    width: 60px;
    height: 60px;

    line-height: 1;
    top: -30px;
    left: calc(100%/2 - 30px);
    color: #ffffff;
    font-weight: 800;
    font-size: 54px;
    text-align: center;
    border-radius: 30px;
}
.text--steps {
	text-align: center;
}

.reviews {
    padding-top: 60px;
    padding-bottom: 60px;
}
.title__reviews{
    color: #000000;
    margin-bottom: 30px;
}
.rev-block{
    display: flex;
    flex-direction: row;

    flex-wrap: wrap;
    gap: 40px 40px;
}
.rev-item{
    position: relative;
    flex: 1 1 500px;
    padding:20px 20px 20px;
    border-radius: 5px;
    border: 2px solid var(--color-blue);
    border-image: linear-gradient(355deg, #1E038D, rgba(30, 3, 141, 0));
    border-image-slice: 1;
}
.rev-photo{
    width: 100px;
    height: 100px;
    margin-right: 20px;
    float: left;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.20);
}
.rev-data{
    font-size: 13px;
    font-weight: 400;
    margin: 0;  
}
.rev-data .rev-name{
    display: block;
    margin-bottom: 10px;
    font-size: 16px;   
    font-style: italic; 
    font-weight: 700;
}

.connection {
    margin-top: 120px;
    margin-bottom: 40px;
    background: linear-gradient(#fff, #ebebeb);
}

.cosult-container {
    padding-top: 35px;
}

.cosult-wrap-form {
    padding-right: 0;
    padding-bottom: 35px;
}

.cosult-img-wrapp {
    position: relative;
}

.cosult-images {
    position: absolute;
    right: 40px;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-end;
    -ms-flex-align: end;
	background-image: url("../img/consult-bg.png");
    width: 100%;
	max-width: 420px;
	height: 100%;
	min-height: 483px;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.connection .textfield {
    width: 100%;
}

.connection  .f_text_templ_color .inp_text_control{
        border: 2px solid var(--color-blue);
}
.connection  .color_butt_thempl{
        background-color: var(--color-blue);
}

.contacts {
    position: relative;
}

.con--title_text {
    padding-top: 40px;
    padding-bottom: 40px;
}
.con--item__title {
    font-size: 36px;
    line-height: 1.2;
    
    font-weight: 600;
    color: #000;
    text-align: center;
}

.con--item__title2 {
    font-size: 22px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.con--subtitle_text {
    font-size: 18px;
    
    padding-top: 10px;
}

.con--subtitle_text2 {
    font-size: 80%;
    margin: 0 2%;
}

.con--call {
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer {
    padding: 20px 0;
    background-color: #ececec;
}

.cont_footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
}

.foot-cosult {
	font-size: 11px;
	padding-top:10px;
}

.foot-cosult img {
	padding-right: 10px;
}

.foot-oferta {
    font-size: 11px;
    text-align: center;
}

.foot-yur {
    width: 100%;
    margin-top: 10px;
    font-size: 11px;
    text-align: center;
}

.foot-policy {
    width: 100%;
    margin-top: 10px;
    font-size: 11px;
    text-align: center;
}

.templ_message_modal .dialog_window {
    max-width: 500px;
}

.templ_message_modal .win_body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    padding: 50px 15px;
    -ms-flex-align: center;
}

.templ_message_modal .win--close {
    top: 5px;
    right: 5px;
}

.templ_message_modal .win--close-btn {
    font-size: 30px;
}

@media only screen and (max-width: 1199px) {
    .main-call .number_call {
        font-size: 18px;
    }

    .schedule_w {
        display: block;
    }

    .templ_headblock .select_headblock {
        margin-left: 20px;
    }

	.main-background {
		background-image: url("../img/main-background-1200.jpg");
	}

    .stage {
        background-image: url("../img/bg-steps-1200.jpg");
    }

    .ofer_title_h1, .title--h2 {
        font-size: 26px;
    }
	
    .form_templ_size {
        width: 100%;
    }
    .cosult-images img {
        max-width: 90%;
    }

    .cosult-images {
        right: 15px;
    }

    .con--wrap-text {
        padding-right: 30px;
    }

    .foot-button {
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        -ms-flex-align: center;
        -ms-flex-pack: center;
    }

    .foot-button .text__button {
        white-space: nowrap;
    }
    .rev-block{
        gap: 30px 30px;
    }
    .rev-item{
        flex: 1 1 400px;
    }
}

.form_templ_size {
    align-items: center;
    -ms-flex-align: center;
}

.templ_headblock {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
    box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
}

@media only screen and (max-width: 991px) {
    .mob_trigg_headblock_navigation {
        display: block;
    }

    .templ_headblock .cont_headblock {
        height: 60px;
    }

    .templ_headblock .select_headblock, .templ_headblock .call_headblock {
        display: none;
    }

    .icon_logotip {
        width: 30px;
        height: 30px;
    }

    .wr-text-logo {
        font-size: 12px;
    }

    .text__button {
        margin: 0 auto;
    }

    .top_headblock {
        box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.1);
    }

    .templ_headblock .top_headblock {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .templ_headblock .cont_headblock {
        height: auto;
    }
    .templ_headblock .zf_butt_headblock {
        display: none;
    }

    .templ_headblock .call_headblock {
        display: -ms-flexbox;
        display: flex;
        margin-right: auto;
    }

    .st-navigation_templ .st-navigation_a:hover {
        color: #000;
        background-color: transparent;
    }

    .st-navigation_templ .st-navigation_a {
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 11px;
    }

    .st-navigation_templ .st-navigation_ul {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .ofer {
        margin-top: 55px;
    }

	.main-background {
		background-image: url("../img/main-background-991.jpg");
	}

    .stage {
        background-image: url("../img/bg-steps-991.jpg");
    }

    .part_form__ofer {
        margin-top: 45px;
        padding-right: 0;
    }

    .part_form_template {
        max-width: 533px;
        margin-right: auto;
        margin-left: auto;
    }

    .part_form_templ-cosult {
        align-items: center;
        -ms-flex-align: center;
    }

    .part_form_templ-cosult .part_form__title {
        text-align: center;
    }

    .part_form_templ-cosult .part_form__description {
        text-align: center;
    }

    .form_templ_size .textfield {
        width: 48%;
    }

    .form_templ_size .line__form {
        justify-content: space-between;
        -ms-flex-pack: justify;
    }
    .st-navigation_footer {
        display: none;
    }
    .form__consent, .form__consent-link {
        text-align: center;
    }
    .steps {
        padding-bottom: 0;
    }
    .connection {
        margin-top: 50px;
    }

    .cosult-wrap-form {
        padding: 0 15px;
        padding-bottom: 35px;
    }

	.cosult-images {
		background-image: none;
	}

    .con--wrap-text {
        padding-right: 15px;
    }
    .con--item__title {
        font-size: 30px;
    }

    .con--item__title2 {
        font-size: 20px;
    }

    .cont_footer {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .foot-logo {
        margin-bottom: 10px;
    }

    .call--foot {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
        text-align: center;
    }

    .foot-button {
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        -ms-flex-align: center;
    }
    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
      width: 15px;
      height: 15px;

    }
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .padding__35 {
        padding-top: 35px;
    }
    .bord_butt_templ {
        padding-right: 10px;
        padding-left: 10px;
    }

    .templ_headblock {
        height: 50px;
    }

    .templ_headblock .select_headblock {
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }

    .st-navigation_templ {
        margin-bottom: 15px;
    }

    .mob-navigation_templ {
        padding-top: 20px;
    }

    .utp_wrapper {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .part_form__ofer {
        margin-top: 0;
        padding-right: 0;
    }

    .ofer_title_h1, .title--h2 {
        margin-bottom: 30px;
        text-align: center;
    }
    .part_form_template .part_form__title {
        margin-bottom: 15px;
        font-size: 17px;
        text-align: center;
    }

    .part_form_templ-cosult {
        padding-left: 0;
    }

    .part_form_templ_title .part_form__title {
        font-size: 17px;
        text-align: center;
    }

    .form_templ_size .textfield {
        width: 100%;
    }

    .form_templ_size .line__form {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .form_templ_size .form--butt {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }
    .form-cosult .form__ptoperty {
        margin-bottom: 15px;
    }

    .width_48 {
        width: 100%;
    }

    .form__consent, .form__consent-link {
        font-size: 13px;
    }
    .price_all_butt {
        text-align: center;
    }
    
    .con--title_text {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        -ms-flex-align: center;
    }
    .con--item__title {
        font-size: 26px;
        text-align: center;
    }
    .con--item__title2 {
        font-size: 18px;
    }

    .con--subtitle_text {
        text-align: center;
    }
    .templ_message_modal {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .steps--block{
        gap: 10px 10px;
    }
    .item-steps{
        padding:45px 15px 15px;
    }
    .text--steps{
        text-align: center;
    }
}

.con--wrap-text {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.con--title_text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    -ms-flex-align: center;
}

.con--title_text .title--h2 {
	margin-bottom: 0px;
}

@media only screen and (max-width: 575px) {
    
    .utp_items{
        gap: 15px 15px;
    }
    .utp_item{
        flex: 0 0 200px;
        padding: 5px 10px 5px 5px;
    }
    .utp_icon{
		width: 30px;
		height: 30px;
		margin-right: 10px;
		margin-left: 5px;
    }
    .utp_sub{ margin-bottom: 15px;}
    .utp_item-text, .utp_sub{
        font-size: 14px;

    }
    .st-navigation_templ .st-navigation_a {
        font-size: 14px;
    }

    .adv__items{
        gap: 15px 20px;
    }
    .adv__item-text{
        font-size: 14px; 

    }
    .adv__icon{
        width: 30px;
    }
    .navigation--box {
        width: 36px;
    }

    .navigation--inner, .navigation--inner:after, .navigation--inner:before {
        width: 36px;
    }

    .part--title {
        margin-bottom: 30px;
        font-size: 20px;
    }

    .icon_logotip {
        margin-right: 5px;
    }

    .templ_headblock .headblock__logo.hidden {
    }

    .templ_headblock .call_headblock {
        flex-direction: column;

    }
    .templ_headblock .call_headblock .number_call{
        font-size: 12px;
        
    }
    .schedule_w {
        text-align: center;
        font-size: 12px;
        margin-left: 0px;
        margin-top: 2px;
    }
    .templ_headblock .call_headblock.show {
        opacity: 1;
    }


    .mob-navigation-butt button {
        width: 100%;
    }

	.main-background {
		background-image: url("../img/main-background-575.jpg");
	}
	
	.stage {
		background-image: url("../img/bg-steps-575.jpg");
	}

    .utp_wrapper {
        padding-top: 40px;
    }

    .ofer_title_h1, .title--h2 {
        margin-bottom: 25px;
        font-size: 18px;
        line-height: 1.5;
    }
    .part_form_template .part_form__title {
        font-size: 15px;
    }

    .part_form_templ-cosult .part_form__title {
        font-size: 20px;
    }

    .part_form_templ-cosult .part_form__description {
        font-size: 17px;
    }
    .item--price {
        margin-bottom: 10px;
    }
    .work-stages-item__title {
        text-align: center;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .steps {
        padding-bottom: 30px;
    }

    .work__item-steps {
        margin-bottom: 40px;
    }
    .con--subtitle_text {
        font-size: 14px;
    }
    .form-cosult .form__ptoperty {
        margin-bottom: 10px;
    }
    .reviews {
        padding-bottom: 30px;
    }
}

.list-three {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    font-size: 14px;
    margin-top: 10px;
}

.list-three li::before {
    content: "✔";
    padding-right: 0.5em;
    color: var(--color-blue);
    font-weight: 900;
}

@media only screen and (max-width: 991px) {
    .list-three {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}

@media only screen and (max-width: 490px) {
    .list-three {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}

@media only screen and (max-width: 410px) {
	.row {
		margin-right: -5px;
		margin-left: -5px;
	}
    .utp_items{
        gap: 10px 10px;
    }
    .utp_item{
        flex: 0 0 170px;
    }
    .utp_icon{
        width: 25px;
        margin-right: 10px;
    }
    .utp_item-text{
        font-size: 12px;

    }

	.main-background {
		background-image: url("../img/main-background-401.jpg");
	}
	
	.stage {
		background-image: none;
	}

}
.hidd-textarea {
    display: none;
}

.sending-successful {
    display: none;
	position: fixed;
	left: 25%;
	right: 25%;
	top: 40%;
	text-align: center;
	color: #000;
	background-color: #fff;
	-webkit-box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
	box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
	border-radius: 0.5rem;
	height: calc(30vh - 1rem);
	line-height: calc(30vh - 1rem);
	z-index: 1000;
}

.sending-failed {
    display: none;
	position: fixed;
	left: 25%;
	right: 25%;
	top: 40%;
	text-align: center;
	color: #000;
	background-color: #F7D5D3;
	-webkit-box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
	box-shadow: 0 5px 26px rgba(0, 0, 0, 0.23);
	border-radius: 0.5rem;
	height: calc(30vh - 1rem);
	line-height: calc(30vh - 1rem);
	z-index: 1000;
}

.wrapp-table {
    max-width: 768px;
    margin: auto;
}

table.table-two {
    width: 100%;
}

.table-two th {
    font-weight: normal;
    padding: 10px 15px;
    border-radius: 5px;
}

.table-two th span {
    cursor: pointer;
    position: relative;
}

.table-two th span::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.table-two th span:hover::before {
    opacity: 0;
}
.table-two tr:nth-child(2n) {
    background: linear-gradient(180deg, #E8E5F4 0%, rgba(232, 229, 244, 0.83) 49.48%, #E8E5F4 100%);
    border-radius: 5px;
}

.table-two tr:nth-child(1n):hover {
    background: #f7f7f7;
}

.table-two tr:nth-child(2n):hover {
    background: #d6e7f7;
}

table.table-two {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

table.table-3 th, table.table-3 td {
    width: 50%;
}

@media screen and (max-width: 575px) {
    table.table-two tr {
        display: block;
    }

    table.table-two th, table.table-two td {
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
	.sending-successful, .sending-failed {
		left: 10%;
		right: 10%;
	}
	
    table.table-3 tr {
        display: block;
    }

    table.table-3 th, table.table-3 td {
        display: block;
        width: 100%;
    }
}