@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&display=swap');

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

img {
  vertical-align: top;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
input {
  border: 1px solid #ccc;
  padding: 8px 20px;
  color: #000;
  font-weight: 400;
  background: #fff;
  border-radius: 32px;
  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: 22px;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}
input[type=checkbox]+.modify-checkbox:before, input[type=radio]+.modify-checkbox:before {
  content: '';
  width: 16px;
  border: 1px solid #34b8dd;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
  border-radius: 50px;
}
input[type=checkbox]:checked+.modify-checkbox:before, input[type=radio]:checked+.modify-checkbox:before {
	background: #34b8dd ;
	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 #34b8dd;
	position:absolute;
	left:0;
	height:100%;
	content:"";
}
p {
  margin-bottom: 10px;
}
h1 {
  margin-bottom: 32px;
  font-size: 28px;
  font-weight: 500;
}
h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-top: 32px;
}
h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #000;
  margin-top: 25px;
}
a {
  color: #000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a:hover {
  color: #34b8dd ;
  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, th{
	padding:10px;
	border:1px solid #ddd;
}
.button {
  border-radius: 32px;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  background: #34b8dd;
  border: 1px solid #34b8dd;
  font-size: 14px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.2s ease;
  display:inline-block;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3498db;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  z-index: -1;
  border-radius: inherit;
}

.button:hover::before {
  transform: scale(1);
}

.button:hover {
  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 #34b8dd ;
  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: #34b8dd ;
  position: absolute;
  top: 7px;
  left: 0px;
}
.popup__close:after {
  content: '';
  height: 100%;
  width: 2px;
  background: #34b8dd ;
  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;background: #fcfaff;}
.wrapper__content_padding{
	padding-top: 75px;
}
.wrapper__content_background{background: #ff;}
.main{
	float:left;
	width:100%;
}
.main_margin{margin-top: 75px;}
.header{
	position: fixed;
	width: 100%;
	z-index: 200;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	left: 0;
	top: 0;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.15);
	color: #000;
	background: #fff;
}
.header_animate{
	top: 0;
}
.headerBottom{
	border-top: 1px solid #fff;
	padding: 10px 0;
}
.header__right{
	float: right;
	padding: 9px 0px;
}
.header__socials{
	float: right;
}
.header__social{
	font-size: 24px;
	display: inline-block;
	vertical-align: top;
	margin-left: 8px;
}
.header__button{
	float: right;
	font-size: 14px;
	padding: 7px 20px;
	margin-left: 16px;
}
.header__button:hover{
	border-color: #34b8dd;
	background: #34b8dd;
	color: #fff;
}
.header__contacts{
	float: right;
}
.header__contacts_right{
	float: right;
}
.header__contact{
	float: left;
	font-weight: 400;
	margin-right: 10px;
	padding: 7px 0;
	font-size: 14px;
	font-weight: 500;
}
.header__contact + .header__contact{
}
.header__contact i{
	margin-right: 8px;
	float: left;
}
.header__phone{
	text-decoration: none;
	margin-left: 4px;
	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: 155px;
	text-align: center;
}
.header__logo img{
}
.catalog__wrapper{
    float: left;
    margin-left: 20px;
    margin-top: 5px;
}
.catalogMenuWrapper{float: left;}
.catalogMenu{
}
.catalogMenu__block{
	float: left;
	margin-right: 16px;
}
.catalogMenu__Item{
	float: left;
	cursor: pointer;
	width: 100%;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 0px 4px;
	border-bottom: 3px solid transparent;
	text-transform: uppercase;
}
.catalogMenu__Item:hover{color: #000;border-color: #34dbdd;}
.slider__item{
	position: relative;
	overflow: hidden;
}
.slider__item:hover{
	opacity:1;
}
.slick-center.slider__item{
	opacity:1;
}
.slider__body{
	position: absolute;
	z-index: 20;
	color: #fff;
	font-size: 20px;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}
.slider__content{
	max-width: 700px;
	padding: 32px;
	border-radius: 20px;
	display: inline-block;
	vertical-align: top;
	background: #00000040;
}
img.slider__image{
}
.slider__title{
	font-size: 40px;
	font-weight: 700;
	color: #fff;
}
.slider__button{
	font-size: 22px;
	margin-top: 20px;
	padding: 12px 32px;
	max-width: 400px;
	display: inline-block;
	vertical-align: top;
}
.slider__button:hover{
}
.slider__back, .main__bannerBack{
	background-repeat:repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	z-index: 10;
	background-color: #000000;
}
.mainblock{
	float:left;
	width:100%;
	padding: 40px 0;
}
.mainblock:nth-child(2n+1){
	background: #ffffff;
}
.main__titleBlock{
	float:left;
	width:100%;
	text-align: center;
	margin-bottom: 40px;
}
.main__title{
	font-size: 32px;
	color: #000;
	font-weight: 800;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
	text-transform: uppercase;
}
.main__titlemini{
	font-size: 24px;
	color: #777;
}
.maintext{
	position:relative;
	opacity:0;
}
.maintext__h1{
	font-size: 30px;
	font-weight: 500;
}
.maintext__body{
	float: left;
	width: 100%;
	line-height: 140%;
	color: #000;
	font-size: 20px;
	text-align: justify;
	padding: 0 80px;
	position: relative;
	z-index: 10;
	font-weight: 300;
}
.maintext__bodyText{
	width:50%;
	float: left;
}
.maintext__title{
	font-size: 40px;
	font-weight: 500;
	margin-bottom: 40px;
	text-align: center;
}
.services__items{
	float: left;
	position: relative;
	width: 100%;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.services__item{
	width: 24%;
	margin: 0 1% 40px;
	border-radius: 4px;
	position: relative;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
	padding-bottom: 20px;
	will-change: transform;
	border-radius:16px;
}

.services__item:hover{
	transform: scale(1.05);
	box-shadow: 0 0 5px 0 #ddd;
	z-index: 2;
}

.services__image{
	float: left;
	width: 100%;
	border: 1px solid #ddd;
	padding: 16px;
	transition: border-color 0.2s, box-shadow 0.2s;
	border-radius:16px;
	overflow:hidden;
}
.services__image img{
	border-radius:16px;
}
.services__item:hover .services__image{
	border-color: transparent;
}

.services__name{
	font-size: 15px;
	float: left;
	width: 100%;
	margin-top: 20px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 16px;
	text-decoration: none;
}

.services__button{
	text-decoration: none;
	color: #777;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 14px;
	display: inline-block;
	border: 1px solid transparent;
	padding: 8px 16px;
	border-radius: 20px;
	transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.services__button:after{
	content:'';
	width:100%;
	height:2px;
	background:#777;
	display:block;
	margin-top:4px;
	transition: opacity 0.2s, margin 0.2s;
}

.services__item:hover .services__button{
	border-color: #34b8dd;
	color: #34b8dd;
}

.services__item:hover .services__button:after{
	opacity:0;
	margin:0;
}

.services__item:hover .services__button:hover{
	background:#34b8dd;
	color:#fff;
}

.calculate{
	
}
.calculate__block{
	position: relative;
	float: right;
	width: 40%;
	text-align: center;
	background: #fff;
	padding: 32px;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}
.calculate__header{
	font-weight: 700;
	margin-bottom: 20px;
}
.calculate__form{
	display: inline-block;
	vertical-align: top;
}
.calculate__image{
	float:right;
	width: 50%;
	border-radius: 32px;
	overflow:hidden
}
.calculate__item{
	float: left;
	width: 100%;
	margin-bottom: 25px;
}
.calculate__item:nth-last-child(1){
	margin-bottom:0;
}
.calculate__item_100{
	width: 100%;
}
.calculate__itemBlock{
	float: left;
	width: 100%;
}
.calculate__input{
	width: 100%;
	padding: 10px;
	border-color: #34b8dd;
}
.calculate__offer{
	margin: 16px 0;
	width: 100%;
	font-size: 14px;
	text-align: left;
	font-weight: 500;
}
.calculate__button{
	width: 100%;
	padding: 10px 22px;
	font-size: 16px;
}
.calculate__inform{
	margin-top: 10px;
	font-weight: 700;
	color: #ff0000;
}
.calculate__title{
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
}
.calculate__select{
	width: 100%;
	border-color: #34b8dd;
	border-radius: 32px;
	color:#222;
}
.prices__items{
	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;
}
.prices__item{
	width: 31%;
	margin: 0 1%;
	border-radius: 16px;
	background: #fff;
	position: relative;
	margin-bottom: 20px;
	padding: 40px 20px 64px 20px;
	text-align: center;
	transition:0.2s;
	-webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}
.prices__item:hover{
}
.prices__top{
	
}
.prices__name{
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 800;
}
.prices__description{
	font-size: 16px;
	line-height: 140%;
	color: #000;
}
.prices__price{
	font-size: 25px;
	font-weight: 900;
	margin-bottom: 20px;
	width: 100%;
}
.prices__button{
	display: inline-block;
	vertical-align: top;
	padding: 10px 32px;
	background: #34b8dd;
	color: #fff;
	font-size: 20px;
	margin-top: 18px;
}
.gallery{
	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;
}
.gallery + .gallery{
	margin-top:20px;
}
.products__optionsGallery{
	width: 55%;
	float: left;
	position: relative;
}
.gallery .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;
	padding-bottom: 2px;
}
.gallery__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;
	text-align: center;
	border-radius: 32px;
	overflow: hidden;
}
.gallery__item img{
	transition:0.2s;
}
.gallery__item img:hover{
	transform:scale(1.2);
}
.slick-track .gallery__item{
	margin: 0 10px;
}
.reviews__items{
	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;
}
.reviews__items .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;
	padding-bottom: 2px;
}
.reviews__item{
	width: 48%;
	margin: 0 1%;
	border-radius: 32px;
	background: #fff;
	position: relative;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.15);
}
.slick-track .reviews__item{
	margin: 0 10px;
}
.reviews__block{
	padding:32px;
}
.reviews__top{
	float:left;
	width:100%;
}
.reviews__image{
	float: left;
	width: 10%;
	border-radius: 100%;
	width: 80px;
	height: 80px;
	overflow: hidden;
}
.reviews__name{
	float: left;
	font-size: 18px;
	margin-left: 16px;
	font-weight: 400;
	padding: 25px 0;
}
.reviews__rating{
	float: right;
}
.reviews__ratingItem{
	float: right;
	color: #ffe200;
	margin-right: 4px;
	font-size: 22px;
}
.reviews__title{
	float:left;
	width:100%;
	font-weight: 400;
	font-size: 20px;
	margin: 20px 0 4px;
}
.reviews__description{
	line-height: 140%;
	color: #000;
	font-size: 14px;
	text-align: justify;
	font-weight: 300;
}
.allnews{
	
}
.news__items{
	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__items .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;
	padding-bottom: 2px;
}
.news__item{
	float: left;
	width: 31%;
	position: relative;
	overflow: hidden;
	background: #fff;
	text-align: left;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.15);
	border-radius: 32px;
}
.news__item_margin{
	margin:0 1% 20px;
}
.news__block{
	float: left;
	width: 100%;
}
.slick-track .news__item{
	margin: 0 10px;
}
.news__image{
	width: 100%;
	position: relative;
	overflow: hidden;
	display: block;
	float: left;
}
.news__item img{
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
}
.news__item:hover img{
    opacity: 0.8;
}
.news__cont{
	float:left;
	width: 100%;
	padding: 32px 32px 50px 32px;
}
.news__header{
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
	display: block;
	float: left;
	width: 100%;
	text-decoration: none;
}
.news__text{
	float: left;
	width: 100%;
	font-size: 14px;
	margin-top: 16px;
	line-height: 140%;
	font-weight: 300;
}
.news__date{
	float: left;
	color: #777;
	font-size: 16px;
	position: absolute;
	bottom: 20px;
	width: 100%;
	display: block;
	font-weight: 300;
}
.contactsmap{
	margin: 0;
	background: #fff;
	width: 100%;
	float: left;
	position: relative;
}
.contactsmap iframe{
	float:left;
	width:100%;
}
.footer{
	color: #000;
	float: left;
	width: 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}
