@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
*{
	margin:0;
	padding:0;
	outline:none;
}

ul{
	list-style:none;
	}

a{
	text-decoration:none;
	}

.clr{
	clear:both;
	height:0;
	display:block;
	}

.popup{
	display:none;
	left:50%;
	position:absolute;
	z-index:1300;
	}	

html{
	overflow-x: hidden;
}	

body{
	font-family: "Manrope", sans-serif;
	overflow-x: hidden;
	color: #1a1919;
	}	

.body-inner{
	width: 1290px;
	margin: 0 auto;
}	

.header{
	padding: 20px 70px;
	display: flex;
}

.header-inner{
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
}

.main-menu .mod-menu{
	display: flex;
	margin-top: 20px;
}

.main-menu li{
	margin-right: 30px;
}

.main-menu li a{
	color: #1a1919;
	font-weight: 500;
	font-size: 17px;
	display: inline-block;
	position: relative;
}

.main-menu li a:before{
	content: "";
	width: 0;
	height: 2px;
	left: 0;
	bottom: -2px;
	display: block;
	position: absolute;
	background-color: #1a1919;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

.main-menu li a:hover:before,
    .main-menu li.active a:before{
	width: 100%;
}

.slick-slider .slide{
	float: left;
	position: relative;
}

.slick-slider .slide img{
	max-height: 100%;
	width: 100%;
	display: block;
}

.slick-slider{
	position: relative;
	width: 100%;
}

.slick-arrow{
	width: 26px;
	height: 44px;
	position: absolute;
	top: 50%;
	margin-top: -22px;
	z-index: 100;
	font-size: 0;
	border: 0;
	cursor: pointer;
	opacity: 0.8;
	background: url(../images/arrows.png);
}

.slick-prev{
	left: 20px;
}

.slick-next{
	right: 20px;
	background-position: -29px 0;
}

.slider-desc{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 61%;
	display: flex;
	align-items: center;
	background-color: rgba(22,21,21,1);
}

.slider-info{
	margin-left: 110px;
	font-weight: 600;
}

.slider-subtitle{
	color: 22px;
	color: #fff;
	margin-bottom: 10px;
}

.slider-title{
	font-size: 100px;
	color: #fff;
	line-height: 110px;
}

.slider-title span{
	color: #ec6608;
}

.slider-buttons a{
	display: inline-block;
	height: 56px;
	width: 265px;
	text-align: center;
	color: #fff;
	background-color: #ec6608;
	font-size: 16px;
	line-height: 56px;
}

.slider-buttons{
	margin-top: 60px;
}

.home-station{
	background-color: #fafafa;
	padding: 110px 0;
}

.products-wrapper{
	display: flex;
	flex-wrap: wrap;
}

.products-wrapper .product-container{
	flex-basis: 33.33%;
	min-width: 33.33%;
	margin-bottom: 30px;
}

.product-inner{
	width: 95%;
	margin: 0 auto;
}

.product-image{
	height: 410px;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  border: 1px solid #fff;
}

.product-image:hover{
	border: 1px solid rgba(22,21,21,0.5);
}

.product-image a{
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

.product-image:hover a{
	 zoom: 1.3;
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2); 

}

.product-image img{
	display: block;
	max-width: 80%;
	max-height: 80%;
}

.product-name{
	margin-top: 30px;
	text-align: center;
}

.product-name a{
	color: #1a1919;
	font-size: 24px;
	font-weight: 600;
}

div.PricesalesPrice{
	margin-top: 10px;
	font-weight: 800;
	color: #5e5e5e;
}

.product-list-subtitle{
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.product-list-title{
	text-align: center;
	font-size: 57px;
	margin-bottom: 40px;
	font-weight: 600;
}

.empty-station{
	padding: 100px 0;
	background-color: #f3f3f3;
}

.ptroduct-empty-text{
	text-align: center;
	color: #ec6608;
	font-size: 20px;
	font-weight: 600;
}

.request-wrap{
	display: flex;
}

.request-block{
	background-color: rgba(22,21,21,1);
	padding: 100px 0;
	color: #fff;
}

.request-title{
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 10px;
}

.request-info{
	flex-grow: 1;
}

.request-btn .show-popup{
	display: block;
	height: 56px;
	width: 265px;
	text-align: center;
	color: #fff;
	background-color: #ec6608;
	font-size: 16px;
	line-height: 56px;
	margin-top: 15px;
	cursor: pointer;
	position: relative;
    -webkit-transition: all 800ms ease-out;
  -moz-transition: all 800ms ease-out;
  -o-transition: all 800ms ease-out;
  transition: all 800ms ease-out;
  overflow: hidden;
}

.request-btn .show-popup:before{
	content: "";
	position: absolute;
	left: -100%;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #ff7413;
	  -webkit-transition: all 600ms ease-out;
  -moz-transition: all 600ms ease-out;
  -o-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
  z-index: 1;
}

.request-btn .show-popup:hover:before{
	left: 0;
}

.request-btn .show-popup span{
	position: relative;
	z-index: 5;
}

.request-btn .show-popup:hover{
	-webkit-box-shadow: 0 0 40px rgba(236,102,8,0.9);
    -moz-box-shadow: 0 0 40px rgba(236,102,8,0.9);
    box-shadow: 0 0 40px rgba(236,102,8,0.9);
}

.gallery-wrap{
	padding: 100px 0;
}

.gallery-items{
	display: flex;
}

.gal-col-first .gal-image-wrap{
	min-height: 630px;
	display: flex;
}

.gal-image{
	display: flex;
	width: calc(100% - 40px);
	overflow: hidden;
}

.gal-col-first .gal-image{
	width: 100%;
}

.gal-image a{
	display: block;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 100%;
	width: 100%;
	min-width: 100%;
	min-height: 100%;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

.gal-image-wrap{
	width: 100%;
}

.gal-col-first{
	flex-basis: 50%;
	min-width: 50%;
}

.gal-col{
	flex-basis: 25%;
	min-width: 25%;
}

.gal-col .gal-image-wrap{
	min-height: 300px;
	display: flex;
}

.gal-col .gal-image-wrap:first-child{
	margin-bottom: 30px;
}

.gal-col .gal-image-wrap{
	justify-content: flex-end;
}

.gal-image:hover a{
	 zoom: 1.3;
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3); 

}

.faq-wrapper{
	background-color: #f3f3f3;
	padding: 100px 0;
}

.faq-title{
	font-size: 57px;
	font-weight: 600;
	margin-bottom: 50px;
}

.faq-list{
	display: flex;
}

.faq-col{
	min-width: 50%;
	flex-basis: 50%;
}

.faq-content{
	padding: 0 20px 15px 20px;
	color: #5e5e5e;
	display: none;
	font-size: 17px;
	font-weight: 500;
	line-height: 26px;
}

.faq-block-title{
	display: block;
	color: #1a1919;
	font-weight: 600;
	font-size: 19px;
	padding: 20px 0 20px 35px;
	position: relative;
}

.faq-block{
	border-bottom: 1px solid #e7e7e7;
}

.faq-block:last-child{
	border: 0;
}

.faq-col:first-child .faq-block{
	width: 95%;
}

.icons{
	position: absolute;
	background: url(../images/icons.png);
}

.i-plus{
	left: 0;
	top: 27px;
	width: 12px;
	height: 12px;
	background-position: -28px -1px;
}

.faq-block-title.active .i-plus{
	background-position: -42px -1px;
}

.footer{
	padding-top: 100px;
	background-color: #161515;
}

.footer-inner{
	display: flex;
}

.footer-bottom{
	display: flex;
	padding: 25px 0;
	border-top: 1px solid #302f2f;
}

.copyright{
	color: #f9f9f9;
	font-size: 16px;
}

.bottom-menu{
	margin-left: auto;
    justify-self: flex-end;
}

.bottom-menu a{
	color: #d3d5d5;
	font-size: 14px;
}

.bottom-menu a:hover,
    .footer-menu ul li a:hover,
    .osmap-items a:hover{
	text-decoration: underline;
}

.form-consult-wrapper{
	display: flex;
}

.form-consult{
	padding: 100px 0;
}

.form-consult .description{
	font-size: 50px;
	font-weight: 600;
	line-height: 60px;
	margin-bottom: 35px;
}

.form-consult .form-wrapper{
	flex-basis: 50%;
	max-width: 50%;

}

.form-consult .form-description{
	flex-basis: 50%;
	max-width: 50%;
}

.form-consult .form-inner{
	background-color: #fafafa;
	padding: 70px;
	margin-top: 15px;
}

.form-consult input[type=text],
    .form-consult input[type=email],
    .form-consult textarea,
    .order-popup input[type=text],
    .order-popup input[type=email],
    .order-popup input[type=tel],
    .order-popup textarea,
    .product-popup input[type=text],
    .product-popup input[type=email],
    .product-popup input[type=tel],
    .product-popup textarea,
    .contact-page-form input[type=text],
    .contact-page-form input[type=email],
    .contact-page-form input[type=tel],
    .contact-page-form textarea,
    .contact-page-form select{
	height: 50px;
	width: 100%;
	padding-left: 38px;
	border: 0;
	border-bottom: 1px solid #e7e7e7;
	background-color: #fafafa;
	font-family: "Manrope", sans-serif;
	font-size: 16px;
	box-sizing: border-box;
	display: block;
}

.form-consult textarea,
    .order-popup textarea,
    .product-popup textarea,
    .contact-page-form textarea{
	padding-top: 10px;
	height: 80px;
}

.form-consult .inputWrapper,
     .order-popup .inputWrapper,
     .product-popup .inputWrapper,
     .contact-page-form .inputWrapper{
	margin-bottom: 35px;
	position: relative;
}

.form-consult .inputWrapper:before,
   .order-popup .inputWrapper:before,
   .product-popup .inputWrapper:before,
   .contact-page-form .inputWrapper:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 0;
	background-color: #000;
		-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

.form-consult .inputWrapper:hover:before,
    .order-popup .inputWrapper:hover:before,
    .product-popup .inputWrapper:hover:before,
    .contact-page-form .inputWrapper:hover:before{
	width: 100%;
}

.form-consult .inputWrapper i,
    .order-popup .inputWrapper i,
    .product-popup .inputWrapper i,
    .contact-page-form .inputWrapper i{
	display: block;
	position: absolute;
	left: 0;
	top: 13px;
	background: url(../images/icons.png);
}

.form-consult .vssend-button{
	display: inline-block;
	height: 55px;
	padding: 0 30px;
	background-color: #ec6608;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border: 0;
	cursor: pointer;
}

.form-consult .vssend-button span,
   .contact-page-form .vssend-button span{
	position: relative;
	padding-left: 30px;
}

.i-plane{
	width: 18px;
	height: 15px;
	left: 0;
	top: 1px;
	background-position: -133px -3px;
}

.form-consult .field-name i,
    .order-popup .field-name i,
    .product-popup .field-name i,
    .contact-page-form .field-name i{
	width: 21px;
	height: 24px;
	background-position: -57px 0;
}

.form-consult .field-email i,
    .order-popup .field-email i,
    .product-popup .field-email i,
    .contact-page-form .field-email i{
	width: 26px;
	height: 19px;
	top: 16px;
	background-position: -79px 0;
}

.form-consult .field-message i,
    .order-popup .field-message i,
    .product-popup .field-message i,
    .contact-page-form .field-message i{
	width: 24px;
	height: 23px;
	top: 10px;
	background-position: -106px 0;
}

.form-consult .field-phone i,
   .order-popup .field-phone i,
   .product-popup .field-phone i,
    .contact-page-form .field-phone i{
    width: 21px;
	height: 21px;
	top: 12px;
	left: 2px;
	background-position: -27px -24px;
}

.form-consult .form-image{
	margin-left: 5px;
}

.search-link{
	display: block;
	width: 25px;
	height: 25px;
	margin-top: 18px;
	background: url(../images/icons.png);
}

.menu-link{
	display: block;
	width: 22px;
	height: 16px;
	margin: 24px 15px 0 0;
	background: url(../images/icons.png) -153px 0;
}

.mob-menu{
	display: none;
}

.top-request,
     .order-popup .vssend-button,
     .product-popup .vssend-button,
     .vm-details-button a,
     .show_cart a,
     .contact-page-form .vssend-button{
	display: block;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-size: 14px;
	background-color: #ec6608;
	padding: 0 15px;
	margin: 12px 30px 0 10px;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  cursor: pointer;
}

.top-request:hover,
     .buy-button:hover,
     .order-popup .vssend-button:hover,
     .product-popup .vssend-button:hover,
     .vm-details-button a:hover,
     .contact-page-form .vssend-button:hover{
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    background-color: #fa6c08;
}

.product-quantity-block:hover{
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.05);
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.phone a{
	font-size: 19px;
	color: #fff;
	font-weight: 600;
}

.phone{
	margin-bottom: 15px;
}

.contact-email{
	margin-bottom: 20px;
}

.contact-email a{
	font-size: 17px;
	color: #d3d5d5;
	display: inline-block;
	position: relative;
	padding-bottom: 10px;
}

.contact-email a:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 100%;
	background-color: #1a1919;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

.contact-email a:hover:before{
	width: 0;
}

.contacts-wrapper{
	margin-bottom: 40px;
}


.footer-menu ul{
	display: flex;
}

.footer-menu ul li{
	margin-left: 30px;
}

.footer-menu ul li a{
	color: #d3d5d5;
}

.footer-menu{
	margin-left: auto;
	margin-top: 5px;
	justify-self: flex-end;
}

.hreader-image{
	height: 520px;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.haeder-image-description{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.hid-desc{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}
.h1s{text-align: left;
	color: #1a1919;
	font-size: 57px;
	font-weight: 800;}
.hid-desc-inner, .hid-desc-inner h1{
	text-align: center;
	color: #fff;
	font-size: 57px;
	font-weight: 600;
}

.image-bg{
	min-height: 600px;
	background-position: center center;
	background-size: cover;
}

.productdetails{
	background-color: #fafafa;
}

.single-product{
	display: flex;
	padding-top: 120px;
	margin-bottom: 40px;
}

.single-product-left{
	flex-basis: 55%;
	max-width: 55%;
}

.single-product-right{
	flex-basis: 45%;
	max-width: 45%;
}

.main-image{
	position: relative;
}

.main-image img{
	max-width: 100%;
	max-height: 100%;
}

.description-wrap{
	margin-left: 50px;
}

.single-product h1{
	font-size: 35px;
	margin-bottom: 10px;
}

.single-product  span.PricesalesPrice{
	color: #ec6608;
	font-weight: 700;
	font-size: 24px;
}

.single-product .product-price{
	margin-bottom: 35px;
}

.product-short-description{
	font-size: 18px;
	color: #5e5e5e;
	line-height: 28px;
}

.product-buy-block{
	display: flex;
}

.product-quantity-block{
	display: flex;
	height: 53px;
	border: 1px solid #e7e7e7;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

.product-quantity-block:hover{
	background-color: #fff;
}

.quantity-input input{
	background: none;
	border: 0;
	display: block;
	height: 53px;
	width: 70px;
	text-align: center;
	font-size: 16px;
	font-family: "Manrope", sans-serif;
}

.buy-button{
	display: block;
	height: 55px;
	line-height: 55px;
	color: #fff;
	width: 180px;
	text-align: center;
	margin-left: 10px;
	font-weight: 600;
	background-color: #ec6608;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
}

.quantity-btn{
	display: flex;
	width: 50px;
	height: 26px;
	justify-content: center;
	align-items: center;
	position: relative;
}

.i-arrow-up,
    .i-arrow-down{
	width: 10px;
	height: 6px;
	left: 50%;
	margin-left: -5px;
	bottom: 5px;
	display: block;
	opacity: 0.5;
	background-position: -177px 0;
}

.i-arrow-down{
	background-position: -177px -7px;
	bottom: auto;
	top: 5px;
}

.quantity-btn:hover i{
    opacity: 0.8;
}

.tabs-link{
	display: flex;
	flex-wrap: wrap;
}

.tabs-link li{
	margin-right: 4px;
}

.tabs-link li a{
	display: block;
	min-width: 278px;
	height: 58px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-top: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	color: #1a1919;
	font-weight: 700;
}

.tabs-link li.active a{
	border-top: 2px solid #1a1919;
	background: none;
}

.products-tabs{
	margin-bottom: 60px;
}

.products-tabs .tab{
	padding-top: 60px;
}

.tab{
	display: none;
}

.tab.active{
	display: block;
}

.products-tabs table{
	width: 100%;
	border-collapse: collapse;
}

.products-tabs table td{
	padding: 10px 0;
	font-size: 17px;
	border-bottom: 1px solid #e7e7e7;
	color: #5e5e5e;
}

.products-tabs table th{
	text-align: left;
}

.products-tabs table td:first-child{
	color: #1a1919;
	padding-right: 15px;
}

.file-block a{
	display: block;
	padding-left: 30px;
	color: #1a1919;
	position: relative;
}

.i-downloads{
	width: 16px;
	height: 21px;
	left: 2px;
	top: 0;
	background-position: -189px 0;
}

.file-block a span{

	display: inline-block;
	position: relative;
}

.file-block a span:before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	height: 2px;
	width: 0;
		-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
	background-color: #1a1919;
}

.file-block a span:hover:before{
	width: 100%;
}

#description{
	font-size: 18px;
	color: #5e5e5e;
	line-height: 28px;
}

#description p,
    .faq-content p{
	display: block;
	padding-bottom: 20px;
}

#description ul li,
    .faq-content ul li{
	padding-left: 20px;
	position: relative;
	margin-bottom: 8px;
}

#description ul li:before,
    .faq-content ul li:before{
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	background-color: #1a1919;
	width: 5px;
	height: 5px;
	-webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     border-radius: 5px;
}

.dot{
	position: fixed;
	width: 8px;
	height: 8px;
	left: 0;
	bottom: 0;
	-webkit-border-radius: 8px;
     -moz-border-radius: 8px;
     border-radius: 8px;
     z-index: 10000;
     background-color: #1a1919;
}

#main-image{
	display: inline-block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #fff;
	position: relative;
}

#main-image span{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 47px;
	height: 47px;
	-webkit-border-radius: 47px;
     -moz-border-radius: 47px;
     border-radius: 47px;
     background-color: #fff;
     -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.03);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,0.03);
    box-shadow: 0 0 15px rgba(0,0,0,0.03);
    z-index: 100;
}

