html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong {
	font-weight: bold;
}

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


:root{
  --main-color: #FEB72F;
  --bwidth: 23px;
}



html,
body{
	background: #fff;
	float: left;
	width: 100%;
	min-height: 100%;
}
body{
	background: #fff url(../images/hexagon.svg) no-repeat 13% 58%/100px auto fixed;
	color: #303030;
	font-family: 'Helvetica';
	font-size: 16px;
}
a{
	color: #303030;
	text-decoration: none;
}


h1,
.h1{
	font-size: 34px;
	line-height: 1;
	padding: 0;
	margin: 0 0 15px;
}
h2,
.h2{
	font-size: 24px;
	line-height: 1;
	padding: 0;
	margin: 0 0 10px;
}
h3,
.h3{
	font-size: 20px;
	line-height: 1;
	padding: 0;
	margin: 0 0 10px;
}
h4,
.h4{
	font-size: 16px;
	line-height: 1;
	padding: 0;
	margin: 0 0 10px;
}

p{
	margin: 0 0 10px;
}
p:last-child{
	margin-bottom: 0;
}
hr{
	border: none;
	border-bottom: #dfdfdf 1px solid;
	margin: 20px 0;
}

.w100{
	width: 100%;
}
.w50{
	width: 50%;
}
.claer{
	clear: both;
}

.fx{
	display: flex;
	flex-direction: row;
}
.fx.v{
	flex-direction: column;
}
.fx.c{
	justify-content: center;
}
.fx.vc{
	align-items: center;
}
.fx.sb{
	justify-content: space-between;
}
.fx.w{
	flex-wrap: wrap;
}

.main_width{
	width: 1400px;
	max-width: calc(100% - 170px);
	margin: 0 auto;
}


