@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

html, body {
  width: 100%;
  height: 100%;
  font: 14px 'Manrope', Arial, Helvetica, Geneva, sans-serif;
  color: #000;
}
input, textarea, select, button {
  font: 14px 'Manrope', Arial, Helvetica, Geneva, sans-serif;
}

img {
  vertical-align: top;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
input {
  border: 1px solid #ddd;
  padding: 8px 20px;
  color: #000;
  font-weight: 400;
  background: #fff;
  border-radius: 20px;
  font-size: 12px;
  }

input:focus, input:active {
  outline: none;
}
input[disabled], input[readonly]{
	pointer-events:none;
	background: #ddd;
}
input[type=checkbox] {
  position: absolute;
  left: -9999px;
  opacity: 0.01;
}
.modify-checkbox {
  padding-left: 30px;
  font-size: 14px;
  position: relative;
}
input[type=checkbox]+.modify-checkbox:before {
  content: '';
  width: 16px;
  border: 1px solid #000;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
  border-radius: 2px;
}
input[type=checkbox]:checked+.modify-checkbox:before {
	background: #005A9A ;
	border: none;
}
input::-webkit-input-placeholder{
	font-weight:300;
	color:#bbb;
}
input::-moz-placeholder{
	font-weight:300;
	color:#bbb;
}
input:-ms-input-placeholder{
	font-weight:300;
	color:#bbb;
}
input::-ms-input-placeholder{
	font-weight:300;
	color:#bbb;
}
input::placeholder{
	font-weight:300;
	color:#bbb;
}
textarea {
	border: 1px solid #ddd;
	padding: 5px 10px;
	color: #333;
	height: 150px;
	resize: none;
	border-radius: 4px;
	font-size: 16px;
	}
select {
  padding: 8px 15px;
  cursor: pointer;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 400;
  border-radius: 20px;
}
blockquote, q{
	padding-left: 16px;
	position: relative;
	margin: 16px 0 32px;
}
blockquote:before, q:before{
	border-left: 2px solid #005A9A;
	position:absolute;
	left:0;
	height:100%;
	content:"";
}
p {
  margin-bottom: 10px;
}
h1 {
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: 900;
  text-align: left;
}
h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #000;
}
h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 900;
  color: #000;
  margin-top: 25px;
}
a {
  color: #000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  color: #005A9A ;
  text-decoration:none;
}
ul {
  padding-left: 30px;
  margin-bottom: 20px;
}
ul li {
  margin-bottom: 8px;
}
ol {
  padding-left: 30px;
  margin-bottom: 20px;
}
ol li {
  margin-bottom: 10px;
}
e[type="button"] {
  cursor: hand;
  cursor: pointer;
}
table{
	margin: 20px 0;
}
tr:nth-child(2n){
	background: #f1f1f1;
}
td{
	padding:10px;
	border:1px solid #ddd;
}
.button{
	border-radius: 32px;
	padding: 8px 20px;
	cursor: pointer;
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
	font-weight: 400;
	text-decoration: none;
	background: #fff;
	border: 1px solid #005A9A;
	font-size: 14px;
	color: #005A9A;
	text-align: center;
	font-weight: 500;
}
.button:hover{
	background: #005A9A ;
	color:#fff;
}
.button_right{
	float:right;
}
.popups {
  position: fixed;
  top: 0px;
  left: 0px;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}
.popups__shadow {
  background: rgba(0, 0, 0, 0.79);
  z-index: 10;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup__body {
  display: none;
  max-width: 650px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  position: absolute;
  top: 16px;
  z-index: 10;
  background: #fff;
  border: 1px solid #005A9A;
  padding: 40px 50px;
  overflow-y: auto;
  max-height: 690px;
  border-radius: 10px;
  width: 100%;
}
.popup__body_big{
	width: 800px;
}
.popup__body_city {
	width:800px;
}
.popup__title {
  font-size: 25px;
  margin-bottom: 20px;
  font-weight: 700;
}
.popup__minititle {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}
.popup__alert{
	float:left;
	width:100%;
	font-weight:700;
	margin:10px 0;
}
.popup__notice{
	margin-bottom: 20px;
	font-size: 16px;
	color: #000a93;
}
.popup__left{
	margin-bottom: 20px;
	float: left;
	width: 100%;
}
.popup__right{
	
}
.popup__subdivision{
	float: left;
	width: 100%;
	font-weight: 500;
	margin-bottom: 10px;
	font-size: 18px;
}
.popup__map{
	
}
.form__row {
  width: 100%;
  float: left;
  margin-top: 25px;
}
.form__label{
	width: 100%;
	float: left;
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 700;
}
.form__select{
	
}
.form__input, .form__select, .form__textarea{
	width: 100%;
}
.form__inform{
	width:100%;
	margin-top:20px;
	float:left;
	color:#d30000;
	font-weight:700;
}
.form__row-last{
	overflow:hidden;
}
.popup__button{
  cursor: pointer;
  float: left;
  width: 100%;
  padding: 12px 30px;
  margin-top: 20px;
}
.popup__close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 16px;
  right: 16px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  cursor: pointer;
}
.popup__close:before {
  content: '';
  width: 100%;
  height: 2px;
  background: #005A9A ;
  position: absolute;
  top: 7px;
  left: 0px;
}
.popup__close:after {
  content: '';
  height: 100%;
  width: 2px;
  background: #005A9A ;
  position: absolute;
  top: 0px;
  left: 7px;
}
.popup__text-main{
	font-size: 16px;
	line-height: 22px;
}
.popup__text_city{
	margin-bottom:20px;
	-webkit-column-count: 3;
	   -moz-column-count: 3;
	        column-count: 3;
	float: left;
	width: 100%;
}
.popup__cityItem{
    padding: 0 4px;
    line-height: 30px;
    width: 100%;
    display: block;
    float: left;
}
.clearfix:after {
  content: '';
  width: 100%;
  display: table;
}
.container {
	max-width: 1580px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}
