@font-face {
	font-family: "MuseoSansCyrl100";
	src: url("../fonts/MuseoSansCyrl100/MuseoSansCyrl100.eot");
	src: url("../fonts/MuseoSansCyrl100/MuseoSansCyrl100.eot?#iefix")format("embedded-opentype"),
	url("../fonts/MuseoSansCyrl100/MuseoSansCyrl100.woff") format("woff"),
	url("../fonts/MuseoSansCyrl100/MuseoSansCyrl100.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "MuseoSansCyrl300";
	src: url("../fonts/MuseoSansCyrl300/MuseoSansCyrl300.eot");
	src: url("../fonts/MuseoSansCyrl300/MuseoSansCyrl300.eot?#iefix")format("embedded-opentype"),
	url("../fonts/MuseoSansCyrl300/MuseoSansCyrl300.woff") format("woff"),
	url("../fonts/MuseoSansCyrl300/MuseoSansCyrl300.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "MuseoSansCyrl500";
	src: url("../fonts/MuseoSansCyrl500/MuseoSansCyrl500.eot");
	src: url("../fonts/MuseoSansCyrl500/MuseoSansCyrl500.eot?#iefix")format("embedded-opentype"),
	url("../fonts/MuseoSansCyrl500/MuseoSansCyrl500.woff") format("woff"),
	url("../fonts/MuseoSansCyrl500/MuseoSansCyrl500.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "MuseoSansCyrl700";
	src: url("../fonts/MuseoSansCyrl700/MuseoSansCyrl700.eot");
	src: url("../fonts/MuseoSansCyrl700/MuseoSansCyrl700.eot?#iefix")format("embedded-opentype"),
	url("../fonts/MuseoSansCyrl700/MuseoSansCyrl700.woff") format("woff"),
	url("../fonts/MuseoSansCyrl700/MuseoSansCyrl700.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}
@font-face {
	font-family: "MuseoSansCyrl900";
	src: url("../fonts/MuseoSansCyrl900/MuseoSansCyrl900.eot");
	src: url("../fonts/MuseoSansCyrl900/MuseoSansCyrl900.eot?#iefix")format("embedded-opentype"),
	url("../fonts/MuseoSansCyrl900/MuseoSansCyrl900.woff") format("woff"),
	url("../fonts/MuseoSansCyrl900/MuseoSansCyrl900.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
}


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}
body{
	font-family: "MuseoSansCyrl300";
	background-color: #fff;
	color: #333;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	line-height: unset;
}

a:hover {
	transition: .3s;
}

a:hover,
a:focus{
	text-decoration: none;
}
img{
	max-width: 100%;
}
.table{
	display: table;
}
.tr{
	display: table-row;
}
.td{
	display: table-cell;
}
p {
	margin: 0;
}
.h2{
	font-size: 36px;
	text-transform: uppercase;
	font-family: "MuseoSansCyrl900";
	color: #535353;
}
.h2 span{
	position: relative;
}
.h2 span::before{
	content: '';
	position: absolute;
	left: -30px;
	top: -25px;
	height: 58px;
	width: 58px;
	background-image: url(../img/scr2_h2_border.png);
}


.screen1{
	background-image: url(../img/bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 30px 0 100px;
	color: #fff;
}
.screen1 .logo{
	font-size: 0;
	height: 100px;
	overflow: hidden;
}
.screen1 .logo img{
	display: inline-block;
	vertical-align: bottom;
	margin-right: 4%;
	height: 100%;
}
.screen1 .logo div {
	display: inline;
}
.screen1 .logo div h1 {
	display: inline-block;
	vertical-align: bottom;
	width: 50%;
	font-size: 11px;
	line-height: 1.3;
	margin: 0;
}
.screen1 .hamburger {
	margin-left: calc(100% - 36px);
	width: 36px;
	height: 21px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}
.screen1 .hamburger span {
	width: 30px;
	height: 3px;
	background: white;
}
.screen1 .hamburger span:nth-child(2) {
	width: 36px;
}
.screen1 .menu{
	list-style: none;
	font-size: 0;
	text-align: center;
	margin: 0;
}
.screen1 .menu li{
	display: inline-block;
	font-size: 16px;
	position: relative;
	color: #fff;
	padding: 5px;
}

.screen1 .menu li a{
	color: #fff;
	transition: .3s;
}
.screen1 .menu li .submenu{
	display: flex;
	visibility: hidden;
	flex-direction: column;
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	min-width: 150px;
	transition: .3s;
	opacity: 0;
	box-shadow: 0 0 20px rgba(0,0,0,.3);
	border-radius: 4px;
	overflow: hidden;
	padding-top: 5px;
}
.screen1 .menu li:hover .submenu{
	opacity: 1;
	visibility: visible;
}
.screen1 .menu li .submenu li{
	display: inline-block;
	font-size: 14px;
	padding: 0 !important;
	color: black;
	background-color: white;
	border-bottom: 1px solid rgb(168, 168, 168);
	transition: .3s;
}
.screen1 .menu li .submenu li:first-child{
	border-radius: 4px 4px 0 0 ;
}
.screen1 .menu li .submenu li:last-child{
	border-bottom: none;
}
.screen1 .menu li .submenu li:hover{
	/* background-color: rgb(224, 224, 224); */
	background-color: #c9e7f1;
}
.screen1 .menu li .submenu li,
.screen1 .menu li .submenu li a{
	color: black;
	display: block;
	text-align: center;
	padding: 6px 8px;
}
.screen1 .menu li svg{
	color: white;
	height: 100%;
	width: 12px;
	margin-left: 2px;
	transition: .3s;
}
.screen1 .menu li:hover svg{
	transform: rotate(180deg);
}
.screen1 .menu li:hover a{
	color: rgb(7, 153, 202);
}
.screen1 .menu__wrapper .menu__close {
	display: none;
}

.screen1 .address{
	font-size: 14px;
	line-height: 1.4;
}
.screen1 .address span{
	font-size: 14px;
}
.screen1 .phone{
	text-align: right;
	line-height: 1.2;
}
.screen1 .phone a{
	color: #fff;
}

.screen1 .phone .tel{
	font-size: 15px;
	transition: .3s;
	white-space: nowrap;
}
.screen1 .phone .tel:hover{
	color: rgb(7, 153, 202);
}
.screen1 .phone .tel .fa{
	font-size: 16px;
	margin-right: 10px;
}
.screen1 .callme{
	font-size: 14px;
	display: inline-block;
	padding-bottom: 2px;
	color: white;
	border-bottom: 1px dotted #fff;
	transition: .3s;
}
.screen1 .callme:hover{
	color: rgb(7, 153, 202);
}
.screen1 .middle-part{
	padding: 125px 0;
}
.screen1 .middle-part .col-md-12::before{
	content: '';
	position: absolute;
	top: -54px;
	right: -40px;
	width: 904px;
	height: 403px;
	background-image: url(../img/scr1_border.png);
}
.screen1 .middle-part .first-row,
.screen1 .middle-part .second-row{
	overflow: hidden;
	padding-right: 50px;
}
.screen1 .middle-part .first-row{

}
.screen1 .middle-part .title{
	font-size: 65px;
	font-family: "MuseoSansCyrl900";
	text-transform: uppercase;
	float: left;
	line-height: 1;
	margin: 0;
}
.screen1 .middle-part .title span{
	color: #0799ca;
}
.screen1 .middle-part .discount{
	/* float: right; */
	font-size: 29px;
	font-family: "MuseoSansCyrl700";
	line-height: 1.2;
	text-align: right;
	position: absolute;
	right: 0;
	top: 0
}
.screen1 .middle-part .left{
	float: left;
	margin-top: 35px;
}
.screen1 .middle-part .price{
	font-size: 36px;
	font-family: "MuseoSansCyrl700";
	text-transform: uppercase;
	padding: 5px 0;
}
.screen1 .middle-part .price-descr{
	font-size: 17px;
	font-family: "MuseoSansCyrl100";
	max-width: 475px;
}
.screen1 .middle-part .price-descr span{
	color: #0799ca;
	font-family: "MuseoSansCyrl500";
}
.screen1 .middle-part .top-form{
	float: right;
	text-align: right;
	position: relative;
	padding-top: 35px;
}
.screen1 .middle-part .top-form::after{
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -45px;
	width: 25px;
	height: 86px;
	background-image: url(../img/scr1_arrow.png);
}
.screen1 .middle-part .top-form .note{
	color: #f5f5f5;
	font-size: 12px;
	padding-top: 20px;
	padding-bottom: 5px;
	max-width: 560px;
}
.screen1 .middle-part .top-form .note a:hover{
	color: rgb(7, 153, 202);
}
.screen1 .middle-part .top-form form{
	font-size: 0;
}
.screen1 .middle-part .top-form input[type="number"],
.screen1 .middle-part .top-form input[type="text"]{
	background-color: transparent;
	border: 2px solid #aeaeae;
	color: #f5f5f5;
	font-size: 14px;
	padding: 15px 20px;
	width: 210px;
}

.screen1 .middle-part .top-form input[name="phone"] {
	width: 190px;
}

.screen1 .middle-part .top-form input[type="number"] {
	width: 141px;
}

.screen1 .middle-part .top-form ::-webkit-input-placeholder {
	color: #f5f5f5;
}
.screen1 .middle-part .top-form ::-moz-placeholder {
	color: #f5f5f5;
}
.screen1 .middle-part .top-form :-moz-placeholder {
	color: #f5f5f5;
}
.screen1 .middle-part .top-form :-ms-input-placeholder {
	color: #f5f5f5;
}
.screen1 .middle-part .top-form input[type="text"]:first-child,
.screen1 .middle-part .top-form input[type="text"]:nth-child(2){
	margin-right: 10px;
}
.screen1 .middle-part .top-form input[type="submit"]{
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ee1e29;
	border: none;
	padding: 20px 70px;
	border-radius: 30px;
	transition: .3s;
}
.screen1 .last-row .item{
	font-size: 0;
}
.screen1 .last-row .item .plus{
	font-size: 30px;
	font-family: "MuseoSansCyrl900";
	display: inline-block;
	vertical-align: top;
	background-color: #0799ca;
	width: 44px;
	height: 44px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	margin-right: 20px;
}
.screen1 .last-row .item .txt{
	font-size: 18px;
	color: #f5f5f5;
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 70px)
}
.screen1 .last-row .col-md-3:nth-child(3) .item .txt{
	padding-top: 10px;
}

.screen1_only-header {
	padding-bottom: 30px;
}

.screen2{
	padding-top: 75px;
}
.screen2 .h2{
	max-width: 320px;
	padding-bottom: 60px;
}
.screen2 p{
	font-size: 18px;
	padding-bottom: 20px;
}
.screen2 .video-wrap{
	padding-right: 35px;
	padding-top: 20px;
}
.screen2 .video{
	position: relative;
	height: 0;
	padding-bottom: 56.21%;
}
.screen2 .video iframe{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
}

.s-regions {
	padding-bottom: 70px;
}

.s-regions .wrap {
    padding: 20px 15px 0;
	position: relative;
}

.s-regions .wrap:before{
    z-index:-1;
    position:absolute;
    right:0;
    top:0;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-position: 100% 50%;
    -webkit-background-size: contain;
    background-size: contain;
    background-image: url(../img/map.png);
	content: '';
	transition: .3s;
}

.s-regions .subtitle {
    font-family: 'MuseoSansCyrl900';
    font-size: 18px;
    color: #191919;
    margin-bottom: 10px;
}

.s-regions ul {
    list-style: none;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.4;
	width: 79%;
}

.s-regions ul li {
    display: inline-block;
    width: 22%;
    vertical-align: top;
    padding-left: 20px;
    position: relative;
}

.s-regions ul a {
    color: #191919;
    transition: .3s;
}

.s-regions ul .choosed-region a {
    pointer-events: none;
	color: rgb(7, 153, 202);
	font-family: 'MuseoSansCyrl900';
	width: 100%;
	display: block;
	background-color: rgb(241, 241, 241);
	padding-left: 5px;
}

.s-regions ul .choosed-region {
    padding-left: 15px;
}

.s-regions ul a:hover {
    color: rgb(7, 153, 202);
}

.s-regions ul li:before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #0799ca;
}

.news .news__items {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fill, 266px);
	grid-auto-rows: 266px;
	justify-content: center;
	gap: 15px;
}

.news .news__item {
	width: 100%;
	height: 100%;
	position: relative;
}

.news .news__item-filter {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	background-color: rgb(7, 153, 202);
	transition: .3s;
}

.news__open .news__prev {
	width: 100%;
	height: 200px;
	overflow: hidden;
	margin-bottom: 35px;
}

.news .news__prev {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin-bottom: 0;
}

.news__open .news__prev img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news .news__prev img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(.4);
	transition: .3s;
}

.news .news__item:hover .news__item-filter {
	opacity: .15;
}

.news .news__wrapper {
	color: white;
	position: absolute;
	bottom: 0;
	padding: 15px;
}

.news .news__title {
	font-size: 21px;
	margin-bottom: 7px;
}

.news .news__short {
	font-family: 'MuseoSansCyrl100';
	color: rgb(209, 209, 209);
	font-size: 12px;
}

.news .news__date {
	font-family: 'MuseoSansCyrl100';
	color: rgb(233, 233, 233);
	font-size: 13px;
	position: absolute;
	top: 15px;
	right: 15px;
}

.section .section__text {
	font-size: 15px;
}

.section .section__text a {
	color: #00b4f1;
}

.section .section__text a:hover {
	color: #0799ca;
}

.section .section__text ol, 
.section .section__text ul {
	margin-top: 1em;
	list-style: none;
}

.section .section__text ul li
{
	padding-left: 1em;
}

.section .section__text ul li {
	position: relative;
}

.section .section__text ol {
	counter-reset: li; 
}

.section .section__text ul li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #0799ca;
}

.section .section__text ol li::before {
	content: counter(li) ". ";
	counter-increment: li;
	color: #0799ca;
}

.section,
.screen3{
	padding-top: 90px;
	padding-bottom: 50px;
}

.news__open {
	padding-top: 40px;
}

.screen3 .h2-descr{
	font-size: 36px;
	font-family: "MuseoSansCyrl700";
	padding-bottom: 50px;
	color: #535353;
}
.screen3 .controls{
	font-size: 0;
	text-align: center;
	padding-bottom: 40px;
}
.screen3 .controls button{
	font-size: 18px;
	font-family: "MuseoSansCyrl100";
	background-color: transparent;
	border: 1px solid #c4c4c4;
	padding: 8px 15px;
	margin: 0 8px;
	transition: .2s;
}
.screen3 .controls button.mixitup-control-active{
	background-color: #ffc803;
	border-color: #ffc803;
}
.screen3 .items .mix{
	padding: 40px 0;
	margin-bottom: 30px;
}
.screen3 .items .item-title{
	font-family: "MuseoSansCyrl500";
	font-size: 30px;
	max-width: 550px;
	padding-bottom: 45px;
}
.screen3 .items .item-body{
	padding-bottom: 60px;
	overflow: hidden;
}
.screen3 .items .first-line{
	font-size: 18px;
	padding-bottom: 5px;
}
.screen3 .items .name{
	font-family: "MuseoSansCyrl700";
	font-size: 24px;
	padding-bottom: 5px;
}
.screen3 .items .position{
	font-family: "MuseoSansCyrl100";
	font-size: 16px;
	padding-bottom: 20px;
}
.screen3 .items .td{
	font-size: 18px;
	font-family: "MuseoSansCyrl500";
	padding: 2px 20px 2px 0;
}
.screen3 .items .item-btn{
	display: inline-block;
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ee1e29;
	border: none;
	padding: 20px 35px;
	margin-top:20px;
	color: #fff;
	border-radius: 30px;
	transition: .3s;
}
.screen3 .items .item-bottom{
	padding-top: 50px;
}
.screen3 .items .owner{
	font-family: "MuseoSansCyrl100";
	font-size: 30px;
	padding-bottom: 25px;
}
.screen3 .items .item-bottom p{
	font-size: 16px;
	line-height: 1.5;
}
.screen3 .more{
	text-align: center;
}
.screen3 .more button{
	background-color: #fff;
	font-family: "MuseoSansCyrl100";
	font-size: 30px;
	color: #515151;
	display: inline-block;
	padding: 13px 55px 13px 95px;
	border: 1px solid #efefef;
	background-image: url(../img/scr3_refresh.png);
	background-repeat: no-repeat;
	background-position: 55px 50%;
}


.screen4{
	padding-bottom: 80px;
	padding-left: 140px;
	padding-right: 60px;
	position: relative;
}
.screen4::before{
	content: '';
	position: absolute;
	left: 35px;
	top: 10px;
	width: 229px;
	height: 395px;
	background-image: url(../img/scr4_img.png);
}
.screen4-form{
	border: 6px solid #ffc803;
	padding-top: 60px;
	padding-bottom: 75px;
	padding-left: 140px;
	padding-right: 60px;
	text-align: right;
	font-size: 0;
}
.screen4 .title{
	font-family: "MuseoSansCyrl900";
	font-size: 36px;
	color: #737373;
	padding-bottom: 15px;
}
.screen4 .title span{
	position: relative;
}
.screen4 .title span::before{
	content: '';
	position: absolute;
	left: -30px;
	top: -25px;
	height: 58px;
	width: 58px;
	background-image: url(../img/scr4_h2_border.png);
}
.screen4 .title-descr{
	color: #515151;
	font-size: 18px;
	padding-bottom: 40px;
}
.screen4 input[type="text"]{
	background-color: transparent;
	border: 2px solid #e7e7e7;
	font-size: 18px;
	padding: 15px 20px;
	width: 325px;
	vertical-align: middle;
	font-family: "MuseoSansCyrl100";
}
.screen4 ::-webkit-input-placeholder {
	color: #ddd;
}
.screen4 ::-moz-placeholder {
	color: #ddd;
}
.screen4 :-moz-placeholder {
	color: #ddd;
}
.screen4 :-ms-input-placeholder {
	color: #ddd;
}
.screen4 input[type="submit"]{
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ffd103;
	border: none;
	border-bottom: 5px solid #c1790d;
	padding: 15px 45px;
	color: #fff;
	margin-left: 30px;
	vertical-align: middle;
}
.screen4 .note{
	font-size: 12px;
	padding-bottom: 10px;
	max-width: 560px;
	margin-left: auto;
	text-align: right;
}


.screen5{
	max-width: 1670px;
	margin-left: auto;
	margin-right: auto;
	background-color: #f9f9f9;
	padding: 70px 0 110px;
}
.screen5 .h2{
	text-align: center;
	text-transform: none;
	padding-bottom: 60px;
}
.screen5 .left{
	border: 7px solid transparent;
	padding: 50px 15px 60px 40px;
	color: #666;
}
.screen5 .left .title{
	font-size: 24px;
	font-family: "MuseoSansCyrl900";
	padding-bottom: 35px;
	max-width: 450px;
}
.screen5 li{
	font-size: 16px;
	padding-bottom: 20px;
	line-height: 1.5;
	padding-left: 60px;
	list-style: none;
	position: relative;
}
.screen5 .left li::before{
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	width: 24px;
	height: 8px;
	background-color: #d1d1d1;
}
.screen5 .left li span{
	font-family: "MuseoSansCyrl700";
}
.screen5 .right{
	border: 7px solid #ffc803;
	padding: 50px 15px 60px 40px;
	box-shadow: 0 7px 7px 0 #bbb;
	background-color: #fff;
	color: #666;
	margin-left: -15px;
	margin-right: -15px;
}
.screen5 .right .title{
	font-size: 24px;
	font-family: "MuseoSansCyrl900";
	color: #7b7b7b;
	padding-bottom: 35px;
}
.screen5 .right li::before{
	content: '+';
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 26px;
	color: #fff;
	font-family: "MuseoSansCyrl900";
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	background-color: #ffc803;
	border-radius: 50%;
	box-shadow: 0 1px 1px 0 #bbb;
}
.screen5 .right li span{
	font-family: "MuseoSansCyrl700";
	color: #ffa302;
}
.screen5 .form-title{
	font-size: 36px;
	font-family: "MuseoSansCyrl900";
	color: #666;
	position: relative;
	top: -30px;
}
.screen5 .form-title span{
	font-size: 48px;
	text-transform: uppercase;
	display: block;
}
.screen5 form{
	overflow: hidden;
	font-size: 0;
}
.screen5 form span{
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	color: #666;
	width: 430px;
}
.screen5 input[type="email"]{
	background-color: #fff;
	border: 2px solid #e7e7e7;
	font-size: 18px;
	padding: 15px 20px;
	width: 325px;
	vertical-align: middle;
	font-family: "MuseoSansCyrl100";
}
.screen5 ::-webkit-input-placeholder {
	color: #aaa;
}
.screen5 ::-moz-placeholder {
	color: #aaa;
}
.screen5 :-moz-placeholder {
	color: #aaa;
}
.screen5 :-ms-input-placeholder {
	color: #aaa;
}
.screen5 input[type="submit"]{
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ffd103;
	border: none;
	border-bottom: 5px solid #c1790d;
	padding: 15px 25px;
	color: #fff;
	margin-left: 15px;
	vertical-align: middle;
}
.screen5 .note{
	font-size: 12px;
	padding-bottom: 10px;
	max-width: 560px;
	margin-left: auto;
	text-align: right;
}


.screen6{
	padding: 20px 0 20px;
	text-align: center;
	font-size: 0;
}
.screen6 .item{
	display: inline-block;
	width: 25%;
	vertical-align: top;
	padding: 25px 0 50px;
}
.screen6 .number{
	font-size: 50px;
	font-family: "MuseoSansCyrl900";
	color: #666;
	text-transform: uppercase;
	position: relative;
}
.screen6 .number::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	width: 100px;
	height: 100px;
	border: 6px solid #ee1e29;
}
.screen6 .number span{
	background-color: #fff;
	position: relative;
	z-index: 1;
	min-width: 100px;
	display: inline-block;
}
.screen6 .txt{
	font-size: 18px;
	color: #444;
	padding: 45px 30px 0;
}