.zoom-pan-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
  will-change: transform;
}

.i-zoom{
	width: 17px;
	height: 18px;
	background-position: -207px 0;
}

#main-image span:hover .i-zoom{
	background-position: -207px -19PX;
}

.product-image-block{
	min-height: 520px;
	background-position: center center;
	background-size: cover;
}

.item-page{
	min-height: 600px;
}

.page-content{
	display: flex;
}

.page-content-left,
    .page-content-right{
	flex-basis: 50%;
	max-width: 50%;
}

.page-content-left img{
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.content-block{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 80px;
	height: 100%;
}

.content-block-title{
	font-size: 57px;
	font-weight: 700;
	line-height: 65px;
	margin-bottom: 30px;
	color: #1a1919;
}

.content-block-text p{
	font-size: 18px;
	line-height: 26px;
	margin-bottom: 20px;
	color: #5e5e5e;
}

.content-block-buttons{
	display: flex;
	margin: 40px 0;
}

.btn-main{
	display: block;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	background-color: #ec6608;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  margin-right: 20px;
}

.btn-second{
	display: block;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	color: #1a1919;
	font-size: 18px;
	font-weight: 600;
	border: 2px solid #1a1919;
	background-color: #fff;
	-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  margin-right: 20px;
}

.btn-main:hover{
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    background-color: #fa6c08;
}

.btn-second:hover{
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}    

.menu-popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	background-color: #161515;
}