.container:after {
  content: '';
  width: 100%;
  display: table;
}
.wrapper{
	margin:0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}
.wrapper__content{-webkit-box-flex: 1;-ms-flex: 1 0 auto;flex: 1 0 auto;overflow-x: hidden;}
.wrapper__content_padding{
	padding-bottom:20px;
}
.wrapper__content_background{
	background-image: url('../images/background_in_2_opacity.png');
	background-repeat: repeat-y;
	background-size: 100%;
}
.main{
	float:left;
	width:100%;
	margin-top: 60px;
}
.header{position: fixed;width: 100%;z-index: 200;-webkit-box-flex: 0;-ms-flex: 0 0 auto;flex: 0 0 auto;}
.headerTop__contacts{
	float: left;
	padding-top: 5px;
	font-size: 14px;
}
.header__contacts{
	float: right;
	padding: 10px 0;
	margin-right: 16px;
}
.header__contact{
	float: left;
	font-size: 16px;
	color: #000;
	font-weight: 500;
	margin-left: 16px;
}
.header__contact i{
	float: left;
	margin-right: 4px;
}
.headerTop__phone{
	text-decoration: none;
	margin-left: 4px;
	color: #000;
	float: left;
}
.headerTop__text{
	font-size: 11px;
	color: #777;
	margin-top: 4px;
	font-weight: 400;
}
.headerTop__callback{
	margin-top: 0px;
	color: #000;
	float: right;
	cursor: pointer;
	border-bottom: 1px dotted;
}
.headerTop__booking{
	float: right;
	margin-top: 4px;
	animation: blinkbutton 2s infinite linear;
}
@keyframes blinkbutton {
  	0% {
  	    box-shadow: 0 0 0 0 #005a9a82;
	}
  	50% {
        box-shadow: 0 0 4px 1px #005a9a82
  	}
  	100%{
  		box-shadow: 0 0 0 0 #005a9a82;
  	}
}
.header__social{
	color: #fff;
	text-decoration: none;
	border-radius: 40px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-right: 10px;
	float: right;
	font-size: 22px;
	background: #128C7E;
}
.header__social_tg{
	background: #2AABEE;
}
.header__social:hover{
	color:#fff;
	opacity:0.8;
}
.search{
	float: left;
	position: relative;
	margin-top: 4px;
	width: 250px;
}
.search__form{
	
}
.search__input{
	float: left;
	width: 100%;
	background: #fff;
	font-size: 14px;
	border: 1px solid #777;
}
.search__button{
	position: absolute;
	right: 2px;
	border: none;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkY3MDAyRjhBMDBEOTExRTdCOUQ5ODI0QUU0NzNFRUU4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkY3MDAyRjhCMDBEOTExRTdCOUQ5ODI0QUU0NzNFRUU4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RjcwMDJGODgwMEQ5MTFFN0I5RDk4MjRBRTQ3M0VFRTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RjcwMDJGODkwMEQ5MTFFN0I5RDk4MjRBRTQ3M0VFRTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5oeSCdAAABXUlEQVR42qySsUoDQRRFk8WIgpVgBGu1M41ok8JKERvBVjFVCj8giH6AItFOfyCgVqIGsVUJpPEDgo2QTrSIoKYRXM/IXRiXfYtCBg6X3Z05M+/NZsMwzPRi9PkP25u7/UQZSlCAHLThHKo7e1tPligbnQjJGFGHaWPuK6wguzFFOklTkk84hEvoQhEq4Db6gBlkLau0sidZYOKtN+eejU7IBkzCASzFRYGypDyKSX4G756JDT0uIh61RAXlRcrFuA3eXDtgyhLllF3Lwqm+vO8DlqitLFoiyhknopIeLdGZspJUP+9cOft6fICWJXKTOrriBgvnIZBkQj/ksubWKTNM+yHniCsY0rd39SQfW+N6tY7sOOlErpl3xCxcQyhh3iunKolbU2Pj1cQTxXoyoisedI2N/mQtrknmpGt8OzVFaSMm6yAa/lXaX4d642Qv3m3//0TWCDI9Gt8CDACL9H7I++CZQwAAAABJRU5ErkJggg==');
	background-color: #fff;
	padding: 8px 20px;
	top: 2px;
}
.headerBot{
	float: left;
	width: 100%;
	position: relative;
	padding: 0;
	border-bottom: 1px solid #ddd;
	background: #fff;
	padding: 12px 0;
}
.header__logo{
	float: left;
	width: 232px;
	z-index: 10;
	position: relative;
}
.catalog__wrapper{
    float: left;
    margin: 0 20px;
}
.catalog__icon{
	float: left;
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	margin-top: 4px;
}
.catalog__icon_active{
	background: #005A9A;
	color: #fff;
}
.catalog__icon i{
	float: left;
}
.catalog__iconTitle{
	float: left;
	margin-left: 10px;
}
.catalogMenuWrapper{float: left;position: absolute;top: 59px;left: 0;background: #fff;z-index: 100;width: 100%;transition: 0.1s;visibility: hidden;opacity: 0;padding: 32px;box-shadow: 0px 1px 2px rgb(0 0 0 / 35%);/* background: #f7f7f7; */min-height: 550px;overflow-y: auto;}
.catalogMenuWrapper_active{
	visibility: visible;
	opacity: 1;
}
.catalogMenu{position: relative;width: 300px;float: left;border-right: 1px solid #f1f1f1;}
.catalogMenu__block{
	float: left;
	width: 100%;
}
.catalogMenu__block_relative{
	position:relative;
}
.catalogMenu__image{
	float: left;
	width: 35px;
	margin-top: 8px;
}
.catalogMenu__Item{
	float: left;
	cursor: pointer;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 16px;
}
.catalogMenu__Item_selected, .catalogMenu__Item:hover{color: #005A9A;}
.catalogMenu__sub1{
	position: absolute;
	width: 900px;
	left: 300px;
	top: 0;
	display: none;
	column-count: 3;
	padding-left: 30px;
	padding-top: 10px;
}
.catalogMenu__block:hover .catalogMenu__sub1{
	display:block;
}
.catalogMenu__sub1 .catalogMenu__block{
    -webkit-column-break-inside: avoid;
    width: 100%;
    margin-bottom: 10px;
}
.catalogMenu__sub2 .catalogMenu__block{
	-webkit-column-break-inside: unset;
	width: 100%;
	margin-bottom: 0;
}
.catalogMenu__sub1 .catalogMenu__block:nth-last-child(1){
	margin-bottom:0;
}
.catalogMenu__sub1 .catalogMenu__block:hover{
	background: none;
}
.catalogMenu__sub1 .catalogMenu__block .catalogMenu__Item{
	width:100%;
	font-size: 14px;
	color: #000;
	padding: 8px 20px;
}
.catalogMenu__sub2{
}
.catalogMenu__sub2 .catalogMenu__block .catalogMenu__Item{
	font-size: 14px;
	font-weight: 400;
	padding: 5px 20px;
}
.catalogMenu__sub1 .catalogMenu__Item:hover{
	color: #005A9A ;
}
.slider__item{
	position: relative;
	overflow: hidden;
}
.slider__item:hover{
	opacity:1;
}
.slick-center.slider__item{
	opacity:1;
}
.slider__body{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 20;
	color: #fff;
	font-size: 20px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: -webkit-center;
	width: 100%;
}
img.slider__image{
}
.slider__content{
	max-width: 650px;
	background: #fffffff2;
	padding: 32px;
	border-radius: 20px;
	display: inline-block;
	vertical-align: top;
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}
.slider__title{
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}
.slider__button{
	font-size: 16px;
	color: #fff;
	margin-top: 16px;
	padding: 12px 40px;
	display: inline-block;
	vertical-align: top;
	color: #005a9a;
}
.slider__button:hover{
	background:#fff;
	color: #005A9A ;
}
.slider__back, .main__bannerBack{
	background-repeat:repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 10;
	background-color: #000;
}
.mainblock{
	float:left;
	width:100%;
	padding: 55px 0;
}
.mainblock:nth-child(2n){
	/* background: #f7f7f7; */
	/* border-bottom: 1px solid #ddd; */
}
.mainblock:nth-last-child(1){
	/* margin-bottom:0; */
}
.mainregister__button{
	display: block;
	vertical-align: top;
	margin: 0 auto;
	width: 270px;
	text-align: center;
	padding: 12px 30px;
	margin-top: 30px;
}
.main__body{
	display: block;
	vertical-align: top;
	float: left;
	width: 100%;
	margin-top: 30px;
}
.main__titleBlock{
	float:left;
	width:100%;
	text-align: center;
}
.main__title{
	font-size: 34px;
	color: #000;
	margin-bottom: 40px;
	font-weight: 900;
	display: block;
	text-decoration: none;
	float: left;
	width: 100%;
}
.main__title_center{
	text-align:center;
}
.main__titleLink{
	color: #005A9A ;
	float: right;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px dotted;
	font-size: 16px;
}
.maintext__h1{
	font-size: 30px;
	font-weight: 500;
}
.maintext__body{
	float: left;
	width: 65%;
	margin-right: 5%;
	line-height: 140%;
	color: #000;
	font-size: 16px;
	text-align: justify;
}
.maintext__image{
	float:right;
	width: 30%;
	border-radius: 4px;
	overflow: hidden;
	max-width: 370px;
}
.service__items{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
	margin-bottom: 20px;
}
.service__item{
	float: left;
	width: 32%;
	margin: 0 2% 16px 0;
	-webkit-box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	background: #e8f0ff;
	text-align: center;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	padding: 30px 20px;
	background-size: cover;
	background-repeat: no-repeat;
}
.service__item:nth-child(1n){
	background-image: url('../images/background_bottom_green.png');
}
.service__item:nth-child(2n){
	background-image: url('../images/background_bottom_green.png');
}
.service__item:nth-child(3n){
	margin-right:0;
}
.service__item:hover .service__back{
	opacity:0.2;
}
.service__name{
	font-weight: 900;
	text-decoration:none;
	font-size: 16px;
	text-transform: uppercase;
	float:left;
	width:100%;
}
.popularservice__items{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
	margin-bottom: 20px;
}
.popularservice__item{
	float: left;
	width: 23%;
	box-shadow: 0px 0px 2px rgb(0 0 0 / 45%);
	background: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 0 1% 20px;
}
.popularservice__item_3{
	width: 23%;
}
.popularservice__item_5{
	width: 20%;
}
.popularservice__item_3:nth-child(4n){
	margin-right:0;
}
.popularservice__item:hover .popularservice__back{
	opacity:0.2;
}
.popularservice__item:hover .popularservice__name{
	background: #fff;
}
.popularservice__image{float: left;width: 100%;position: relative;overflow: hidden;}
.popularservice__item img{
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
}
.popularservice__item:hover img{
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}
.popularservice__name{
	font-weight: 900;
	text-decoration:none;
	font-size: 14px;
	text-transform: uppercase;
	float:left;
	width:100%;
	padding: 16px;
}
.popularservice__back{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: #000; */
	/* opacity: 0.1; */
	z-index: 5;
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
	display: none;
}
.popularservicelist__items{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
	margin-bottom: 20px;
}
.popularservicelist__item{
	float: left;
	width: 31%;
	margin: 0 2% 16px 0;
	-webkit-box-shadow: 1px 1px 3px rgb(0 0 0 / 25%);
	box-shadow: 1px 1px 3px rgb(0 0 0 / 25%);
	background: #f9f9f9;
	text-align: center;
	position: relative;
	border-radius: 4px;
	padding: 22px 20px;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
}
.footer{
	background: #f7f7f7;
	padding: 50px 0;
	color: #000;
	float: left;
	width: 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
}
.footer_nomargin{
	margin-top:0;
}
.footer__top{
	width: 100%;
	float: left;
}
.footer__col{
	float: left;
	width: 25%;
	padding: 0 16px;
}
.footer__head{
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 18px;
	float: left;
	width: 100%;
	color: #000;
}
.footer__logo{
	float: left;
	width: 100%;
	max-width: 220px;
	margin-bottom: 24px;
}
.footer__logo img{
}
.footer__item{
	margin-bottom: 16px;
	display: block;
	text-decoration: none;
	color: #000;
	float: left;
	width: 100%;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	font-size: 14px;
}
.footer__item:hover{
	color: #005A9A ;
}
.footer__button{
	padding: 12px 32px;
	\: #e5f4ff;
	\: #fff;
	font-size: 14px;
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 10;
}
.footer__link{
	display: block;
	margin-bottom: 16px;
	text-decoration: none;
	color: #000;
	float: left;
	width: 100%;
	font-size: 14px;
}
.footer__link:hover{
	color: #005A9A ;
}
.footer__bottom{
	width: 100%;
	float: left;
	text-align: left;
	margin-top: 40px;
	color: #999;
}
.footer__bottomBlock{
	float: left;
	width: 100%;
}
.footer__bottomDesc{
	font-size: 15px;
}
.footer__bottomDesc a{
	color: #fff;
	text-decoration: none;
}
.footer__bottomDesc img{
	width: 44px;
	margin-right: 5px;
	position: relative;
	top: -8px;
}
.footer__bottomOffer{
	float: left;
	width: 100%;
	font-size: 14px;
}
.footer__socials{
	float: left;
	width: 100%;
	margin-top: 20px;
}
.footer__social{
	color: #fff;
	text-decoration: none;
	border-radius: 40px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-right: 10px;
	float: left;
	font-size: 22px;
	background: #005A9A ;
}
.footer__social_tg{
	background:#2AABEE;
}
.footer__social_youtube{
	background:#FF0000;
}
.footer__social_wa{
	background:#128C7E;
}
.footer__social:hover{
	color: #fff;
	opacity:0.8;
}
.path{
	padding: 26px 0 26px;
}
.path__item{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #999;
	text-decoration: none;
	font-weight: 300;
}
.path__item:nth-last-child(1){
	text-decoration:none;
}
.path__item-arrow{
	display: inline-block;
	vertical-align: top;
	margin: 0 8px;
}
.h1block{
	width: 100%;
}
.h1block h1{
	font-size:30px;
	margin-bottom: 30px;
	float:left;
}
.pagination{
	text-align: center;
	overflow: hidden;
	float: left;
	width: 100%;
	margin-top: 20px;
}
.pagination_right{
	float: right;
	margin-bottom: 0;
}
.pagination__item {
	text-decoration: none;
	color: #000;
	margin-left: 10px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	padding: 8px;
}
.pagination__item:hover, .pagination__item_selected{
	color: #005A9A ;
}
.tiny-services{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
}
.productpage__top{
	position: relative;
}
.productpage__price{
	font-size: 32px;
	font-weight: 900;
	margin-bottom: 20px;
}
.productpage__annotation{
	float: left;
	width: 100%;
	text-align: left;
	margin-bottom: 20px;
}
.ya-share2{
	float:left;
	width:100%;
	margin-top:20px;
}
.productpage__title{
	font-weight: 900;
	margin-bottom:10px;
	float:left;
	width:100%;
	font-size: 22px;
}
.productpage__body{
	float:left;
	width:100%;
	line-height: 140%;
	margin-top: 16px;
	font-size: 16px;
}
.productpage__button{
	display: inline-block;
	vertical-align: top;
	padding: 12px 22px;
	float: left;
	width: 220px;
	text-align: center;
}
.productpage__description{
	float:
	left;
	width:100%;
}
.b_contacts-big{
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    line-height: 32px;
}
.infopage_ul{
    list-style-type: none;
    padding-left: 0;
    margin: 8px auto;
}
.maincategories{
	margin-bottom:0;
	position:relative;
}
.maincategories__items{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: center;
}
.maincategories__item{
	float: left;
	width: 31%;
	-webkit-box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	text-align: center;
	position: relative;
	border-radius: 2px;
	text-decoration: none;
	background-size: cover;
	overflow:hidden;
	margin-bottom: 20px;
	margin: 0 1% 20px;
}
.maincategories__item_mini{
	background: #005A9A!important;
}
.maincategories__item{
	background-image: url('../images/main_service_back_full.png');
	background-size: cover;
}
.maincategories__item:nth-child(2n){
	background-image: url('../images/main_service_back_full.png');
	background-size: cover;
}
.maincategories__right{
	float: left;
	width: 100%;
	padding: 40px 32px;
}
.maincategories__item_mini .maincategories__right{
	padding:20px;
}
.maincategories__item_mini .maincategories__name{
	margin:0;
}
.maincategories__name{
	font-weight: 700;
	text-decoration:none;
	font-size: 18px;
	/* text-transform: uppercase; */
	float:left;
	width:100%;
	color: #000;
}
.maincategories__sub{
	float: left;
	width: 100%;
	text-align: left;
}
.maincategories__subName{
	text-decoration: none;
	padding: 4px 0;
	margin-right: 8px;
	color: #fff;
	width: 100%;
	display: block;
	font-size: 16px;
	padding-left: 20px;
	position: relative;
	font-weight: 500;
}
.maincategories__subName:before{
	content:'-';
	position:absolute;
	top:0;
	left:0;
	color: #fff;
	font-weight:900;
}
.maintext{
	position:relative;
	opacity:0;
}
.productpage__info{
	position:relative;
	opacity:0;
	left: 0;
	float: left;
	width: 100%;
}
.productpageBlock{
	border: 1px solid #ecf2f4;
	padding: 50px;
	float: left;
	width: 100%;
}
.productpage__infoRight{
	float: left;
	width: 100%;
}
.container-left{
	width: 20%;
	float: left;
	position:relative;
	opacity:0;
}
.container-right{
	width: 80%;
	float: right;
	position:relative;
	opacity:0;
	padding-left: 40px;
}
.container-right_full{
	width:100%;
	padding-left: 0;
}
.leftCatalog{
	float: left;
	width: 100%;
	border-radius: 2px;
	-webkit-box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 15%);
	box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 15%);
	background: #fff;
}
.leftCatalog__block{
	position:relative;
	float:left;
	width:100%;
	padding: 16px 32px 16px 20px;
	border-bottom: 1px solid #ddd;
}
.leftCatalog__block:hover, .leftCatalog__block_selected{
	background: #f9f9f9;
}
.leftCatalog__block:nth-last-child(1){
	margin-bottom:0;
}
.leftCatalog__sub .leftCatalog__block{
	border-bottom:none;
	padding: 8px 20px 8px 10px;
}
.leftCatalog__header{
	font-weight:500;
	font-size:18px;
	margin-bottom:10px;
}
.leftCatalog__item{
	float: left;
	display: block;
	width: 100%;
	text-decoration: none;
	font-size: 14px;
	padding: 0px 0px 0px;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	font-weight: 400;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.leftCatalog__item:hover, .leftCatalog__item_selected{text-shadow: 0 0 1px #000;color: #000;}
.leftCatalog__sub{
	display:none;
}
.leftCatalog__sub .leftCatalog__item{
	font-weight: 400;
	text-transform: inherit;
	color: #555;
	font-size: 14px;
}
.leftCatalog__sub .leftCatalog__item_selected{
	color:#000;
}
.leftCatalog__sub .leftCatalog__item:hover{}
.leftCatalog__item_selected + .leftCatalog__sub{
	display:block;
	width: 100%;
	float: left;
	margin-top: 10px;
}
.leftCatalog__sub2{
	padding-left:10px;
}
.leftCatalog__sub2 .leftCatalog__item{
	margin-bottom:8px;
}
.leftCatalog__item_selected ~ .leftCatalog__icon{
	-webkit-transform: rotateZ(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotateZ(180deg);
	vertical-align: bottom;
}
.leftCatalog__icon{
	display:none;
	position:absolute;
	right: 10px;
	color:#000;
	font-size: 16px;
	width: 20px;
	text-align: center;
	cursor: pointer;
}
.leftCatalog__icon i{
	font-weight:700;
}
.slider__main{
	float: left;
	width: 100%;
}
.slider__arrows{
	float: right;
	width: 175px;
	position: absolute;
	bottom: -80px;
	right: 60px;
}
.slider__nav{
	width: 40px;
	height: 40px;
	border-radius: 100%;
	text-align: center;
	background: #fff;
	border: 1px solid #005A9A ;
	line-height: 36px;
	font-size: 22px;
	color: #005A9A ;
	cursor: pointer;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	z-index: 20;
}
.slider__nav:hover{
	background: #005A9A ;
	color: #fff;
}
.slider__nav_prev{
	left: 0;
	padding-right: 2px;
}
.slider__nav_next{
	right: 0;
	padding-left: 2px;
}
.news{
	position: relative;
	opacity: 0;
}
.allnews{
	float:left;
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
}
.news__slider{
	float:left;
	width:100%;
}
.news__slider .slick-track{
	float:left;
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
}
.news__item{
	float: left;
	width: 23%;
	margin-right:32px;
	position: relative;
	padding-bottom: 55px;
	overflow: hidden;
	border-radius: 2px;
	background: #fff;
	text-align: left;
	-webkit-box-shadow: inset 0px 0px 0px 1px rgb(0 0 0 / 15%);
	box-shadow: inset 0px 0px 0px 1px rgb(0 0 0 / 15%);
}
.allnews .news__item{
	margin-right: 2%;
	margin-bottom: 40px;
}
.allnews .news__item:nth-child(4n){
	margin-right:0;
}
.news__item_nopadding{
	padding-bottom:0;
}
.news__item:nth-child(4n){
}
.news__item img{
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
	width: 100%;
	max-height: none;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
.news__item:hover img{-webkit-transform: translate(-50%,-50%) scale(1.1);-ms-transform: translate(-50%,-50%) scale(1.1);transform: translate(-50%,-50%) scale(1.1);}
.news__image{
	width: 100%;
	position: relative;
	text-align: center;
	overflow: hidden;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	display: block;
	text-decoration: none;
	height: 200px;
}
.news__cont{
	float:left;
	width:100%;
}
.news__header{
	font-size: 16px;
	font-weight: 700;
	padding: 20px 20px 10px;
	text-decoration: none;
	display: block;
	float: left;
	width: 100%;
	text-decoration: none;
}
.news__text{
	margin-bottom: 10px;
	padding: 0 20px;
	float: left;
	width: 100%;
	font-size: 14px;
	color: #555;
}
.news__date{
	float: left;
	color: #000;
	font-size: 14px;
	padding: 8px 20px;
	position: absolute;
	bottom: 16px;
	width: 100%;
	display: block;
}
.news__button{
	float:left;
	position: absolute;
	bottom: 20px;
	left: 20px;
}
.advantagesBlock{
	color: #000;
	position: relative;
	opacity: 0;
}
.advantagesBlock__text{
	float: left;
	width: 100%;
}
.advantages{
	float: left;
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: center;
}
.advantages__item{
	float:left;
	width: 23%;
	margin: 0 1%;
	text-align: center;
	margin-bottom: 32px;
	-webkit-box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
	padding: 32px 16px;
	position: relative;
}
.productsAdvantages .advantages__item{
	width:48%;
	margin-bottom: 32px;
}
.productsAdvantages .advantages__item:nth-child(2n){
	margin-right:0;
}
.advantages__image{
	max-width: 145px;
	display: inline-block;
	vertical-align: top;
}
.advantages__image img{
	
}
.advantages__right{
	width: 100%;
	float: left;
	margin-top: 16px;
	text-align: left;
}
.advantages__header{
	font-weight: 500;
	font-size: 16px;
	text-align: center;
}
.advantages__text{
	color: #000;
	font-size: 14px;
	text-align: center;
	position: absolute;
	background: #f7f7f7;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: 0.2s;
	padding: 20px;
}
.advantages__item:hover .advantages__text{
	opacity:1;
}
.productspersons{
	float:left;
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
}
.persons__item{
	float: left;
	width: 33%;
	margin-bottom: 50px;
	position: relative;
	padding-bottom: 64px;
	overflow: hidden;
	background: #fff;
	text-align: left;
	box-shadow: 0px 0px 2px rgb(0 0 0 / 35%);
	margin-bottom: 50px;
}
.persons__item:nth-child(3n){
	margin-right:0;
}
.persons__item img{
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
}
.persons__item:hover img{
	-webkit-transform:
	scale(1.1);
	    -ms-transform:
	scale(1.1);
	        transform:
	scale(1.1);
}
.persons__image{
	width: 100%;
	position: relative;
	text-align: center;
	overflow: hidden;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	display: block;
}
.persons__cont{
	float:left;
	width:100%;
	padding: 0 20px;
	margin: 20px 0 10px;
}
.persons__header{
	font-size: 16px;
	font-weight: 400;
	text-decoration: none;
	display: block;
	float: left;
	width: 100%;
	padding: 4px 0 10px;
}
.persons__button{
	position: absolute;
	bottom: 20px;
	left: 20px;
}
.persons__text{
	float: left;
	width: 100%;
	font-size: 14px;
	color: #999;
}
.persons__date{
	float: left;
	color: #777;
	font-size: 14px;
	padding: 8px 20px;
	position: absolute;
	bottom: 16px;
	width: 100%;
	display: block;
}
.post__image{
	float:left;
	max-width: 410px;
	margin:0 32px 32px 0;
	width: 100%;
}
.personpage {
	float:left;
	width:100%;
	margin-bottom:32px;
	padding-bottom:32px;
}
.personpage__top{
	float: left;
	width: 100%;
	border-radius: 2px;
	background: #fff;
}
.personpage__left{
	float: left;
	margin: 0 20px 20px 0;
	max-width: 300px;
	position: relative;
	opacity: 0;
	width: 50%;
}
.personpage__right{
	float: left;
	width: 50%;
	position: relative;
	opacity: 0;
}
.personpage__item{
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
.personpage__textvalue{
	font-size: 14px;
	color: #999;
}
.personpage__name{
	font-size: 20px;
}
.personpage__desc{
	float:left;
	width:100%;
	position: relative;
	opacity: 0;
	font-size: 16px;
	line-height: 140%;
	font-weight: 300;
}
.personpage__desc strong{
	font-weight:900;
}
.personpage__annotation{
	font-size: 16px;
	line-height: 140%;
	font-weight: 300;
}
.personpage__title{
	float: left;
	width: 100%;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}
.pageblock{
	float: left;
	width: 100%;
	margin-top: 40px;
}
.pageblock__header{
	font-size: 25px;
	font-weight: 900;
	margin-bottom: 32px;
}
.products__top{
	float: left;
	width: 100%;
}
.products__content{
	float:left;
	width:100%;
	line-height: 140%;
	text-align: justify;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 300;
}
.products__content img{
	width: revert-layer;
}
.title_bar {
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px
}
.new_li_no{
	float:left;
	width:100%;
	padding-left: 20px;
	margin-bottom: 32px;
	text-align: left;
}
.new_li_no li{
	float:left;
	width: 40%;
	margin-right: 5%;
}
.products__left{
	float: left;
	width: 100%;
}
.products__button{
	max-width: 250px;
	padding: 10px 20px;
	float: left;
	margin-right: 16px;
}
.products__contacts{
	float: left;
	width: 100%;
	margin-bottom: 20px;
}
.searchCategories{
	float: left;
	width: 100%;
}
.searchCategories__item{
	margin: 0 20px 20px 0;
}
.searchCategories__item a{
	text-decoration:none;
	border-bottom:1px dotted;
}
.license{
	float:left;
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
}
.license__item{
	width:31%;
	margin:0 1%;
	-webkit-box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	        box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	margin-bottom:32px;
}
.pagecontacts{
	float:left;
	width:100%;
	margin-top:20px;
}
.pagecontacts__item{
	float:left;
	width:100%;
	margin-bottom:32px;
	-webkit-box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	        box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	padding:32px;
}
.pagecontacts__title{
	float:left;
	width:100%;
	font-size:18px;
	margin-bottom:20px;
	font-weight:700;
}
.pagecontacts__text{
	float:left;
	width:100%;
}
.cat-specialists{
	float:left;
	width:100%;
	margin-top:20px;
}
.products__header{
	float: left;
	width: 100%;
	font-size: 25px;
	font-weight: 800;
	margin-bottom: 20px;
	margin-top:20px;
}
.products__header:nth-child(1){
	margin-top:0;
}
.products__banner{
	float: left;
	width: 100%;
	margin-bottom: 32px;
	height: 320px;
	position: relative;
	overflow: hidden;
}
.products__banner img{
	position:absolute;
	top: 50%;
	left: 50%;
	max-height: none;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
	width: 100%;
}
.products__image{
	float:left;
	margin:0 32px 32px 0;
	max-width: 350px;
}
.cat-prices{
	float:left;
	width:100%;
}
.tiny-products{
	float: left;
	width: 100%;
	margin-bottom: 32px;
}
.product{
	float: left;
	width: 100%;
	padding: 16px 32px;
	border: 1px solid #ecf2f4;
	border-bottom: none;
	font-size: 16px;
	background: #fff;
	cursor: pointer;
}
.product:nth-last-child(1){
	border-bottom: 1px solid #ecf2f2;
}
.product__name{
	float: left;
	width: 100%;
	font-weight: 900;
	text-decoration: underline;
}
.product__price{
	float: right;
	margin-right: 20px;
}
.product__button{
	float: right;
}
.product__button_left{
	float:left;
}
.product__left{
	float: left;
	width: 70%;
	margin-top: 5px;
}
.product__description{
	float: left;
	width: 100%;
	margin-top: 10px;
	display:none;
	font-weight: 300;
	padding-top: 10px;
}
.product__description p{
	margin-bottom: 4px;
}
.product__right{
	float: left;
	width: 30%;
	padding-left: 32px;
}
.product__icon{
	float: right;
}
.productsAdvantages{
	margin-top:20px;
	float: left;
	width: 100%;
}
.allservices{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
	float: left;
}
.allservices__item{
	float: left;
	width: 100%;
	margin-bottom: 32px;
}
.allservices__item:nth-child(2n){
	margin-right:0;
}
.allservices__image{
	float: left;
	width: 100%;
	position:relative;
	overflow:hidden;
}
.allservices__image img{
	/* position:absolute; */
	/* max-width: none; */
}
.allservices__name{
	font-weight: 700;
	text-decoration:none;
	font-size: 20px;
	float:left;
	width:100%;
	margin-bottom: 20px;
}
.allservices__sub{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
	margin-top: 20px;
	float: left;
}
.allservices__subItem{
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 40px;
	background: #fff;
	-webkit-box-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
	        box-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
	background: #f8f8f8;
}
.allservices__subItem:nth-child(3n){
	margin-right:0;
}
.allservices__subName{
	text-decoration: none;
	color: #000;
	padding: 20px;
	float: left;
	width: 100%;
	font-weight: 600;
	font-size: 16px;
}
.animateopacity{
	opacity:0;
}
.gallery{
	
}
.gallery__item{
	float: left;
	width: 100%;
	margin-bottom: 32px;
}
.gallery__name{
	float: left;
	width: 100%;
	margin-bottom: 10px;
	font-size: 16px;
}
.gallery__image{
	float: left;
	max-width: 320px;
}
.photo{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
}
.photo__item{
	float: left;
	width: 31%;
	margin-right: 2%;
	margin-bottom: 32px;
	text-align: center;
}
.photo__name{
	float: left;
	width: 100%;
	font-size: 16px;
	margin-top: 10px;
}
.photo__image{
    display: inline-block;
    vertical-align: top;
}
.documents{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
}
.documents__item{
	float: left;
	width: 23%;
	margin-bottom: 32px;
	font-size: 16px;
	padding: 20px 20px 70px 20px;
	border: 2px solid #005A9A;
	margin-right: 2%;
	text-decoration: none;
	position: relative;
	box-shadow: -6px 8px 0 #F5A258;
	border-radius: 10px;
	transition: 0.2s;
}
.documents__item:hover{
	box-shadow: 0px 0px 0 #F5A258;
	background: #F5A258;
	color: #fff;
	/* border-color: #ffddcf; */
}
.documents__name{
	
}
.documents__ext{
	position: absolute;
	right: 20px;
	font-size: 40px;
	color: #005A9A;
	font-weight: 900;
}
.documents__item:hover .documents__ext{
	color:#fff;
}
.equipments{
	position: relative;
	width: 100%;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: distribute;
	-webkit-box-pack: center;
	justify-content: left;
	float: left;
}
.equipments__item{
	float: left;
	width: 100%;
	padding: 32px;
	box-shadow: 0px 0px 1px rgb(0 0 0 / 75%);
}
.equipments__image{
	width: 10%;
	float: left;
}
.equipments__content{
	float: left;
	width: 70%;
	padding: 0 20px;
}
.equipments__name{
	text-decoration: none;
	font-weight: 400;
	margin-bottom: 20px;
	display: block;
	float: left;
	width: 100%;
	font-size: 18px;
}
.equipments__description{
	float: left;
	width: 100%;
	color: #999;
}
.equipments__button{
	float: left;
	width: 20%;
}
.subdivisions{
	float: left;
	width: 100%;
	font-size: 16px;
}
.subdivisions__left{
	float: left;
	width: 35%;
	padding-right: 20px;
}
.subdivisions__right{
	float: left;
	width: 65%;
}
.subdivisions__concact{
	float: left;
	width: 100%;
	margin-bottom: 16px;
}
.subdivisions__title{
	float: left;
	font-weight: 700;
	margin-bottom: 8px;
}
.subdivisions__title a{
	top:5px;
}
.subdivisions__value{
	float: left;
	margin-left: 8px;
	text-decoration: none;
	border-bottom: 1px dotted;
}
.subdivisions__socials{
	float:left;
	width:100%;
}
.subdivisions__social{
	font-size: 32px;
	margin-left: 10px;
	position: relative;
	top: -10px;
}
.subdivisions__social_wa{
	color: #128C7E;
}
.subdivisions__social_tg{
	color: #29333D;
}
.subdivisions__social_yt{
	color: #FF0000;
}
.products__images{
	display:inline-block;
	vertical-align:top;
	width:100%;
}
.products__images img{
	float:left;
	max-width:350px;
	margin-right:10px;
}
.partners__item{
	float: left;
	width: 100%;
	position: relative;
	padding: 32px 100px 32px 32px;
	overflow: hidden;
	border: 1px solid #ecf2f4;
}
.partners__item:hover{
	box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}
.partners__header{
	font-size: 18px;
    text-decoration: none;
    float: left;
    width: 100%;
    font-weight: 900;
}
.partners__text{
	float: left;
    width: 100%;
    margin-top: 16px;
    font-size: 16px;
}
.partners__button{
	float:left;
	margin-top:20px;
}
.partnerpage {
	float:left;
	width:100%;
}
.partnerpage__top{
	padding: 32px;
	border: 1px solid #ecf2f4;
	float: left;
	width: 100%;
	border-radius: 2px;
}
.partnerpage__left{
	float: left;
	margin: 0 50px 20px 0;
	width: 200px;
	position: relative;
}
.partnerpage__right{
	float: left;
	width: 590px;
	position: relative;
}
.partnerpage__item{
	float: left;
	width: 100%;
	margin-bottom: 20px;
}
.partnerpage__textlabel{
	color: #777;
	font-size: 14px;
	margin-bottom: 4px;
}
.partnerpage__textvalue{
	font-size: 15px;
}
.partnerpage__button{
	float: left;
	padding: 12px 50px;
}
.partnerpage__desc{
	float:left;
	width:100%;
	position: relative;
	margin-top:20px;
}
.partnerpage__desc strong{
	font-weight:900;
}
.partnerpage__desc p{
}
.spoilercontent{
	float: left;
	width: 100%;
	margin-top: 16px;
}
.spoilercontent__title{
	font-weight: 700;
	margin-bottom: 10px;
	border-bottom: 1px dotted;
	display: inline-block;
	vertical-align: top;
	cursor:pointer;
}
.spoilercontent__text{
	float:left;
	width:100%;
	display:none;
}

.pricesform{
	float: left;
	width: 100%;
	padding-bottom: 80px;
}
.pricesform__title{
	font-size:18px;
	font-weight:700;
	margin-bottom:20px;
}
.pricesform__search{
	width:100%;
}
.pricesform__item{
	float: left;
	width: 100%;
	margin-bottom: 16px;
}
.pricesform__total{
	font-weight:700;
	font-size:22px;
}
.pricesform__label{
	float: left;
	width: 100%;
	margin-bottom: 4px;
}
.pricesform__input{
	float: left;
	width: 100%;
}
.pricesform__select{
	float: left;
	width: 100%;
}
.pricesform__button{
	width: 100%;
	padding: 10px 20px;
	font-size: 16px;
	margin-top: 16px;
}
.pricesform__button_next{
	display:none;
}
.pricesform__button_next.active{
	display:block;
}
.pricesform__services{
	width: 100%;
	background: #fff;
	float: left;
	margin-top: 10px;
	overflow-y: auto;
	max-height: 450px;
	position: relative;
}
.pricesform__servicesItem{
	float: left;
	width: 100%;
	margin-bottom: 8px;
	padding-bottom: 8px;
	display: block;
}
.pricesform__servicesItem_show{
	display:block;
}
.pricesform__servicesName span{
	font-weight:700;
}
.pricesform__servicesPrice{
	font-weight: 700;
	margin-top: 8px;
}
.pricesform__materialsItem{
	float: left;
	width: 100%;
	margin-bottom: 8px;
	padding-bottom: 8px;
	display: none;
}
.pricesform__materialsName{font-weight: 700;}
.pricesform__materialsOption{
	position:relative;
	float:left;
	width:100%;
	margin-top:8px;
	padding-right: 25px;
}
.pricesform__materialsHint{
	position: absolute;
	top: 0;
	right: 0;
	background: #efefef;
	padding: 4px 10px;
	font-size: 12px;
	z-index: 10;
	border-radius: 100px;
	cursor: pointer;
}

.desctop-none{
	display:none;
}
.maintext.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
}
.mainproducts.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
	left: 0;
}
.advantagesBlock.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
}
.news.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
}
.persons.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
}
.subscribe.animate{
	-webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
	opacity:1;
	left:0;
}
.productpage__imagesBlock.animate{
	-webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
	opacity:1;
	right:0;
}
.productpage__info.animate{
	-webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
	opacity:1;
	left:0;
}
.container-left.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
}
.container-right.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
}
.personpage__left.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
}
.personpage__right.animate{
	-webkit-transition: 1s ease-out;
	-o-transition: 1s ease-out;
	transition: 1s ease-out;
	opacity:1;
}
.personpage__desc.animate{
	-webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
	opacity:1;
}
.mainsubdivision.animate{
	-webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
	opacity:1;
}
.animateopacity.animate{
	-webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
	opacity:1;
}