.screen7{
	padding-top: 100px;
	max-width: 1670px;
	margin-left: auto;
	margin-right: auto;
	background-color: #f9f9f9;
	background-image: url(../img/scr7_bg.png);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: cover;
}
.screen7 .h2{
	text-align: center;
	text-transform: none;
	color: #fff;
	padding-bottom: 65px;
}
.screen7 .item{
	padding: 25px 40px 35px 55px;
	background-color: rgba(0,0,0,.7);
	color: #fff;
	margin-bottom: 45px;
	position: relative;
	transition: .5s;
	min-height: 207px;
}
.screen7 .item:hover{
	color: #111;
	background-color: rgba(255,255,255,.7);
}
.screen7 .item::before{
	content: '«';
	position: absolute;
	left: -15px;
	top: 30px;
	width: 45px;
	height: 45px;
	color: #fff;
	font-family: "MuseoSansCyrl900";
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	background-color: #ee1e29;
	border-radius: 50%;
	box-shadow: 0 1px 1px 0 #bbb;
}
.screen7 .item .title{
	font-size: 18px;
	font-family: "MuseoSansCyrl900";
	padding-bottom: 15px;
}
.screen7 .item .txt{
	font-family: "MuseoSansCyrl100";
	font-size: 16px;
}
.screen7 .btn-popup{
	display: block;
	max-width: 430px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ffd103;
	border: none;
	border-bottom: 5px solid #c1790d;
	padding: 15px 35px;
	border-radius: 28px;
	margin-top: 10px;
	margin-bottom: 135px;
}


