/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

html
{
    height: 100%;

    background: var(--bg);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


body
{
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);

    height: 100%;

    transition: opacity .2s linear;

    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
	
	overflow-x: hidden;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}


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



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #fff;
    --scroll_width: 17px;
    --text_color: #000;
    --font_size: 13px;
    --font_size_title: 60px;
    --font_family: 'Montserrat', 'Arial', sans-serif;
}


::selection
{
    color: #fff;

    background: #ee7b04;
}

::-moz-selection
{
    color: #fff;

    background: #ee7b04;
}


.clear
{
    clear: both;
}

.left
{
    float: left;
}

.right
{
    float: right;
}



html
{
    height: 100%;

    background: var(--bg);
}

html.custom_scroll ::-webkit-scrollbar
{
    width: 10px;
    height: 10px;

    background-color: #ccc;
}

html.custom_scroll ::-webkit-scrollbar-thumb
{
    background-color: #ed1556;
}

html.custom_scroll
{
    scrollbar-color: #ed1556 #ccc;
    scrollbar-width: thin;
}


body
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    height: 100%;

/*
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
	*/
}

body.lock
{
    position: fixed;
    top: 0;
    left: 0;

    overflow: hidden;

    width: 100%;
    height: 100%;
}


button
{
    color: var(--text_color);
    font: var(--font_size) var(--font_family);

    cursor: pointer;

    border: none;
    background: none;
}


.wrap
{
    position: relative;

    display: flex;
    overflow: hidden;
    flex-direction: column;

    min-width: 360px;
    min-height: calc(100% - 93px);
}

.wrap:before {
	content: "";
	background: transparent url('../images/hre-1.png') no-repeat;
	width: 227px;
	height: 350px;
	position: absolute;
	top: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
}


.main
{
    flex: 1 0 auto;
}


.cont
{
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}


.compensate-for-scrollbar
{
    margin-right: var(--scroll_width) !important;
}


.lozad
{
    transition: opacity .5s linear;

    opacity: 0;
}

.lozad.loaded
{
    opacity: 1;
}


.row
{
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.wrap {
    background-position: top left;
    /*background-size: cover;*/
    background-repeat: no-repeat;
}

header .cont.row {
    justify-content: flex-start;
    align-items: center;
    align-content: center;
	padding-top: 30px;
	font-family: var(--font_family);
}

header .logo {
	margin-right: 30px;
}

header .logo img {
	
}

header .contacts br {
	display: none;
}

header .contacts > * + * {
    margin-left: 25px;
}

header .contacts .phone {
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
    color: #fff;
}


header .contacts .callback_btn {
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1px dashed;
    color: #fff;
	transition: color .2s linear;
}

header .contacts .callback_btn:hover {
    color: #ffef31;
}

header .contacts .whatsapp {
	background: #1B9F2A url(../images/whatsapp-line.svg) no-repeat 17px center;
	color: #fff;
	display: inline-block;
	text-decoration: none;
	border-radius: 26px;
	font-size: 18px;
	font-weight: 500;
	padding: 15px 26px 15px 50px;
	transition: background .2s linear;
}

header .contacts .whatsapp:hover {
	background-color: #23b334;
}


section.sect {
	margin-top: 50px;
}


.wrap1 {background-size: cover;background-position: bottom left;}
.wrap2 {background-position: bottom left;}
.wrap3 {background-size: cover;}
.wrap4 {background-size: cover;background-position: bottom left;}
.wrap5 {background-size: cover;}
.wrap6 { background-position: 10%;}
.wrap7 { background-size: cover;}
.wrap8 { background-size: cover;background-position: center right;}
.wrap12 { background-size: cover;background-position: center right;}




section.sect .title {
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 25px;
	position: relative;
	font-family: var(--font_family);
}

/*
section.sect.f7 .title {
	margin-left: 230px;
}

section.sect.f7 .title:before {
	position: absolute;
	top: 0;
	left: -230px;
	content: "";
	background: transparent url('../images/zewa.png') no-repeat;
	width: 270px;
	height: 111px;
	background-size: contain;
}
*/

section.sect .desc {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 25px;
	font-family: var(--font_family);
}


section.sect .price {
	background: #FFEF31 url(../images/price.png) no-repeat 17px center;
	color: #000;
	display: inline-block;
	text-decoration: none;
	border-radius: 26px 0 26px 26px;
	font-weight: 500;
	font-size: 25px;
	padding: 25px 26px 25px 50px;
	transition: background .2s linear;
}

section.sect .price:hover {
	background-color: #f5ed96;
}

section.fact {
	color: #fff;
	margin: 35px 0;
}

section.fact .cont > * + * {
    margin-left: 25px;
}

section.fact .cont .rows {
	padding: 5px 0 5px 45px;
	font-size: 16px;
	font-family: var(--font_family);
}

section.fact .cont .img1 {
	background: transparent url('../images/timer-line.svg') no-repeat left center;
}

section.fact .cont .img2 {
	background: transparent url('../images/refresh-line.svg') no-repeat left center;
}

section.fact .cont .img3 {
	background: transparent url('../images/truck-line.svg') no-repeat left center;
}

section.fact .cont .img4 {
	background: transparent url('../images/shield-check-line.svg') no-repeat left center;
}

footer {
    background: #fff;
	font-size: 16px;
	font-weight: bold;
	padding: 15px 0;
	position: relative;
}

footer:before {
	content: "";
	background: transparent url('../images/hre-2.png') no-repeat;
	width: 215px;
	height: 198px;
	position: absolute;
	bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

footer .cont.row {
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

footer .cont.row > * + * {
    margin-left: 25px;
}



/*-----------
    PopUp
-----------*/
.modal
{
    display: none;
    visibility: visible !important;

    width: 444px;
    max-width: 100%;
    padding: 41px;

    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 10px rgba(0,0,0,.16);
}

.modal_title
{
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;

    text-align: center;
}

.modal_desc
{
    line-height: 23px;

    width: 340px;
    max-width: 100%;
    margin: 15px auto 0;

    text-align: center;
}

.modal .form
{
    margin-top: 25px;
}

.modal .or_call
{
    color: #000;
    line-height: 23px;

    margin-top: 25px;

    text-align: center;
}

.modal .or_call a
{
    color: #000;
    font-weight: 700;

    display: inline-block;

    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}


.service_head .info .size73,
.service_head .info .size75,
.service_head .info .size11 {
	font-size: 72px;
}


.privacy {
	width: 900px;
	margin: 25px auto;
	font-family: Montserrat;
	line-height: 21px;
}

.privacy h1 {
    margin-bottom: 35px;
    font-weight: normal;
    line-height: 30px;
    font-size: 29px;
}

.privacy p {
	margin-bottom: 15px;
}

.privacy ol, .privacy ul {
	margin: 0 0 0 30px;
}



.form input[type=checkbox] + label {
    font-size: 12px;
    line-height: normal;
    position: relative;
    display: table-cell;
    height: 21px;
    padding-left: 25px;
    cursor: pointer;
    text-align: left;
}

.form input[type=checkbox] + label a {
	color: #000;
}

.form input[type=checkbox] {
    display: none;
}

.form input[type=checkbox]:checked + label:before {
    border-color: #ff9800;
    box-shadow: inset 0 0 0 4px #ff9800;
}

.form input[type=checkbox] + label:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 17px;
    height: 17px;
    content: '';
    transition: .2s linear;
    border: 1px solid #ff9800;
    background: #fff;
}


#ok_modal, #ok_modal_2 {
	font-size: 21px;
}

#ok_modal .modal_desc, #ok_modal_2 .modal_desc {
	line-height: 30px;
}