.button{
	display: inline-block;
	background: transparent;
	border: none;
	outline: none;
	position: relative;
	cursor: pointer;
	padding: 15px 20px;
}
.button:before{
	content: '';
	background: linear-gradient(to right, #FEB72F, #FF8117 80%);
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
	height: 100%;
	transition: .3s;
	transform: 
		skewX(-20deg)
		translateX(-50%);
	box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.button span{
	color: #fff;
	font-family: "Arial Black";
	font-size: 16px;
	position: relative;
}
.button:hover:before{
	width: calc(100% + 20px);
}


.button:before,
.to_call_me:before{
	background: linear-gradient(to right, #FF8117, #FEB72F, #FF8117);
	background-size: 600% 100%;
	background-position: 100% 0;
	-webkit-animation: button_anim 1.8s linear infinite;
    animation: button_anim 1.8s linear infinite;
}
@keyframes button_anim{
    0%,100% {
        background-position: 100% 0; 
    }
    50%{
    	background-position: 0 0; 
    }
    99.999%{
    	background-position: 0 0; 
    }
}

.link{
	position: relative;
}
.link:before{
	content: '';
	background: var(--main-color);
	position: absolute;
	left: 0;
	top: 100%;
	width: 0;
	height: 1px;
	transition: .5s;
}
.link:hover:before{
	width: 100%;
}

[data-tooltip]{
	position: relative;
}
[data-tooltip]:before {
    content: attr(data-tooltip);
    background: #000;
	color: #fff;
	font-size: 12px;
	line-height: 1.1;
	white-space: nowrap;
	text-align: center;
	text-transform: none;
	position: absolute;
	left: -9000px;
	bottom: 100%;
	opacity: 0;
	transform: translate(-50%, -30px);
	transition: opacity .5s, transform .5s;
	padding: 5px 10px;
}
[data-tooltip]:hover:before{
	left: 50%;
	opacity: 1;
	transform: translate(-50%, -10px);
}
[data-tooltip]:after{
	content: '';
	border: 8px solid transparent;
	border-top: #000 8px solid;
	position: absolute;
	left: -9000px;
	bottom: 100%;
	opacity: 0;
	transform: translate(-50%, -14px);
	transition: opacity .5s, transform .5s;
}
[data-tooltip]:hover:after{
	left: 50%;
	opacity: 1;
	transform: translate(-50%, 4px);
}

.heaeder_shadow{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 90px;
	z-index: 10;
	box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.header{
	background: #fff;
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	top: 0;
	width: 100%;
	overflow: hidden;
	z-index: 20;
	padding: 10px 40px;
	margin: 20px 0;
}
.logo img{
	float: left;
	width: 190px;
	height: 68px;
}
.logo .slog{
	border-left: #b0b0b0 1px solid;
	color: #777;
	font-size: 17px;
	font-weight: 100;
	line-height: 1.15;
	text-transform: uppercase;
	float: left;
	padding: 10px 0 5px 20px;
	margin: 0 0 0 20px;
}
.header .cont{
	float: right;
	margin: 10px 0 0;
}
.header .languages{
	font-size: 14px;
	font-weight: 100;
	text-transform: uppercase;
	float: left;
	margin: 18px 30px 0 0;
}
.header .languages > *{
	position: relative;
	float: left;
	padding: 2px 5px;
}
.header .languages a,
.header .languages span{
	display: block;
	line-height: 1;
	padding: 4px 5px 2px;
}
.header .languages a:hover{
	background: #e9eef7;
}
.header .languages span{
	font-weight: 500;
}
.header .languages > *:not(:first-child){
	border-left: #b0b0b0 1px solid;
}
.online_24_7{
	font-size: 14px;
	font-weight: 100;
	line-height: 1;
	text-transform: uppercase;
	float: left;
	margin: 4px 40px 0 0;
}
.online_24_7 .t{
	position: relative;
	padding: 2px 0 0 20px;
}
.online_24_7 .t:before{
	content: '';
	display: block;
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	width: 10px;
	height: 10px;
	transform: translateY(-50%);
}
.online_24_7 .v{
	display: inline-block;
	color: #333;
	font-size: 23px;
	font-weight: 300;
	position: relative;
	padding: 13px 8px 9px;
}
.online_24_7 .v:before{
	content: '';
	background: #E9EEF7;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: skewX(-20deg);
}
.online_24_7 .v i{
	font-style: normal;
	position: relative;
}

.header .phones{
	float: left;
	margin: 8px 0 0;
}
.header .phones a{
	display: inline-block;
	color: #303030;
	font-family: "Arial Black";
	font-size: 24px;
	white-space: nowrap;
	margin: 0 0 0 30px;
}
.header .phones a span{
	color: #888;
}

.header .messengers{
	float: left;
	margin: 14px 0 0 30px;
}
.header .messengers .cont{
	float: left;
	width: auto;
	margin: 0;
}
.header .messengers a{
	width: auto;
	margin: 0;
}
.header .messengers img{
	top: 0;
	width: 24px;
	height: 24px;
}
.header .messengers img[alt="WhatsApp"]{
	width: 25px;
	height: 25px;
}
.header .messengers img[alt="Telegram"]{
	top: 1px;
	width: 22px;
	height: 22px;
}
/*.to_call_me{
	display: inline-block;
	color: #303030;
	font-size: 15px;
	font-family: "Arial Black";
	float: left;
	position: relative;
	padding: 15px 25px;
	margin: 0 0 0 40px;
}
.to_call_me:before{
	content: '';
	background: transparent;
	border: var(--main-color) 4px solid;
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
	height: 100%;
	transition: .3s;
	transform: 
		translateX(-50%)
		skewX(-20deg);
}
.to_call_me:hover{
	color: #000;
}*/

.to_call_me{
	display: inline-block;
	background: transparent;
	border: none;
	outline: none;
	font-size: 15px;
	font-family: "Arial Black";
	float: left;
	position: relative;
	cursor: pointer;
	padding: 15px 25px;
	margin: 0 0 0 40px;
}
.to_call_me:before{
	content: '';
	/*background: linear-gradient(to right, #FEB72F, #FF8117 80%);*/
	position: absolute;
	left: 50%;
	top: 0;
	width: 100%;
	height: 100%;
	transition: .3s;
	transform: 
		skewX(-20deg)
		translateX(-50%);
	animation-delay: .3s;
	box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.to_call_me span{
	color: #fff;
	position: relative;
}
.to_call_me:hover:before{
	width: calc(100% + 12px);
}
.to_call_me span{
	position: relative;
}
.to_call_me span br{
	display: none;
}

.top_block{
	background: linear-gradient(to bottom, #fff 50%, rgba(255,255,255,0));
	min-height: 500px;
}
.top_block > .list_block{
	width: 45%;
}
.top_block > .image_block{
	position: relative;
	width: 55%;
}

.top_block .list{
	list-style: none;
	float: right;
	width: 610px;
	max-width: 100%;
	padding: 0 50px;
}
.top_block .list li{
	font-family: "Arial Black";
	font-size: 32px;
	line-height: 1;
	position: relative;
	padding: 0 0 0 33px;
	margin: 0 0 30px;
}
.top_block .list li h1{
	display: inline;
	font-family: "Arial Black";
	font-size: 32px;
	line-height: 1;
	padding: 0;
	margin: 0;
}
.top_block .list li:before{
	content: '';
	background: var(--main-color);
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 8px;
	width: 18px;
	height: 18px;
}

.top_block > .image_block > img{
	background: #b0a093;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(180px 0, 100% 0, 100% 100%, 0 100%);
	-webkit-clip-path: polygon(180px 0, 100% 0, 100% 100%, 0 100%);
}
.top_block > .image_block:before{
	content: '';
	background: var(--main-color);
	position: absolute;
	left: -25px;
	top: 50%;
	width: 50%;
	height: calc(100% - 60px);
	transform:
		translateY(-50%)
		skewX(-20deg);
	transform-origin: 0 100%;
}
.top_block .form_block{
	position: absolute;
	left: 70px;
	bottom: -70px;
	width: 650px;
	max-width: 80%;
}
.top_block .form_block .wrapper{
	position: relative;
	height: 70px;
}
.top_block .form_block .wrapper:before{
	content: '';
	background: #F4F7FC;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: skewX(-20deg);
	box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.top_block .form_block .title{
	color: #fff;
	font-size: 20px;
	line-height: 1;
	font-weight: 700;
	margin: 0 0 12px 25px;
}

.top_block .form_block .inp{
	position: relative;
	width: calc(100% - 220px);
	height: 100%;
}
.top_block .form_block .inp input{
	background: transparent;
	border: none;
	outline: none;
	font-family: 'Helvetica';
	font-size: 18px;
	font-weight: 100;
	width: 100%;
	height: 100%;
	padding: 0 0 0 25px;
}
.top_block .form_block .button{
	position: absolute;
	right: -30px;
	bottom: -15px;
	height: 95%;
	padding-left: 25px;
	padding-right: 25px;
}
.top_block .form_block .note{
	font-size: 17px;
	font-weight: 100;
	margin: 28px 0 0 25px;
}
.advantages_conditions{
	background: linear-gradient(to bottom, rgba(255,255,255,0) 60%, #fff);
}

.advantages_block{
	width: 35%;
}
.advantages .bx1{
	position: relative;
	width: 380px;
	max-width: 100%;
	margin: 0 auto;
}
.advantages .bx1:before,
.advantages .bx1:after{
	content: '';
	background: url(../images/el_l.svg) no-repeat right center/auto 100%;
	position: absolute;
	width: 55%;
	height: 28%;
	transform: translateY(-50%);
	transition: .3s;
}
.advantages .bx1:before{
	right: 99%;
	top: 50%;
}
.advantages .bx1:after{
	left: 97%;
	top: 75%;
	transform: 
		translateY(-50%) 
		rotate(180deg);
}
.advantages_conditions:hover .advantages .bx1:before{
	right: 101%;
}
.advantages_conditions:hover .advantages .bx1:after{
	left: 99%;
}
.advantages .bx1{
	display: block;
}
.advantages .in_kyiv{
	display: block;
	width: 140px;
	transform: translateX(-40%);
	margin: 130px auto 0;
}

.conditions_block{
	width: 65%;
	padding: 180px 0 0;
}
.conditions{
	position: relative;
	padding: 20px 0 20px 40px;
}
.conditions:before{
	content: '';
	background: #F2F5FA;
	position: absolute;
	left: -20px;
	top: 50%;
	width: 35px;
	height: calc(100% - 60px);
	transform:
		translateY(-50%)
		skewX(-20deg);
	transform-origin: 0 100%;

}
.conditions:after{
	content: '';
	background: #fff;
	border-left: #CAC6C6 1px solid;
	border-bottom: #CAC6C6 1px solid;
	position: absolute;
	left: 0;
	top: 0;
	width: 44px;
	height: 100%;
	transform: skewX(-20deg);
	transform-origin: 0 100%;
}
.conditions .bl{
	float: left;
	width: 200px;
	height: 550px;
	shape-outside: polygon(0 0, 100% 0, 0 100%);
	-webkit-shape-outside: polygon(0 0, 100% 0, 0 100%);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	-webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
	opacity: .5;
}
.conditions .title,
.conditions ul{
	position: relative;
	z-index: 1;
}
.conditions .title{
	font-family: "Arial Black";
	font-size: 27px;
	margin: 0 0 26px;
}
.conditions ul{
	list-style: none;
}
.conditions ul li{
	font-size: 19px;
	font-weight: 300;
	margin: 0 0 10px;
}
.conditions ul li:before{
	content: '';
	display: inline-block;
	background: var(--main-color);
	border-radius: 50%;
	position: relative;
	top: -2px;
	width: 8px;
	height: 8px;
	margin: 0 13px 0 0;
}

.bg2_block{
	/*background: #fff url(../images/bg2.jpg) no-repeat center top/cover;*/
	position: relative;
	overflow: hidden;
}
.bg2_block > .bg{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 0;
}
.bg2_block > .main_width{
	position: relative;
}

.docs_block{
	position: relative;
	padding: 100px 0;
}
.docs_block:before,
.special_offer_block:before{
	content: '';
	background: #DFE6F2;
	position: absolute;
	left: 0;
	top: 100px;
	width: 92%;
	height: 170px;
	transform: skewX(-20deg);
	transform-origin: 0 0;
}
.docs_block:after,
.special_offer_block:after{
	content: '';
	background: linear-gradient(to right top, #000, rgba(0,0,0,0) 50%);
	position: absolute;
	left: 0;
	top: 100px;
	width: 240px;
	height: 170px;
	opacity: .05;
	transform: skewX(-20deg);
	transform-origin: 0 0;
	clip-path: polygon(0 0, var(--bwidth) 0, var(--bwidth) calc(100% - var(--bwidth)), 100% calc(100% - var(--bwidth)), 100% 100%, 0 100%);
	-webkit-clip-path: polygon(0 0, var(--bwidth) 0, var(--bwidth) calc(100% - var(--bwidth)), 100% calc(100% - var(--bwidth)), 100% 100%, 0 100%);
}
.docs_block .title_block{
	text-align: right;
	position: relative;
	width: 35%;
}
.docs_block .title_block .title{
	font-family: "Arial Black";
	font-size: 27px;
	height: 170px;
}
.docs_block .docs{
	position: relative;
	width: 65%;
	z-index: 1;
}
.docs_block .docs > .item{
	position: relative;
	width: calc(100% / 3 - 50px);
	margin: 30px 50px 0 0;
}
.docs > .item .img{
	background: #bebfd4;
	position: relative;
	width: 100%;
	transform: skewX(-20deg);
	transform-origin: 0 100%;
	overflow: hidden;
	padding: 0 0 87%;

}
.docs > .item .img:after,
.special_offer .so_info:after{
	content: '';
	background: linear-gradient(to left bottom, #000, rgba(0,0,0,0) 45%);
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .45;
	clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - var(--bwidth)) 100%, calc(100% - var(--bwidth)) var(--bwidth), 0 var(--bwidth));
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - var(--bwidth)) 100%, calc(100% - var(--bwidth)) var(--bwidth), 0 var(--bwidth));
}
.docs > .item .img img{
	position: absolute;
	left: 0;
	top: 0;
	width: 137%;
	height: 100%;
	object-fit: cover;
	transform: skewX(20deg);
	transform-origin: 0 100%;
}
.docs > .item .title{
	color: #fff;
	font-family: "Arial Black";
	font-size: 14px;
	line-height: 1;
	position: absolute;
	left: 25px;
	bottom: -20px;
	width: 100%;
	min-height: 60px;
	padding: 5px 30px;
	margin: 0;
}
.docs > .item .title:before{
	content: '';
	background: #58405D;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 100%;
	transition: .3s;
	transform: 
		translateY(-50%)
		skewX(-20deg) ;
	transform-origin: 0 100%;
}
.docs > .item:hover .title:before{
	height: calc(100% + 10px);
}
.docs > .item .title span{
	position: relative;
}

.special_offer_block{
	position: relative;
	padding: 0 0 140px;
	margin: 30px 0 0;
}
.special_offer_block:before{
	background: var(--main-color);
	top: 0;
	width: 72%;
}
.special_offer_block:after{
	top: 0;
	opacity: .06;
}
.special_offer{
	position: relative;
}
.special_offer .title_block{
	width: 520px;
	max-width: 100%;
	height: 170px;
	padding: 17px 0 17px 40px;
}
.special_offer .title_block img{
	width: 136px;
	height: 136px;
	margin-right: 30px;
}
.special_offer .title_block .cont{
	width: calc(100% - 166px);
}
.special_offer .title_block .title{
	font-family: "Arial Black";
	font-size: 29px;
	margin: 0 0 20px;
}
.special_offer .title_block p{
	font-family: "Arial Black";
	font-size: 19px;
	line-height: 1.1;
}
.special_offer .so_info{
	position: relative;
	top: 40px;
	width: calc(100% - 520px);
	max-width: 800px;
}
.special_offer .so_info:before{
	content: '';
	background: #DFE6F2;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: skewX(-20deg);
	transform-origin: 0 100%;
}
.special_offer .so_info:after{
	width: 240px;
	opacity: .05;
	transform: skewX(-20deg);
	transform-origin: 100% 100%;
}
.special_offer .so_info .wrapper{
	text-align: center;
	position: relative;
	height: 100%;
	padding: 0 0 0 50px;
}
.special_offer .so_info p{
	display: block;
	font-family: "Arial Black";
	margin: 0 auto;
}
.special_offer .so_info p.txt{
	font-size: 27px;
}
.special_offer .so_info p.or{
	line-height: 1;
	position: relative;
	padding: 0 10px;
	margin: 3px auto;
}
.special_offer .so_info p.or:before,
.special_offer .so_info p.or:after{
	content: '';
	background: #303030;
	position: absolute;
	top: 58%;
	width: 120px;
	height: 1px;
}
.special_offer .so_info p.or:before{
	right: 100%;
}
.special_offer .so_info p.or:after{
	left: 100%;
}

.to_contacts_block{
	background: linear-gradient(to right, #F9BD68, #E6BFA3, #9A9BAD);
	padding: 50px 0;
}
.to_contacts_block p{
	margin: 0;
}
.to_contacts_block .phone_bx{
	text-align: right;
}
.to_contacts_block .phone_bx .title{
	font-family: "Arial Black";
	font-size: 27px;
}
.to_contacts_block .phone_bx a{
	display: inline-block;
	color: #303030;
	font-family: "Arial Black";
	font-size: 22px;
	white-space: nowrap;
	margin-right: 16px;
}
.to_contacts_block .phone_bx a.link:before{
	background: #333;
}
.to_contacts_block .or_bx{
	font-weight: 100;
	padding: 0 40px;
}
.to_contacts_block .button{
	padding: 15px 26px;
}
.to_contacts_block .button span{
	font-size: 20px;
}
.to_contacts_block .info_bx{
	font-weight: 100;
	padding: 0 0 0 40px;
}
.to_contacts_block .info_bx p:before{
	content: '';
	display: inline-block;
	width: 7px;
}

.contacts_block{
	background: #fff;
	padding: 70px 0 0;
}
.contacts_block > *{
	width: 50%;
}
.map_bx{
	position: relative;
}
.map_block{
	background: #e8e8e8;
	height: 500px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 180px) 100%, 0 100%);
	-webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 180px) 100%, 0 100%);
}
.map_block .map{
	border: 0; 
	width: 100%; 
	height: 100%
}

.map_bx:before{
	content: '';
	background: #E9EEF7;
	position: absolute;
	right: -25px;
	top: 50%;
	width: 50%;
	height: calc(100% - 60px);
	transform:
		translateY(-50%)
		skewX(-20deg);
	transform-origin: 100% 0;
}
.contacts_bx{
	padding: 30px 0 0 100px;
}
.contacts_bx > .title{
	font-family: "Arial Black";
	font-size: 30px;
	margin: 0 0 30px;
}
.contacts{
	width: 600px;
	max-width: 100%;
}
.contacts > .bx{
	width: calc(50% - 25px);
	margin: 0 50px 40px 0;
}
.contacts > .bx:nth-child(2n){
	margin-right: 0;
}
.contacts > .bx .title{
	color: #888;
	font-style: 14px;
	font-weight: 300;
	margin: 0 0 10px;
}
.contacts .phones a{
	display: table;
	font-size: 24px;
	font-weight: 300;
	white-space: nowrap;
	margin: 0 0 7px;
}
.messengers .cont{
	width: 250px;
}
.messengers a{
	width: calc(50% - 15px);
	margin: 0 30px 5px 0;
}
.messengers a:nth-child(2n){
	margin-right: 0;
}
.messengers img{
	display: inline-block;
	position: relative;
	top: 2px;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.messengers img[alt=Telegram]{
	width: 18px;
	height: 18px;
	margin: 0 6px 0 1px;
}
.messengers img[alt=Messenger]{
	width: 16px;
	height: 16px;
	margin: 0 7px 0 2px;
}

.messengers img.anim{
	transform: rotate(0deg);
	-webkit-animation: mssngrs_anim .8s linear infinite;
    animation: mssngrs_anim .8s linear infinite;
}
@keyframes mssngrs_anim {
    0%,100% {
        transform: rotate(0deg);
    } 
    25% {
    	transform: rotate(25deg);
    }
    50% {
    	transform: rotate(-25deg);
    }
    75% {
    	transform: rotate(25deg);
    }
}

.contacts .address .cont{
	font-size: 17px;
}
.contacts .address .cont p span{
	display: inline-block;
	color: #888;
	font-size: .8em;
}
.contacts .schedule p{
	margin: 0 0 3px;
}
.contacts .socials a{
	display: inline-block;
	margin-bottom: 7px;
}

.footer{
	margin: -30px 0 0;
}
.footer > .wrapper{
	float: right;
	position: relative;
	overflow: hidden;
	padding: 30px 80px 20px 50px;
}
.footer > .wrapper > *{
	position: relative;
}
.footer > .wrapper:before{
	content: '';
	background: #E9EEF7;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	transform: skewX(-20deg);
	transform-origin: 0 100%;
}
.footer .logo img{
	width: 111px;
	height: 40px;
}
.footer .logo .slog{
	font-size: 15px;
	padding: 6px 0 2px 15px;
	margin: 0 0 0 15px;
}
.footer .cop{
	justify-content: flex-end;
}
.footer .cop p{
	color: #777;
	font-size: 14px;
	font-weight: 300;
	margin: 0 0 2px 70px;
}




.md_content{
	width: 380px;
	padding: 0;
}
.md_form{
	width: 100%;
	overflow-x: hidden;
}
.md_form .title{
	background: #f0f0f0;
	border-bottom: #2BBA61 1px solid;
	font-size: 26px;
	font-family: "LatoRegular";
	line-height: 1;
	padding: 15px 15px 15px;
	margin: 0 0 10px;
}
.md_form form{
	margin: 0 15px 15px;
}
.md_form .button{
	margin: 10px 0 20px;
}
.md_form .note{
	color: #777;
	font-size: 12px;
	margin: 8px 0 0;
}

.md_content .accordion{
	width: 100%;
}
.accordion > .item > .content{
	overflow: hidden;
	max-height: 0;
	transition: .5s;
}
.accordion > input:checked + .item > .content{
	max-height: 400px;
}

.md_content .accordion > .item > .title{
	display: block;
	background: #e9eef7;
	color: #000;
	font-size: 17px;
	font-family: "Arial Black";
	cursor: pointer;
	transition: .3s;
	padding: 8px 15px;
	margin: 0 0 1px;
}

.md_content .accordion > .item > .content > *{
	padding: 25px 15px;
}
.md_content .accordion > input:checked + .item > .title{
	background: #58405d;
	color: #fff;
}
.md_content .phones a{
	display: block;
	font-size: 22px;
	line-height: 22px;
	clear: both;
	margin: 0 0 10px;
}

.input_block{
	position: relative;
	margin: 0 0 15px;
}
.input_block:before{
	content: '';
	border: #E9EEF7 3px solid;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	transform: skewX(-20deg);
	/*transform-origin: 0 100%;*/
}
.input_block input{
	border: none;
	outline: none;
	background: none;
	font-size: 16px;
	font-family: 'Helvetica';
	position: relative;
	width: 100%;
	padding: 15px 20px;
}


.credit_info_block{
	background: #f6f6f6;
	color: #777;
	padding: 40px 0 30px;
}
.credit_info_block > .wrapper{
	font-size: 14px;
	width: 1000px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
}
.credit_info_block .fx > *{
	margin: 0 30px 0 0;
}
.credit_info_block .fx > *:nth-child(3n){
	margin-right: 0;
}
.credit_info_block ul{
	margin: 0 0 10px 10px;
}
.credit_info_block ul li{
	margin: 0 0 7px;
}
.credit_info_block p{
	margin: 0 0 5px;
}
.credit_info_block .title{
	color: #555;
	font-family: "Arial Black";
	font-size: 17px;
	margin: 0 0 15px;
}
.credit_info_block .title2{
	font-weight: 700;
}

.nowrap{
	white-space: nowrap;
}


.hide{
	display: none;
}

@media (max-width: 1660px){
	.heaeder_shadow{
		height: 62px;
	}
	.logo img{
		width: 158px;
		height: 57px;
	}
	.logo .slog{
	    font-size: 14px;
	    padding: 6px 0 2px 18px;
	    margin: 0 0 0 18px;
	}
	.header{
		padding-top: 5px;
		padding-bottom: 4px;
	}
	.header .cont{
		margin-top: 4px;
	}
	.to_call_me{
		font-size: 14px;
		padding: 13px 20px;
		margin-left: 30px;
	}
	.to_call_me:hover::before{
	    width: calc(100% + 8px);
	}
	.header .phones a{
		font-size: 22px;
	}
	.online_24_7{
		font-size: 13px;
		margin: 5px 30px 0 0;
	}
	.online_24_7 .v{
		font-size: 21px;
		padding: 11px 8px 8px;
	}
}
@media (max-width: 1500px){
	.header{
		padding-left: 20px;
		padding-right: 20px;
	}
	.header .phones a{
	    font-size: 20px;
	    margin-left: 22px;
	}
	.online_24_7{
	    font-size: 11px;
	    margin: 5px 15px 0 0;
	}
	.online_24_7 .t{
		padding-left: 15px;
	}
	.online_24_7 .t:before{
	    width: 8px;
	    height: 8px;
	}
	.online_24_7 .v{
	    font-size: 18px;
	    padding: 11px 6px 8px;
	}
	.header .messengers{
		margin: 12px 0 0 20px;
	}
	.header .languages{
		font-size: 12px;
		margin: 15px 20px 0 0;
	}
}
@media (max-width: 1460px){
	.top_block .list li,
	.top_block .list li h1{
		font-size: 30px;
	}
	.contacts .messengers .cont{
		width: 100%;
	}
	.contacts .messengers a{
		width: 100%;
		margin-right: 0;
	}
	.advantages .bx1{
		width: 340px;
	}
	.docs_block .title_block{
		width: 30%;
	}
	.docs_block .docs{
		width: 70%;
	}
	.docs_block .title_block .title{
		font-size: 23px;
	}
	.docs_block .docs > .item{
		width: calc(100% / 3 - 100px / 3);
	}
	.docs_block .docs > .item:nth-child(3n){
		margin-right: 0;
	}
}
@media (max-width: 1360px){
	.top_block .list{
		padding: 0 0 0 40px;
	}
	.docs_block .title_block{
		width: 25%;
	}
	.docs_block .docs{
		width: 75%;
	}
	.docs_block .title_block .title{
		font-size: 21px;
	}
	.docs > .item .title{
		font-size: 13px;
	}
	.special_offer .so_info p.txt{
		font-size: 24px;
	}
	.special_offer .title_block{
		width: 44%;
		padding-left: 20px;
	}
	.special_offer .so_info{
		/*width: calc(100% - 400px);*/
		width: 56%;
	}
	.special_offer .title_block img{
		width: 108px;
		margin-right: 20px;
	}
	.special_offer .title_block .title{
		font-size: 27px;
		margin: 0 0 15px;
	}
	.special_offer .title_block p{
		font-size: 17px;
	}
	.heaeder_shadow{
		height: 55px;
	}
	.logo img{
	    width: 139px;
	    height: 50px;
	}
	.logo .slog{
	    font-size: 12px;
	    padding: 6px 0 2px 13px;
	    margin: 0 0 0 13px;
	}
	.header .cont{
		margin-top: 6px;
	}
	.header .languages{
		margin-top: 9px;
	}
	.to_call_me{
	    font-size: 12px;
	    padding: 10px 15px;
	    margin-left: 25px;
	}
	.header .phones{
		margin: 7px 0 0;
	}
	.header .phones a{
	    font-size: 18px;
	    margin-left: 15px;
	}
	.online_24_7{
		font-size: 10px;
		margin: 2px 10px 0 0;
	}
	.online_24_7 .v {
	    font-size: 16px;
	    padding: 10px 5px 7px;
	}
	.header .messengers{
		margin-top: 8px;
	}
}
@media (max-width: 1200px){
	.advantages .bx1{
		width: 300px;
	}
	.conditions_block{
	    padding: 140px 0 0;
	}
	.conditions .title{
		font-size: 25px;
	}
	.conditions{
		padding-left: 20px;
	}
	.conditions ul li{
		font-size: 17px;
	}
	.header .languages{
		margin: 6px 15px 0 0;
	}
}
@media (max-width: 1160px){
	.top_block .form_block{
		left: 50px;
	}

	.special_offer .title_block{
		width: 45%;
		padding-left: 10px;
	}
	.special_offer .so_info{
		width: 55%;
	}
	.special_offer .title_block img{
		margin-right: 10px;
	}
	.contacts_bx{
		padding-left: 70px;
	}
	.contacts > .bx{
	    width: calc(50% - 15px);
	    margin: 0 30px 35px 0;
	}
}
@media (max-width: 1200px){
	.heaeder_shadow{
		height: 48px;
	}
	.logo img{
	    width: 111px;
	    height: 40px;
	}
	.logo .slog{
	    font-size: 10px;
	    padding: 5px 0 2px 9px;
	    margin: 0 0 0 9px;
	}
	.header{
		margin: 0;
	}
	.header .cont{
		margin-top: 4px;
	}
	.to_call_me{
	    font-size: 10px;
	    padding: 9px 13px;
	    margin-left: 20px;
	}
	.to_call_me:before{
		border-width: 3px;
	}
	.header .phones{
	    margin: 6px 0 0;
	}
	.header .phones a{
		font-size: 16px;
		margin-left: 10px;
	}
	.online_24_7{
	    font-size: 9px;
	    margin: 2px 9px 0 0;
	}
	.online_24_7 .t{
		padding-left: 11px;
	}
	.online_24_7 .t:before{
	    width: 6px;
	    height: 6px;
	}
	.online_24_7 .v{
	    font-size: 13px;
	    padding: 9px 3px 7px;
	}
	.header .messengers{
	    margin-top: 5px;
	}
	.advantages_conditions > .main_width{
		max-width: calc(100% - 70px);
	}
	.conditions ul li{
	    font-size: 16px;
	}
	.docs > .item .title{
		font-size: 12px;
	}
	.special_offer .title_block p{
		font-size: 16px;
	}
	.special_offer .so_info p.txt{
		font-size: 22px;
	}
	.to_contacts_block > .main_width{
		max-width: calc(100% - 70px);
	}
	.to_contacts_block .phone_bx .title{
		font-size: 25px;
	}
	.to_contacts_block .phone_bx a{
		font-size: 20px;
	}
	.contacts .phones a{
		font-size: 20px;
	}
	.contacts .address .cont{
	    font-size: 17px;
	}
	.contacts .email .cont{
		font-size: 15px;
	}
	.footer > .wrapper{
		padding-right: 30px;
	}
	.footer .logo img{
	    width: 97px;
	    height: 35px;
	}
	.footer .logo .slog {
	    font-size: 13px;
	    padding: 4px 0 2px 11px;
	    margin: 0 0 0 11px;
	}
}
@media (max-width: 1040px){
	.online_24_7{
		display: none;
	}
}
@media (max-width: 1000px){
	.top_block{
		position: relative;
		min-height: 390px;
		margin: 0 0 100px;
	}
	.top_block > .image_block:before{
		background: rgba(0,0,0,.4);
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		transform: none;
		clip-path: none;
		-webkit-clip-path: none;
		z-index: 1;
	}
	.top_block > .image_block > img{
		clip-path: none;
		-webkit-clip-path: none;
	}
	.top_block > .list_block{
		position: relative;
		width: 100%;
		z-index: 2;
	}
	.top_block > .image_block{
		position: static;
	}

	.top_block .list{
		color: #fff;
		float: left;
		padding-left: 30px;
	}
	.top_block .list li,
	.top_block .list li h1{
		font-size: 28px;
	}
	.top_block .list li:before{
		top: 6px;
	}
	.top_block .form_block{
		bottom: -60px;
		z-index: 1;
	}
	.top_block .form_block .wrapper{
	    position: relative;
	    height: 56px;
	}
	.top_block .form_block .inp{
	    width: calc(100% - 200px);
	}
	.top_block .form_block .inp input{
		font-size: 16px;
	}
	.top_block .form_block .button span{
		font-size: 15px; 
	}
	.top_block .form_block .note{
		margin-top: 25px;
	}
	.docs_block .title_block{
		text-align: left;
		width: 100%;
	}
	.docs_block .title_block .title{
		height: 100px;
		padding: 0 15% 0 3%;
		margin: 0;
	}
	.docs_block .docs{
		width: 90%;
		margin-top: -30px;
	}
	.docs > .item:nth-child(3) .title:before{
		width: 110%;
	}
	.special_offer .title_block{
		width: 100%;
		height: 110px;
		justify-content: center;
	}
	.special_offer_block:before{
		width: 100%;
	}
	.special_offer .so_info{
		top: 0;
		width: 100%;
		height: 140px;
		z-index: 1;
	}
	.special_offer .title_block img{
		width: 80px;
		height: 80px;
	}
	.to_contacts_block .info_bx{
		font-weight: 700;
		text-align: center;
		width: 100%;
		padding: 20px 0 0;
	}
	.to_contacts_block .info_bx br{
		display: none;
	}
}
@media (max-width: 970px){
	.header .phones{
		margin: 0;
	}
	.header .phones a{
		display: block;
		line-height: 1;
	}
	.advantages_block,
	.conditions_block{
		width: 50%;
	}
	.conditions_block{
		padding: 0;
	}
	.conditions{
		background: #fff;
		padding: 30px 0 20px 30px;
	}
	.conditions .bl{
		display: none;
	}
	.conditions:before{
		transform: translateY(-50%);
	}
	.conditions:after{
		border-top: #CAC6C6 1px solid;
		transform: none;
	}
	.conditions ul li{
		position: relative;
		padding-left: 18px;
	}
	.conditions ul li:before{
		position: absolute;
		left: 0;
		top: 3px;
	}
	.advantages .bx1{
		width: 270px;
		margin-top: 50px;
	}
	.advantages .in_kyiv{
		width: 110px;
		margin-top: 60px;
	}
}
@media (max-width: 900px){
	.docs_block .docs{
		width: 100%;
		transform: translateX(-10%);
	}
}
@media (max-width: 850px){
	
}
@media (max-width: 800px){
	:root{
		--bwidth: 18px;
	}
	.main_width{
		max-width: calc(100% - 100px);
	}
	.docs_block:before, 
	.special_offer_block:before{
		height: 130px;
	}
	.docs_block:after, 
	.special_offer_block:after{
		height: 130px;
	}
	.advantages_block{
		width: 100%;
	}
	.advantages .in_kyiv{
		max-width: 40%;
		margin-top: 10px;
	}
	.conditions_block{
		width: auto;
		margin: 20px auto 0;
	}
	.docs_block .title_block .title{
		height: 80px;
		padding-right: 10%;
	}
	.docs_block .docs > .item{
	    width: calc(100% / 3 - 100px / 3);
	}
	.docs_block .docs{
		transform: translateX(-7%);
	}
	.docs > .item .title{
		left: 10px;
	}
	.special_offer .so_info{
		height: 120px;
	}
	.special_offer .title_block{
		height: 95px;
		padding: 10px 0;
	}
	.special_offer .title_block .title{
		margin-bottom: 10px;
	}
	.to_contacts_block{
		padding: 30px 0;
	}
	.to_contacts_block > .fx > *{
		text-align: center;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.to_contacts_block .or_bx{
		padding: 15px 0;
	}
	.contacts_block > *{
		width: 100%;
	}
	.map_bx:before{
		display: none;
	}
	.map_block{
		height: 400px;
		clip-path: none;
		-webkit-clip-path: none;
	}
	.contacts_block{
		padding-top: 0;
	}
	.footer{
		margin: 0;
	}
}
@media (max-width: 770px){
	.header{
		/*position: fixed;*/
		height: 50px;
	}
	.header .logo .slog{
		display: none;
	}
}
@media (max-width: 700px){
	.docs_block .docs > .item{
		width: calc(100% / 3 - 20px);
		margin-right: 30px;
	}
	
}
@media (max-width: 670px){
	:root{
		--bwidth: 16px;
	}
	.online_24_7{
		display: none;
	}
	.header .logo img{
	    width: 97px;
	    height: 35px;
	    margin-top: 3px;
	}
	.header{
	    padding-left: 10px;
	    padding-right: 10px;
	}
	.header .cont{
	    margin-top: 2px;
	}
	.to_call_me{
	    font-size: 9px;
	    padding: 9px 11px;
	    margin-left: 14px;
	    line-height: 1;
	}
	.to_call_me:hover:before{
	    width: calc(100% + 4px);
	}
	.to_call_me span br{
		display: block;
	}
	.header .phones a{
		margin: 0 0 3px;
	}
	.docs_block:before, 
	.special_offer_block:before{
		height: 100px;
	}
	.docs_block:after,
	.special_offer_block:after{
		height: 100px;
		width: 160px;
	}
	.docs_block::before{
		width: 100%;
	}
	.docs_block .docs{
		flex-wrap: wrap;
		transform: translateX(-2%);
		margin: 20px 0 0;
	}
	.docs_block .docs > .item{
		width: 100%;
		margin: -17px 0 0;
	}
	.docs > .item .img{
		width: 40%;
		box-shadow: -4px -4px 13px rgba(0,0,0,.3);
		padding: 0 0 30%;
	}
	.docs > .item .title{
		bottom: auto;
		left: 34%;
		top: 45%;
		width: 60%;
		transform: translateY(-50%);
	}
	.docs > .item:nth-child(3) .title:before{
		width: 100%;
	}
	.special_offer .title_block{
		height: 80px;
	}
	.special_offer .title_block .cont{
		width: calc(100% - 110px);
	}
	.special_offer .so_info{
		height: 100px;
	}
	.special_offer .title_block img{
	    width: 62px;
	    height: 62px;
	}
	.special_offer .title_block .title{
		font-size: 24px;
	}
	.special_offer .title_block p{
		font-size: 15px;
	}
	.special_offer .so_info p.txt{
		font-size: 20px;
	}
	.special_offer .so_info p.or{
		font-size: 14px;
		margin: 0 auto;
	}
	.credit_info_block .fx{
		flex-wrap: wrap;
	}
	.credit_info_block .fx > *{
		width: 100%;
		margin-right: 0;
	}
}
@media (max-width: 600px){
	.top_block{
		min-height: 100px;
	}
	.top_block > .list_block{
		margin: 50px 0 140px;
	}
	
	.top_block .form_block{
		left: 30px;
	}
	.top_block .list li, 
	.top_block .list li h1{
	    font-size: 24px;
	}
	.top_block .form_block .title{
		font-size: 17px;
	}
	.advantages_conditions{
		overflow: hidden;
	}
	.special_offer_block{
		margin-top: 0;
		padding-bottom: 70px;
	}
	.special_offer .title_block .cont{
		padding-right: 20px;
	}
	.special_offer .title_block p{
		font-size: 14px;
	}
	.special_offer .title_block .title{
		font-size: 22px;
		margin-bottom: 5px;
	}
	.contacts_bx{
		padding: 30px 20px;
	}
	.contacts{
		width: auto;
	}
	.footer > .wrapper{
		justify-content: space-between;
		width: 100%;
		padding: 20px;
	}
	.footer > .wrapper:before{
		transform: none;
	}
	.footer .cop p{
		margin-left: 10px;
	}
}
@media (max-width: 570px){
	.header .languages{
		font-size: 11px;
		margin-right: 8px;
	}
	.header .languages a, 
	.header .languages span{
		padding-left: 3px;
		padding-right: 3px;
	}
	.top_block .form_block .inp{
		width: 100%;
	}
	.top_block .form_block .button{
		bottom: -41px;
	}
	.top_block .form_block .button{
		padding: 5px 20px;
	}
	.top_block .form_block .note{
	    width: calc(100% - 250px);
	    margin-top: 15px;
	    font-size: 13px;
	}
}
@media (max-width: 550px){
	.main_width{
	    max-width: calc(100% - 70px);
	}
	.docs_block:before, 
	.docs_block:after{
		top: 80px;
		height: 80px;
	}
	.docs_block{
		transform: translateX(3%);
		padding-top: 80px;
	}
	.docs_block .docs{
		margin-top: 0;
	}
	.docs_block .docs > .item{
		margin-top: 10px;
	}
	.docs > .item .img{
	    float: right;
	    left: auto;
	    right: 12%;
	    box-shadow: none;
	}
	.docs > .item .title{
		left: 0;
		top: 50%;
	}
	.special_offer .title_block .cont{
	    width: calc(100% - 82px);
	}
	.special_offer .title_block .title{
		font-size: 20px;
	}
	.special_offer .title_block p{
		font-family: "Helvetica";
	}
	.special_offer .so_info{
		left: -20px;
	}
	.special_offer .so_info p.txt{
	    font-size: 17px;
	}
	.special_offer .so_info p.or{
		font-size: 11px;
	}
	.special_offer .so_info p.or:before, 
	.special_offer .so_info p.or:after{
		width: 70px;
	}
}
@media (max-width: 570px){
	.header .messengers{
		float: right;
		margin: -2px 0 0 15px;
	}
	.header .messengers .cont{
		width: 44px;
	}
	.header .messengers a{
		width: 22px;
		height: 22px;
	}
	.header .messengers img{
		width: 20px;
		height: 20px;
		margin-right: 2px;
	}
	.header .messengers img[alt="WhatsApp"]{
		width: 21px;
		height: 21px;
	}
	.header .messengers img[alt="Telegram"]{
		width: 17px;
		height: 17px;
	}
	.top_block .form_block .button{
		bottom: -33px;
		height: 80%;
		padding: 5px 10px;
	}
	.top_block .form_block .button span{
		font-size: 14px;
	}
	.top_block .form_block .note{
	    width: calc(100% - 200px);
	}
	.button:hover:before{
	    width: calc(100% + 10px);
	}
	.footer > .wrapper{
		flex-wrap: wrap;
	}
	.footer > .wrapper > *{
		width: 100%;
	}
	.footer .cop p{
		margin: 10px 0 0;
	}
}
@media (max-width: 450px){
	.special_offer .so_info p.txt{
	    font-size: 15px;
	    line-height: 1;
	}
	.special_offer .so_info p.or{
	    font-size: 9px;
	    margin: 4px auto;
	}
	.special_offer .so_info .wrapper{
		padding-left: 35px;
	}
}
@media (max-width: 500px){
	.header .messengers a:nth-child(3){
		display: none;
	}
	.header .messengers .cont{
		width: 22px;
	}
	.header .languages{
		margin-top: 1px;
	}
	.header .languages > *{
		clear: both;
		padding: 0;
	}
	.header .languages > :not(:first-child) {
		border-left: none;
		border-top: #b0b0b0 1px solid;
	}
}
@media (max-width: 430px){
	.header .phones a{
		font-size: 13px;
		line-height: 16px;
	}
}
@media (max-width: 400px){
	:root{
		--bwidth: 10px;
	}
	.main_width {
	    max-width: calc(100% - 50px);
	}
	.header,
	.heaeder_shadow{
		height: 46px;
	}
	.header{
		position: fixed;
	}
	.header .languages{
		font-size: 10px;
		margin: -1px 5px 0;
	}
	.top_block{
		margin-top: 40px;
	}
	.header .logo img{
	    width: 67px;
	    height: 30px;
	}
	.header .phones a{
		line-height: 14px;
	}
	.header .messengers a{
		width: 18px;
		height: 18px;
	}
	.header .messengers img{
		width: 17px;
		height: 17px;
		margin: 0;
	}
	.header .messengers img[alt="WhatsApp"]{
		width: 18px;
		height: 18px;
	}
	.to_call_me{
		padding: 7px 9px;
	}

	.top_block > .list_block{
		margin-bottom: 120px;
	}
	.top_block .list li, 
	.top_block .list li h1{
	    font-size: 22px;
	}
	.top_block .form_block{
		left: 20px;
	    bottom: -80px;
	    max-width: 83%;
	}
	.top_block .form_block .note{
		font-weight: 700;
		text-align: center;
	    width: 100%;
	    margin: 45px 0 0;
	}
	.top_block .form_block .title{
		font-size: 16px;
		margin: 0 0 10px 10px;
	}
	.advantages_conditions > .main_width{
	    max-width: calc(100% - 40px);
	}
	.conditions{
	    padding: 25px 0 15px 25px;
	}
	.conditions:before{
		left: -10px;
	}
	.conditions .title{
	    font-size: 20px;
	}
	.conditions ul li{
		font-size: 15px;
	}
	.docs_block:before, 
	.docs_block:after{
		top: 70px;
		height: 70px;
	}
	.special_offer_block:before,
	.special_offer_block:after{

	}
	.docs_block{
		padding: 70px 0;
	}
	.docs_block .title_block .title{
	    font-size: 16px;
	    height: 70px;
	}
	.docs > .item .title{
		min-height: 50px;
		padding: 5px 22px;
	}
	.special_offer_block{
		padding-bottom: 45px;
	}
	.contacts .phones a{
	    font-size: 18px;
	}
	.contacts > .bx{
	    width: calc(50% - 10px);
	    margin: 0 20px 35px 0;
	}
	.contacts .address .cont{
	    font-size: 15px;
	}
	.md_content{
		width: 300px;
	}
	.contacts .email .cont{
		font-size: 13px;
	}
}

@media (max-width: 380px){
	.top_block .list{
		padding-right: 10px;
	}
	.top_block .list li, 
    .top_block .list li h1{
		font-size: 20px;
    }
	.header .logo img{
	    /* width: 83px; */
	    height: 30px;
	    margin-top: 5px;
	}
	/* .header .phones{
		margin-top: 1px;
	} */
	.header .phones a{
    	/* font-size: 14px; */
    	/* margin: 0 0 5px; */
    }
    .docs > .item .title{
    	width: 64%;
    }

    .contacts .schedule .cont{
    	font-size: 13px;
    }
}
@media (max-width: 364px){
	.header .languages{
		display: none;
	}
}
@media (max-width: 360px){
	.header .phones a{
		/* font-family: "Helvetica"; */
	}
}
@media (max-width: 350px){
	.contacts_bx > .title{
	    font-size: 27px;
	    margin: 0 0 20px;
	}
	.contacts > .bx{
		width: 100%;
		margin: 0 0 20px;
	}
}
@media (max-width: 340px){
	.to_call_me{
		margin-left: 8px;
	}
	.header .messengers{
		margin-left: 6px;
	}
}