.screen8{
	max-width: 1670px;
	margin-left: auto;
	margin-right: auto;
	background-color: #f9f9f9;
	padding: 65px 0 20px;
	font-size: 0;
}
.screen8 .item{
	padding-left: 60px;
	padding-bottom: 50px;
	padding-right: 30px;
	position: relative;
	font-size: 18px;
	display: inline-block;
	width: 33%;
	vertical-align: top;
}
.screen8 .item::before{
	content: '+';
	position: absolute;
	left: 0;
	top: 0;
	width: 45px;
	height: 45px;
	color: #fff;
	font-family: "MuseoSansCyrl900";
	font-size: 30px;
	line-height: 40px;
	text-align: center;
	background-color: #ee1e29;
	border-radius: 50%;
	box-shadow: 0 1px 1px 0 #bbb;
}


.screen9{
	padding: 50px 0 20px;
}
.screen8 .h2, .screen9 .h2{
	text-align: center;
	text-transform: none;
	color: #4e4e4e;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 30px;
}
.screen9 .item{
	padding: 70px 0 120px;
	font-size: 0;
	border-bottom: 1px dashed #cfcfcf;
}
.screen9 .item:last-child{
	border: none;
}
.screen9 .item .left,
.screen9 .item .right{
	display: inline-block;
	vertical-align: top;
	width: 50%;
}
.screen9 .item .left{
	padding-left: 15px;
	padding-right: 35px;
}
.screen9 .item .rectangle{
	background-color: #ffc803;
	padding-bottom: 65%;
	position: relative;
}
.screen9 .item .rectangle img{
	position: absolute;
	right: 19px;
	top: 22px;
	max-width: initial;
}
.screen9 .item.inverse .left{
	padding: 0;
}
.screen9 .item.inverse .rectangle{
	position: relative;
	left: 85px;
}
.screen9 .item .right{
	padding-left: 15px;
}
.screen9 .right .title{
	font-size: 32px;
	padding-bottom: 35px;
}
.screen9 .right .title span{
	font-family: "MuseoSansCyrl900";
	display: block;
}
.screen9 .right ul{
	display: inline-block;
	padding-right: 25px;
	padding-bottom: 25px;
	margin-bottom: 45px;
	border-bottom: 1px solid #efefef;
}
.screen9 .right li{
	font-size: 18px;
	list-style: none;
	padding-left: 25px;
	line-height: 1.6;
	background-image: url(../img/scr9_lsi.png);
	background-repeat: no-repeat;
	background-position: 0 50%;
}
.screen9 .right .bottom{
	font-size: 0;
}
.screen9 .right .price{
	padding-right: 60px;
	display: inline-block;
	vertical-align: top;
}
.screen9 .right .new-price{
	font-size: 36px;
	font-family: "MuseoSansCyrl500";
	padding-bottom: 5px;
}
.screen9 .right .old-price{
	font-size: 18px;
	color: #777;
	text-decoration: line-through;
}
.screen9 .btn-popup{
	display: inline-block;
	vertical-align: top;
	text-align: center;
	color: #fff;
	font-size: 14px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ffd103;
	border: none;
	border-bottom: 5px solid #c1790d;
	padding: 15px 25px;
	border-radius: 28px;
}