.menu-popup-inner{
	display: flex;
	height: 100%;
}

.close-menu,
    .close-search{
	position: absolute;
	top: 50px;
	right: 50px;
	display: flex;
	color: #a8aaab;
	align-items: center;
	font-size: 17px;
	padding-right: 30px;
}

.i-close{
	width: 20px;
	height: 19px;
	right: 0;
	background-position: -1px -27px;
}

 .animate-box {
	  width: 20px;
	  height: 19px;
	  opacity: 0;
	  transform: scale(0.3) rotate(-360deg);
	  animation: showBox 1s ease-out forwards;
}

 @keyframes showBox {
      to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

.logo-white{
	display: block;
}

.menu-mob-wrapper{
	margin-top: 60px;
}

.menu-mob-wrapper a{
	font-size: 38px;
	font-weight: 700;
	color: #d3d5d5;
}

.menu-mob-wrapper li{
	display: block;
	margin-bottom: 22px;
}

.menu-mob-wrapper li.active a{
	color: #fafafa;
}

.menu-popup-left{
	padding: 50px 0 0 50px;
}

.menu-popup-left{
	flex-grow: 1;
}

.menu-popup-right{
	flex-basis: 300px;
	max-width: 300px;
	height: 400%;
	padding: 130px 70px 0 70px;
	background-color: #0c0b0b;
}

.contact-label{
	font-size: 18px;
	font-weight: 600;
	color: #fafafa;
	margin-bottom: 20px;
}

.mobile-contacts .contact-email a,
    .mobile-contacts .phone a{
	font-size: 30px;
	color: #fafafa;
	font-weight: 600;
}

.mobile-contacts .contact-email a:before{
	height: 1px;
	bottom: 2px;
	background-color: #fafafa;
}

.mobile-contacts .contact-email{
	margin-bottom: 60px;
}

.social-list{
	display: flex;
}

.social-list a{
	margin: 0 5px;
}

.bgblack{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	z-index: 1000;
	background-color: #000;
	display: none;
}

.order-popup,
   .product-popup{
	width: 600px;
	top: 200px;
	margin-left: -300px;
	background-color: #fafafa;
}


.message-popup{
	top: 100px;
	width: 500px;
	margin-left: -250px;
	background-color: #fff;
}

.popup-inner{
	padding: 40px;
	position: relative;
}

.vstext-top{
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 25px;
}

 .order-popup .input-wrap,
    .product-popup .input-wrap{
 	margin-bottom: 35px;
 	position: relative;
 }

 .require-text{
 	margin-top: 15px;
 	font-size: 14px;
 	font-weight: 500;
 }

 .order-popup .vssend-button,
    .product-popup .vssend-button{
 	margin: 15px auto 0 auto;
 	width: 150px;
 	text-align: center;
 	font-size: 16px;
 }

.close-icon{
 	width: 17px;
 	height: 16px;
 	right: 20px;
 	top: 20px;
 	position: absolute;
 	background: url(../images/icons.png) -53px -27px;
 }

 .close-icon:hover{
 	background-position: -73px -27px;
 }

 .message-content{
 	text-align: center;
 	padding-top: 15px;
 }

.inputWrapper.error input,
    .inputWrapper.error textarea{
 	border-bottom: 1px solid red;
 }

 .msg-inner{
 	color: #cb1d1d;
 	font-size: 15px;
 	padding-left: 30px;
 	margin-bottom: 18px;
 	position: relative;
 }

 .i-alert{
 	width: 18px;
 	height: 18px;
 	left: 0;
 	top: 1px;
 	background-position: -94px -26px;
 }

.order-info{
	margin-bottom: 20px;
}

.order-product-name{
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}

.order-info-row{
	color: #333;
	margin-bottom: 5px;
}

.order-product-quantity{
	padding-left: 2px;
}

.order-product-price{
	font-weight: 600;
	color: #ec6608;
	padding-left: 2px;
}

.search-popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 300px;
	z-index: 10000;
	display: none;
	background-color: #161515;
}

