@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: #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: 4px;
}
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;
}
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;
}
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: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;
  width: 500px;
  -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_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%;
}
.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;
	padding-top: 75px;
}
.wrapper__content_background{

}
.main{
	float:left;
	width:100%;
}
.header{position: fixed;width: 100%;z-index: 200;-webkit-box-flex: 0;-ms-flex: 0 0 auto;flex: 0 0 auto;padding: 10px 0;-webkit-transition: 0.2s;-o-transition: 0.2s;transition: 0.2s;color: #fff;left: 0;top: -75px;}
.header_animate{
	top: 0;
}
.header_background, .header_otherpage{
	background: #fff;
	color: #000;
	border-bottom: 1px solid #ddd;
}
.header_background .header__logo, .header_otherpage .header__logo{
	-webkit-filter: none;
	        filter: none;
}
.header_background .catalogMenu__Item, .header_otherpage .catalogMenu__Item {
	color:#000;
}
.header_background .headerTop__phone, .header_otherpage .headerTop__phone {
	color:#000;
}
.header_background .header__iconmobile{
	-webkit-filter:brightness(0);
	        filter:brightness(0);
}
.headerTop{
	width: 100%;
	font-size: 14px;
}
.headerTop__contacts{
	float: right;
	font-size: 16px;
	padding: 16px 0;
}
.headerTop__contact{
	float: left;
	font-weight: 500;
	margin-left: 20px;
}
.headerTop__contact i{
	margin-right: 8px;
	float: left;
}
.headerTop__phone{
	text-decoration: none;
	margin-left: 4px;
	color: #fff;
	float: left;
}
.headerTop__text{
	font-size: 11px;
	color: #777;
	margin-top: 4px;
	font-weight: 400;
}
.headerBot{
	float: left;
	width: 100%;
	position: relative;
	padding: 0;
	border-bottom: 1px solid #ddd;
}
.header__logo{
	float: left;
	width: 232px;
	z-index: 10;
	position: absolute;
	-webkit-filter: brightness(100);
	        filter: brightness(100);
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	text-align: center;
}
.catalog__wrapper{
    float: left;
}
.catalogMenuWrapper{float: left;}
.catalogMenu{
}
.catalogMenu__block{
	float: left;
}
.catalogMenu__Item{
	float: left;
	cursor: pointer;
	width: 100%;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 16px 10px;
	color: #fff;
}
.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: center;
	width: 50%;
	max-width: 650px;
}
img.slider__image{
}
.slider__title{
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 10px;
	color: #fff;
	text-transform: uppercase;
}
.slider__title span{
	font-weight:900;
	display:inline-block;
	vertical-align:top;
}
.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;
}
.mainblock_pattern{
	background: url('../images/pattern-lightblue_15.png');
}
.mainblock:nth-child(2n){
	/* background: #f7f7f7; */
	-webkit-box-shadow: 0px 0px 0px 1px rgb(0 0 0 / 15%);
	box-shadow: 0px 10px 32px 0px rgb(0 0 0 / 10%);
}
.mainblock:nth-child(2){
}
.mainblock:nth-last-child(1){
	/* margin-bottom:0; */
}
.main__titleBlock{
	float:left;
	width:100%;
	text-align: center;
}
.main__title{
	font-size: 40px;
	color: #000;
	margin-bottom: 32px;
	font-weight: 900;
	display: block;
	text-decoration: none;
	float: left;
	width: 100%;
	text-transform: uppercase;
}
.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: 65%;
	line-height: 140%;
	color: #000;
	font-size: 16px;
	text-align: justify;
}
.maintext__image{
	float:right;
	width: 30%;
	border-radius: 4px;
	overflow: hidden;
}
.footer{
	background: #00233d;
	padding: 50px 0;
	color: #000;
	float: left;
	width: 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.footer_nomargin{
	margin-top:0;
}
.footer__top{
	width: 100%;
	float: left;
}
.footer__col{
	float: left;
	width: 32%;
}
.footer__head{
	font-weight: 900;
	margin-bottom: 20px;
	font-size: 16px;
	float: left;
	width: 100%;
	color: #fff;
}
.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{
	border-radius: 40px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-right: 10px;
	float: left;
	font-size: 22px;
	background: #fff;
	color: #00233d;
}
.footer__social:hover{
	opacity:0.8;
}
.path{
	padding: 26px 0 26px;
	text-align: center;
}
.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%;
	text-align: center;
}
.h1block h1{
	font-size: 40px;
	margin-bottom: 30px;
}
.h1block__count{
	float:left;
	color: #999;
	margin-left:10px;
	font-size: 30px;
}
.ya-share2{
	float:left;
	width:100%;
	margin-top:20px;
}
.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: left;
}
.maincategories__item{
	float: left;
	width: 31%;
	text-align: center;
	position: relative;
	overflow:hidden;
	padding: 32px 50px;
	text-decoration: none;
	border-radius: 2px;
	border: 2px solid;
	margin: 0 1% 32px;
}
.maincategories__name{
	font-weight: 900;
	font-size: 32px;
	text-transform: uppercase;
	float:left;
	width:100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
	z-index: 20;
	opacity: 0;
}
.maincategories__image{
	position: relative;
	top: 50%;
	left: 50%;
	width: 100%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	opacity: 1;
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
	z-index: 10;
}
.maincategories__item:hover .maincategories__name{
	opacity:0;
}
.maincategories__item:hover .maincategories__image{
	opacity:1;
	-webkit-filter: brightness(100);
	        filter: brightness(100);
}
.maincategories__item:nth-child(1){
	/* background: #ec691f; */
	color: #ec691f;
}
.maincategories__item:nth-child(1):hover{
	background: #ec691f;
}
.maincategories__item:nth-child(2){
	/* background: #106741; */
	color: #106741;
}
.maincategories__item:nth-child(2):hover{
	background: #106741;
}
.maincategories__item:nth-child(3){
	color: #005d9b;
}
.maincategories__item:nth-child(3):hover {
	background: #005d9b;
	color: #005d9b;
}
.maincategories__item:nth-child(4){
	color: #8d39bb;
}
.maincategories__item:nth-child(4):hover{
	background: #8d39bb;
}
.maincategories__item:nth-child(5){
	color: #c90b0c;
}
.maincategories__item:nth-child(5):hover{
	background: #c90b0c;
}
.maincategories__item:nth-child(6){
	color: #669999;
}
.maincategories__item:nth-child(6):hover{
	background: #669999;
}
.maincategories__item:nth-child(7){
	color: #005d9b;
}
.maincategories__item:nth-child(7):hover{
	background: #005d9b;
}
.maincategories__item:nth-child(8){
	color: #34b8dd;
}
.maincategories__item:nth-child(8):hover{
	background: #34b8dd;
}
.maincategories__item:nth-child(9):hover{
	background: #ec691f;
}
.maincategories__item:nth-child(8) .maincategories__image{
	-webkit-filter: invert(1);
	        filter: invert(1);
}
.maincategories__item:nth-child(8):hover .maincategories__image{
	-webkit-filter: invert(0);
	        filter: invert(0);
}
.maintext{
	position:relative;
	opacity:0;
}
.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: 33%;
	position: relative;
	overflow: hidden;
	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%);
	margin-bottom: 20px;
	margin-top: 4px;
}
.allnews .news__item{
	margin-right: 2%;
	margin-bottom: 40px;
}
.allnews .news__item:nth-child(3n){
	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%;
	padding: 20px;
}
.news__item:hover img{
    opacity: 0.8;
}
.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;
}
.news__cont{
	float:left;
	width:100%;
	padding: 0 20px 20px 20px;
}
.news__header{
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	display: block;
	float: left;
	width: 100%;
	text-decoration: none;
}
.news__text{
	float: left;
	width: 100%;
	font-size: 14px;
	color: #555;
	margin-top: 16px;
}
.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: 30%;
	text-align: center;
}
.advantages__item:nth-child(4){
	margin-right:0;
}
.advantages__icon{
	width: 100%;
	font-size: 70px;
	font-weight: 900;
	color: #005d9b;
}
.advantages__icon img{
	max-width:150px;
}
.advantages__right{
    margin-top: 10px;
}
.advantages__header{
	font-weight: 700;
	font-size: 25px;
	margin-bottom: 8px;
}
.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__slider{
	float:left;
	width:100%;
}
.persons__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;
}
.persons__sliderItem{
	margin: 0 20px;
}
.persons__item{
	float: left;
	width: 23%;
	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(4n){
	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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.subdivisions__value{
	float: left;
	margin-left: 8px;
	text-decoration: none;
	border-bottom: 1px dotted;
}
.subdivisions__socials{
	float:left;
	width:100%;
}
.subdivisions__social{
	float: left;
	font-size: 32px;
	margin-left: 10px;
	position: relative;
	top: -10px;
}
.subdivisions__social_vk{
	color: #0077FF;
}
.subdivisions__social_tg{
	color: #2AABEE;
}
.subdivisions__social_yt{
	color: #FF0000;
}
.products__content{
	font-size:16px;
}
.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;
}