.screen10{
	background-image: url(../img/scr10_bg.jpg);
	background-repeat: no-repeat;
	background-position: 100% 0;
	padding-top: 80px;
	padding-bottom: 150px;
	overflow: hidden;
}
.screen10 .calc{
	background-color: #fff;
	border: 6px solid #0799ca;
	padding: 60px 45px 100px;
	position: relative;
}
.screen10 .calc::before{
	content: '';
	position: absolute;
	right: -889px;
	bottom: -120px;
	width: 954px;
	height: 657px;
	background-image: url(../img/scr10_img1.png);
}
.screen10 .calc .title{
	font-size: 42px;
	color: #494949;
	font-family: "MuseoSansCyrl900";
	text-align: right;
	max-width: 430px;
	padding-bottom: 35px;
}
.screen10 .calc .title span{
	position: relative;
}
.screen10 .calc .title span::before{
	content: '';
	position: absolute;
	right: -40px;
	top: -18px;
	height: 58px;
	width: 58px;
	background-image: url(../img/scr10_h2_border.png);
}
.screen10 .calc form{
	padding-bottom: 30px;
	border-bottom: 1px dashed #cfcfcf;
	margin-bottom: 15px;
	font-size: 0;
}
.screen10 .calc form .left,
.screen10 .calc form .right{
	display: inline-block;
	vertical-align: top;
}
.screen10 .calc form .left{
	width: 42%;
	margin-right: 3%;
}
.screen10 .calc form .right{
	width: 55%;
	padding-top: 9px;
}
.screen10 .calc form .col1,
.screen10 .calc form .col2{
	display: inline-block;
	vertical-align: top;
}
.screen10 .calc form .col1{
	padding-right: 30px;
}
.screen10 .calc form .right input[type="number"]{
	display: block;
	width: 100%;
	font-size: 14px;
	padding: 16px 20px 17px;
	border: 1px solid #e7e7e7;
	color: #494949;
	margin-top: 24px;
}
.screen10 .calc .extra{
	font-size: 16px;
	color: #494949;
	font-family: "MuseoSansCyrl700";
	padding-top: 20px;
	padding-bottom: 20px;
}
.screen10 .calc .res{
	color: #494949;
	font-size: 24px;
	font-family: "MuseoSansCyrl500";
	padding-top: 5px;
}
.screen10 .calc .res span{
	font-size: 30px;
	font-family: "MuseoSansCyrl900";
}
.screen10 .calc .res strong{
	font-weight: normal;
}
.screen10 .btn-popup{
	margin-top: 40px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 475px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ffd103;
	border: none;
	border-bottom: 5px solid #c1790d;
	padding: 15px 25px;
}


.screen11{
	background-image: url(../img/scr11_bg.jpg);
	background-repeat: no-repeat;
	background-position: 0 100%;
	padding-bottom: 80px;
}
.screen11 .h2{
	text-transform: none;
	text-align: center;
	position: relative;
	top: -50px;
	color: #333;
}
.screen11 .h2-descr{
	font-size: 24px;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 35px;
	position: relative;
	top: -50px;
}
.screen11 .title{
	font-size: 24px;
	padding-left: 100px;
	background-image: url(../img/scr11_img1.png);
	background-repeat: no-repeat;
	background-position: 15px 0;
	max-width: 415px;
	padding-bottom: 40px;
}
.screen11 p{
	font-size: 16px;
	line-height: 1.5;
	padding-bottom: 15px;
}
.screen11 ul{

	margin-left:20px;
	margin-bottom:15px;
}
.screen11 h3{
	padding:10px 0px;
}
.screen11 .table-wrap{
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 15px 30px;
	margin-bottom: 35px;
}
.screen11 .table{
	width: 100%;
}
.screen11 .td{
	font-size: 16px;
	font-family: "MuseoSansCyrl500";
	border-bottom: 1px dotted #b0b0b0;
	padding: 15px 0;
}
.screen11 .td:last-child{
	font-family: "MuseoSansCyrl700";
	text-align: right;
}
.screen11 .tr:last-child .td{
	border: none;
}
.screen11 .td .fa{
	color: #c0c0c0;
	font-size: 16px;
	margin-right: 15px;
}
.screen11 .td .fa.free{
	color: #ffb402;
}
.screen11 .text{
	text-align: center;
	font-size: 16px;
	padding-top: 5px;
	line-height: 1.5;
	padding-bottom: 40px;
}
.screen11 .btn-popup{
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 475px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ffd103;
	border: none;
	border-bottom: 5px solid #c1790d;
	padding: 15px 25px;
}


.screen12{
	max-width: 1670px;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../img/scr12_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 70px 0 50px;
	text-align: center;
}
.screen12 .h2{
	color: #fff;
	text-transform: none;
	padding-bottom: 30px;
}
.screen12 .benefit{
	color: #fff;
	display: inline-block;
	font-size: 0;
	padding-bottom: 35px;
}
.screen12 .benefit span{
	font-size: 24px;
	display: inline-block;
	vertical-align: top;
	padding-right: 40px;
}
.screen12 .benefit ul{
	font-size: 18px;
	display: inline-block;
	vertical-align: top;
	text-align: left;
}
.screen12 .benefit li{
	list-style: none;
	line-height: 1.7;
}
.screen12 .benefit li .fa{
	margin-right: 10px;
}
.screen12 form{
	font-size: 0;
}
.screen12 input[type="text"]{
	border: 2px solid #aeaeae;
	width: 280px;
	padding: 15px 10px 15px 25px;
	background-color: transparent;
	font-size: 14px;
	margin-right: 18px;
	color: #f5f5f5;
}
.screen12 ::-webkit-input-placeholder {
	color: #f5f5f5;
}
.screen12 ::-moz-placeholder {
	color: #f5f5f5;
}
.screen12 :-moz-placeholder {
	color: #f5f5f5;
}
.screen12 :-ms-input-placeholder {
	color: #f5f5f5;
}
#datepicker{
	background-image: url(../img/scr12_img1.png);
	background-repeat: no-repeat;
	background-position: 93% 50%;
}
.screen12 input[type="submit"]{
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ffbc01;
	border: none;
	border-bottom: 5px solid #c1790d;
	padding: 15px 45px;
}
.screen12 .note{
	font-size: 12px;
	padding-bottom: 10px;
	max-width: 560px;
	margin-left: auto;
	text-align: right;
	color: #fff;
}


.screen13{
	padding-top: 85px;
	padding-bottom: 50px;
}
.screen13 .h2{
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	text-transform: none;
	padding-bottom: 95px;
	color: #333;
}
.screen13 .col-md-2:nth-child(even){
	padding-top: 80px;
}
.screen13 .img-wrap{
	text-align: center;
	position: relative;
	height: 76px;
	line-height: 76px;
}
.screen13 .img-wrap img{
	vertical-align: bottom;
}
.screen13 .img-wrap::after{
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	width: 135px;
	height: 35px;
	right: 0;
	-webkit-transform: translateX(75%);
	-ms-transform: translateX(75%);
	-o-transform: translateX(75%);
	transform: translateX(75%);
}
.screen13 .col-md-2:nth-child(odd) .img-wrap::after{
	background-image: url(../img/scr13_arr_t.png);
}
.screen13 .col-md-2:nth-child(even) .img-wrap::after{
	background-image: url(../img/scr13_arr_b.png);
	bottom: -150px;
}
.screen13 .col-md-2:nth-child(6) .img-wrap::after{
	display: none;
}
.screen13 .img-wrap .number{
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 50%;
	width: 23px;
	height: 23px;
	text-align: center;
	color: #fff;
	font-size: 12px;
	font-family: "Arial";
	font-weight: 700;
	line-height: 23px;
	background-color:#ee1e29;
}
.screen13 .item p{
	font-size: 18px;
	font-family: "MuseoSansCyrl500";
	padding-top: 25px;
}
.screen13 .item span{
	font-size: 18px;
	display: block;
}