.search-popup-top{
	padding: 40px;
}

.search{
	padding-bottom: 20px;
	border-bottom: 1px solid #2f2e2e;
	display: flex;
}

.search-input{
	flex-grow: 1;
}

.search-input input{
	border: 0;
	height: 43px;
	background: none;
	width: 100%;
	font-size: 34px;
	color:#d3d5d5;
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	font-size: 34px;
}

.search button{
	display: block;
	border: 0;
	background: none;
	cursor: pointer;
	position: relative;
	width: 25px;
	height: 34px;
	margin-top: 10px;
}

.search-input input::-webkit-input-placeholder{
  color:#d3d5d5;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 34px;
}

.search-input input:-moz-placeholder{
  color:#d3d5d5;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 34px;
}

.search-input input::-moz-placeholder{
  color:#d3d5d5;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 34px;
}

.search-input input:-ms-input-placeholder {
  color:#d3d5d5;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 34px;
}

.i-search{
	width: 25px;
	height: 25px;
	left: 0;
	top: 0;
	background-position: -115px -26px;
}

.search button:hover .i-search{
	background-position: -141px -26px;
}

.charger-image img,
    .product-scheme-block img{
	display: block;
	max-width: 100%;
}

.difmod{
	padding: 115px 0;
	background-color: #fafafa;
}

.moddif-row,
    .moddif-col,
    .about-features-inner{
	display: flex;
}