/*------------------
    Form elements
------------------*/
.form
{
    --form_border_color: #e2e2e2;
    --form_focus_color: #e2e2e2;
    --form_error_color: #ed1556;
    --form_border_radius: 27px;
    --form_bg_color: #f5f5f5;
    --form_placeholder_color: #939393;
}


.form ::-webkit-input-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder
{
    color: var(--form_placeholder_color);
}

.form :-ms-input-placeholder
{
    color: var(--form_placeholder_color);
}


.form .line
{
    margin-bottom: 12px;
}


.form .field
{
    position: relative;
    z-index: 3;

    padding-top: 7px;
}



.form .input
{
    color: var(--text_color);
    font: 18px var(--font_family);

    display: block;

    width: 100%;
    height: 55px;
    padding: 0 35px;

    transition: border-color .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form .input:-webkit-autofill
{
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


.form .input:focus
{
    border-color: var(--form_focus_color);
}

.form .error
{
    border-color: var(--form_error_color);
}


.form .submit
{
    position: relative;
    z-index: 3;

    display: flex;

    margin-top: 26px;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .submit_btn
{
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;

    display: flex;

    width: 100%;
    height: 58px;
    padding: 0 28px;

    transition: margin .2s linear;

    border: 1px solid #ff9800;
    border-radius: 30px;
    background: #FFEF31;
    box-shadow: 0 3px 6px rgba(0,0,0,.16);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .submit:before
{
    position: absolute;
    z-index: -1;
    bottom: -1px;
    left: -1px;

    display: block;

    width: calc(100% + 2px);
    height: calc(100% + 8px);

    content: '';
    transition: .2s linear;

    border-top: 1px solid #ff9800;
    border-radius: 34px;
    background: #FFEF31;
}

.form .submit:hover .submit_btn
{
    margin-top: -4px;
    margin-bottom: 4px;
}

.form .submit:hover:before
{
    bottom: 3px;

    height: calc(100% + 3px);
}


.privacy {
    width: 900px;
    margin: 25px auto;
    font-family: Montserrat;
    line-height: 21px;
}

.whatsapp_mob {
	display: none;
}