.screen14{
	padding-top: 50px;
	padding-bottom: 75px;
	background-image: url(../img/scr14_bg.png);
	background-repeat: no-repeat;
	background-position: 50% 240px;
}
.screen14 .h2{
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
	text-transform: none;
	color: #333;
	padding-bottom: 103px;
}
.screen14 .left,
.screen14 .right{
	max-width: 200px;
}
.screen14 .left{
	margin-left: auto;
}
.screen14 .item{
	font-size: 18px;
	padding-bottom: 89px;
}
.screen14 .left .item{
	text-align: right;
}
.screen14 p{
	font-size: 24px;
	text-align: center;
	padding-top: 65px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}
.screen14 p span{
	font-family: "MuseoSansCyrl700";
}

.collective {
	padding-top: 40px;
}

.collective .container {
	position: relative;
}

.collective .collective__wrapper {
	background-color: #34384c;
	display: flex;
	flex-direction: column;
	height: 125px;
	color: #fff;
	padding-left: 275px;
	padding-top: 28px;
}

.collective .collective__text {
	font-size: 21px;
}

.collective .collective__descr {
	margin-top: 28px;
	font-family: 'MuseoSansCyrl100';
}

.collective span {
	margin-left: 25px;
	font-size: 35px;
	color: #db5143;
	font-family: 'MuseoSansCyrl500';
}

.collective img {
	position: absolute;
	height: 190px;
	left: 20px;
	bottom: 0;
}

.screen15{
	max-width: 1670px;
	margin-left: auto;
	margin-right: auto;
	background-image: url(../img/scr15_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 70px 0 30px;
	text-align: center;
	color: #fff;
}
.screen15 .h2{
	color: #fff;
	text-transform: none;
	padding-bottom: 15px;
}
.screen15 .h2-descr{
	font-size: 24px;
}
.screen15 .h2-descr span{
	font-size: 36px;
	font-family: "MuseoSansCyrl900";
	display: block;
	padding-top: 5px;
	padding-bottom: 25px;
}
.screen15 form{
	font-size: 0;
}
.screen15 input[type="text"]{
	border: 2px solid #aeaeae;
	width: 280px;
	padding: 15px 10px 15px 25px;
	background-color: transparent;
	font-size: 14px;
	margin-right: 18px;
	color: #f5f5f5;
}
.screen15 ::-webkit-input-placeholder {
	color: #f5f5f5;
}
.screen15 ::-moz-placeholder {
	color: #f5f5f5;
}
.screen15 :-moz-placeholder {
	color: #f5f5f5;
}
.screen15 :-ms-input-placeholder {
	color: #f5f5f5;
}
.screen15 input[type="submit"]{
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ffbc01;
	border: none;
	border-bottom: 5px solid #c1790d;
	padding: 15px 45px;
}
.screen15 p{
	font-size: 12px;
	font-family: "MuseoSansCyrl100";
	padding-top: 20px;
}
.screen15 .note{
	font-size: 12px;
	padding-bottom: 10px;
	color: #fff;
}


.screen16{
	padding: 70px 0 100px;
}
.screen16 .q-item{
	padding: 35px 10px 40px 35px;
	border-bottom: 1px solid #e8e8e8;
	position: relative;
	cursor: pointer;
	transition: .3s;
}
.screen16 .q-item:hover{
	background-color: rgb(189, 229, 243);
}
.screen16 .q-item:last-child{
	border-bottom: none;
}
.screen16 .q-item::before{
	content: '\f059';
	position: absolute;
	top: 33px;
	left: 0;
	font-family: 'FontAwesome';
	font-size: 22px;
	color: #0799ca;
	transition: .2s;
}
.screen16 .q-item.active{
	padding-left: 75px;
}
.screen16 .q-item.active::before{
	color: #ee1e29;
	left: 40px;
}
.screen16 .q-item .title{
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	padding-bottom: 10px;
}
.screen16 .q-item .txt{
	font-size: 24px;
	transition: .2s;
}
.screen16 .q-item.active .txt{
	font-family: "MuseoSansCyrl700";
}
.screen16 .a-item{
	padding: 45px 40px 80px;
	border: 6px solid #0799ca;
	font-size: 0;
	transition: .5s;
	display: none;
}
.screen16 .a-item.active{
	display: block;
}
.screen16 .a-item .img-wrap{
	width: 140px;
	height: 140px;
	border: 1px solid #e8e8e8;
	display: inline-block;
	vertical-align: bottom;
	margin-right: 30px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.screen16 .a-item .person{
	display: inline-block;
	vertical-align: bottom;
	width: calc(100% - 170px);
}
.screen16 .a-item .name{
	font-size: 24px;
	font-family: "MuseoSansCyrl700";
	padding-bottom: 5px;
}
.screen16 .a-item .position{
	font-family: "MuseoSansCyrl100";
	font-size: 16px;
}
.screen16 .a-item .answer-txt{
	padding-top: 55px;
	font-size: 16px;
	line-height: 1.5;
}


.screen17{
	max-width: 1670px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.screen17 .map{
	height: 625px;
}
.screen17 .over-map{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	padding-top: 50px;
}
.screen17 .map-form{
	background-color: #fff;
	padding: 55px 50px;
	margin-left: 15px;
	margin-right: 15px;
	box-shadow: 0 0 10px 2px rgba(0,0,0,.3);
}
.screen17 .map-form .title{
	font-size: 30px;
	padding-bottom: 15px;
}
.screen17 .map-form p{
	font-size: 16px;
}
.screen17 .map-form input[type="text"],
.screen17 .map-form input[type="email"],
.screen17 .map-form textarea{
	margin-top: 12px;
	display: block;
	width: 100%;
	border: 1px solid #e8e8e8;
	padding: 15px 20px;
	font-size: 16px;
	font-family: "MuseoSansCyrl100";
}
.screen17 .map-form textarea{
	resize: none;
	height: 90px;
	margin-bottom: 35px;
}
.screen17 .map-form input[type="submit"]{
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ee1e29;
	border: none;
	padding: 20px 15px;
}
.screen17 .note{
	font-size: 12px;
	padding-bottom: 10px;
}


.screen18{
	padding: 70px 0;
}
.screen18 .title{
	font-size: 30px;
	padding-bottom: 20px;
}
.screen18 li{
	list-style: none;
	line-height: 1.8;
	font-size: 16px;
	background-image: url(../img/scr9_lsi.png);
	background-repeat: no-repeat;
	background-position: 0 50%;
	padding-left: 35px;
}
.screen18 .right{
	padding-top: 15px;
}
.screen18 .right a,
.screen18 .right span{
	color: #333;
	font-size: 16px;
	line-height: 30px;
}


.footer{
	padding-bottom: 80px;
	font-size: 0;
}
.footer-inner{
	border-top: 3px solid #e8e8e8;
	padding-top: 40px;
}
.footer .logo{
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
	height: 100px;
	overflow: hidden;
}
.footer .logo img{
	height: 100%;
}
.footer .address{
	display: inline-block;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1.7;
}
.footer .soc{
	text-align: center;
}
.footer .soc a{
	color: #333;
	font-size: 24px;
	margin: 0 8px;
	display: inline-block;
	vertical-align: middle;
}
.footer .soc + a{
	font-size: 16px;
	color: #333;
	text-align: center;
	display: block;
	padding-top: 5px;
}
.footer .right{
	text-align: right;
	font-size: 16px;
}
.footer .phone{
	display: inline-block;
	vertical-align: middle;
	line-height: 1.5;
}
.footer .phone a{
	color: #333;
	font-family: "MuseoSansCyrl900";
	display: block;
	transition: .3s;
}
.footer .phone a:hover{
	color: rgb(7, 153, 202);
}
.footer .phone span{
	display: block;
}
.footer .right .btn-popup,
.screen1 .phone .btn-popup{
	font-size: 16px;
	text-align: center;
	color: #fff;
	font-family: "MuseoSansCyrl700";
	text-shadow: 0 1px 1px #777;
	background-color: #ee1e29;
	border: none;
	padding: 20px;
	margin-left: 15px;
	display: inline-block;
	vertical-align: middle;
	border-radius: 30px;
}

.footer .footer__socials{
	margin-top: 10px;
	display: flex;
	justify-content: flex-end;
}

.footer .footer__socials .footer__social svg
{
	width: 30px;
	height: 30px;
}

.footer .footer__socials .footer__social .inst-icon,
.footer .footer__socials .footer__social .youtube-icon g,
.footer .footer__socials .footer__social .facebook-icon path,
.footer .footer__socials .footer__social .vk-icon g path
{
	transition: .3s;
}

.footer .footer__socials .footer__social .inst-icon:hover{
	stroke:#00b4f1;
}

.footer .footer__socials .footer__social .youtube-icon:hover g{
	fill:#00b4f1;
}

.footer .footer__socials .footer__social .facebook-icon:hover path{
	fill:#00b4f1;
}

.footer .footer__socials .footer__social .vk-icon:hover g path{
	fill:#00b4f1;
}

.footer .footer__socials .footer__social{
	margin-right: 10px;
}

.footer .footer__socials .footer__social:last-child{
	margin-right: 0;
}

.docs .docs__wrapper {
    display: flex;
	flex-wrap: wrap;
}

.docs .docs__wrapper .item {
	width: 24%;
	margin: 0.5%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
    padding: 5px;
    outline: none;
}

.docs .docs__wrapper .item img{
	transition: .3s;
}

.docs .docs__wrapper .item:hover img{
	filter: brightness(.9);
}

.screen1 .phone .btn-popup_mini {
	font-size: 14px;
	margin: 0;
	padding: 5px;
	width: 100%;
	border-radius: 30px;
	margin-top: 5px;
}

#s-overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
	z-index: 10000;
}
#s-overlay .success {
	background-color: #fff;
	max-width: 500px;
	width: 90%;
	position: relative;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 25px;
	box-sizing: border-box;
	display: none;
	text-align: center;
}


#conf-overlay{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
	z-index: 10000;
}
#conf-overlay .confidentiality{
	max-width: 900px;
	overflow: auto;
	max-height: 90vh;
	width: 90%;
	position: relative;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 25px;
	box-sizing: border-box;
}
#conf-overlay .confidentiality h3{
	margin-bottom: 20px;
	font-size: 24px;
	font-family: "MuseoSansCyrl500";
}
#conf-overlay .confidentiality p{
	margin-bottom: 10px;
}