.moddif-col,
    .moddif-block,
    .about-features-col{
	flex-basis: 50%;
	min-width: 50%;
}

.moddif-block-inner{
	margin: 0 15px;
	box-sizing: border-box;
	padding: 10px 15px;
	text-align: center;
	min-height: 300px;
	position: relative;
	background-color: #fff;
	-webkit-box-shadow: 0 0 40px rgba(0,0,0,0.05);
    -moz-box-shadow: 0 0 40px rgba(0,0,0,0.05);
    box-shadow: 0 0 40px rgba(0,0,0,0.05);

}

.moddif-line{
	display: flex;
	width: calc(100% - 30px);
	height: 4px;
	margin-left:15px;
	background-color: #e7e7e7;
}

.moddif-line-dots{
	display: flex;
	width: 100%;
}

.moddif-line-wrap{
	margin: 60px 0;
}

.moddif-line-col{
	flex-basis: 25%;
	min-width: 25%;
	position: relative;
}

.moddif-line-dot{
	width: 18px;
	height: 18px;
	left: 50%;
	top: -11px;
	position: absolute;
	margin-left: -9px;
	background-color: #fff;
	-webkit-border-radius: 18px;
     -moz-border-radius: 18px;
     border-radius: 18px;
}

.moddif-line-dot-in{
	width: 8px;
	height: 8px;
	margin: 5px 0 0 5px;
	-webkit-border-radius: 8px;
     -moz-border-radius: 8px;
     border-radius: 8px;
     background-color: #000;
}

.moddif-block-title{
	margin: 20px 10px 20px 10px;
	font-size: 24px;
	line-height: 28px;
	font-weight: 600;
	min-height: 60px;
}


.moddif-block-text{
	font-size: 17px;
	line-height: 27px;
	color: #5e5e5e;
	position: relative;
	z-index: 100;
}

.moddif-header{
	font-size: 57px;
	font-weight: 600;
	padding-left: 15px;
}

.header-col{
	display: flex;
	align-items: flex-end;
}

.moddif-block-inner:before {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	bottom: 4px;
	left: 50%;
	margin-left: -10px;
	background-color: #fff;
   -moz-transform: rotate(45deg);
     -o-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-webkit-transition: all 400ms ease-out;
  -moz-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  z-index: 50;

}

.moddif-block-inner:hover:before{
	bottom: -10px;
}

.moddif-row-bottom .moddif-block-inner:before{
	bottom: auto;
	top: 4px;
}

.moddif-row-bottom .moddif-block-inner:hover:before{
	top: -10px;
}

.moddif-line-col.active .moddif-line-dot-in{
	background-color: #7ecec8;
}

.moddif-line-col.active .moddif-line-dot{
	background-color: rgba(126,206,200,0.2);
}

.about-features{
	padding-bottom: 110px;
}

.about-features-header{
	font-size: 57px;
	font-weight: 600;
	line-height: 60px;
	padding-right: 60px;
	min-height: 289px;

}

.about-features-header > div{
   padding-top: 20px;
}

.about-features-block{
	display: flex;
	margin-bottom: 40px;

}

.afb-image{
	min-width: 80px;
	margin:12px 10px 0 0;
}

.afb-title{
	font-size: 28px;
	margin-bottom: 20px;
	font-weight: 500;
}

.abf-text{
	font-size: 17px;
	color: #5e5e5e;
}

.label-list{
	display: flex;
	margin: 40px 0 80px 0;
	justify-content: center;
}

.label-list-item{
	flex-basis: 25%;
}