.footer__bot{
	width: 100%;
	float: left;
	background: #ffffff;
	padding: 50px 0;
	border-top: 1px solid #ddd;
}
.footer_nomargin{
	margin-top:0;
}
.footer__top{
	width: 100%;
	/* float: left; */
}
.footer__col{
	float: left;
	width: 33%;
	padding: 0 32px;
}
.footer__col:nth-child(1){
}
.footer__head{
	font-weight: 900;
	margin-bottom: 16px;
	font-size: 16px;
	float: left;
	width: 100%;
	text-transform: uppercase;
}
.footer__logo{
	width: 100%;
	max-width: 150px;
	margin-bottom: 24px;
	display: inline-block;
	vertical-align: top;
}
.footer__logo img{
}
.footer__item{
	margin-bottom: 16px;
	display: block;
	text-decoration: none;
	float: left;
	width: 100%;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	font-size: 16px;
	font-weight: 400;
	text-align: left;
}
.footer__item:hover{
	color: #34b8dd ;
}
.footer__button{
	width:100%;
	max-width: 350px;
	display: inline-block;
	vertical-align: top;
	margin-top: 20px;
}
.footer__button:hover{
}
.footer__link{
	display: block;
	margin-bottom: 16px;
	text-decoration: none;
	float: left;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
}
.footer__link:hover{
	color: #34b8dd ;
}
.footer__bottom{
	width: 100%;
	float: left;
	text-align: left;
	margin-top: 40px;
	border-top: 1px solid #ffffff45;
	padding-top: 20px;
}
.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%;
}
.footer__social{
	text-align: center;
	margin-right: 20px;
	float: left;
	font-size: 32px;
	color: #000;
}
.footer__social:hover{
	opacity:0.8;
}
.path{
	padding: 20px 0 20px;
	text-align: center;
}
.path__item{
	display: inline;
	vertical-align: top;
	font-size: 16px;
	color: #000;
	text-decoration: none;
	font-weight: 500;
}
.path__item:nth-last-child(1){
	text-decoration:none;
}
.path__item-arrow{
	display: inline;
	vertical-align: top;
	margin: 0 8px;
}
.h1block{
	width: 100%;
	text-align: center;
}
.h1block h1{
	font-size: 32px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 800;
}
.h1block__count{
	float:left;
	color: #999;
	margin-left:10px;
	font-size: 30px;
}
.slider__main{
	float: left;
	width: 100%;
}
.slider__arrows{
	float: right;
	width: 175px;
	position: absolute;
	bottom: -80px;
	right: 60px;
}
.slider__nav{
	width: 50px;
	height: 50px;
	border-radius: 100%;
	text-align: center;
	background: #fff;
	border: 1px solid #34b8dd;
	line-height: 46px;
	font-size: 32px;
	color: #34b8dd;
	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: #34b8dd ;
	color: #fff;
}
.slider__nav_prev{
	left: 0;
	padding-right: 2px;
}
.slider__nav_next{
	right: 0;
	padding-left: 2px;
}
.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: 31%;
	padding: 32px;
	border-radius: 20px;
	position: relative;
	background: #fff;
	box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.25);
}
.advantages__item:nth-child(4){
	margin-right:0;
}
.advantages__icon{
	float: right;
	font-size: 40px;
	font-weight: 900;
	color: #34b8dd;
}
.advantages__number{
	float: left;
	color: #34b8dd;
	font-size: 32px;
	font-weight: 900;
}
.advantages__content{
	float: left;
	width: 100%;
}
.advantages__header{
	font-weight: 800;
	font-size: 22px;
	margin-bottom: 16px;
	margin-top: 16px;
	text-transform: uppercase;
	cursor: pointer;
	text-decoration: underline;
}
.advantages__text{
	font-weight: 400;
}
.pageblock{
	float: left;
	width: 100%;
	margin-top: 40px;
}
.pageblock__header{
	font-size: 25px;
	font-weight: 900;
	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;
}
.products__button{
	float: left;
	margin-top: 16px;
	font-size: 18px;
	font-weight: 500;
}
.products__content{
	font-size:16px;
	float: left;
	width: 100%;
	text-align: justify;
}
.products__description{
	float:left;
	width:100%;
	font-size: 18px;
	text-align: justify;
	line-height: 140%;
	overflow-y: auto;
}
.products__description_right{
	width: 74%;
	float: right;
}
.products__image{
}
.products__image_left{
	float: left;
	width: 20%;
}
.contactspage{
	text-align: left;
}
.contactspage__block{
	width: 100%;
	background: #fff;
	text-align: center;
}
.contactspage__item{
	float: left;
	width: 100%;
	margin-bottom: 20px;
	font-size: 25px;
	font-weight: 400;
}
.contactspage__socials{
	font-size: 25px;
	font-weight: 500;
}
.contactspage__title{
	margin-right: 10px;
	display: inline-block;
	vertical-align: top;
}
.contactspage__value{
	text-decoration: none;
	font-weight: 700;
}
.contactspage__social{
	font-size: 32px;
	display: inline-block;
	vertical-align: top;
	margin: 0 8px;
}
.contactspage__social_vk{
	color: #0077FF;
}
.contactspage__social_wa{
	color: #128C7E;
}
.contactspage__social_tg{
	color: #2AABEE;
}
.products__optionsText{
	float: left;
	width: 65%;
	font-size: 16px;
}
.products__optionsBlock{
	float: right;
	width: 40%;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.15);
	padding: 20px;
	border-radius: 4px;
	background: #f7f7f7;
}
.products__optionsHeader{
	float:left;
	width:100%;
	font-size:20px;
	font-weight:900;
	margin-bottom:20px;
}
.products__optionsItem{
	float: left;
	width: 100%;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #ddd;
}
.products__optionsItem:nth-last-child(1){
	border-bottom:0;
}
.products__optionsSocial{
	font-size: 50px;
	margin-right: 10px;
	text-decoration: none;
}
.products__optionsLabel{
	font-weight: 500;
	color: #777;
	font-size: 16px;
	margin-bottom: 4px;
	float: left;
	width: 100%;
}
.products__optionsValue{
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 4px;
	float: left;
	width: 100%;
}
.products__optionsButton{
	float: left;
	font-size: 18px;
	padding: 16px 30px;
}
.socialcolor_vk{
	color:#0077FF;
}
.socialcolor_wa{
	color:#128C7E;
}
.socialcolor_tg{
	color:#2AABEE;
}
.fixedsocials{
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 32px;
	background: #34b8dd;
	width: 65px;
	height: 65px;
	border-radius: 80px;
	color:#fff;
	cursor:pointer;
	-webkit-animation: blinksocail 2s infinite linear;
	animation: blinksocail 2s infinite linear;
	z-index: 1000;
}
@-webkit-keyframes blinksocail {
  	0% {
  	    -webkit-box-shadow: 0 0 0 0 #34b8dd;
  	            box-shadow: 0 0 0 0 #34b8dd;
	}
  	50% {
        -webkit-box-shadow: 0 0 8px 2px #34b8dd;
                box-shadow: 0 0 8px 2px #34b8dd;
  	}
  	100%{
  		-webkit-box-shadow: 0 0 0 0 #34b8dd;
  		        box-shadow: 0 0 0 0 #34b8dd;
  	}
}
@keyframes blinksocail {
  	0% {
  	    -webkit-box-shadow: 0 0 0 0 #34b8dd;
  	            box-shadow: 0 0 0 0 #34b8dd;
	}
  	50% {
        -webkit-box-shadow: 0 0 8px 2px #34b8dd;
                box-shadow: 0 0 8px 2px #34b8dd;
  	}
  	100%{
  		-webkit-box-shadow: 0 0 0 0 #34b8dd;
  		        box-shadow: 0 0 0 0 #34b8dd;
  	}
}
.fixedsocial__whatsappIcon{
	position: absolute;
	top: 10px;
	left: 10px;
}
.fixedsocial__telegramIcon{
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.fixedsocials__block{
	display:block;
	position:absolute;
	bottom: 66px;
	height: 0;
	width:100%;
	text-align:center;
	-webkit-transition:0.2s;
	-o-transition:0.2s;
	transition:0.2s;
	overflow:hidden;
}
.fixedsocials:hover .fixedsocials__block{
	height: 220px;
}
.fixedsocial{
	width: 100%;
	display: inline-block;
	vertical-align: top;
	font-size: 55px;
}
.fixedsocial:hover{
	opacity:0.8;
}
.fixedsocial_whatsapp, .fixedsocial_whatsapp:hover{
	color: #009688;
}
.fixedsocial_telegram, .fixedsocial_telegram:hover{
	color: #2AABEE;
	position: relative;
	top: -5px;
}
.fixedsocial_email, .fixedsocial_email:hover{
	color: #34b8dd;
	position: relative;
	top: -10px;
}
.tiny-products{
	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;
}
.product{
	width: 31%;
	margin: 0 1%;
	border-radius: 4px;
	background: #fff;
	position: relative;
	box-shadow: 0px 0px 3px 2px #2486a11a;
	margin-bottom: 20px;
	text-align: center;
	overflow: hidden;
	padding-bottom: 32px;
}
.product__image{
	cursor: pointer;
}
.product__content{
	padding: 20px;
}
.product__name{
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 16px;
}
.product__description{
	
}
.product__price{
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
}
.product__button{
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	padding: 14px 22px;
}
.questions__items{
	
}
.questions__item{
	float: left;
	width: 100%;
	margin-bottom: 16px;
	border-bottom: 1px solid #ddd;
	position: relative;
}
.question__block{
	float: left;
	width: 100%;
	cursor: pointer;
	transition:0.2s;
}
.questions__name{
	font-weight: 500;
	font-size: 18px;
	float: left;
	padding-right: 40px;
	padding-bottom: 16px;
}
.question__icon{
	font-size: 20px;
	margin-left: 16px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	top: 0px;
	position: absolute;
	right: 0;
}
.question__block:hover{
	color:#34b8dd;
	
}
.question__block:hover .question__icon{
	border-color: #34b8dd;
}
.questions__description{
	display:none;
	float: left;
	width: 100%;
	line-height: 140%;
	font-size: 16px;
	padding-bottom: 10px;
	color: #222;
}
.desctop-none{
	display:none;
}
.animateopacity{
	opacity:1;
}
.animateopacity.animate{
	-webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
	opacity:1;
}
.animateopacitystatic.animate{
	-webkit-transition: 1s ease-out;
    -o-transition: 1s ease-out;
    transition: 1s ease-out;
	opacity:1;
}