#popup,
#popup_order {
	max-width: 450px;
	margin: 0 auto;
	background: #FFF;
	padding: 40px 60px;
	position: relative;
}
#popup .note,
#popup_order .note {
	font-size: 12px;
}


.vhod{
	width: 22%;
	border: 4px solid #eee;
	text-align: center;
	padding: 20px 10px;
	float: left;
	margin-left: 1.2%;
	margin-right: 1.5%;
	margin-top: 20px;
}
.calc img{
	width:31%;
	margin-left:1%;
	margin-bottom:5px;
}
.licen{
	position:fixed;
	top:50%;
	width:100px;
	padding:10px;
	background-color:#000;
}


.top{
	background-color: #ee1e29;
	color: #fff;
	font-size: 22px;
	line-height: 1;
	text-align: center;
	padding: 20px 0;
}
.top p{
	position: relative;
	padding-right: 30px;
}
.top a{
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -11px;
	display: block;
	width: 22px;
	height: 22px;
}

.top a img{
	max-height: 100%;
	transition: .3s;
}

.top a:hover img{
	filter: invert(.2);
}


.screen1 .middle-part .top-form input[type="submit"]:hover,
.screen4 input[type="submit"]:hover,
.screen5 input[type="submit"]:hover,
.screen17 .map-form input[type="submit"]:hover,
.footer .right .btn-popup:hover,
.btn-popup:hover,
.screen1 .phone .btn-popup_mini:hover {
	background-color: #ad0911;
}

.screen1 .middle-part .top-form input[type="submit"],
.screen4 input[type="submit"],
.screen5 input[type="submit"],
.screen17 .map-form input[type="submit"],
.footer .right .btn-popup,
.btn-popup {
	transition: .3s;
	border-radius: 30px;
	border: none;
}

.screen10 .btn-popup:hover {
	margin-top: 42px;
}
.screen7 .btn-popup:hover {
	margin-top: 12px;
}
.usl {
	width: 30%;
	border: 7px solid #eee;
	text-align: center;
	padding: 20px 10px;
	float: left;
	margin-left: 1.5%;
	margin-right: 1.5%;
	margin-top: 20px;
}
#it {
	background-image: url(../img/it.png);
	background-position: right;
	padding-right: 50px;
	background-repeat: no-repeat
}
#ger {
	background-image: url(../img/ger.png);
	background-position: right;
	padding-right: 50px;
	background-repeat: no-repeat
}
#rus {
	background-image: url(../img/rus.png);
	background-position: right;
	padding-right: 50px;
	background-repeat: no-repeat
}
.priceb {
	font-family: "MuseoSansCyrl700";
	font-size: 20px
}
.usl h3 {
	font-family: "MuseoSansCyrl700";
	font-size: 24px;
}
.screen3 .items .item-btn:hover {
	background-color: #ad0911;
}
.usl .price {
	width: 50%;
	float: left;
}
.usl .price .im {
	height: 46px;
}
.usl .price p {
	padding: 5px 0px;
	font-size: 16px
}
.usl .price span {
	font-family: "MuseoSansCyrl700";
	font-size: 20px
}
.usl .popup_bl {
	max-width: 450px;
	margin: 0 auto;
	background: #FFF;
	padding: 40px 60px;
	position: relative;
}
.title_popup {
	text-align: center;
	margin-bottom: 42px;
}
.title_popup h3 {
	font-size: 28px;
	font-weight: 300;
	text-transform: uppercase;
}
.title_popup p {
	color: #4c4c4c;
	font-size: 24px;
	font-weight: 300;
}
.title_popup .line {
	width: 128px;
	height: 7px;
	background: #ff6102;
	margin: 0 auto;
	margin-top: 17px;
}
.form_popup .input_text_2 {
	height: 42px;
	color: #000;
}
.form input {
	color: white;
	cursor: pointer;
}
.popup_bl .sl_button_bl_1 {
	margin-top: 10px;
}
.popup_bl .sl_button_bl_1 .sl_button1 {
	margin-top: 0px;
	font-size: 16px;
	font-size: 18px;
	font-family: "MuseoSansCyrl700";
	background-color: #ee1e29;
	border: none;
	padding: 20px 70px;
	width: 100%;
	color: #fff;
	border-radius: 30px;
	transition: .3s;
}
.popup_bl .sl_button_bl_1 .sl_button1:hover {
	background-color: #ad0911;
}
.form_popup .input_text_2 {
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #dddddd;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 300;
}