.label-list-img{
	width: 150px;
	height: 150px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.label-list-img img{
	max-width: 100%;
	display: block;
}

.label-list-title{
	font-size: 17px;
	margin-top: 15px;
	text-align: center;
	font-weight: 600;
}

.charge-manage{
	margin: 60px 0;
}

.charge-manage table{
	border-collapse: collapse;
}

.charge-manage table img{
	max-width: 90%;
}

.charge-manage table td{
	width: 33.33%;
	text-align: center;
	padding: 15px 5px;
}

.charge-manage table td.td-header{
	font-size: 17px;
}

.page-header h1{
	text-align: center;
	font-size: 57px;
	padding: 40px;
	font-weight: 600;
}

.category-view{
	background-color: #fafafa;
	padding-bottom: 110px;
}

.category-view .product-container{
	margin-bottom: 55px;
}

.product-price{
	text-align: center;
}

.vm-details-button{
	display: flex;
	justify-content: center;
	margin-top: 15px;
}

.vm-details-button a{
	margin: 0;
	padding: 0 25px;
}

.top-bar{
	display: flex;
	margin: 30px 1% 45px 1%;
}

.products-order{
	justify-self: flex-end;
	margin-left: auto;
}

.result-counter{
	font-size: 16px;
	color: #9c9c9c;
}

.orderlist-select{
	background: none;
	border: 0;
	font-size: 16px;
	color: rgb(26,25,25);
}

.single-product .product-price{
	text-align: left;
}

.dropdown{
	display: none;
	position: absolute;
	width: 330px;
	right: 0;
	padding: 45px 30px;
	box-sizing: border-box;
	background-color: #161515;
	z-index: 800;
}

.vmCartModule{
	margin: 18px 20px 0 0;
	position: relative;
}

.cart-top{
	display: block;
	position: relative;
}

.cart-counter{
	display: block;
	position: absolute;
	width: 15px;
	height: 15px;
	line-height: 15px;
	text-align: center;
	-webkit-border-radius: 15px;
     -moz-border-radius: 15px;
     border-radius: 15px;
     background-color: #ec6608;
     color: #fff;
     font-size: 11px;
     bottom: -6px;
     right: -6px;
}

.cart-icon{
	display: block;
	width: 20px;
	height: 25px;
	background: url(../images/icons.png) -171px -25px;
}

.product_row_info .image{
	width: 80px;
	height: 80px;
	min-width: 80px;
	min-height: 80px;
	margin-right: 10px;
}

.product_row_info .image img{
	max-width: 100%;
	max-height: 100%;
}

.product_row_info{
	display: flex;
	margin-bottom: 15px;
	position: relative;
}

.product_row_info .product_name a,
    .product_row_info .product_name,
    .product_name_wrap{
	color: #fff;
	font-size: 19px;
}

.vmCartModule .total{
	color: #fff;
	padding: 20px 0;
	border-top: 1px solid #302f2f;
}

.show_cart{
	display: flex;
	justify-content: center;
}

.show_cart a{
	margin: 0;
}

.remove-product{
	position: absolute;
	right: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	display: block;
	background: url(../images/icons.png)  -195px -39px;
}

.message-content .continue_link,
     .message-content .showcart{
     display: none;
}

.cart-empty{
	font-size: 16px;
	color: #fff;
	text-align: center;
	margin: 30px 0;
}

.informer-container{
	position: relative;
	width: 400px;
	margin: 0 auto;
}

.informer-image{
	display: block;
	height: 100%;
	max-height: 100%;
	margin: 0 auto;
}

.dot-wrapper{
	position: absolute;
	width: 26px;
	height: 26px;
}

.dot-item{
	position: absolute;
	width: 26px;
	height: 26px;
	-webkit-border-radius: 26px;
     -moz-border-radius: 26px;
     border-radius: 26px;
     border: 1px solid #ec6608;
}

.dot-inner{
	width: 16px;
	height: 16px;
	-webkit-border-radius: 16px;
     -moz-border-radius: 16px;
     border-radius: 16px;
     margin: 5px 0 0 5px;
     background-color: #ec6608;
}

.dot-wrapper.active .dot-item{
	 animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.dot-text{
	background-color: #fff;
	padding: 10px;
	min-width: 200px;
	font-size: 14px;
	position: absolute;
	-webkit-border-radius: 8px;
     -moz-border-radius: 8px;
     border-radius: 8px;
     left: -100px;
     bottom: 40px;
     font-weight: 500;
    border: 1px solid #ec6608;
    -webkit-box-shadow: 0 0 40px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 40px rgba(0,0,0,0.1);
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
    visibility: hidden;
    -webkit-transition: all 800ms ease-out;
  -moz-transition: all 800ms ease-out;
  -o-transition: all 800ms ease-out;
  transition: all 800ms ease-out;
  opacity: 0;
  text-align: center;
  z-index: 200;
}

.dot-text:before{
	content: url("../images/triangle.png");
	position: absolute;
	left: 50%;
	margin-left: -7px;
	bottom: -14px;
}

.dot-wrapper.active .dot-text{
	visibility: visible;
	opacity: 1;
}

.breadcrumbs-wrapper{
	background-color: #fafafa;
	padding: 40px 0;
}

.mod-breadcrumbs{
	list-style: none;
	display: flex;
}

.mod-breadcrumbs a{
	color: #1a1919;
	font-weight: 600;
	display: flex;
}

.mod-breadcrumbs a .divider{
	width: 18px;
	display: flex;
	margin: 0 10px;
	align-items: center;
}

.i-arrow-right{
	width: 18px;
	height: 5px;
	background-position: 0 -50px;
}

.cart-popup{
	position: absolute;
	width: 700px;
	left: 50%;
	top: 100px;
	margin-left: -350px;
	background-color: #fff;
}


.cart-popup .popup-header{
	font-size: 26px;
	margin-bottom: 15px;
}

.cart-popup .popup-inner{
	padding: 25px;
}

.cart-popup .product_row_info{
	border: 1px solid #dcdcdc;
	-webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     border-radius: 5px;
     padding: 5px;
}

.cart-popup .product_row_info .product_name a, 
.cart-popup .product_row_info .product_name, 
.cart-popup .product_name_wrap{
	color: #1a1919;
}

.cart-popup .product_name_wrap{
	display: flex;
	justify-content: center;
	flex-direction: column;
	flex-grow: 1;
}

.cart-popup .product_price{
	margin-top: 5px;
	font-size: 15px;
}

.cart-popup .product_delete{
	display: flex;
	align-items: center;
	width: 11px;
	margin: 0 5px;
	position: relative;
}

.cart-popup .remove-product{
	position: relative;
	width: 11px;
	height: 13px;
	top: auto;
	background-position: -228px 0;
}

.cart-popup .remove-product:hover{
	background-position: -228px -14px;
}

.cart-popup .cart-quantity{
	display: flex;
	align-items: center;
}

.cart-popup .cart-subtotal{
	display: flex;
	align-items: center;
	width: 120px;
	text-align: center;
	margin-left: 40px;
}

.cq-input{
	width: 40px;
	height: 30px;
	border: 0;
	text-align: center;
}

.cq-wrap{
	border: 1px solid #dcdcdc;
	-webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     border-radius: 5px;
     display: flex;
}

.cq-div{
	flex-grow: 1;
}

.cq-quant{
	width: 15px;
	min-width: 15px;
	line-height: 30px;
	text-align: center;
	margin: 0 5px;
	font-size: 18px;
	color: #1a1919;
	font-weight: 600;
}

.cart-empty-hidden{
	height: 0;
	width: 0;
	overflow: hidden;
}

.cart-popup .cart-empty{
	color: #1a1919;
}

.finder h1{
	text-align: center;
	padding: 40px 0;
	font-size: 40px;
}

#search-form{
	background-color: #fafafa;
	padding: 40px;
}

.search-form-input{
	border: 1px solid #d1d1d1;
	height: 40px;
	display: flex;
}

.js-finder-searchform label{
	display: block;
	margin-bottom: 5px;
}

.search-form-input .awesomplete{
	flex-grow: 1;
}

.search-form-input input[type=text]{
	height: 40px;
	width: 100%;
	border: 0;
	background-color: #fafafa;
	padding-left: 20px;
	font-size: 16px;
	box-sizing: border-box;
}

.search-form-input button{
	display: flex;
	width: 40px;
	height: 40px;
	border: 0;
	align-items: center;
	justify-content: center;
	background-color: #fafafa;
	cursor: pointer;
}

.i-fsearch{
	width: 18px;
	height: 18px;
	display: block;
	background-position: -207px -39px;
}

.search-form-input button:hover .i-fsearch{
	background-position: -207px 0;
}

.result-image{
	height: 400px;
	margin-bottom: 15px;
}

.result-image img{
	max-width: 100%;
	max-height: 100%;
}

.result__title{
	margin-bottom: 20px;
}

.result__title .result__title-text{
	color: #1a1919;
	font-size: 24px;
	font-weight: 600;
}

.com-finder__navigation{
	margin-bottom: 80px;
}

.result__item{
	margin-bottom: 40px;
}

.result__item+.result__item{
	border: 0;
}

#search-query-explained a{
	color: #ec6608;
}

