/*
Theme name: Epeex
Description: Дизайн интерьера
Author: Aleksandrlao
Author URI: http://aleksandrlao.ru
*/


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap');



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	appearance: none;
	/* outline: 1px solid #c00; */
}
article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
	display: block;
}
body {
	background: #fff;
	color: #455756;
	font: 16px/1.5 'Montserrat', Arial, sans-serif;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1300px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
	position: relative;
	border-top: 0px solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	color: #000;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, textarea {
	font-family: 'Montserrat', Arial, sans-serif;
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: #000;
}
input::-webkit-input-placeholder {
	color: #000;
}
input::-moz-placeholder {
	color: #000;
}
input:-moz-placeholder {
	color: #000;
}
input:-ms-input-placeholder {
	color: #000;
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 21px;
}
.text h2, .text h3, .text h4, .text h5 {
	margin-bottom: 20px;
	color: #000;
	font-size: 25px;
	line-height: 29px;
}
.text h3 {
	font-size: 22px;
}
.text h4, .text h5 {
	font-size: 20px;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid #373737;
	padding: 10px;
}
.text ul, .text ol {
	margin: 0 0 25px 20px;
}
.text li {
	margin-bottom: 7px;
}



.head {
	margin-bottom: 24px;
	color: #144C44;
	font-weight: 500;
	font-size: 35px;
	line-height: 1.8;
	text-align: center;
}


.form__label {
	width: 100%;
	margin-bottom: 8px;
}
.form__label input,
.form__label textarea {
	display: block;
	width: 100%;
	height: 60px;
	padding-left: 18px;
	padding-right: 8px;
	background: #FFF;
	border: 1px solid #C3D8E1;
	outline: none;
	border-radius: 30px;
	font-weight: 300;
	font-size: 16px;
}
.form__label textarea {
	padding-top: 20px;
	resize: none;
}
.form__submit {
	width: 100%;
	max-width: 228px;
}
.form__submit input[type="submit"] {
	width: 100%;
	height: 60px;
	background: #FFE55C;
	border-radius: 30px;
	border: none;
	outline: none;
	font-weight: 500;
	color: #1C1C1C;
	font-size: 14px;
	line-height: 17px;
	transition: all .3s ease;
	cursor: pointer;
}
.form__submit input[type="submit"]:hover {
	background: #C3D8E1;
}




.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}



/* Header ----------------------------------------------------------------------------- */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 32px;
	padding-bottom: 24px;
	z-index: 20;
}
.header .container {
	-ms-align-items: center;
	align-items: center;
}
.header__logo {
	display: block;
	width: 144px;
	height: 72px;
	background: url('i/bg-logo.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.header__nav {
	width: calc(100% - 350px);
}
.header__nav-btn {
	display: none;
	padding: 4px;
	color: #fff;
	font-size: 18px;
	line-height: 1.3;
	text-transform: uppercase;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 32px;
	height: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: #fff;
	margin: 10px 0 0;
	position: relative;
}
.header__nav-btn span::before, .header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 32px;
	height: 3px;
	-webkit-border-radius: 3px;
		  border-radius: 3px;
	background: #fff;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -8px;
}
.header__nav-btn span::after {
	bottom: -8px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.header__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	list-style: none;
}
.header__nav li {
	margin: 8px 24px;
}
.header__nav a {
	display: block;
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .3s ease;
}
.header__nav a:hover,
.header__nav li.current-menu-item a {
	color: #EAB93A;
}