@media (max-width: 1919px){
	.screen11{background-image: none;}
}
@media (max-width: 1365px){
	.screen1 .middle-part .col-md-12::before{display: none;}
	.screen9 .item .rectangle img{max-width: 100%;}
	.screen9 .item.inverse .rectangle{left: 0;}
}
@media (max-width: 1199px){
	.usl h3{font-size: 22px;}
	.h2{font-size: 30px;}
	.screen1{padding-bottom: 70px;}
	.screen1 .menu li{font-size: 14px;}
	.screen1 .address{font-size: 11px;}
	.screen1 .phone .tel{font-size: 12px;}
	.screen1 .middle-part .first-row, .screen1 .middle-part .second-row{padding-right: 0;}
	.screen1 .middle-part{padding: 80px 0;}
	.screen1 .middle-part .title{font-size: 56px;}
	.screen1 .middle-part .discount{font-size: 20px;}
	.screen1 .middle-part .left{width: 39%;}
	.screen1 .middle-part .price{font-size: 26px;}
	.screen1 .middle-part .price-descr{font-size: 18px;}
	.screen1 .last-row .item .txt{font-size: 16px;}
	.screen3 .h2-descr{font-size: 30px;}
	.screen3 .items .td{font-size: 16px;}
	.screen4{padding-right: 0;}
	.screen4 .title{font-size: 30px;}
	.screen4 input[type="text"]{width: 45%;}
	.screen4 input[type="submit"]{padding-left: 30px; padding-right: 30px;}
	.screen5 .left .title, .screen5 .right .title{font-size: 22px;}
	.screen5 .form-title{font-size: 30px;}
	.screen5 form span{width: 100%; margin-bottom: 15px;}
	.screen7 .item .title{font-size: 18px;}
	.screen9 .right .price{padding-right: 20px;}
	.screen9 .right .new-price{font-size: 30px;}
	.screen9 .btn-popup{padding-left: 20px; padding-right: 20px;}
	.screen9 .item .right{padding-left: 0;}
	.screen10 .calc::before{display: none;}
	.screen11 .title{padding-bottom: 17px;}
	#datepicker{margin-right: 0;}
	.screen12 input[type="submit"]{margin-top: 25px;}
	.screen13 .item p{font-size: 16px;}
	.screen13 .item span{font-size: 14px;}
	.screen14 .item{font-size: 16px; padding-bottom: 115px;}
	.footer{padding-bottom: 30px;}
	.screen1 .logo img{width: initial; margin-right: 0;}
	.screen1 .logo span{display: none;}
	.screen1 .phone .btn-popup_mini{font-size: 12px;}

	.collective .collective__wrapper {
		padding-top: 32px;
	}
	
	.collective .collective__text {
		font-size: 15px;
	}
	
	.collective .collective__descr {
		font-size: 12px;
	}
	
	.collective span {
		font-size: 30px;
	}

	.s-regions .wrap:before{
		opacity: .2;
	}
  
  .screen1 .callme {
    font-size: 11px;
  }
}
@media (max-width: 991px){
	.screen1{padding-bottom: 30px;}
	.screen1 .menu li{padding: 5px 10px;}
	.screen1 .middle-part{padding: 50px 0;}
	.screen1 .middle-part .title{font-size: 42px;}
	.screen1 .middle-part .discount{font-size: 16px;}
	.screen1 .middle-part .left{width: 100%;}
	.screen1 .middle-part .top-form{margin-top: 25px;float:left;}
	.screen1 .last-row .item{padding-bottom: 20px;}
	.h2{text-align: center;}
	.h2 span::before{display: none;}
	.screen2 .h2{padding-bottom: 30px; max-width: initial;}
	.screen3 .h2-descr{text-align: center;}
	.screen3 .items .item-btn{font-size: 14px; padding: 15px 25px;}
	.screen3 .items .item-title{padding-bottom: 20px;}
	.screen3 .items .item-descr{margin-left: -15px; margin-right: -15px;}
	.screen3 .items .item-body{padding-bottom: 20px;}
	.screen3 .controls{padding-bottom: 20px;}
	.screen3 .items .mix{padding: 20px 0;}
	.screen3 .items .item-bottom{padding-top: 20px;}
	.screen3 .items .owner{padding-bottom: 15px;}
	.screen3 .items .name{font-size: 18px;}
	.screen3 .items .item-title{font-size: 24px; max-width: initial;}
	.screen4{padding-left: 15px; padding-right: 15px;}
	.screen4::before{display: none;}
	.screen4 .title span::before{display: none;}
	.screen4-form{padding-left: 50px;}
	.screen5{padding: 70px 0;}
	.screen5 .h2{padding-bottom: 40px;}
	.screen5 .left{padding-top: 0;}
	.screen5 .right{margin-left: 0; margin-right: 0;}
	.screen5 .form-title{top: 0; padding: 30px 0;}
	.screen5 .form-title span{font-size: 36px;}
	.screen6{padding-top: 50px;}
	.screen6 .item{width: 50%;}
	.screen7{padding-top: 50px;}
	.screen7 .btn-popup{margin-bottom: 75px;}
	.screen8 .item{width: 50%;}
	.screen9 .h2{padding-bottom: 0;}
	.screen9 .item{padding: 50px 0;}
	.screen9 .item .rectangle{padding: 0;}
	.screen9 .item .rectangle img{position: static;}
	.screen9 .right .title{font-size: 24px; padding-bottom: 10px;}
	.screen9 .right ul{padding-right: 0; margin-bottom: 0; border-bottom: 0;}
	.screen9 .right .price{padding-right: 0; width: 100%;}
	.screen9 .btn-popup{margin-top: 20px;}
	.screen10{background-image: none; padding-top: 20px; padding-bottom: 50px;}
	.screen10 .calc{padding: 45px;}
	.screen10 .calc .title{max-width: initial; font-size: 30px; text-align: center;}
	.screen10 .calc .title span::before{display: none;}
	.screen11 .h2{position: static;}
	.screen11 .h2-descr{position: static; max-width: initial; text-align: center;}
	.screen12 input[type="text"],
	.screen12 input[type="submit"], #datepicker{display: block; margin-left: auto; margin-right: auto; margin-top: 20px;}
	.screaen13{padding-top: 50px;}
	.screen13 .item{padding-bottom: 30px;}
	.screen13 .img-wrap::after{display: none;}
	.screen13 .col-md-2:nth-child(even){padding-top: 0;}
	.screen13 .h2{padding-bottom: 50px;}
	.screen14 .h2{padding-bottom: 60px;}
	.screen14{background-position-y: 190px;}
	.screen14 .item{text-align: right; font-size: 14px; padding-bottom: 95px;}
	.screen14 .left .item{text-align: left;}
	.screen15 input[type="submit"]{margin-top: 25px;}
	.screen18{padding: 50px 0;}
	.screen18 .right{padding-top: 0;}
	.screen18 .right a{line-height: 26px;}
	.footer .address{width: calc(100% - 162px); text-align: right;}
	.footer .logo{padding-bottom: 25px;}
	.footer .soc + a, .footer .soc{text-align: left;}
	.screen16 .a-item{padding-bottom: 45px;}
	.screen9 .item.inverse .right{padding-left: 15px;}
	.screen3 .more button{font-size: 24px;}
	.screen3 .items .owner{font-size: 24px;}
	.screen2 .video-wrap{padding-right: 0;}
	.screen1 .phone .btn-popup_mini{padding-right:19px;padding-left:19px;width:auto;}

	.docs .docs__wrapper .item {
		width: 49%;
		margin-bottom: 12px;
	}

	.docs {
		padding-top: 14px;
	}

	.our-docs {
		padding-top: 50px;
	}

	.collective .collective__wrapper {
		padding-top: 30px;
	}
	
	.collective .collective__text {
		font-size: 14px;
	}
	
	.collective .collective__descr {
		font-size: 11px;
		margin-top: 21px;
	}
	
	.collective span {
		font-size: 29px;
		margin-left: 0;
	}

	.usl {
		width: 47%;
	}

	.vhod {
		width: 30%;
	}

	.s-regions ul li {
		margin-right: 50px;
	}
}
@media (max-width: 767px){
	.h2{font-size: 24px;}
	.screen4 input[type="submit"],
	.screen5 input[type="submit"],
	.screen1 .middle-part .top-form input[type="submit"],
	.screen5 input[type="email"]{max-width: 100%;}
	.screen8 .item{width: 100%;}
	.screen16 .a-item .person{display: block; width: 100%;}
	.screen16 .a-item .answer-txt{padding-top: 20px;}
	.screen1 .middle-part .title{font-size: 28px;}
	.screen1 .middle-part .discount{font-size: 14px;position:static;}
	.screen1 .middle-part .price{font-size: 18px; padding-bottom: 5px;}
	.screen1 .middle-part .price-descr{font-size: 14px;}
	.screen1 .middle-part .top-form{padding:0;}
	.screen1 .middle-part .left{margin-top: 25px;}
	.screen1 .middle-part .top-form,
	.screen1 .middle-part .left,
	.screen1 .middle-part .discount,
	.screen1 .middle-part .title{float: none; text-align: center;margin-bottom:5px;}
	.screen1 .middle-part .top-form input[type="text"]:first-child,
	.screen1 .middle-part .top-form input[type="text"]:nth-child(2)
	{margin-right:auto;margin-left:auto; margin-bottom: 15px;width: 275px;}
	.screen1 .middle-part .top-form input[type="number"]{width: 275px;}
	.screen1 .middle-part .top-form input[type="submit"]{padding: 15px 30px; font-size: 16px;}
	.news, .screen2, .screen3{padding-top: 50px;}
	.screen3 .h2-descr{font-size: 24px; padding-bottom: 25px;}
	.screen3 .controls button{margin-bottom: 15px;}
	.screen3 .controls{padding-bottom: 0;}
	.screen3 .items .item-title{padding-top: 20px; font-size: 20px; text-align: center;}
	.screen3 .items .item-btn{font-size: 12px;}
	.screen3{padding-bottom: 0;}
	.screen4{padding-bottom: 50px;}
	.screen4-form{padding: 25px 15px;}
	.screen4 .title{font-size: 18px;}
	.screen4 .title-descr{font-size: 14px; padding-bottom: 20px;}
	.screen4 input[type="text"]{width: 100%;}
	.screen4 input[type="submit"]{margin-left: 0; font-size: 14px; padding-left: 20px; padding-right: 20px; width: 100%; margin-top: 15px;}
	.screen5{padding: 50px 0;}
	.screen5 .left{border: 0; padding: 0;}
	.screen5 .left .title, .screen5 .right .title{font-size: 18px;}
	.screen5 .right{border: 0; padding: 0; background-color: transparent; box-shadow: none;}
	.screen5 .form-title{font-size: 20px;}
	.screen5 .form-title span{font-size: 30px;}
	.screen5 input[type="submit"]{margin-left: 0; font-size: 14px; padding: 15px; width: 325px; display: block; margin-top: 15px;}
	.screen6 .item{width: 100%;}
	.screen7 .h2{font-size: 20px; padding-left: 10px; padding-right: 10px;}
	.screen7 .item::before{left: -10px;}
	.screen7 .btn-popup{padding: 15px; font-size: 16px;}
	.screen8 .item::before{left: 5px;}
	.screen8 .item{padding-right: 10px; padding-bottom: 35px;}
	.screen9 .h2{font-size: 20px; padding-left: 10px; padding-right: 10px;}
	.screen9 .item .left, .screen9 .item .right, .screen9 .item.inverse .left{width: 100%; padding-left: 15px; padding-right: 15px;}
	.screen9 .right .title{padding-top: 15px;}
	.screen9 .right li{font-size: 16px;}
	.screen9 .item.inverse .right .title{padding-top: 0;}
	.screen9 .item.inverse .right{padding-bottom: 15px;}
	.screen10 .calc{padding: 25px 10px;}
	.screen10 .calc .title{font-size: 22px;}
	.screen10 .calc form .left{width: 100%; margin-left: 0;}
	.screen10 .calc form .right{width: 100%; padding-top: 0;}
	.jq-radio:first-child + label{display: inline-block; width: calc(100% - 30px);}
	.screen10 .calc form .right input[type="number"]{margin-top: 15px;}
	.screen10 .calc .res{font-size: 18px;}
	.screen10 .calc .res span{font-size: 20px;}
	.screen10 .btn-popup{font-size: 14px; padding: 15px 10px; margin-top: 20px;}
	.screen11 .h2-descr{font-size: 16px;}
	.screen11 .title{padding-left: 60px; background-position-x: 0;}
	.screen11 .td{font-size: 14px; padding-left: 10px; padding-right: 10px;}
	.screen11 .table-wrap{padding: 0;}
	.screen11 .td .fa{margin-right: 5px;}
	.screen11 .td:last-child{min-width: 115px;}
	.screen11 .btn-popup{font-size: 16px; padding: 15px;}
	.screen11{padding-bottom: 50px;}
	.screen12{padding-top: 50px;}
	.screen12 .benefit span{display: block; font-size: 20px; padding-right: 0;}
	.screen12 .benefit ul{font-size: 16px; max-width: 280px;}
	.screen12 .benefit{padding-bottom: 0;}
	.screen13{padding-top: 50px; padding-bottom: 0;}
	.screen13 .item{max-width: 250px; margin-left: auto; margin-right: auto;}
	.screen14 .h2{font-size: 20px;}
	.screen14{background-image: none; padding-bottom: 50px;}
	.screen14 .left, .screen14 .right{max-width: initial;}
	.screen14 .left .item, .screen14 .item{text-align: left;}
	.screen14 .item{font-size: 18px; padding-bottom: 25px;}
	.screen14 p{padding-top: 30px;}
	.screen15 .h2-descr{font-size: 18px;}
	.screen15 .h2-descr span{font-size: 22px; padding-bottom: 0;}
	.screen15 input[type="text"]{margin-right: 0; display: block; margin-top: 15px; margin-left: auto; margin-right: auto;}
	.screen15 input[type="submit"]{padding: 15px 25px; margin-top: 15px;}
	.screen15{padding-top: 50px;}
	.screen16{padding: 50px 0;}
	.screen16 .q-item{padding-top: 25px; padding-bottom: 25px;}
	.screen16 .q-item::before{top: 23px;}
	.screen16 .q-item .title{font-size: 16px;}
	.screen16 .q-item .txt{font-size: 18px;}
	.screen16 .a-item{padding: 25px 15px;}
	.screen17 .map-form{margin-left: 0; margin-right: 0; padding: 25px;}
	.screen18 .title{font-size: 24px;}
	.screen18 .right{padding-top: 20px;}
	.footer .logo{display: block; margin-right: 0; text-align: center;}
	.footer .address{display: block; width: 100%; text-align: center;}
	.footer .soc + a, .footer .soc{text-align: center;}
	.footer .right{text-align: center; padding-top: 20px;}
	.footer .phone{padding-bottom: 15px;}
	.screen9 .item .left{text-align: center;}
	.screen3 .items .mix .item-img{text-align: center;}
	.screen1 .middle-part .price-descr{margin-left: auto; margin-right: auto;}
	.screen1 .middle-part .top-form input[type="text"],
	.screen1 .middle-part .top-form input[type="text"]:first-child{display: block; margin-left: auto; margin-right: auto;}
	.vhod, .usl{width: 100%; max-width: 400px; margin-left: auto; margin-right: auto; float: none;}
	.calc img{width: 48%;}
	.screen10 .calc{text-align: center;}
	#popup, #popup_order {padding: 40px 20px;}
	.screen1 .menu__col{position: absolute;max-width:0;}

	.news .news__text {font-size: 13px;}

	.footer .footer__socials{
		justify-content: center;
	}

	.screen1 .menu__wrapper {
		position: fixed;
		z-index: 40;
		display: flex;
		align-items: center;
		flex-direction: column;
		left: -350px;
		top: 0;
		bottom: 0;
		background-color: white;
		width: 350px;
		transition: .3s;
	}
	.screen1 .menu__wrapper .menu{
		list-style: none;
		font-size: 0;
		text-align: center;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 100%;
		transition: .3s;
	}
	.screen1 .menu__wrapper .menu li .submenu{
		visibility: hidden;
		display: flex;
		flex-direction: column;
		width: 100%;
		min-width: unset;
		transition: .3s;
		opacity: 0;
		position: static;
		margin: 0 auto;
		transform: none;
		align-items: center;
		overflow: hidden;
		max-height: 0;
	}
	.screen1 .menu li:hover .submenu{
		/* opacity: 0;
		display: flex;
		visibility: hidden;
		height: 0; */
		
	}
	.screen1 .menu__wrapper .menu__overlay{
		display: none;
		position: absolute;
		top: 0;
		left: 350px;
		width: 100vw;
		height: 100%;
		z-index: 15;
		background-color: rgb(0, 0, 0);
		opacity: 0;
		transition: .3s;
	}
	.screen1 .menu_mobile_active{
		left: 0;
	}
	.screen1 .menu_mobile_active .menu__overlay{
		display: block;
		opacity: .75;
	}

	.screen1 .menu__wrapper nav {
		margin-top: 100px;
		width: 100%;
	}

	.screen1 .menu__wrapper .menu li,
	.screen1 .menu__wrapper .menu li .submenu li {
		font-size: 18px;
		width: 100%;
		text-align: start;
		padding: 0;
	}
	.screen1 .menu__wrapper .menu li a,
	.screen1 .menu__wrapper .menu li .submenu li a {
		display: block;
		padding: 25px;
		text-align: start;
		width: 100%;
	}
	.screen1 .menu__wrapper .menu li .submenu li:last-child {
		border-bottom: 1px solid rgb(168, 168, 168);
	}
	
	.screen1 .menu__wrapper .menu li,
	.screen1 .menu__wrapper .menu li a{
		color: black;
	}

	.screen1 .menu__wrapper .menu__close {
		cursor: pointer;
		position: absolute;
		display: block;
		top: 25px;
		right: 25px;
	}

	.screen1 .menu__wrapper .menu li svg polygon {
		fill: #000
	}

	.screen1 .menu li:hover svg{
		transform: none;
	}

	.screen1 .menu__wrapper .menu li .submenu_active{
		opacity: 1;
		visibility: visible;
		align-items: flex-start;
		max-height: 500px;
	}

	.screen1 .menu__wrapper .menu li a svg.rotate-arrow {
		transform: rotate(180deg);
	}

	.screen1 .phone .tel{font-size: 13px;}
	.screen1 .phone .btn-popup_mini{font-size: 10px;}

	.collective {
		padding-top: 75px;
	}

	.collective .collective__wrapper {
		padding-top: 20px;
	}
	
	.collective .collective__text {
		font-size: 14px;
	}
	
	.collective .collective__descr {
		margin-top: 10px;
		font-size: 10px;
	}
	
	.collective span {
		font-size: 29px;
	}

	.s-regions .wrap:before {
		background-position: 100% 100%;
	}

	.s-regions ul {
		width: 100%;
	}

	.s-regions ul li {
		width: 49%;
		margin-right: 1px;
	}

	.news .news__items {
		margin-top: 20px;
		display: grid;
		grid-template-columns: 1fr;
		grid-auto-rows: 266px;
		justify-content: center;
		gap: 15px;
	}
}

@media (max-width: 575px){ 
	.screen1 .menu__wrapper {
		left: -100vw;
		width: 100vw;
	}
	.screen1 .menu_mobile_active{
		left: 0;
	}
	.screen1 .menu_mobile_active .menu__overlay{
		display: none;
	}
	.screen1 .menu_mobile_active nav{
		overflow: scroll;
	}

	.docs .docs__wrapper {
		align-items: center;
		flex-direction: column;
	}

	.docs .docs__wrapper .item {
		width: 80%;
		margin-bottom: 10px;
	}

	.collective {
		padding-top: 40px;
	}

	.collective .collective__wrapper {
		height: auto;
		padding: 20px;
	}
	
	.collective .collective__text {
		font-size: 15px;
	}
	
	.collective .collective__descr {
		margin-top: 10px;
		font-size: 12px;
	}
	
	.collective span {
		font-size: 31px;
		position: relative;
	}

	.collective img {
		display: block;
		position: static;
		margin: 0 auto;
	}

	.s-regions .wrap:before {
		opacity: 0;
	}
}

.pre{
	white-space: pre-wrap;
}

#jGrowl{
	display: none !important;
}

input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