.product-additional-text{
	text-align: center;
	margin-bottom: 40px;
	margin-top: -20px;
	font-size: 24px;
}

.footer .contact-label{
	display: none;
}

.footer-right{
	margin-left: auto;
	justify-self: flex-end;
}

.footer-right .social-wrapper{
	margin-top: 25px;
}

.footer-right .social-list{
	justify-content: flex-end;
}

.product-informer{
	background-color: #fff;
	padding-top: 40px;
}

.title-404{
	font-size: 180px;
	text-align: center;
	padding: 100px 0 0 0;
	font-weight: 600;
}

.text-404{
	font-size: 40px;
	text-align: center;
}

.buttons-404{
	padding-top: 20px;
}

.wrap-404{
	position: relative;
}

.window-404{
	position: absolute;
	width: 600px;
	left: 50%;
	margin-left: -300px;
	z-index: 100;
	top: 0;
}

.image-404{
	text-align: center;
}

.osmap-items{
	padding: 60px 0 100px 0;
}

.osmap-items h2{
	display: none;
}

.osmap-items a{
	color: #1a1919;
}

.osmap-items li{
	display: block;
	margin-bottom: 8px;
}

.contacts-mod-wrap .body-inner{
	padding: 80px 0;
	display: flex;
}

.contact-text{
	flex-basis: 430px;
}

.contact-page-form{
	flex-grow: 1;
}

.contact-text .module-title{
	font-size: 28px;
	margin-bottom: 35px;
}

.contact-text .phone a{
	font-size: 20px;
	color: #1a1919;
}

.contact-text .contact-address,
     .contact-text .contact-email a{
	font-size: 17px;
	color: #5e5e5e;
	font-weight: 500;
	margin-bottom: 15px;
}

.contact-text .contact-email a:before{
	width: 0;
}

.contact-text .contact-email a:hover{
	color: #1a1919;
}

.contact-text .contact-email a:hover:before{
	width: 100%;
}

.form-row{
	display: flex;
}

.form-row .form-col{
  flex-basis: 50%;
  min-width: 50%;
}

.contact-page-form .form-consult-wrapper{
	display: block;
}

.contact-page-form input[type=text],
    .contact-page-form input[type=email],
    .contact-page-form input[type=tel],
    .contact-page-form textarea,
    .contact-page-form select{
    background-color: #fff;
}

.contact-page-form select{
	color: #767676;
}

.contact-page-form textarea{
	height: 80px;
}

.contact-page-form .form-col .inputWrapper{
	width: 90%;
}

.field-product i{
	background-position: -233px -31px !important;
	width: 14px;
	height: 25px;
	left: 5px !important;
}

.contact-page-form .inputWrapper.field-message{
	width: 96%;
}

.btn-wrap-bottom{
	display: flex;
}

.btn-wrap-bottom .inputCheck{
	display: flex;
	align-items: center;
}

.btn-wrap-bottom .btn-wrap{
	margin-right: 40px;
}

.btn-wrap-bottom .inputCheck label{
	padding-left: 10px;
	font-size: 14px;
}

.contact-page-form .vssend-button{
	border: 0;
	margin: 0;
	height: 55px;
	width: 185px;
	font-size: 18px;
	font-weight: 600;
	font-family: "Manrope", sans-serif;
	cursor: pointer;
}

.contact-page-form .vssend-button i{
	top: 5px;
}

.images-thumbs{
	display: flex;
	margin-top: 25px;
}

.img-thumb{
	max-width: 120px;
	width: 120px;
	height: 120px;
	margin: 0 10px 10px 0;
}

.img-thumb a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 1px solid #dcdcdc;
	-webkit-border-radius: 8px;
     -moz-border-radius: 8px;
     border-radius: 8px;
     overflow: hidden;
     -webkit-transition: all 600ms ease-out;
  -moz-transition: all 600ms ease-out;
  -o-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
}

.img-thumb a:hover{
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.15);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,0.15);
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.img-thumb a img{
	max-width: 100%;
	max-height: 100%;
}

@media screen and  (max-width: 1440px) {
	.slider-title{
		font-size: 80px;
		line-height: 90px;
	}

	.slider-info{
		margin-left: 5%;
	}
} 

@media screen and  (max-width: 1368px) {
	.content-block-title{
		font-size: 45px;
		line-height: 50px;
	}

	.content-block{
		margin: 0 50px;
	}

	.content-block-text p{
		font-size: 16px;
	}

	.search{
		margin: 0 40px;
		box-sizing: border-box;
	}
}

@media screen and  (max-width: 1300px) {
	.body-inner{
		width: 96%;
	}

	.main-menu{
		display: none;
	}

	.mob-menu{
		display: block;
	}
}

@media screen and  (max-width: 1200px) {
	.slider-title{
		font-size: 60px;
		line-height: 70px;
	}

	.dot{
		display: none;
	}
}

@media screen and  (max-width: 988px) {
	.header{
		padding: 20px;
	}

	.slider-title{
		font-size: 50px;
		line-height: 60px;
	}

	.slider-buttons a{
		height: 45px;
		line-height: 45px;
		width: 220px;
	}

	.product-list-title{
		font-size: 40px;
	}

	.products-wrapper .product-container{
		flex-basis: 50%;
		min-width: 50%;
		margin-bottom: 40px;
	}

	.products-wrapper,
	    .gallery-items{
		flex-wrap: wrap;
	}

	.product-name a{
		font-size: 20px;
	}

	.request-wrap,
	    .single-product,
	    .page-content,
	    .moddif-row,
	    .about-features-inner,
	    .contacts-mod-wrap .body-inner{
		flex-direction: column;
	}

	.request-info{
		text-align: center;
	}

	.request-btn{
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}

	.gal-col-first,
	    .single-product-left,
	    .single-product-right,
	    .page-content-left,
	    .page-content-right,
	    .header-col{
		flex-basis: 100%;
        min-width: 100%;
        margin-bottom: 40px;
	}

	.single-product-right{
		margin-bottom: 0;
	}

	.gal-col,
	   .moddif-line-col {
	    flex-basis: 50%;
	    min-width: 50%;
	}

	.gal-col .gal-image-wrap{
		justify-content: flex-start;
	}

	.gal-col:last-child .gal-image-wrap{
		justify-content: flex-end;
	}

	.moddif-line-col:first-child,
	    .moddif-line-col:nth-child(2){
	    display: none;
	}

	.gal-image{
		width: calc(100% - 20px);
	}

	.tabs-link li{
		margin-bottom: 15px;
	}

	.description-wrap{
		margin-left: 0;
	}

	.menu-mob-wrapper a{
		font-size: 30px;
	}

	.mobile-contacts .contact-email a, 
	.mobile-contacts .phone a{
		font-size: 24px;
	}

	.mobile-contacts .contact-email{
		margin-bottom: 30px;
	}

	.menu-popup-right{
		flex-basis: 250px;
		max-width: 250px;
	}

	.about-features-header{
		min-height: 100px;
		margin-bottom: 40px;
		font-size: 35px;
		line-height: 45px;
	}

	.label-list-img{
		width: auto;
	}

	.label-list-item{
		margin: 0 15px;
	}

	.footer{
		padding-top: 40px;
	}

	.product-additional-text{
		font-size: 18px;
	}

	.contact-text{
		flex-basis: auto;
	}
}

