@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], input[type=radio] {
  position: absolute;
  left: -9999px;
  opacity: 0.01;
}
.modify-checkbox {
  padding-left: 30px;
  font-size: 14px;
  position: relative;
  line-height: 20px;
}
input[type=checkbox]+.modify-checkbox:before,  input[type=radio]+.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, input[type=radio]:checked+.modify-checkbox:before {
	background: #f26f35 ;
	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 #f26f35;
	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: #f26f35 ;
  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;
}
th{
	padding: 10px;
    border: 1px solid #ddd;
}
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 #f26f35;
	font-size: 14px;
	color: #f26f35;
	text-align: center;
	font-weight: 500;
}
.button_disabled{
	opacity: 0.6;
	cursor: not-allowed;
	border: none;
}
.button:hover{
	background: #f26f35 ;
	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: 800px;
  width: 96%;
  -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 #f26f35;
  padding: 40px 50px;
  overflow-y: auto;
  max-height: 690px;
  border-radius: 10px;
}
.popup__body_hint img{
	float: left;
	width: 35%;
}
.popup__hintdescription{
	float: right;
	width: 65%;
	padding-left: 20px;
}
.popup__hintdescription_full{
	width:100%;
	padding:0;
}
.popup__body_big{
	width: 570px;
}
.popup__body_city {
	width:800px;
}
.popup__title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
.popup__minititle {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}
.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%;
}
.userform__textarea{
	width:100%;
	margin-top:10px;
	font-size:14px;
}
.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: #f26f35 ;
  position: absolute;
  top: 7px;
  left: 0px;
}
.popup__close:after {
  content: '';
  height: 100%;
  width: 2px;
  background: #f26f35 ;
  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: 118px;
}
.main_margin{
	margin-top: 70px;
}
.header{position: fixed;width: 100%;z-index: 200;-webkit-box-flex: 0;-ms-flex: 0 0 auto;flex: 0 0 auto;}
.headerTop{
	width: 100%;
	font-size: 14px;
	padding: 5px 0;
	background: #fff;
	border-bottom: 1px solid #ddd;
}
.headerTop__contacts{
	float: left;
	padding-top: 5px;
	font-size: 14px;
}
.headerTop__contact{
	float: left;
	margin-right: 16px;
}
.headerTop__contact i{
	color: #f26f35;
	margin-right: 8px;
}
.headerTop__contactItem{
	text-decoration: none;
	color: #999;
}
.header__contacts{
	float: right;
	padding: 5px 0;
}
.header__contact{
	float: left;
	font-size: 16px;
	color: #000;
	font-weight: 700;
	margin-right: 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: 0px;
	animation: blinkbutton 2s infinite linear;
}
@keyframes blinkbutton {
  	0% {
  	    box-shadow: 0 0 0 0 #9a620082;
	}
  	50% {
        box-shadow: 0 0 4px 1px #9a620082
  	}
  	100%{
  		box-shadow: 0 0 0 0 #9a620082;
  	}
}
.headerTop__user{
	float: right;
	margin-left: 16px;
	padding: 5px 0;
}
.headerTop__user i{
	
}
.headerTop__userItem{text-decoration: none;border-bottom: 1px dotted;}
.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-left: 0px;
}
.search__form{
	
}
.search__input{
	float: left;
	width: 320px;
	background: #f9f9f9;
}
.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: #f9f9f9;
	padding: 7px 20px;
	top: 1px;
}
.headerBot{
	float: left;
	width: 100%;
	position: relative;
	padding: 0;
	border-bottom: 1px solid #ddd;
	background: #fff;
}
.headerBot_main{
	text-align: center;
	padding: 20px 0;
}
.header__logo{
	float: left;
	width: 232px;
	z-index: 10;
	position: relative;
	margin-top: 10px;
}
.header__logo_main{
	position:absolute;
	left:50%;
	margin: 0;
	top: 50%;
	transform: translate(-50%, -50%);
}
.catalog__wrapper{
    float: left;
    margin-left: 32px;
}
.catalogMenuWrapper{float: left;}
.catalogMenu{
}
.catalogMenu__block{
	float: left;
	position:relative;
}
.catalogMenu__block_relative{
	position:relative;
}
.catalogMenu__image{
	float: left;
	width: 35px;
	position: absolute;
	left: 10px;
	padding-top: 12px;
}
.catalogMenu__Item{
	float: left;
	cursor: pointer;
	width: 100%;
	text-decoration: none;
	font-size: 15px;
	font-weight: 700;
	padding: 25px 16px;
}
.catalogMenu__Item_selected, .catalogMenu__Item:hover{color: #f26f35;}
.catalogMenu__sub1{
    position: absolute;
    background: #fff;
    -webkit-box-shadow: 0px 1px 3px rgb(0 0 0 / 20%);
    box-shadow: 0px 1px 3px rgb(0 0 0 / 20%);
    width: 320px;
    top: 100px;
    left: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
    padding: 16px;
    max-height: 500px;
    overflow-y: auto;
}
.catalogMenu__sub1_nocolumns{
	columns: 1;
	-moz-columns: 1;
	-webkit-columns: 1;
	width: 320px;
}
.catalogMenu__block:hover .catalogMenu__sub1{
	opacity: 1;
	visibility: visible;
	top: 71px;
}
.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: #f26f35 ;
}
.slider__item{
	position: relative;
	overflow: hidden;
	text-align>: c;
}
.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: center;
	width: 70%;
}
img.slider__image{
}
.slider__title{
	font-size: 32px;
	font-weight: 900;
	margin-bottom: 10px;
	color: #fff;
	text-align: center;
}
.slider__desc{
	margin-top:14px;
	font-size:16px;
}
.slider__button{
	font-size: 16px;
	color: #fff;
	margin-top: 16px;
	background: #f26f35;
	padding: 12px 40px;
	display: inline-block;
	vertical-align: top;
}
.slider__button:hover{
	background:#fff;
	color: #f26f35 ;
}
.slider__back, .main__bannerBack{
	background-repeat:repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	z-index: 10;
	background-color: #000;
}
.mainblock{
	float:left;
	width:100%;
	padding:70px 0;
	position: relative;
}
.mainblock:nth-child(2n){
	background: #f7f7f7;
}
.mainblock:nth-child(2){
}
.mainblock:nth-last-child(1){
	/* margin-bottom:0; */
}
.mainblock_minipadding{
	padding:20px 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: 32px;
	font-weight: 900;
	display: block;
	text-decoration: none;
	width: 100%;
	text-align: center;
}
.main__title_center{
	text-align:center;
}
.main__titleLink{
	color: #f26f35 ;
	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: 50%;
	margin-right: 5%;
	line-height: 140%;
	color: #000;
	font-size: 16px;
	text-align: justify;
}
.maintext__bodyAdvantages{
	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: space-between;
	margin-top: 20px;
}
.maintext__bodyAdvantagesItem{
	float:left;
	width: 48%;
	margin-bottom:20px;
}
.maintext__bodyAdvantagesImage{
	float: left;
	width: 20%;
	max-width: 70px;
	stroke: #ec691f;
}
.maintext__bodyAdvantagesRight{
	width: 80%;
	float: right;
	padding: 0 20px;
}
.maintext__bodyAdvantagesName{
	font-weight: 600;
	font-size: 16px;
}
.maintext__bodyAdvantagesText{
	color: #555;
	font-size: 14px;
}
.maintext__image{
	float:right;
	width: 45%;
	border-radius: 4px;
	overflow: hidden;
}
.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: #fff;
	text-align: center;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	padding: 78px 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__items_center{
	justify-content: center;
}
.popularservice__item{
	float: left;
	width: 23%;
	margin: 0 1% 40px;
	-webkit-box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	background: #fff;
	text-align: center;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}