.header__cont {
	position: relative;
	padding-left: 36px;
}
.header__cont::before {
	content: '';
	position: absolute;
	top: calc(50% - 14px);
	left: 0;
	width: 28px;
	height: 28px;
	background: url('i/bg-icon-contact.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.header__phone,
.header__email {
	display: block;
	color: #fff;
	font-weight: 300;
	font-size: 17px;
	line-height: 1.2;
	text-decoration: none;
}

















/* Start ----------------------------------------------------------------------------- */
.start {
	background: #1e4f49 url('i/bg-start.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.start .container {
	height: 100vh;
	min-height: 720px;
	padding-top: 240px;
	padding-bottom: 80px;
}
.start__info {
	max-width: 760px;
	color: #fff;
}
.start__head {
	margin-bottom: 24px;
	font-size: 40px;
	line-height: 1.2;
}
.start__desc {
	max-width: 640px;
	margin-bottom: 24px;
}

.start__button {
	display: block;
	width: 280px;
    height: 60px;
    background: #FFE55C;
    border-radius: 30px;
    border: none;
    outline: none;
    font-weight: 500;
    color: #1C1C1C;
    font-size: 14px;
    line-height: 17px;
    transition: all .3s ease;
    cursor: pointer;
}
.start__button:hover {
	background: #C3D8E1;
}
.start__arrow {
	position: absolute;
	left: calc(50% - 35px);
	bottom: 50px;
	width: 70px;
	height: 26px;
	cursor: pointer;
}
.start__arrow::before,
.start__arrow::after {
	content: '';
	position: absolute;
	top: 12px;
	width: 40px;
	height: 4px;
	border-radius: 4px;
	background: #fff;
	transform: rotate(34deg);
	transition: all .3s ease;
}
.start__arrow::before {
	left: 0;
}
.start__arrow::after {
	right: 0;
	transform: rotate(146deg);
}
.start__arrow:hover::before,
.start__arrow:hover::after {
	background: #EAB93A;
}


















/* About ----------------------------------------------------------------------------- */
.about {
	padding-top: 80px;
	padding-bottom: 48px;
}
.about__info {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.about__box {
	width: 60%;
	font-weight: 300;
}
.about-gallery {
	width: 36%;
	overflow: hidden;
}
.about-gallery-item {
	float: left;
	width: 100%;
	height: 360px;
	outline: none;
}
.about-gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}



















/* Product ----------------------------------------------------------------------------- */
.product {
	padding-top: 48px;
	overflow: hidden;
}
.product-box {
	padding-top: 64px;
	padding-bottom: 64px;
	position: relative;
	background: #FAFAFA;
}
.product-box .slick-arrow {
	position: absolute;
	top: calc(50% - 25px);
	width: 50px;
	height: 50px;
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 0;
	z-index: 1001;
	cursor: pointer;
	transition: all .3s ease;
}
.product-box .slick-arrow::before,
.product-box .slick-arrow::after {
	content: '';
	position: absolute;
	left: 8px;
	width: 32px;
	height: 2px;
	border-radius: 4px;
	background: #BDBDBD;
	transform: rotate(130deg);
	transition: all .3s ease;
}
.product-box .slick-arrow::before {
	top: 12px;
}
.product-box .slick-arrow::after {
	bottom: 12px;
	transform: rotate(50deg);
}
.product-box .slick-prev {
	left: 0;
}
.product-box .slick-next {
	right: 0;
	transform: rotate(180deg);
}
.product-box .slick-arrow:hover::before,
.product-box .slick-arrow:hover::after {
	background: #000;
}
.product-box .slick-disabled {
	opacity: 0;
	cursor: default;
}


.product-box__head {
	margin-bottom: 56px;
	color: #455756;
	font-size: 22px;
	line-height: 1.8;
	text-align: center;
}
.product__list {
	padding-left: 80px;
	padding-right: 80px;
	overflow: hidden;
	position: relative;
}
.product__list .slick-list {
	overflow: hidden;
}
.product-min {
	float: left;
	width: calc(25% - 30px);
	min-height: 320px;
	margin: 0 15px;
	background: #fff;
	position: relative;
	outline: none;
	cursor: pointer;
}
.product-min.slick-current::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(33, 109, 100, 0.15);
	border-bottom: 4px solid #216D64;
	pointer-events: none;
}
.product-min__thumb {
	width: 100%;
	height: 200px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.product-min__title {
	padding: 12px;
	font-size: 15px;
}

.product__view-out {
	height: auto;
}
.product__view-out.product__view-hide {
	height: 0;
	visibility: hidden;
}
.product__view {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.product__view .slick-track {
	overflow: hidden;
}
.product-item {
	float: left;
	width: 100%;
	background: #fff;
	outline: none;
}
.product-item__title {
	padding: 24px 32px;
	color: #455756;
	font-size: 22px;
	text-align: center;
}
.product-item__gallery,
.product-item__gallery .slick-list {
	overflow: hidden;
	position: relative;
}
.product-item__gallery {
	width: 100%;
}
.product-item__photo {
	float: left;
	display: block;
	width: 100%;
	min-height: 400px;
	overflow: hidden;
	outline: none;
}
.product-item__photo img {
	display: block;
	width: 100%;
	height: auto;
}


.product-item__info {
	min-height: 120px;
	padding: 24px 48px;
}
.product-item__btn {
	display: block;
	width: 100%;
	max-width: 320px;
	min-height: 60px;
	border-radius: 30px;
	margin: 0 auto 64px;
	padding: 8px;
	border: none;
	outline: none;
	background: #FFE55C;
	box-shadow: 0px 4px 20px #ECE4BC;
	font-weight: 500;
	color: #1C1C1C;
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
	transition: all .3s ease;
	cursor: pointer;
}
.product-item__btn:hover {
	background: #C3D8E1;
}
.product-item__bottom {
	background: #F5F5F5;
	overflow: hidden;
	padding: 24px;
}
.product-item__subhead {
	margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.6;
}
.product-item__form {
	width: 100%;
	max-width: 880px;
	margin: 24px auto 0;
}
.product-item__label {
	width: 48%;
	max-width: 420px;
	margin-bottom: 16px;
}
.product-item__submit {
	margin: 0 auto;
}



















/* Applic ----------------------------------------------------------------------------- */
.applic {
	padding-top: 32px;
	padding-bottom: 32px;
	background: url('i/bg-applic.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.applic__head {
	margin-bottom: 56px;
}
.applic__box {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 16px;
}
.applic__label {
	width: calc(50% - 146px);
}
.applic__submit {
	width: 228px;
}


















/* Gallery ----------------------------------------------------------------------------- */
.gallery {
	padding-top: 64px;
	padding-bottom: 64px;
}
.gallery .container {
	max-width: 960px;
}
.gallery__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.gallery__desc {
	width: 38%;
}
.gallery__slider {
	padding-left: 60px;
	padding-right: 60px;
	position: relative;
}
.gallery__slider--second {
	width: 60%;
}
.gallery__slider .slick-list {
	overflow: hidden;
	position: relative;
}
.gallery-item {
	float: left;
	width: 100%;
}
.gallery-item__inside {
	display: block;
	width: 100%;
	padding-top: 88%;
	position: relative;
	overflow: hidden;
}
.gallery-item a {
	display: block;
	width: 100%;
	height: auto;
}
.gallery-item img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery__slider .slick-arrow {
	position: absolute;
	top: calc(50% - 24px);
	width: 48px;
	padding: 4px 0 24px;
	background-color: transparent;
	border: none;
	outline: none;
	color: #000;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
	transition: all .5s ease;
	cursor: pointer;
}
.gallery__slider .slick-arrow:hover {
	color: #144C44;
}
.gallery__slider .slick-arrow::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 12px;
	background: url('i/bg-icon-long-arrow.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	transition: all .5s ease;
}
.gallery__slider .slick-prev {
	left: 0;
}
.gallery__slider .slick-next {
	right: 0;
}
.gallery__slider .slick-next::before {
	transform: rotate(180deg);
}

















/* Advantage ----------------------------------------------------------------------------- */
.advantage {
	padding-top: 48px;
	padding-bottom: 32px;
	overflow: hidden;
}
.advantage__desc {
	width: 100%;
	max-width: 840px;
	margin: 0 auto 48px;
	color: #455756;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}
.advantage__list {
	justify-content: center;
	width: calc(100% + 48px);
	margin-left: -24px;
}
.advantage-item {
	width: calc(25% - 48px);
	margin: 0 24px 88px;
}
.advantage-item__icon {
	width: 80px;
	height: 80px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	margin: 0 auto 16px;
}
.advantage-item__title {
	text-align: center;
}






















/* question ----------------------------------------------------------------------------- */
.question {
	padding-top: 40px;
	padding-bottom: 40px;
	background: url('i/bg-question.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.question__head {
	margin-bottom: 56px;
}
.question__form {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
.question__label {
	width: calc(50% - 28px);
	margin-bottom: 24px;
}
.question__label--textarea {
	width: calc(100% - 270px);
}
.question__submit {
	width: 228px;
}














/* Contact ----------------------------------------------------------------------------- */
.contact {
	background: #FAFAFA;
	overflow: hidden;
}
.contact .container {
	z-index: 20;
}
.contact-map {
	width: 50%;
	height: 600px;
	position: relative;
}
.contact-map__ins {
	position: absolute;
	top: 0;
	right: 0;
	width: 770px;
	height: 100%;
	overflow: hidden;
	background: #ccc;
}
.contact__box {
	width: 50%;
	padding-top: 40px;
	padding-bottom: 32px;
	padding-left: 56px;
}
.contact-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 40px;
}
.contact-item__icon {
	width: 56px;
	height: 56px;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.contact-item__text {
	width: calc(100% - 100px);
	font-weight: 300;
	color: #144C44;
	font-size: 16px;
	line-height: 1.9;
}
.contact-item__text a {
	color: #144C44;
	text-decoration: none;
}








/* Всплывающие окна */
.overlay {
	display: none;
	background-color: #000;
	opacity: .7;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999
}
.overlay.active {
	display: block;
}

.popup {
	display: none;
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 25px;
	background: #fff;
	text-align: center;
	z-index: 9999;
}
.popup__close {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 100%;
		  border-radius: 100%;
	position: absolute;
	background: #000;
	color: #FFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #363636;
	top: -11px;
	right: -11px;
	cursor: pointer;
}
.popup__close:hover {
	background: #FFF;
	color: #000;
}
.popup__head {
	margin-bottom: 5px;
	font-size: 30px;
	font-weight: 300;
	line-height: 34px;
	color: #000;
}
.popup__subtitle {
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 21px;
	text-align: center;
	color: #000;
}
.popup__label {
	position: relative;
}
.popup__body input, .popup__body textarea {
	width: 100%;
	height: 40px;
	margin-top: 12px;
	padding-left: 12px;
	border: 1px solid #eee;
	background-color: #FFF;
	outline: none;
}
.popup-body textarea {
	height: 120px;
	resize: none;
	padding-top: 5px;
}
.popup-body input[type="submit"] {
	height: 46px;
	padding-left: 0;
	background-color: #FC0;
	border: 1px solid #FC0;
	color: #000;
	font-size: 17px;
	font-weight: bold;
	line-height: 44px;
	cursor: pointer;
}



/* Форма */


input.hide_input {
	display: none;
}
span.wpcf7-not-valid-tip, 
div.wpcf7-validation-errors,
.wpcf7-response-output {
	display: none !important;
}
input.wpcf7-not-valid {
	border: 1px solid #c00;
}

.popup-thy {
	position: fixed;
	top: calc(50% - 160px);
	left: calc(50% - 200px);
}




/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1200px) {

	.start .container {
	    padding-top: 200px;
	}
	

	.about {
	    padding-top: 64px;
	    padding-bottom: 40px;
	}


	.product {
	    padding-top: 40px;
	}


	.contact {
	    padding-top: 64px;
	    padding-bottom: 56px;
	}



}

















@media screen and (max-width:1050px) {

	.header__nav li {
	    margin: 4px 12px;
	}


	.start .container {
	    padding-top: 160px;
	}


	.about {
	    padding-top: 48px;
	    padding-bottom: 32px;
	}


	.product-box {
	    padding-top: 40px;
	    padding-bottom: 40px;
	}
	.product-box__head {
	    margin-bottom: 32px;
	}
	.product__list {
	    padding-left: 40px;
	    padding-right: 40px;
	}
	.product-box .slick-arrow {
        width: 40px;
	}
	.product-box .slick-arrow::before, .product-box .slick-arrow::after {
	    left: 2px;
	}


	.advantage__list {
	    width: calc(100% + 24px);
	    margin-left: -12px;
	}
	.advantage-item {
	    width: calc(33.3% - 24px);
	    margin: 0 12px 48px;
	}


	.contact__box {
	    padding-top: 56px;
	    padding-left: 40px;
	}
	.contact-item {
	    margin-bottom: 32px;
	}
	.contact-item__text {
	    width: calc(100% - 80px);
	    line-height: 1.7;
	}





}

















@media screen and (max-width:900px) {

	.header__nav-btn {
		display: block;
	}
	.header__nav ul {
		position: absolute;
		top: 56px;
		left: 12px;
		width: 220px;
		padding: 8px;
		background: #1c3330;
		opacity: 0;
		pointer-events: none;
	}
	.nav-active .header__nav ul {
		top: 32px;
		opacity: 1;
		pointer-events: auto;
	}


	.head {
	    font-size: 30px;
	    line-height: 1.5;
	}


	.product-item__info {
		min-height: 120px;
		padding: 16px 32px;
	}


	.applic__head {
	    margin-bottom: 32px;
	}


	.gallery {
	    padding-top: 56px;
	    padding-bottom: 40px;
	}

		
	.contact {
		padding-top: 0;
		padding-bottom: 16px;
		overflow: hidden;
	}
	.contact::before {
		display: none;
	}
	.contact .container {
		display: block;
	}
	.contact-map {
		width: calc(100% + 30px);
		height: 400px;
		margin-left: -15px;
	}
	.contact-map__ins {
    	width: 100%;
	}
	.contact__box {
		width: 100%;
		padding-left: 0;
		padding-top: 24px;
	}




}

















@media screen and (max-width:750px) {

	.start .container {
	    min-height: 600px;
	}


	.head {
	    font-size: 25px;
	}
	
	
	.about__box,
	.about-gallery {
		width: 100%;
	}


	.applic__label {
	    width: calc(50% - 8px);
	}
	.applic__submit {
		margin: 0 auto;
	}


	.gallery {
	    padding-top: 40px;
	    padding-bottom: 32px;
	}
	.gallery__desc,
	.gallery__slider--second {
		width: 100%;
	}


	.advantage-item {
	    width: calc(50% - 24px);
	}


	.question__label {
	    width: 100%;
	    margin-bottom: 16px;
	}
	.question__submit {
		margin: 0 auto;
	}


	.contact-map {
		height: 320px;
	}



}

















@media screen and (max-width:600px) {

	.container {
		padding-left: 12px;
		padding-right: 12px;
	}

	
	.header__logo {
        width: 140px;
	}
	.header__nav {
	    width: calc(100% - 310px);
	}
	.header__nav-btn {
        padding: 2px;
	}
	.header__phone, .header__email {
		font-size: 14px;
	}


	.about {
		padding-top: 32px;
		padding-bottom: 16px;
	}


	.product-item__photo {
		min-height: 320px;
	}
	.product-item__btn {
		margin-bottom: 24px;
	}
	.product-item__bottom {
		padding: 12px;
	}


	.gallery__slider {
	    padding-left: 48px;
	    padding-right: 48px;
	}
	.gallery__slider .slick-prev {
	    left: -8px;
	}
	.gallery__slider .slick-next {
	    right: -8px;
	}


	.advantage {
	    padding-top: 32px;
	    padding-bottom: 24px;
	}
	.advantage__desc {
		margin-bottom: 32px;
    	font-size: 15px;
	}


	.question__head {
	    margin-bottom: 24px;
	}

	
	.contact-map {
	    height: 280px;
	}


}

















@media screen and (max-width:450px) {

	.header__nav {
		position: absolute;
		top: 80px;
		left: 12px;
	    width: 100%;
	}
	.header__cont {
		padding-left: 0;
	}
	.header__cont::before {
		display: none;
	}


	.head {
	    font-size: 22px;
	}
	
	
	.start__head {
    	font-size: 28px;
	}


	.product-item__title {
		padding: 16px 12px;
		font-size: 20px;
	}
	.product-item__photo {
		min-height: 240px;
	}
	.product-item__form {
		margin: 0;
		padding: 8px;
	}
	.product-item__wrap {
		width: 100%;
		padding-bottom: 0;
		margin: 0 auto;
	}
	.product-item__label {
		width: 100%;
	}


	.gallery {
		padding-top: 0;
	}
	.gallery__slider {
		padding-left: 36px;
		padding-right: 36px;
	}
	.gallery__slider .slick-arrow {
		width: 44px;
		padding: 0 0 12px;
	}


	.applic__label {
	    width: 100%;
	}


	.advantage-item {
	    width: calc(100% - 24px);
	    margin-bottom: 32px;
	}



}

















/* END ================= */