@media screen and  (max-width: 768px) {
	.slider-title,
	    .moddif-header,
	    .content-block-title{
		font-size: 35px;
		line-height: 45px;
	}
	.h1s{font-size: 45px;}
    .slider-desc h1{font-size:16px !important;}
    .slider-buttons { margin-top: 40px;}
	.products-wrapper .product-container {
        flex-basis: 100%;
        min-width: 100%;
    }

    .faq-list,
        .form-consult-wrapper,
        .moddif-row,
        .moddif-col{
    	flex-wrap: wrap;
    }

    .faq-col,
        .form-consult .form-description,
        .form-consult .form-wrapper,
        .moddif-col,
        .moddif-block{
		flex-basis: 100%;
        min-width: 100%;
	}

	.faq-col:first-child .faq-block{
		width: 100%;
	}

	.faq-col:first-child .faq-block:last-child{
		border-bottom: 1px solid #e7e7e7;
	}

	.faq-title,
	    .form-consult .description,
	    .hid-desc-inner, .hid-desc-inner h1{
		font-size: 40px;
	}

	.form-consult .description{
		line-height: 45px;
	}

	.footer-menu ul,
	    .menu-popup-inner,
	    .about-features-block{
		flex-direction: column;
	}

	.footer-menu ul li,
	    .menu-mob-wrapper li{
		margin-bottom: 10px;
	}

	.form-image img{
		max-width: 100%;
	}

	.menu-mob-wrapper a{
		font-size: 24px;
	}

	.menu-popup-left,
	    .menu-popup-right{
		flex-basis: 100%;
		min-width: 100%;
		box-sizing: border-box;
	}

	.menu-popup-right{
		background: none;
		padding: 20px 0 0 50px;
	}

	.mobile-contacts .contact-email a, 
	.mobile-contacts .phone a{
		font-size: 20px;
	}

	.order-popup, 
	   .product-popup,
	   .message-popup{
		width: 90%;
		margin-left: -45%;
	}

	.moddif-block-inner{
		min-height: 180px;
		padding-bottom: 20px;
	}

	.moddif-block{
		margin-bottom: 40px;
	}

	.moddif-line-wrap,
	    .moddif-block-inner:before{
		display: none;
	}

	.moddif-block-title{
		margin-bottom: 0;
	}

	.difmod{
		padding: 50px 0 30px 0;
	}

	.afb-image{
		margin-bottom: 20px;
	}

	.about-features-block{
		text-align: center;
	}

	.about-features-header{
		padding-right: 0;
		text-align: center;
	}

	.label-list-img{
		height: 100px;
	}

	.table-wrapper{
		width: 100%;
		overflow-x: scroll;
	}

	.table-wrapper table{
		min-width: 800px;
	}

	.window-404{
		width: 90%;
		margin-left: -45%;
	}

}

@media screen and  (max-width: 568px) {
	.slider-desc{
		width: 100%;
		height: 300px;
	}
    .slider-desc h1{font-size:14px !important;}
    
	.slider-info{
		margin-right: 5%;
	}

	.slider-title{
		font-size: 25px;
		line-height: 35px;
	}

	.slider-buttons,
	    .btn-wrap-bottom .inputCheck{
		margin-top: 30px;
	}

	.slick-slider .slide{
		padding-top: 270px;
	}

	.gal-col .gal-image-wrap{
		min-height: 160px;
	}

	.gal-image{
		width: calc(100% - 10px);
	}

	.tabs-link li{
		flex-basis: 100%;
		max-width: 100%;
	}

	.products-tabs table td{
		font-size: 15px;
	}

	.content-block{
		margin: 0 10px;
	}

	.search-input input{
		font-size: 18px;
	}

	.search-input input::-webkit-input-placeholder{
		  font-size: 18px;
		}

		.search-input input:-moz-placeholder{
		  font-size: 18px;
		}

		.search-input input::-moz-placeholder{
		 font-size: 18px;
		}

		.search-input input:-ms-input-placeholder {
		  font-size: 18px;
		}
	
	.label-list,
	    .form-row,
	    .btn-wrap-bottom{
		flex-direction: column;
	}

	.label-list-img{
		height: auto;
		width: 150px;
	}	 

	.title-404{
		font-size: 100px;
	} 

	.text-404{
		font-size: 20px;
	}

	.contact-page-form .form-col .inputWrapper,
	.contact-page-form .inputWrapper.field-message{
		width: 100%;
	}
}

@media screen and  (max-width: 480px) {
	#logo{
		width: 80px;
		display: block;
		margin-top: 14px;
	}

	#logo img{
		max-width: 100%;
	}

	.top-request{
		margin-right: 15px;
	}

	.content-block-buttons{
		flex-direction: column;
	}

	.content-block-buttons a{
		margin: 0 0 10px 0;
	}

	.dropdown{
		right: -40px;
	}

	.informer-container{
		width: 320px;
	}

	.informer-image{
		width: 100%;
		max-width: 100%;
	}

	.dot-4 .dot-text,
	    .dot-5 .dot-text{
		left: -170px;
	}

	.dot-4 .dot-text:before,
	    .dot-5 .dot-text:before{
		margin-left: auto;
		left: 175px;
	}

	.dot-9 .dot-text,
	    .dot-11 .dot-text{
		left: -20px;
	}

	.dot-9 .dot-text:before,
	    .dot-11 .dot-text:before{
		margin-left: auto;
		left: 25px;
	}

	.top-request{
		padding: 0 5px;
		margin-left: 0;
	}
}