.popularservice__item_3{
	width: 32%;
	margin: 0 2% 16px 0;
}
.popularservice__item_3:nth-child(3n){
	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: 16px;
	text-transform: uppercase;
	float:left;
	width:100%;
	padding: 20px;
}
.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: #2b2f32;
	padding: 50px 0;
	color: #000;
	float: left;
	width: 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	z-index: 100;
}
.footer_nomargin{
	margin-top:0;
}
.footer__top{
	width: 100%;
	float: left;
}
.footer__col{
	float: left;
	width: 25%;
}
.footer__head{
	font-weight: 900;
	margin-bottom: 20px;
	font-size: 16px;
	float: left;
	width: 100%;
	color: #f26f35;
}
.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: #fff;
	float: left;
	width: 100%;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	font-size: 14px;
}
.footer__item:hover{
	color: #f26f35 ;
}
.footer__button{
	float:left;
	margin-top:10px;
	padding: 10px 32px;
	background: #2b2f32;
	color: #fff;
	font-size: 16px;
}
.footer__link{
	display: block;
	margin-bottom: 16px;
	text-decoration: none;
	color: #fff;
	float: left;
	width: 100%;
	font-size: 14px;
}
.footer__link:hover{
	color: #f26f35 ;
}
.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: #f26f35 ;
}
.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;
	display: inline;
}
.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: #f26f35 ;
}
.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{
	position:relative;
	padding: 32px 0 200px;
}
.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: space-around;
}
.maincategories__item{
	float: left;
	width: 30%;
	-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;
	padding: 100px 41px;
	border-radius: 32px;
	z-index: 10;
	transition:0.2s;
}
.maincategories__item{
	background-image: url('../images/main_service_back_full_2.png');
}
.maincategories__item:nth-child(2n){
	background-image: url('../images/main_service_back_full.png');
}
.maincategories__name{
	font-weight: 700;
	text-decoration:none;
	font-size: 33px;
	text-transform: uppercase;
	float:left;
	width:100%;
	color: #fff;
	z-index: 10;
	position: relative;
}
.maincategories__button{
	width: 100%;
	display: inline-block;
	color: #000;
	border-color: #000;
	padding: 16px;
	font-size: 20px;
	margin-top: 32px;
}
.maincategories__button:hover{
	background:#fff;
	color:#000;
	opacity:0.8;
}
.maincategories__img{
	opacity:0;
	width:100%;
	position:absolute;
	top:0;
	left:0;
	transition:0.5s;
}
.maincategories__back_1 .maincategories__img_1{
	opacity:1;
}
.maincategories__back_2 .maincategories__img_2{
	opacity:1;
}
.maincategories__back_3 .maincategories__img_3{
	opacity:1;
}
.maincategories__back .maincategories__item{
	filter:grayscale(1);
	opacity:0.5;
}
.maincategories__back .maincategories__item:hover{
	filter:grayscale(1);
	opacity:1;
	background:#fff;
}
.maincategories__back .maincategories__item:hover .maincategories__name{
	color:#000;
}
.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: #f7f7f7;
}
.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 #f26f35 ;
	line-height: 36px;
	font-size: 22px;
	color: #f26f35 ;
	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: #f26f35 ;
	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: space-between;
}
.advantages__item{
	float:left;
	width: 23%;
}
.productsAdvantages .advantages__item{
	width:48%;
	margin-bottom: 32px;
}
.productsAdvantages .advantages__item:nth-child(2n){
	margin-right:0;
}
.advantages__item:nth-child(4){
	margin-right:0;
}
.advantages__image{
	float: left;
	width: 25%;
	max-width: 70px;
}
.advantages__image img{
	
}
.advantages__right{
	width: 75%;
	float: left;
	padding-left: 20px;
}
.advantages__header{
	font-weight: 600;
	font-size: 16px;
}
.advantages__text{
	color: #555;
	font-size: 14px;
}
.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: 32%;
	margin-right: 2%;
	margin-bottom: 50px;
	position: relative;
	padding-bottom: 64px;
	overflow: hidden;
	border-radius: 2px;
	background: #fff;
	text-align: left;
	-webkit-box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	box-shadow: 1px 1px 3px rgb(0 0 0 / 15%);
	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;
}
.userform{
	padding: 20px 20px 20px 14px;
	border-radius: 2px;
	-webkit-box-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
	box-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
	background: #f8f8f8;
	float: left;
	width: 100%;
	max-width: 862px;
}
.userform__title{
	font-size:18px;
	font-weight:700;
	margin-bottom:20px;
}
.userform__search{
	float:left;
	width: 70%;
	margin-right: 5%;
}
.userform__item{
	float: left;
	width: 100%;
	margin-bottom: 16px;
}
.userform__item_relative{
	position:relative;
}
.userform__label{
	float: left;
	width: 100%;
	margin-bottom: 4px;
}
.userform__label_big{
	font-size:16px;
}
.userform__itemInfo{
	font-weight: 700;
	margin-top: 4px;
	float: left;
	width: 100%;
}
.userform__input{
	float: left;
	width: 100%;
}
.userform__select{
	float: left;
	width: 100%;
}
.userform__selectanimal{
	display:none;
	margin-top: 12px;
	position: absolute;
	top: 49px;
	background: #fff;
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
}
.userform__selectanimalItem{
	display:none;
	padding: 8px 20px;
	cursor:pointer;
}
.userform__selectanimalItem:hover{
	background:#ddd;
}
.userform__selectanimalItem.active{
	display:block;
}
.userform__button{
	width: 100%;
	padding: 10px 20px;
	font-size: 16px;
	margin-top: 16px;
}
.userform__button_20{
	width:25%;
}
.userform__itemText{
	float: left;
	width: 100%;
	margin-top: 16px;
}
.user__logout{margin-left: 20px;font-weight: 400;font-size: 18px;text-decoration: none;border-bottom: 1px dotted;display: inline-block;vertical-align: top;margin-top: 8px;}
.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__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:900;
	text-decoration:none;
	font-size: 22px;
	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;
}
.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 #f26f35;
	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: #f26f35;
	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%;
	border: 1px solid #ddd;
	padding: 32px;
	margin-bottom: 32px;
	border-radius: 2px;
}
.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: 48%;
	box-shadow: 0 0 1px 1px #ddd;
	margin: 0 1%;
	padding: 40px;
	border-radius: 20px;
}
.subdivisions__right{
	float: left;
	width: 100%;
	margin-top: 20px;
}
.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: #2AABEE;
}
.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;
}
.tabs{
	margin-top: 40px;
	float:left;
	width:100%;
	position: relative;
}
.tabs_nomargin{
	margin-top:0;
}
.tabs + .tabs_margin{
	margin-top:40px;
}
.tabs__header{
	margin-bottom:20px;
	float:left;
	width:100%;
}
.tabs__elem{
	font-size: 20px;
	cursor:pointer;
	transition:0.2s;
	color: #777;
	margin-bottom: 16px;
	margin-right: 20px;
	font-weight: 500;
	float: left;
	border-bottom: 2px solid transparent;
	padding-bottom: 4px;
	position: relative;
}
.tabs__new{
	position: absolute;
	font-size: 12px;
	width: 36px;
	height: 36px;
	background: #f26f35;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	top: -5px;
	right: -40px;
}
.tabs__elem_active, .tabs__elem:hover{
	border-bottom: 2px solid #952c05;
	padding-bottom: 4px;
	color: #000;
}
.tabs__body{
	float: left;
	width: 100%;
	margin-bottom: 50px;
}
.tabs__body + .tabs__body{
	display:none;
}
.user__error{
	margin-bottom:20px;
	font-weight:700;
	color:#dd0000;
}
.userform__services{
	width: 100%;
	background: #fff;
	float: left;
	padding: 20px;
	margin-top: 10px;
	overflow-y: auto;
	max-height: 450px;
	position: relative;
	display: flex;
	flex-direction: column;
}
.userform__servicesItem{
	width: 100%;
	margin-bottom: 8px;
	padding-bottom: 8px;
	display: none;
	position: relative;
}
.userform__servicesItem.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.userform__servicesItem_show{
	display:block;
}
.userform__servicesName span{
	font-weight:700;
}
.userform__servicesPrice{
	font-weight: 700;
	margin-top: 8px;
}
.userform__materialsItem{
	float: left;
	width: 100%;
	margin-bottom: 8px;
	padding-bottom: 8px;
	padding-left: 20px;
	display: none;
}
.userform__materialsName{font-weight: 700;}
.userform__materialsOption, .common-materials__option{
	position:relative;
	float:left;
	width:100%;
	margin-top:8px;
	padding-right: 25px;
}
.userform__materialsHint{
	position: absolute;
	top: 0;
	right: 0;
	background: #efefef;
	padding: 4px 10px;
	font-size: 12px;
	z-index: 10;
	border-radius: 100px;
	cursor: pointer;
}
.user__orders{
	
}
.user__order{
	-webkit-box-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
	box-shadow: 1px 1px 2px rgb(0 0 0 / 15%);
	background: #f8f8f8;
	float: left;
	width: 100%;
	margin-bottom: 20px;
	padding: 20px;
}
.user__order_green{
	background: #cdffb4;
}
.user__order_yellow{
	background: #fffdb4;
}
.user__orderCol{
	float:left;
	width:50%;
}
.user__orderLine{
	float:left;
	width:100%;
}
.user__orderItem{
	float:left;
	padding-right:20px;
	width:15%;
	font-size:16px;
}
.user__orderItem span{
	font-weight:700;
	float:left;
	width:100%;
	margin-bottom: 8px;
}
.user__orderTitle{
	font-size:18px;
	float:left;
	width:100%;
	font-weight:700;
	margin-top: 20px;
}
.user__orderLink{
	font-weight: 900;
	float: left;
	margin-top: 10px;
	color: #0013fb;
	font-size: 16px;
}
.user__orderName{
	float: left;
	width: 100%;
	margin-bottom: 8px;
	font-size: 16px;
}
.user__orderName span{
	font-weight: 700;
}
.user__orderBase{
	float: left;
	width: 100%;
}
.user__orderButton{
	border-bottom:1px dotted;
	float: left;
	margin-top: 20px;
	font-weight: 700;
	font-size: 18px;
	cursor: pointer;
	text-decoration: none;
}
.user__orderButton_right{
	float:right;
}
.user__orderMore{
	display:none;
	float: left;
	width: 100%;
	padding-top: 20px;
	border-top: 1px solid #ddd;
	margin-top: 20px;
}
.user__orderMoreItem{
	float: left;
	width: 100%;
	margin-top: 10px;
}
.user__orderMoreItem span{
	font-weight:700;
}
.userform__button_next{
	display:none;
}
.userform__button_next.active{
	display:block;
}
.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;
}
.userblock{
	display: block;
	width: 100%;
	float: left;
	margin-bottom: 40px;
}
.usernews{
	width:100%;
}
.usernews__item{
	width: 100%;
	padding: 16px 32px;
	border: 1px solid #ecf2f4;
	border-bottom: none;
	font-size: 16px;
	background: #fff;
	cursor: pointer;
}
.usernews__item:nth-last-child(1){
	border-bottom: 1px solid #ecf2f2;
}
.usernews__name{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.usernews__title{
	font-weight: 900;
	text-decoration: underline;
}
.usernews__date{
	
}
.usernews__description{
	width: 100%;
	margin-top: 10px;
	display:none;
	font-weight: 300;
	padding-top: 10px;
}
.vetlab{
	
}
.vetlab__block{
    position: relative;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    text-decoration: none;
}

.vetlab__logo{
    position: absolute;
    transition: opacity 0.3s ease;
}

.vetlab__logo{
    max-width: 400px;
    opacity: 1;
}

.vetlab__text{
    font-size: 22px;
    font-weight: 500;
    opacity: 0;
	transition:0.2s;
}

.vetlab__video{
	max-width: 100%;
}
.vetlab__block:hover .vetlab__logo{
    opacity: 0;
}

.vetlab__block:hover .vetlab__text{
    opacity: 1;
}
.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;
}