@font-face {
    font-family: 'gilroy';
    src: url('../fonts/gilroy-regular-webfont.eot');
    src: url('../fonts/gilroy-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/gilroy-regular-webfont.woff2') format('woff2'),
         url('../fonts/gilroy-regular-webfont.woff') format('woff'),
         url('../fonts/gilroy-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'GothamPro';
    src: url('../fonts/GothaProReg.eot');
    src: url('../fonts/GothaProReg.eot') format('embedded-opentype'),
         url('../fonts/GothaProReg.woff2') format('woff2'),
         url('../fonts/GothaProReg.woff') format('woff'),
         url('../fonts/GothaProReg.ttf') format('truetype');
	font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'GothamPro';
    src: url('../fonts/GothaProLig.eot');
    src: url('../fonts/GothaProLig.eot') format('embedded-opentype'),
         url('../fonts/GothaProLig.woff2') format('woff2'),
         url('../fonts/GothaProLig.woff') format('woff'),
         url('../fonts/GothaProLig.ttf') format('truetype');
	font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'GothamPro';
    src: url('../fonts/GothaProBol.eot');
    src: url('../fonts/GothaProBol.eot') format('embedded-opentype'),
         url('../fonts/GothaProBol.woff2') format('woff2'),
         url('../fonts/GothaProBol.woff') format('woff'),
         url('../fonts/GothaProBol.ttf') format('truetype');
	font-weight: 700;
    font-style: normal;
}
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: #f3f3f3;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-weight: 400;
	font-family: 'GothamPro', Arial, Helvetica, sans-serif;
	line-height: 25px;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 400;
	font-family: 'GothamPro', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
button {font-weight: 400;}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.holder {
	max-width: 1210px;
	padding: 0 20px;
	margin: 0 auto;
}
.holder:after {
	display: block;
	content: '';
	clear: both;
}
h1 {
	margin: 0;
	font-size: 65px;
	line-height: 65px;
}
h2 {
	margin: 0 0 45px;
	font-size: 45px;
	line-height: 55px;
}
h3 {
	margin: 0 0 25px;
	font-size: 24px;
	line-height: 29px;
}
h4 {
	margin: 0 0 20px;
	font-size: 24px;
	line-height: 29px;
}
p {margin: 0 0 21px;}
p a, .article li a {color: #d8403a;}
.button-holder {text-align: center;}
.button {
	overflow: hidden;
	position: relative;
	display: inline-block;
	padding: 14px 20px 18px;
	margin: 0 auto;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border-radius: 7px;
	background-image: -moz-linear-gradient( 90deg, rgb(32,197,107) 0%, rgb(40,213,117) 39%, rgb(48,229,127) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(32,197,107) 0%, rgb(40,213,117) 39%, rgb(48,229,127) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(32,197,107) 0%, rgb(40,213,117) 39%, rgb(48,229,127) 100%);
	box-shadow: 0px 10px 9px 1px rgba(32, 197, 107, 0.36);
}
.button:hover {
	background: #2ee17d;
}
.button:after {
   -webkit-filter: blur(12px);
   -moz-filter: blur(12px);
   filter: blur(12px); content: "";
   margin-left: 60px;
   width: 40px;
   height: 300px;
   background: #fff;
   -webkit-animation-delay: 0.07s;
   animation-delay: 0.07s;
   position: absolute;
   left: -40px;
   top: -150px;
   -webkit-animation-timing-function: ease-in-out;
   animation-timing-function: ease-in-out;
   -webkit-transition: all 1s;
   transition: all 1s;
   -webkit-animation-name: slideme;
   animation-name: slideme;
   -webkit-animation-duration: 4s; /* Скорость блика в сек */
   animation-duration: 4s; /* Скорость блика в сек */
   -webkit-animation-iteration-count: infinite;
   animation-iteration-count: infinite;
   -webkit-transform: rotate(40deg);
   transform: rotate(40deg)
}
@-webkit-keyframes slideme { 0% { left: -30px; margin-left: 0px; }
 30% { left: 110%; margin-left: 80px; }
 100% { left: 110%; margin-left: 80px; }
}
@keyframes slideme { 0% { left: -30px; margin-left: 0px; }
 30% { left: 110%; margin-left: 80px; }
 100% { left: 110%; margin-left: 80px; }
}
/************************* form-block *************************/
.input {
	display: block;
	width: 100%;
	height: 39px;
	padding: 0 15px 0 30px;
	margin: 0 0 20px;
	color: #000;
	font-size: 15px;
	background: #fff;
}
.textarea {
	display: block;
	width: 100%;
	height: 100px;
	padding: 10px 16px;
	margin: 0 0 20px;
	color: #2c0731;
	font-size: 16px;
	background: #fff;
}
.submit {
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
	padding: 20px 10px 21px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	border-radius: 7px;
	background-image: -moz-linear-gradient( 90deg, rgb(32,197,107) 0%, rgb(40,213,117) 39%, rgb(48,229,127) 100%);
	background-image: -webkit-linear-gradient( 90deg, rgb(32,197,107) 0%, rgb(40,213,117) 39%, rgb(48,229,127) 100%);
	background-image: -ms-linear-gradient( 90deg, rgb(32,197,107) 0%, rgb(40,213,117) 39%, rgb(48,229,127) 100%);
	box-shadow: 0px 10px 9px 1px rgba(32, 197, 107, 0.36);
}
.submit:hover {
	background: #2ee17d;
}
.submit:after {
   -webkit-filter: blur(12px);
   -moz-filter: blur(12px);
   filter: blur(12px); content: "";
   margin-left: 60px;
   width: 40px;
   height: 300px;
   background: #fff;
   -webkit-animation-delay: 0.07s;
   animation-delay: 0.07s;
   position: absolute;
   left: -40px;
   top: -150px;
   -webkit-animation-timing-function: ease-in-out;
   animation-timing-function: ease-in-out;
   -webkit-transition: all 1s;
   transition: all 1s;
   -webkit-animation-name: slideme;
   animation-name: slideme;
   -webkit-animation-duration: 4s; /* Скорость блика в сек */
   animation-duration: 4s; /* Скорость блика в сек */
   -webkit-animation-iteration-count: infinite;
   animation-iteration-count: infinite;
   -webkit-transform: rotate(40deg);
   transform: rotate(40deg)
}
::-webkit-input-placeholder {color: #000;}
:-moz-placeholder {color: #000; opacity: 1;}
::-moz-placeholder {color: #000; opacity: 1;}
:-ms-input-placeholder {color: #000;}
.input.error, .textarea.error {
	color: rgb(255, 86, 71);
	background-color: rgb(255, 206, 202);
}
label.error {
	position: absolute;
	left: -9999px;
}
/************************* wrapper *************************/
#wrapper {
	position: relative;
	overflow: hidden;
}
/************************* header *************************/

.header {
	
  background-image: url(../img/backgr.png);
	position: relative;
  background-size: cover;
}


/************************* header-top *************************/




.header-logo {
	float: left;
	padding: 0;
}
.header-top-content {
	margin: 0 0 0 195px;
	padding: 37px 0 0;
}
.header-links {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 0 50px;
}
.header-links a {
	color: #fff;
	opacity: 0.7;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
.header-links a:hover {color: #ffb321;}
.no-border {text-decoration: none;}
.header-nav {
	
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 16px;
	font-weight: 700;
	/* letter-spacing: 2px; */
	/* text-transform: uppercase; */
}
.header-nav a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
.header-nav a:hover {color: #ffb321;}

.mob-nav-icon {
	position: absolute;
	right: 20px;
	top: 24px;
	z-index: 120;
	padding: 0 0 8px;
	display: none;
}
.mob-nav-block {
    position: relative;
	display: block;
    width: 24px;
    height: 2px;
    margin: 8px 0 0;
	background: #fff;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.mob-nav-block:after {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #fff;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.mob-nav-block:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: #fff;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.mob-nav-icon.active .mob-nav-block {
    background: none;
}
.mob-nav-icon.active .mob-nav-block:before {
    top: 0;
    transform: rotate(45deg);
	background: #ffb321;
}
.mob-nav-icon.active .mob-nav-block:after {
    top: 0;
    transform: rotate(-45deg);
	background: #ffb321;
}
.mob-nav {
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	z-index: 100;
	width: 100%;
	padding: 64px 0 0;
	overflow-y: auto;
	background: #f4f5f7;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
.mob-nav.vis {right: 0;}
/************************* header-main *************************/
.header-main {
	padding: 45px 0 1px;
}
.header-main-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
}
.header-main-left {
	width: 48%;
	padding: 0 0 50px;
}
.header-main-right {
	width: 48%;
	max-width: 445px;
	padding: 0 0 1px;
}
.header-title {
	color: #fff;
}
.header-title-big {
	display: block;
	margin: 0 0 37px;
	font-size: 48px;
	line-height: 65px;
}
.header-title-note {
	display: block;
	margin: 0 0 36px;
	color: #283388;
	font-size: 18px;
	line-height: 26px;
}
.header-title-note span {
	display: inline-block;
	padding: 0 10px;
	background: #ffb321;
}
.header-main-list {
	max-width: 430px;
	color: #fff;
}
.header-main-list li {
	position: relative;
	padding: 0 0 0 30px;
	font-size: 15px;
	line-height: 30px;
}
.header-main-list li:before {
	position: absolute;
	left: 3px;
	display: block;
	content: '+';
	color: #ffb321;
	font-size: 22px;
	line-height: 30px;
}
.header-form {
	position: relative;
	padding: 52px 50px 47px;
	margin: 0 0 -97px;
	background: #fff;
	border-radius: 7px;
	box-shadow: 0px 42px 70px 0px rgba(110, 111, 114, 0.13);
}
.header-form form {position: relative;}
.header-form-img {
	position: absolute;
	left: -103px;
	bottom: -43px;
}
.header-form-title {
	position: relative;
	margin: 0 0 5px;
	font-size: 38px;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
}
.header-form-text {
	position: relative;
	margin: 0 0 22px;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
}
.header-form-note {
	position: relative;
	padding: 22px 0 0;
	font-size: 13px;
	line-height: 22px;
	text-align: center;
}
.header-form-note a {
	color: #000;
	text-decoration: none;
}
.header-form-note img {
	display: inline-block;
	vertical-align: top;
	margin: 3px 0 0;
}
.header-form .input {
    display: block;
    width: 100%;
    height: 63px;
    padding: 0 20px;
    margin: 0 0 14px;
    color: #000;
    font-size: 15px;
    background: #ececec;
	border-radius: 7px;
}
.header-form .select-item {margin: 0 0 14px;}
.header-form .ui-selectmenu-button span.ui-selectmenu-text {
    padding: 19px 40px 0 20px;
    height: 63px;
	font-size: 15px;
	background: #ececec;
	border-radius: 7px;
}
.header-form .ui-selectmenu-button span.ui-icon {
	top: 29px;
}


.form-part {
	float: left;
	width: 100%;
	padding: 0 293px 0 0;
}
.form-part-holder {
	padding: 13px 0 12px;
	background: #fff;
}
.form-part-holder:after {
	display: block;
	content: '';
	clear: both;
}
.form-line .submit {
	float: right;
	width: 284px;
	margin: 0 0 0 -284px;
}
.form-item {
	float: left;
	width: 30%;
	border-left: 1px solid #ccc;
}
.form-item-long {
	width: 40%;
	border-left: 0;
}
.form-line .input {margin: 0;}

/************************* about *************************/
.pros {
	padding: 120px 0 0;
}
.pros-slider {
	overflow: hidden;
	padding: 0 29px;
	margin: 0 -29px -70px;
}
.pros-slider .slick-list {overflow: visible;}
.pros-slider .slick-track {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.pros-slider .pros-slide {
	height: auto;
	padding: 30px 9px 70px;
}
.pros-item {
	position: relative;
	height: 100%;
	padding: 35px 30px 35px 35px;
	background: #fff;
	border-radius: 7px;
	box-shadow: 0px 32px 50px 0px rgba(110, 111, 114, 0.13);
}
.pros-title {
	position: relative;
	margin: 0 100px 22px 0;
	font-size: 23px;
	line-height: 35px;
}
.pros-text {
	position: relative;
	font-size: 15px;
	line-height: 24px;
}
.pros-img {
	position: absolute;
}
.pros-img1 {
	top: 26px;
	right: 0;
}
.pros-img2 {
	bottom: 0;
	left: 50%;
	margin-left: -154px;
}
.pros-img3 {
	top: 26px;
	right: 0;
}
/************************* about *************************/
.about {
	position: relative;
	z-index: 20;
  padding: 50px 0px;
}
.header-about{
  background: #283388;
}
.header-about .header-links{
  margin: 0 0 25px;
}
.header-about .header-nav{
  padding-bottom: 15px;
}

.about-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.about-content {
	width: 61%;
	padding: 70px 60px 50px 78px;
	background: #fff;
}
.about-content-text {padding: 20px 0 0;}
.about-content p {
	margin: 0 0 35px;
	font-size: 20px;
	line-height: 35px;
}
.about-side {
	width: 39%;
	background: #e6e6eb;
}
.about-side-item {
	overflow: hidden;
	padding: 40px 20px 40px 28px;
	border-top: 1px solid #dcdce2;
}
.about-side-item:first-child {border-top: 0;}
.about-side-icon {
	float: left;
	height: 126px;
	line-height: 126px;
}
.about-side-icon img {
	vertical-align: middle;
}
.about-side-text {
	margin: 0 0 0 145px;
	padding: 38px 0 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
}
/************************* category *************************/
.category {
	padding: 63px 0 70px;
}
.category h2 sup {
	font-weight: 400;
	font-size: 22px;
}
.category-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.category-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	width: 31%;
	margin: 19px 1%;
	padding: 24px 30px 34px;
	background: #fff;
	border-radius: 7px;
	box-shadow: 0px 42px 70px 0px rgba(110, 111, 114, 0.13);
	transition: all .3s linear;
}
.category-item:hover {
	box-shadow: 0px 15px 40px 0px rgba(110, 111, 114, 0.36);
}

.category-item-title {
	margin: 0 0 22px;
	font-size: 16px;
	font-weight: 700;
	line-height: 23px;
	text-align: center;
}
.category-item-img {
	height: 200px;
	margin: auto 0 34px;
	line-height: 115px;
	text-align: center;
}
.category-item-img img {
	width: 100%;
  border-radius: 5px;
	vertical-align: middle;
  height: 100%;
  object-fit: cover;
}
.category-item-button {
	text-align: center;
}
/************************* products *************************/



.slider-lk-pr{
  width: 40%;
}

.slider-lk-pr .slick-slide img{
  max-width: 100%;
}
.slider-lk-pr .slick-dots{
  display: none !important;
}
.product-lk-main h1{
  font-size: 35px;
  padding: 15px 0px;
  width: 100%;
}
.product-lk-main p{
  width: 50%;
  font-size: 18px;
  font-family: 'regular';
}
.slider-lk-pr-main{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}




/************************* products *************************/
/************************* order *************************/
.order {
	padding: 93px 0 82px;
}
.order h2 {margin: 0 0 21px;}
.order-text {
	margin: 0 0 34px;
	font-size: 20px;
	line-height: 30px;
}
.header-logo img{
  max-width: 200px;
}
.footer-logo img{
  max-width: 200px;
}
.order {
	padding: 93px 0 105px;
}
.order2 h2 {max-width: 820px;}
/************************* gallery *************************/
.gallery-slider {
	margin: 0 -9px;
}
.gallery-slide {
	padding: 0 9px;
	opacity: 0.3;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
.gallery-slide img {
	width: 100%;
}
.gallery-slider .slick-list {overflow: visible;}
.gallery-slide.slick-active {opacity: 1;}
.gallery-slider .slick-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 51px;
	height: 105px;
	margin-top: -51px;
	font-size: 0;
	z-index: 20;
	cursor: pointer;
	background: #f3f3f3;
}
.gallery-slider .slick-prev {
	margin-left: -51px;
	border-radius: 51px 0 0 51px;
}
.gallery-slider .slick-next {
	border-radius: 0 51px 51px 0;
}
.gallery-slider .slick-arrow:after {
	position: absolute;
	top: 50%;
	display: block;
	content: '';
	width: 19px;
	height: 29px;
	margin-top: -15px;
}
.gallery-slider .slick-prev:after {
	right: 11px;
	background: url(../img/arrows.png) -1px -18px no-repeat;
}
.gallery-slider .slick-next:after {
	left: 11px;
	background: url(../img/arrows.png) -43px -18px  no-repeat;
}

/************************* review *************************/
.review {
	padding: 90px 0 1px;
}
.review-slider {
	margin: 0 -9px;
}
.review-slide {
	padding: 0 9px 133px;
}
.review-slide-inner {
	padding: 32px 10px 1px;
	background: #ffb321;
}
.review-slide:nth-child(2n + 1) .review-slide-inner{background: #d2d2d2;}
.review-img {
	max-width: 275px;
	margin: 0 auto -53px;
	border: 9px solid #f3f3f3;
	-webkit-box-shadow: 0 42px 70px 0 rgba(40,51,136,0.13);
	box-shadow: 0 42px 70px 0 rgba(40,51,136,0.13);
}
.review-img img {width: 100%;}
.review-title {
	min-height: 60px;
	margin: 0 0 30px;
	color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}
.review-slider .slick-arrow {
	position: absolute;
	top: 50%;
	display: block;
	width: 19px;
	height: 29px;
	margin-top: -81px;
	font-size: 0;
	z-index: 20;
	cursor: pointer;
}
.review-slider .slick-prev {
	left: -50px;
	background: url(../images/arrows.png) 0 -29px no-repeat;
}
.review-slider .slick-next {
	right: -50px;
	background: url(../images/arrows.png) -19px -29px no-repeat;
}
.review-slider .slick-prev:hover {background: url(../images/arrows.png) 0 0 no-repeat;}
.review-slider .slick-next:hover {background: url(../images/arrows.png) -19px 0 no-repeat;}
.slick-dots {
		position: relative;
		z-index: 20;
		margin: -40px 0 40px;
		text-align: center;
	}
	.slick-dots li {
		display: inline-block;
		vertical-align: middle;
		margin: 0 4px 10px;
	}
	.slick-dots button {
		display: block;
		width: 16px;
		height: 16px;
		font-size: 0;
		cursor: pointer;
		background: #ccc;
		border-radius: 50%;
	}
	.slick-dots .slick-active button {background: #ffb321;}
/************************* steps *************************/
.steps {
	padding: 80px 0 110px;
	color: #fff;
	background: #283388;
}
.steps-block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 60px 0 0;
}
.steps-item {
	width: 23.5%;
	margin: 0 0 0 2%;
}
.steps-item:nth-child(4n + 1){
	margin: 0
}
.steps-num {
	position: relative;
	color: #ffb120;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
}
.steps-num:after {
	position: absolute;
	top: 9px;
	right: 15px;
	left: 50px;
	display: block;
	content: '';
	border-top: 2px dashed #c6903c;
}
.steps-title {
	margin: 0 0 16px;
	min-height: 72px;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	text-transform: uppercase;
}
.steps-text {
	max-width: 220px;
	opacity: 0.7;
}
/************************* contacts *************************/
.contacts .holder {position: relative;}
.map iframe {
	display: block;
	width: 100%;
	height: 800px;
}
.contacts-block {
	position: absolute;
	top: 88px;
	left: 20px;
	width: 380px;
	padding: 45px 55px 50px;
	background: #fff;
	-webkit-box-shadow: 0 22px 70px 0 rgba(108,108,108,0.44);
	box-shadow: 0 22px 70px 0 rgba(108,108,108,0.44);
}
.contacts-title {
	margin: 0 0 45px;
	font-size: 35px;
	font-weight: 700;
	line-height: 45px;
}
.contacts-link {
	margin: 0 0 29px;
	font-size: 18px;
}
.contacts-link a {
	color: #283388;
}
.contacts-phone {
	margin: 0 0 33px;
	font-size: 25px;
	font-weight: 700;
	line-height: 30px;
}
/************************* footer *************************/
.footer {
	position: relative;
	padding: 1px 0 35px;
}
.footer-logo {
	float: left;
	padding: 0;
	margin: -22px 0 0;
}
.footer-top-content {
	margin: 0 0 0 195px;
	padding: 29px 0 0;
}
.footer-nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	/* text-transform: uppercase; */
}
.footer-nav a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
.footer-nav a:hover {color: #ffb321;}
.footer-copy {
	padding: 22px 0 0;
	color: #484848;
}
.footer-copy a {color: #484848;}
.hidden-block {
	display: none;
	width: 350px;
	padding: 10px;
	font-size: 16px;
	color: #000;
	font-weight: 400;
	line-height: 20px;
}
.hidden-block h2 {
	margin: 0 0 20px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
}
/************************* popups *************************/
.popup {
	display: none;
}
#map-hidden {
	width: 900px;
}
#map-hidden iframe {
	display: block;
	width: 100%;
	height: 500px;
}
.popup-title {
	margin: 0 0 30px;
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
}
.popup-min {
	width: 440px;
	padding: 30px 40px 40px;
}
.popup .input {
	height: 56px;
	padding: 0 20px;
}
.thnx-text {
	max-width: 600px;
	padding: 100px 0 0;
	margin: 0 auto;
	color: #000;
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	text-transform: uppercase;
}

/************************* media *************************/
@media screen and (max-width: 1300px) {
	.review-slider {
		padding: 0 30px;
	}
	.review-slider .slick-prev {left: 0px;}
	.review-slider .slick-next {right: 0px;}
}
@media screen and (max-width: 1140px) {
	.gallery-slide {
		padding: 0 9px;
		opacity: 1;
	}
	.gallery-slider .slick-list {overflow: hidden;}
}
@media screen and (max-width: 1023px) {

	.header .holder {
		position: static;
		z-index: 10;
	}
	.mob-nav-icon {display: block;}
	.mob-nav {text-align: center;}
	.mob-nav .header-links {
		margin: 0;
		padding: 20px 0 0;
	}
	.mob-nav .header-links li {
		width: 100%;
		margin: 0 0 15px;
		text-align: center;
	}
	.mob-nav .header-links a {
		color: #000;
		opacity: 0.7;
	}
	.mob-nav .header-links a:hover {color: #ffb321;}
	.mob-nav .header-nav li {
		width: 100%;
		margin: 0 0 20px;
		text-align: center;
	}
	.mob-nav .header-nav a {color: #000;}
	.mob-nav .header-nav a:hover {color: #ffb321;}

	.header-logo {
		float: none;
		text-align: center;
	}

	.header-top-content {display: none;}
	.video-bg, .video-block {display: none;}
	.header-main {
		padding: 65px 0 20px;
	}
	.header-main-block {
		display: block;
	}
	.header-main-left {
		width: auto;
		padding: 0 0 50px;
	}
	.header-main-right {
		width: auto;
		max-width: 445px;
		padding: 0 0 1px;
		margin: 0 auto;
	}
	.header-main-list {margin: 0 auto;}


	.header-title {
		margin: 0 0 30px;
		color: #fff;
		text-align: center;
	}
	.header-text {
		margin: 0 0 65px;
		color: #fff;
		font-size: 22px;
		line-height: 27px;
		text-align: center;
	}
	.header-title-holder {
		display: block;
		padding: 0;
	}
	.header-title-note {
		position: relative;
		top: auto;
		right: auto;
		margin: 30px 0 0;
	}
	h2 {
		margin: 0 0 35px;
		font-size: 36px;
		line-height: 40px;
	}
	.pros-slider {
		margin: 0 -29px -60px;
	}
	.category {padding: 63px 0 50px;}
	.category-item {
		width: 32%;
		margin: 0 0 2% 2%;
	}

	.about {padding: 0;}
	.about-block {margin: 0 -20px;}
	.about-content {
		width: 100%;
		padding: 50px 20px 20px;
	}
	.about-side {width: 100%;}
	.about-content-text {padding: 0;}
	.about-content p {
		margin: 0 0 28px;
		font-size: 18px;
		line-height: 28px;
	}
	.about-side-item {padding: 30px 10px 30px 20px;}
	.review {padding: 60px 0 1px;}
	.steps {padding: 60px 0 40px;}
	.steps-block {padding: 10px 0 0;}
	.steps-item {
		width: 49%;
		margin: 0 0 40px 2%;
	}
	.steps-item:nth-child(2n + 1){margin: 0 0 40px;}
	.map iframe {
		height: 400px;
	}
	.contacts-block {
		position: static;
		top: auto;
		left: auto;
		width: auto;
		margin: 0 -20px;
		padding: 45px 20px 30px;
		text-align: center;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.contacts-title {
		margin: 0 0 35px;
		font-size: 30px;
		line-height: 36px;
	}
	.order {
		padding: 50px 0 65px;
		text-align: center;
	}
	.order2 h2 {
		margin-left: auto;
		margin-right: auto;
	}
	.form-line {
		max-width: 400px;
		margin: 0 auto;
	}
	.form-part {
		float: none;
		width: auto;
		padding: 0;
	}
	.form-part-holder {
		padding: 0;
		background: none;
	}
	.form-line .submit {
		float: none;
		width: 100%;
		margin: 0;
	}
	.form-item {
		float: none;
		width: auto;
		border-left: 0;
		margin: 0 0 20px;
	}
	.form-item-long {
		width: auto;
	}
	.input {
		height: 56px;
		padding: 0 20px;
	}
	.footer-nav {display: none;}
	.footer-copy {padding: 12px 0 0;}
	.steps-num:after {display: none;}
}
@media screen and (max-width: 960px) {
	.category-item {padding: 24px 20px 30px;}
}
@media screen and (max-width: 800px) {
	.review-slider {padding: 0;}
	.review-slide-inner {padding: 32px 20px 1px;}
}
@media screen and (max-width: 767px) {
	h1 {
		font-size: 36px;
		line-height: 40px;
	}
	h2 {
		margin: 0 0 40px;
		font-size: 30px;
		line-height: 36px;
	}
	.header-title-big {
		margin: 0 0 37px;
		font-size: 36px;
		line-height: 40px;
	}
	.header-form-title {
		margin: 0 0 5px;
		font-size: 30px;
	}
	.gallery-slider .slick-prev {
		left: 0;
		margin-left: 0;
		border-radius: 0 51px 51px 0;
	}
	.gallery-slider .slick-next {
		left: auto;
		right: 0;
		border-radius: 51px 0 0 51px;
	}
	.gallery-slider .slick-prev:after {
		right: 21px;
	}
	.gallery-slider .slick-next:after {
		left: 21px;
	}
	.about-side-item {padding: 10px 10px 10px 20px;}
	.category-item {
		width: 48.5%;
		margin: 0 0 3% 3%;
	}
	.category-item:nth-child(3n + 1){margin: 0 0 3% 3%;}
	.category-item:nth-child(2n + 1){margin: 0 0 3%;}
}
@media screen and (max-width: 640px) {
	.steps-item {
		width: 100%;
		margin: 0 0 40px;
	}
	.steps-item:nth-child(2n + 1){margin: 0 0 40px;}
	.steps-title {
		margin: 0 0 20px;
		min-height: 1px;
	}
	.steps-text {max-width: none;}
}
@media screen and (max-width: 560px) {
	.category-item {
		width: 100%;
		margin: 0 0 20px;
	}
	.category-item:nth-child(3n + 1){margin: 0 0 20px;}
	.category-item:nth-child(2n + 1){margin: 0 0 20px;}
	.footer-logo {
		float: none;
		text-align: center;
	}
	.footer-top-content {
		margin: 0;
		padding: 29px 0 0;
		text-align: center;
	}
}
@media screen and (max-width: 480px) {

}
@media screen and (max-width: 479px) {
	.about-side-text {
		margin: 0 0 0 125px;
		padding: 38px 0 0;
		font-size: 16px;
		line-height: 25px;
	}
	.slider-lk-pr{
	    width:90%;
	    margin-left:5%;
	}
	.product-lk-main p{
	    margin-top:22px;
	    width:100%;
	}
	.popup-min {
		width: 300px;
		padding: 20px;
	}
	.hidden-block {width: 300px;}
}
@media screen and (max-width: 420px) {
	body {overflow-x: hidden;}
	.header-form {
		padding: 32px 30px 27px;
	}
	.header-form-img {
		left: -133px;
		bottom: -63px;
	}
	.header-form-title {
		font-size: 24px;
	}
}

.header-logo{
  margin-right: 15px;
  margin-top: 10px;
}
.slider-for-lk .slick-arrow{
  color: #0000;
  position: absolute;
  top: 50%;
}
.slider-for-lk .slick-arrow::before{
  content: "";
  width: 30px;
  height: 30px;
  display: block;

  background-image: url('../img/arrows.png');
}
.slider-for-lk .slick-prev{
  left: -30px;
}
.slider-for-lk .slick-next{
  right: -30px;
}
.slider-for-lk  .slick-prev::before{
  background-position: 0px -17px;
}
.slider-for-lk  .slick-next::before{
  background-position: 30px -17px;
}
