/********************
Fonts
********************/
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.eot');
    src: local('Lato Bold'), local('Lato-Bold'),
        url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Bold.woff') format('woff'),
        url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-BoldItalic.eot');
    src: local('Lato Bold Italic'), local('Lato-BoldItalic'),
        url('../fonts/Lato-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-BoldItalic.woff') format('woff'),
        url('../fonts/Lato-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Semibold.eot');
    src: local('Lato Semibold'), local('Lato-Semibold'),
        url('../fonts/Lato-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Semibold.woff') format('woff'),
        url('../fonts/Lato-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-SemiboldItalic.eot');
    src: local('Lato Semibold Italic'), local('Lato-SemiboldItalic'),
        url('../fonts/Lato-SemiboldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-SemiboldItalic.woff') format('woff'),
        url('../fonts/Lato-SemiboldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Medium.eot');
    src: local('Lato Medium'), local('Lato-Medium'),
        url('../fonts/Lato-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Medium.woff') format('woff'),
        url('../fonts/Lato-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-MediumItalic.eot');
    src: local('Lato Medium Italic'), local('Lato-MediumItalic'),
        url('../fonts/Lato-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-MediumItalic.woff') format('woff'),
        url('../fonts/Lato-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Black.eot');
    src: local('Lato Black'), local('Lato-Black'),
        url('../fonts/Lato-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Black.woff') format('woff'),
        url('../fonts/Lato-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.eot');
    src: local('Lato Regular'), local('Lato-Regular'),
        url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Regular.woff') format('woff'),
        url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,800,900&display=swap&subset=cyrillic');

/********************
General
********************/
html {
  height: 100%;
}
body {
  min-height: 100%;
  min-width: 320px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #171717;
  background-color: #f2f2f2;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Lato Black', sans-serif;
	font-weight: 900;
}
ul,
ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
a {
	transition: all 0.3s;
}
a:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
}
.center {
	text-align: center;
}
.small {
	font-size: 12px;
}
/* Hide element */
.visually-hidden {
	position: absolute;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
}
/* Hide text in element */
.hide-text {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
.container {
	max-width: 1360px;
}
/*** Buttons ***/
.btn {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 230px;
	height: 55px;
	padding: 0 25px;
	text-align: center;
	color: #1a1a1a;
	background-color: #eaeaea;
	border: none;
	border-radius: 28px;
	box-shadow: 0px 2px 0px 0px #c6c6c6;
	transition: all .3s;
}
.btn-primary {
	color: #fff;
	background-color: #c0375b;
	box-shadow: 0px 2px 0px 0px #9c2544;
}
.btn:hover {
	color: #fff;
	background-color: #db496f;
	box-shadow: 0px 2px 0px 0px #9c2544;
}
.btn:focus {
	outline: none;
}
/*** Forms ***/
.form-group {
	margin-bottom: 20px;
}
.form-group.button {
	margin-bottom: 0;
}
.form-group.button .btn {
	margin-left: auto;
	margin-right: auto;
}
.form-group .error .error {
	font-size: 12px;
}
input {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	width: 287px;
	height: 57px;
	padding: 0 10px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	color: #151515;
	background-color: #ececec;
	border: none;
	border-radius: 4px;
}
textarea {
	width: 100%;
	min-height: 100px;
	padding: 10px;
	font-size: 16px;
	font-weight: 500;
	color: #151515;
	background-color: #ececec;
	border: none;
	border-radius: 4px;
}
input:focus,
textarea:focus {
	outline: none;
}
input[type=checkbox],
input[type=radio] {
	width: 16px;
	height: 16px;
}
ul.checkmark li {
	position: relative;
	padding-left: 2.3em;
}
ul.checkmark li:before {
	content: '';
	position: absolute;
	display: block;
	width: 1.5em;
	height: 1.5em;
	left: 0;
	top: 0;
	background: url('../img/icons/icon-checkmark.png') no-repeat center;
	-webkit-background-size: cover;
	background-size: cover;
}
.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

/********************
Header
********************/
header {
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
}
header p {
	margin-bottom: 0;
}

/* Top bar */
.top-bar {
	background-color: #c0375b;
}
.top-bar .container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	height: 50px;
}
.top-bar .address {
	margin-right: auto;
	font-weight: 700;
	line-height: 1;
	color: #fff;
}
.top-menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.top-menu li {
	margin-right: 25px;
}
.top-menu li:last-child {
	margin-right: 0;
}
.top-menu li a {
	font-size: 15px;
	line-height: 1;
	text-transform: lowercase;
	color: #fff;
}
.top-menu li a:hover {
	color: rgba(255,255,255,.7);
}
.btn-price {
	width: 200px;
	height: 56px;
	margin-top: 45px;
	margin-left: 15px;
	margin-right: 15px;
	background-color: #db496f;
	z-index: 2;
}
.btn-price:before {
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	margin-right: 15px;
	background: url('../img/icons/icon-price-download.png') no-repeat center;
}
.btn-price:hover {
	margin-top: 55px;
}
.search {
	display: none;
}
.search:before {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	background: url('../img/icons/icon-search.png') no-repeat center;
}

/* Header main */
.header-main {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	min-height: 163px;
	background-color: #fff;
}
.header-main .container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
header .logo {
	-ms-flex: 0 0 180px;
	flex: 0 0 180px;
	max-width: 180px;
	margin-top: -10px;
	margin-left: 40px;
}
.header-center {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-left: auto;
	padding-top: 40px;
}
.header-address {
	margin-left: auto;
	margin-right: 70px;	
}
.header-address p {
	text-align: right;
}
.header-address br {
	display: none;
}
.header-address a {
	font-weight: 700;
	color: #c0375b;
	border-bottom: 1px solid #c0375b;
}
.header-address a:hover {
	border-bottom-color: transparent;
}
.header-phone {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: flex-end;
	align-items: flex-end;
}
.header-phone .work-time,
.header-phone-2 p {
	font-size: 14px;
	font-weight: 700;
	color: #454545;
}
.header-phone .phone {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: #111111;
}
.header-phone .phone:hover {
	color: #c0375b;
}
.header-phone-1 {
	margin-right: 32px;
}
.header-phone-1 .callback {
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: #c0375b;
	border-bottom: 1px solid #c0375b;
}
.header-phone-1 .callback:hover {
	border-bottom-color: transparent;
}
/* Main menu */
.header-main nav {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 10px;
}
.main-menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
}
.main-menu > li {
	transition: background-color 0.3s, box-shadow 0.3s;
}
.main-menu > li > a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding: 19px 17px 24px 17px;
	font-weight: 700;
	line-height: 1;
	color: #131313;
}
.main-menu > li:hover {
	background-color: #f7f7f7;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.15);
}
.main-menu > li:hover > a {
	color: #c0375b;
}
.main-menu li.dropdown {
	position: relative;
}
.main-menu li.dropdown > a {
	position: relative;
	z-index: 1;
}
.main-menu .dropdown-menu {
	position: absolute;
	z-index: 2;
	top: 59px;
	left: 0;
	visibility: hidden;
	opacity: 0;
	width: 300px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding: 30px 0;
	background-color: #f7f7f7;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.15);
	transition: visibility 0s, opacity 0.3s;
}
.main-menu li.dropdown:last-child .dropdown-menu {
	left: auto;
	right: 0;
	border-top-left-radius: 10px;
	border-top-right-radius: 0px;
}
.main-menu .dropdown-menu li a {
	display: block;
	padding: 10px 35px 10px 43px;
	line-height: 1;
	color: #101010;
}
.main-menu .dropdown-menu li a:hover {
	color: #c0375b;
}
.main-menu > li.dropdown:hover .dropdown-menu {
	visibility: visible;
  opacity: 1;
}
/*** Mobile menu ***/
.menu-opener {
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
}
.menu-opener .bars {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	width: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.menu-opener .bars .bar {
	width: 30px;
	height: 3px;
	margin-bottom: 4px;
	background: #fff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.menu-opener .bars .bar:last-child {
	margin-bottom: 0;
}
.menu-opener span {
	font-size: 17px;
	line-height: 1;
	color: #fff;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
}
.menu-opener:hover span {
	color: #33C1CC;
}
.menu-opener:hover .bars .bar {
	background: #33C1CC;
}
.panel-overlay {
	width: 100vw;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -100;
	-webkit-transition: background 0.3s;
	-o-transition: background 0.3s;
	transition: background 0.3s;
}
.panel[style*='left: 0px'] + .panel-overlay {
  z-index: 900;
  background: rgba(0, 0, 0, 0.75);
}
.panel {
	position: fixed;
	top: 0;
	bottom: 0;
	left: -280px;
	width: 280px;
	height: 100%;
	z-index: 1000;
	overflow: hidden;
	background: #fff;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}
.panel[style*='left: 0px'] {
  -webkit-box-shadow: 0 7px 16px rgba(13, 21, 53, 0.16);
  box-shadow: 0 7px 16px rgba(13, 21, 53, 0.16);
}
.panel .panel-inner {
	height: 100vh;
	padding: 20px 0;
	overflow-y: auto;
	overflow-x: hidden !important;
}
.panel .panel-nav {
  width: 100%;
  padding: 0 25px;
  margin-bottom: 55px;
  list-style: none;
}
.panel .panel-nav > li {
	position: relative;
	border-bottom: 1px solid #e8ebee;
}
.panel .panel-nav > li > a {
	display: block;
	padding: 20px 0;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	color: #101010;
	text-decoration: none;
}
.panel .panel-nav > li > a:hover,
.panel .panel-nav > li.active > a {
	color: #c0375b;
}
.panel .panel-content {
  padding: 0 25px;
}
.panel .panel-content p {
	color: #101010;
}
.panel .panel-content p a {
	color: #101010;
	text-decoration: none;
}
.panel .panel-content p a:hover {
	color: #c0375b;
}

/********************
Main
********************/
main > .container {
	margin-bottom: 80px;
}

/*** Breadcrumbs ***/
.breadcrumbs {
	padding: 20px 0;
}
.breadcrumb {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.breadcrumb-item:after {
	content: '»';
	font-size: 12px;
	line-height: 1;
	color: #c0375b;
	margin-left: 3px;
	margin-right: 3px;
}
.breadcrumb-item a {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #c0375b;
}
.breadcrumb-item a:hover {
	color: rgba(192,55,91,.7);
}
.breadcrumb-item.active:after {
	display: none;
}
.breadcrumb-item.active {
	font-size: 12px;
	line-height: 1;
	font-weight: 700;
	color: #131313;
}

/********************
Product page
********************/
.product h2 {
	margin-top: 55px;
	margin-bottom: 20px;
	font-size: 24px;
	text-align: center;
}

/*** Product main ***/
.product-main {
	min-height: 400px;
	margin-bottom: 10px;
	padding: 45px 50px 60px 50px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
}
.product-main .left-col {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	padding-left: 50px;
	padding-right: 50px;
}
.product-main .gallery {
	margin-bottom: 40px;
}
.product-main .gallery .main-photo {
	margin-bottom: 20px;
}
.product-main .thumbnails .slick-slide {
	margin: 0 10px;
	border: 3px solid #dadada;
	border-radius: 5px;
	outline: none;
	transition: all .3s;
}
.product-main .thumbnails .slick-list {
    margin: 0 -10px;
}
.product-main .thumbnails .slick-slide:hover,
.product-main .thumbnails .slick-current {
	border-color: #c0375b;
}
.product-main .thumbnails .slick-slide:hover {
	cursor: pointer;
}
.product-main .thumbnails .slick-prev,
.product-main .thumbnails .slick-next {
	z-index: 2;
	width: 20px;
	height: 20px;
}
.product-main .thumbnails .slick-prev {
	left: -25px;
}
.product-main .thumbnails .slick-next {
	right: -25px;
}
.product-main .thumbnails .slick-prev:before,
.product-main .thumbnails .slick-next:before {
	font-size: 20px;
	color: #c0375b;
}
#roll-ap .product-main .gallery .main-photo a,
#bannernyj-stend .product-main .gallery .main-photo a {
	display: block;
	text-align: center;
}
#roll-ap .product-main .gallery .main-photo a img,
#bannernyj-stend .product-main .gallery .main-photo a img {
	max-height: 540px;
}
#roll-ap .product-main .thumbnails,
#bannernyj-stend .product-main .thumbnails {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 25px;
}
#roll-ap .product-main .thumbnails div,
#bannernyj-stend .product-main .thumbnails div {
	-ms-flex: 0 0 calc(33.333% - 20px);
	flex: 0 0 calc(33.333% - 20px);
	max-width: calc(33.333% - 20px);
	margin-left: 15px;
	margin-right: 15px;
	border: 3px solid #dadada;
	border-radius: 5px;
	transition: all .3s;
}
#roll-ap .product-main .thumbnails div:first-child,
#bannernyj-stend .product-main .thumbnails div:first-child {
	margin-left: 0;
}
#roll-ap .product-main .thumbnails div:last-child,
#bannernyj-stend .product-main .thumbnails div:last-child {
	margin-right: 0;
}
#roll-ap .product-main .thumbnails div.active,
#roll-ap .product-main .thumbnails div:hover,
#bannernyj-stend .product-main .thumbnails div.active,
#bannernyj-stend .product-main .thumbnails div:hover {
	border-color: #c0375b;
}
#roll-ap .product-main .thumbnails div:hover,
#bannernyj-stend .product-main .thumbnails div:hover {
	cursor: pointer;
}
.product-main .gallery .photo-desc {
	text-align: center;
}
.product-main .video {
	margin-bottom: 30px;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.product-main .share {
	margin-top: auto;
}
.product-main h1 {
	margin-bottom: 20px;
	font-size: 30px;
}
.product-main .base-price {
	margin-bottom: 25px;
	font-size: 18px;
}
.product-main .base-price span {
	font-size: 36px;
}
.product-main .base-price-desc {
	margin-right: -50px;
	margin-bottom: 35px;
	padding: 30px 35px;
	font-weight: bold;
	color: #3e531d;
	background-color: #c4e68d;
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px;
}
.product-main .base-price-desc span {
	font-size: 24px;
}
.calculator .calc-title {
	margin-bottom: 10px;
}
.calculator .step {
	margin-bottom: 20px;
}
.calculator .step-2 {
	margin-bottom: 20px;
}
.calculator .step .step-name {
	margin-bottom: 10px;
}
.calculator .step .step-filter {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}
.calculator .step .btn-calc {
	margin-right: 19px;
	margin-bottom: 19px;
	border-radius: 5px;
	width: auto;
	min-width: 139px;
	font-weight: bold;
}
.calculator .step-1 .btn-calc {
	min-width: 125px;
}
.calculator .step .btn-calc:last-child {
	margin-right: 0;
}
.calculator .step .btn-calc.active {
	color: #fff;
	background-color: #c0375b;
	box-shadow: 0px 2px 0px 0px #9c2544;
}
.calculator .step .btn-calc:hover {
	background-color: #c0375b;
	box-shadow: 0px 2px 0px 0px #9c2544;
}
.calculator .step .step-desc {
	font-size: 14px;
	font-weight: 500;
}
.product-main .number-of {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: bold;
}
.product-main .number-of input {
	width: 65px;
	height: 40px;
	margin-left: 20px;
}
.product-main .urgent-production {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	margin-bottom: 30px;
}
.product-main .urgent-production input {
	margin-right: 10px;
}
.product-main .urgent-production label {
	margin-bottom: 0;
}
.product-main .price-title {
	margin-bottom: 0;
	font-weight: bold;
}
.product-main .price {
	margin-bottom: 30px;
	font-weight: bold;
}
.product-main .price span {
	font-size: 36px;
}
.product-main .buttons {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.product-main .buttons .btn:first-child {
	margin-right: 35px;
}

/*** Product description ***/
.product-description h2,
.cat-description h2 {
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 24px;
	text-align: left;
}
.product-description ul,
.cat-description ul {
	padding-left: 20px;
	margin-bottom: 1rem;
	margin-left: 20px;
}
.product-description ul li:before,
.cat-description ul li:before {
  content: "\2022";
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  color: #c0375b;
}
.product-description .row-gallery img {
	margin-right: 20px;
	margin-bottom: 20px;
	max-height: 150px;
}

/*** Product specification ***/
.roll-ap-table {
	width: 100%;
}
.roll-ap-table td {
	padding: 25px 20px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	border-right: 2px solid #f2f2f2; 
	border-bottom: 2px solid #f2f2f2; 
	background-color: #fff;
	transition: all .3s;
}
.roll-ap-table td:first-child {
	font-size: 18px;
	font-weight: 500;
}
.roll-ap-table td:last-child {
	border-right: none;
}
.roll-ap-table td:hover {
	color: #fff;
	background-color: #c0375b;
}
.roll-ap-table td:first-child:hover {
	color: #171717;
	background-color: #fff;
}
.roll-ap-table .size td {
	font-size: 22px;
	color: #fff;
	background-color: #c0375b;
}

/*** Product features ***/
.roll-ap-features .features-list {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 42px;
}
.roll-ap-features .item {
	-ms-flex: 0 0 calc(25% - 31.5px);
	flex: 0 0 calc(25% - 31.5px);
	max-width: calc(25% - 31.5px);
	margin-right: 42px;
	color: #171717;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: 0.3s;
}
.roll-ap-features .feature-item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: 0.3s;
}
.roll-ap-features .item:last-child {
	margin-right: 0;
}
.roll-ap-features .item:hover,
.roll-ap-features .feature-item:hover {
	box-shadow: 0 14px 25px rgba(0,0,0,.16);
}
.roll-ap-features .item .img-hover-zoom {
	margin-bottom: 20px;
	overflow: hidden;
}
.roll-ap-features .feature-item .img-hover-zoom {
	overflow: hidden;
}
.roll-ap-features .item .img-hover-zoom img {
	transform: scale(1.3);
	transition: transform .3s ease;
}
.roll-ap-features .feature-item .img-hover-zoom img {
	transition: transform .3s ease;
}
.roll-ap-features .item:hover img {
	transform: scale(1);
}
.roll-ap-features .feature-item:hover img {
	transform: scale(1.3);
}
.roll-ap-features .item .description {
	padding: 10px 30px 30px;
	font-size: 15px;
	line-height: 1.2;
	font-weight: normal;
}
.roll-ap-features .item .description p {
	margin-bottom: 0;
}
.roll-ap-features .main-feature > div:last-child {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
	padding-left: 50px;
}
.roll-ap-features .main-feature .title {
	margin-bottom: 30px;
	font-size: 20px;
	font-weight: bold;
}
.roll-ap-features .main-feature ul {
	padding-left: 20px;
	font-size: 18px;
}
.roll-ap-features .main-feature ul li {
	margin-bottom: 15px;
}

/*** Roll up materials ***/
.roll-ap-materials .item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 30px;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,.08);
    transition: 0.3s;
}
.roll-ap-materials .item .img {
	-ms-flex: 0 0 400px;
	flex: 0 0 400px;
	max-width: 400px;
}
.roll-ap-materials .item .content {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-ms-align-items: center;
	align-items: center;
	-ms-flex: 0 0 calc(100% - 400px);
	flex: 0 0 calc(100% - 400px);
	max-width: calc(100% - 400px);
	padding: 30px 40px;
}
.roll-ap-materials .item h3 {
	margin-bottom: 20px;
	text-align: center;
}
.roll-ap-materials .item p {
	text-align: center;
}
.roll-ap-materials ul {
	padding: 20px 30px;
	color: #fff;
	border-radius: 20px;
	background-color: #c0375b;
}
.roll-ap-materials ul.checkmark li:before {
	background: url('../img/icons/icon-checkmark-white.png') no-repeat center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*** Roll up recommendation ***/
.roll-ap-recommendation .row div:last-child {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}
.roll-ap-recommendation ul {
	list-style-type: disc;
}
.roll-ap-recommendation ul li {
	margin-bottom: 15px;
	padding-left: 20px;
	font-size: 18px;
	list-style-position: inside;
}
.roll-ap-recommendation ul li:last-child {
	margin-bottom: 0;
}

/*** Product our work gallery ***/
.product-our-work {
	margin-bottom: 35px;
}
.our-work-gallery .gal-item {
	margin: 0;
	padding: 0;
	border: none;
}
.our-work-gallery .slick-slide {
	margin: 0 20px;
}
.our-work-gallery .slick-list {
    margin: 0 -20px;
}
.our-work-gallery .slick-prev,
.our-work-gallery .slick-next {
	z-index: 2;
	width: 36px;
	height: 36px;
}
.our-work-gallery .slick-prev {
	left: -44px;
}
.our-work-gallery .slick-next {
	right: -47px;
}
.our-work-gallery .slick-prev:before,
.our-work-gallery .slick-next:before {
	font-size: 36px;
	color: #c0375b;
}

/********************
Examples-page
********************/
#examples .examples-gallery,
#examples-category .examples-previews {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: wrap;
			flex-flow: wrap;
	width: 103%;
	margin-top: 55px;
	margin-left: -3%;
}
#examples .examples-gallery li,
#examples-category .examples-previews li {
	margin-bottom: 30px;
	margin-left: 3%;
	-ms-flex-preferred-size: 22%;
			flex-basis: 22%;
}
#examples .examples-gallery a,
#examples-category .examples-previews a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
			-ms-flex-flow: column;
					flex-flow: column;
	width: 100%;
	height: 100%;
	font-weight: 400;
	color: #000;
	border-radius: 10px;
	background-color: #fff;
}
#examples .examples-gallery a:hover,
#examples-category .examples-previews a:hover {
	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
					box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}
#examples .examples-gallery img,
#examples-category .examples-previews img {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	-webkit-filter: opacity(.9);
					filter: opacity(.9);
	-webkit-box-flex: 0;
			-ms-flex-positive: 0;
					flex-grow: 0;
}
#examples .examples-gallery a:hover img,
#examples-category .examples-previews a:hover img {
	-webkit-filter: opacity(1);
					filter: opacity(1);
}
#examples .examples-gallery p,
#examples-category .examples-previews p {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
			-ms-flex-pack: center;
					justify-content: center;
	-webkit-box-align: center;
			-ms-flex-align: center;
					align-items: center;
	margin: 0;
	padding: 20px;
	text-align: center;
	-webkit-box-flex: 1;
			-ms-flex-positive: 1;
					flex-grow: 1;
}
#examples-category .examples-previews p {
	font-weight: 700;
	color: #fff;
	background-color: #c0375b;
}

/********************
Category
********************/
#category h1 {
	margin-bottom: 30px;
}
.category {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.category .item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex: 0 0 calc(50% - 30px);
	flex: 0 0 calc(50% - 30px);
	max-width: calc(50% - 30px);
	margin-right: 60px;
	margin-bottom: 30px;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}
.category .item:nth-child(2n) {
	margin-right: 0;
}
.category .item .img {
	-ms-flex: 0 0 271px;
	flex: 0 0 271px;
	max-width: 271px;
}
.category .item .info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: space-between;
	padding: 35px 50px 30px;
}
.category .item .info h3 {
	font-size: 24px;
	line-height: 1.1;
	color: #000;
}
.category .item .info .price {
	margin-top: auto;
	margin-bottom: 30px;
	font-weight: bold;
	color: #000;
}
.category .item .info .price span {
	font-size: 30px;
}
.category .item .info .read-more {
	margin-bottom: 0;
}
.category .item .info .read-more span {
	font-weight: bold;
	color: #c0375b;
	border-bottom: 1px solid #c0375b;
	transition: all .3s;
}
.category .item:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,.08);
}
.category .item:hover .read-more span {
	border-bottom-color: transparent;
}

/********************
Catalog
********************/
.categories {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: wrap;
			flex-flow: wrap;
	width: 105.333%;
	margin-top: 40px;
	margin-left: -5.333%;
}
.categories>li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
			-ms-flex-direction: column;
					flex-direction: column;
	width: 28%;
	margin-bottom: 40px;
	margin-left: 5.333%;
	border-radius: 10px;
	background-color: #fff;
}
.categories>li>a {
	padding: 20px 15px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background-color: #c0375b;
}
.categories>li>a:hover {
	color: #c0375b;
	background-color: #fff;
}
.categories>li>.submenu {
	padding: 20px;
}
.categories>li>.submenu a {
	display: block;
	padding: 7px;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	color: #000;
}
.categories>li>.submenu a:hover {
	padding-left: 15px;
	border-left: 4px solid #c0375b;
}
/********************
Home
********************/
#home main {
	padding-top: 30px;
}
.slider {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
.slider .slick-slide {
	margin: 0 20px;
}
.slider .slick-list {
    margin: 0 -20px;
}
.slider .slick-prev,
.slider .slick-next {
	z-index: 2;
	width: 36px;
	height: 36px;
}
.slider .slick-prev {
	left: -44px;
}
.slider .slick-next {
	right: -47px;
}
.slider .slick-prev:before,
.slider .slick-next:before {
	font-size: 36px;
	color: #c0375b;
}
#home .features {
	margin-bottom: 50px;
}
#home .features-list > div {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 30px;
}
#home .features-list .item {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	width: 100%;
	padding: 15px;
	background-color: #fff;
	border-radius: 27px;
}
#home .features-list .item img {
	width: 80px;
	margin-right: 25px;
}
#home .features-list .item .title {
	font-size: 18px;
	font-weight: bold;
}
#home .categories {
	margin-bottom: 50px;
}
.social-widgets {
	margin-bottom: 50px;
}

/********************
Info page
********************/

/*** About page ***/
.block {
	margin-bottom: 10px;
	padding: 65px 80px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
}
.page h1 {
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 600;
}
#about .about-description p {
	margin-bottom: 35px;
	font-weight: normal;
}
#about .about-description ul {
	padding-left: 10px;
}
#about .about-description ul li {
	margin-bottom: 8px;
}
#about .about-a4bigtext {
	text-align: center;
}
#about .about-a4bigtext p {
	font-weight: 900;
	color: #c0375b;
}
#about .about-a4 {
	font-size: 120px;
	line-height: 1;
}
#about .about-a4bigtext p:last-child {
	line-height: 30px;
}
#about .about .row {
	margin-bottom: 55px;
}
#about .main-feature {
	max-width: 1005px;
	margin-bottom: 90px;
	margin-left: auto;
	margin-right: auto;
	padding: 28px 70px;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	background-color: #c4e68d;
	border-radius: 25px;
}
#about .features-list {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	max-width: 1020px;
	margin-left: auto;
	margin-right: auto;
}
#about .feature-item {
	position: relative;
	max-width: 280px;
	padding-top: 113px;
	text-align: center;
}
#about .feature-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	height: 83px;
}
#about .feature-item.place:before {
	width: 90px;
	background: url('../img/icons/icon-place.png') no-repeat center;
}
#about .feature-item.time:before {
	width: 68px;
	background: url('../img/icons/icon-time.png') no-repeat center;
}
#about .feature-item.near:before {
	width: 69px;
	background: url('../img/icons/icon-near.png') no-repeat center;
}
#about .equipment > .row > div {
	margin-bottom: 90px;
}
#about .equipment-feature {
	margin-bottom: 45px;
	font-size: 20px;
}
#about .equipment-purpose,
#about .equipment-item {
	text-align: center;
}
#about .equipment-purpose {
	margin-bottom: 40px;
}
#about .equipment-img {
	margin-bottom: 40px;
}
#about .equipment-description {
	position: relative;
}
#about .equipment-description p {
	position: relative;
	z-index: 3;
	font-weight: normal;
	line-height: 1.3;
}
#about .equipment-description .equipment-title {
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: bold;
}
#about .equipment-description:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: -25px;
	left: 50%;
	display: block;
	width: 112px;
	height: 112px;
	background-color: #edffd1;
	border-radius: 50%;
}
#about .our-principles,
#about .our-features {
	position: relative;
	padding-left: 115px;
	padding-right: 115px;
}
#about .our-principles:before,
#about .our-features:before {
	content: '';
	position: absolute;
	top: 0;
	left: -2px;
	display: block;
	width: 105px;
	height: 112px;
}
#about .our-principles:before {
	background: url('../img/icons/icon-our-principles.png') no-repeat;
}
#about .our-features:before {
	background: url('../img/icons/icon-our-features.png') no-repeat;
}
#about h2 {
	margin-bottom: 35px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}
#about .our-principles ul,
#about .our-features ul {
	margin-left: 25px;
}
#about .our-principles ul li,
#about .our-features ul li {
	margin-bottom: 15px;
}
#about .our-principles ul li:last-child,
#about .our-features ul li:last-child {
	margin-bottom: 0;
}
#about .our-features {
	margin-bottom: 50px;
}
#about .contacts .title {
	max-width: 730px;
	margin-left: 80px;
	margin-bottom: 50px;
	font-size: 24px;
	line-height: 1.3;
}
#about .map {
	position: relative;
}
#ymap-mobile {
	display: none;
}
#about .contacts-block {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 150px;
	width: 350px;
	height: calc(100% + 48px);
	margin-top: -24px;
	padding: 35px 30px;
	background-color: #fff;
	border: 6px solid #c0375b;
	border-radius: 10px;
}
#about .contacts-block p {
	margin-bottom: 0;
}
#about .contacts-block .phone {
	display: block;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 500;
	color: #101010;
}
#about .contacts-block .phone:hover {
	color: #c0375b;
}
#about .contacts-block .worktime,
#about .contacts-block .phone {
	font-size: 24px;
	line-height: 1.2;
}
#about .contacts-block .worktime,
#about .contacts-block .phone:last-of-type,
#about .contacts-block .address {
	margin-bottom: 15px;
}
#about .contacts-block .address {
	margin-top: 15px;
	margin-bottom: 25px;
	line-height: 1.2;
}
#about .contacts-block .driving-directions {
	display: block;
	margin-bottom: 14px;
}

/*** Delivery page ***/
#delivery h1 {
	margin-bottom: 85px;
}
#delivery .item {
	text-align: center;
}
#delivery .item img {
	margin-bottom: 20px;
}
#delivery .item p {
	font-size: 18px;
}
#delivery h2 {
	margin-bottom: 50px;
}

/*** Contacts page ***/
#contacts h1 {
	margin-bottom: 50px;
}
#contacts .row {
	text-align: center;
}
#contacts .row .worktime,
#contacts .row .phones,
#contacts .row .email {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	justify-content: center;
}
#contacts .row .worktime p,
#contacts .row .phones p,
#contacts .row .email p {
	margin-bottom: 0;
}
#contacts .row .phones a {
	font-size: 24px;
	font-weight: bold;
    color: #c0375b;
    border-bottom: 2px solid transparent;
}
#contacts .row .email a {
    color: #c0375b;
    border-bottom: 1px solid transparent;
}
#contacts .row .phones a:hover,
#contacts .row .email a:hover {
    border-bottom-color: #c0375b;
}
#contacts .row .address {
	margin-bottom: 0;
}
#contacts .row .free-parking {
	font-size: 26px;
	font-weight: 500;
	color: #c0375b;
}
#contacts .map-title {
	font-size: 24px;
}

/********************
Footer
********************/
footer {
	background-color: #fff;
}
footer > .container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 60px;
}
.footer-nav {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
footer h4 {
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 500;
}
.footer-nav li:first-child {
	margin-right: 57px;
}
.footer-menu li a {
	font-size: 14px;
	line-height: 1.2;
	font-weight: 500;
	color: #181818;
	border-bottom: 1px solid #181818;
}
.footer-menu li a:hover {
	color: #c0375b;
	border-bottom-color: #c0375b;
}
.footer-contacts {
	text-align: right;
}
.footer-contacts .address {
	margin-bottom: 22px;
	font-weight: 500;
}
.footer-contacts .phone {
	display: block;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 500;
	color: #101010;
}
.footer-contacts .phone:hover {
	color: #c0375b;
}
.footer-contacts .email a {
	font-weight: bold;
	color: #c0375b;
	border-bottom: 1px solid #c0375b;
}
.footer-contacts .email a:hover {
	border-bottom-color: transparent;
}
.copyright {
	background-color: #c0375b;
}
.copyright .container {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
.copyright p {
	margin-bottom: 0;
	margin-right: 33px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}
.copyright a {
	font-weight: 500;
	line-height: 1;
	color: #fff;
}
.copyright a:hover {
	color: rgba(255,255,255,.7);
}

/********************
Modal
********************/
.modal {
	max-width: 436px;
	padding: 54px 74px;
	border-radius: 15px;
}
.modal h3 {
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
.modal .tos {
	margin-top: 20px;
	margin-bottom: 35px;
	font-size: 12px;
	text-align: center;
	color: #595959;
}
.modal .tos a {
	color: #ef076a;
	border-bottom: 1px solid transparent;
}
.modal .tos a:hover {
	border-bottom: 1px solid #ef076a;
}
.modal .btn {
	width: 187px;
}

/*** One click roll up modal ***/
.oneClickOrderRollupData p {
	margin-bottom: 0;
	font-weight: 700;
}
.oneClickOrderRollupData p span {
	font-weight: 500;
}

/********************
Media
********************/
@media (max-width: 1430px) {
	.product-our-work {
		padding-left: 44px;
		padding-right: 44px;
	}
}
@media (min-width: 1200px) and (max-width: 1330px) {
	.top-bar .address {
		font-size: 14px;
	}
	.top-menu li {
		margin-right: 15px;
	}
	.main-menu > li > a {
		text-align: center;
	}
	.roll-ap-materials .item .img {
		-ms-flex: 0 0 500px;
	    flex: 0 0 500px;
	    max-width: 500px;
	}
	.roll-ap-materials .item .content {
		-ms-flex: 0 0 calc(100% - 500px);
    	flex: 0 0 calc(100% - 500px);
    	max-width: calc(100% - 500px);
	}
}
@media (max-width: 1330px) {
	.slider .slick-prev {
		left: 10px;
	}
	.slider .slick-next {
		right: 10px;
	}
}
@media (max-width: 1199px) {
	.top-bar .address {
		display: none;
	}
	.top-menu {
		margin-right: auto;
	}
	.header-main .container {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	header .logo {
		margin-right: auto;
	}
	.header-center {
		justify-content: center;
		-ms-flex: 0 0 calc(100% - 236px);
	    flex: 0 0 calc(100% - 236px);
	    max-width: calc(100% - 236px);
	}
	.header-address {
		margin-right: 32px;
	}
	.main-menu li.dropdown > a {
		text-align: center;
	}
	.product-main {
		padding: 40px 30px 50px 30px;
	}
	.product-main .left-col {
		padding-left: 15px;
		padding-right: 30px;
	}
	.product-main .base-price-desc {
		margin-right: -30px;
	}
	.roll-ap-materials .item .img {
		-ms-flex: 0 0 500px;
	    flex: 0 0 500px;
	    max-width: 500px;
	}
	.roll-ap-materials .item .content {
		-ms-flex: 0 0 calc(100% - 500px);
    	flex: 0 0 calc(100% - 500px);
    	max-width: calc(100% - 500px);
	}
	.category .item {
		-ms-flex: 0 0 calc(50% - 15px);
	    flex: 0 0 calc(50% - 15px);
	    max-width: calc(50% - 15px);
	    margin-right: 30px;
	}
	.category .item .img {
	    -ms-flex: 0 0 180px;
	    flex: 0 0 180px;
	    max-width: 180px;
	}
	.category .item .info {
		padding: 20px 40px;
	}
	.category .item .info h3,
	.category .item .info .price span {
		font-size: 20px;
	}
	.category .item .info .price {
		margin-bottom: 15px;
	}
	.categories>li>a{
		font-size: 16px;
	}
}
@media (max-width: 1080px) {
	.roll-ap-materials .item {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.roll-ap-materials .item .img,
	.roll-ap-materials .item .content {
		-ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.roll-ap-materials .item .img {
		padding-top: 30px;
		text-align: center;
	}
	.roll-ap-materials .item .img img {
		max-width: 500px;
	}
}
@media (min-width: 992px) and (max-width: 1060px) {
	header .logo {
		margin-left: 0;
		-ms-flex: 0 0 200px;
	    flex: 0 0 200px;
	    max-width: 200px;
	}
	.header-address br {
		display: inline;
	}
	#about .about-a4 {
		font-size: 100px;
	}
}
@media (max-width: 991px) {
	.menu-opener {
		margin-right: 20px;
	}
	.top-bar .address {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
	}
	.header-main {
		min-height: auto;
		padding-bottom: 20px;
	}
	.header-center {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;
		-ms-align-items: center;
		align-items: center;
		justify-content: flex-end;
		padding-top: 40px;
	}
	.top-menu,
	.header-address,
	header nav {
		display: none;
	}
	#about .about-a4 {
		font-size: 80px;
	}
	#about .feature-item {
		margin-left: 10px;
		margin-right: 10px;
	}
	#about .equipment > .row > div {
		margin-bottom: 50px;
	}
	.product-main .buttons {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.product-main .buttons .btn:first-child {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.roll-ap-table td {
		padding: 15px 10px;
		font-size: 16px;
	}
	.roll-ap-table .size td {
		font-size: 18px;
	}
	.roll-ap-features .features-list {
		margin-bottom: 0;
	}
	.roll-ap-features .item {
		-ms-flex: 0 0 calc(50% - 21px);
		flex: 0 0 calc(50% - 21px);
		max-width: calc(50% - 21px);
		margin-bottom: 42px;
	}
	.roll-ap-features .item:nth-child(2) {
		margin-right: 0;
	}
	.roll-ap-recommendation .row div:first-child {
		margin-bottom: 50px;
		text-align: center;
	}
	.roll-ap-features .main-feature > div:last-child {
		padding-left: 10px;
	}
	.roll-ap-features .main-feature .title {
		margin-bottom: 20px;
		font-size: 18px;
	}
	.roll-ap-features .main-feature ul {
		font-size: 16px;
	}
	footer .logo-and-social {
		margin-right: 30px;
	}
	.footer-nav li:first-child {
		margin-right: 30px;
	}
	.category .item {
		-ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	    margin-right: 0;
	}
	.category .item .img {
	    -ms-flex: 0 0 271px;
	    flex: 0 0 271px;
	    max-width: 271px;
	}
	.category .item .info {
		padding: 35px 50px 30px;
	}
	.category .item .info h3 {
		font-size: 24px;
	}
	.category .item .info .price {
		margin-bottom: 30px;
	}
	.category .item .info .price span {
		font-size: 30px;
	}
	#examples .examples-gallery,
	#examples-category .examples-previews {
		margin-left: -2.333%;
		width: 102.333%;
	}
	#examples .examples-gallery li,
	#examples-category .examples-previews li {
		-ms-flex-preferred-size: 31%;
		    flex-basis: 31%;
		margin-left: 2.333%;
	}
	.categories {
		width: 104%;
		margin-left: -4%;
	}
	.categories>li {
		width: 46%;
		margin-left: 4%;
	}
}
@media (max-width: 767px) {
	.top-bar .address {
		font-size: 12px;
	}
	.btn-price {
		height: 40px;
		margin-top: 0;
	}
	.header-center {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: flex-end;
		align-items: flex-end;
		padding-top: 15px;
	}
	.header-contacts {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.header-phone-1 {
		margin-right: 0;
		margin-bottom: 10px;
	}
	.header-phone .phone {
		font-size: 18px;
	}
	#about .about-description p {
		margin-bottom: 20px;
	}
	#about .about-description {
		margin-bottom: 55px;
	}
	#about .about-a4 {
		font-size: 100px;
	}
	#about .features-list {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: center;
		align-items: center;
	}
	#about .feature-item {
		margin-bottom: 50px;
		padding-top: 100px;
	}
	#about .feature-item:last-child {
		margin-bottom: 0;
	}
	#about .equipment-feature,
	#about .equipment > .row > div,
	#about .equipment > .row > div > .row > div:first-child {
		margin-bottom: 80px;
	}
	#about .equipment-purpose {
		margin-bottom: 30px;
	}
	#about .contacts .title {
		margin-left: 0;
	}
	#about .contacts-block {
		left: 0;
	}
	#delivery h1 {
		margin-bottom: 50px;
	}
	.product-main .left-col {
		padding-right: 15px;
	}
	.product-main .buttons {
		-webkit-flex-direction: row;
		-moz-flex-direction: row;
		-ms-flex-direction: row;
		-o-flex-direction: row;
		flex-direction: row;
	}
	.product-main .buttons .btn:first-child {
		margin-right: 35px;
	}
	.roll-ap-features .item {
		-ms-flex: 0 0 calc(50% - 10px);
	    flex: 0 0 calc(50% - 10px);
	    max-width: calc(50% - 10px);
	    margin-right: 20px;
	    margin-bottom: 20px;
	}
	.roll-ap-features .main-feature > div:last-child {
		padding-left: 15px;
	}
	.roll-ap-features .main-feature .title {
		text-align: center;
	}
	.roll-ap-materials .item .img {
		padding-top: 0;
	}
	.roll-ap-materials .item .img img {
		max-width: 100%;
	}
	#product .gallery .slick-slide img {
		margin-left: auto;
		margin-right: auto;
	}
	footer > .container {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
		-ms-align-items: center;
		align-items: center;
	}
	footer .logo-and-social,
	footer .footer-nav {
		margin-right: 0;
		margin-bottom: 60px;
	}
	footer .footer-contacts {
		text-align: center;
	}
	#examples .examples-gallery,
	#examples-category .examples-previews {
		margin-left: -3%;
		width: 103%;
	}
	#examples .examples-gallery li,
	#examples-category .examples-previews li {
		-ms-flex-preferred-size: 47%;
		    flex-basis: 47%;
		margin-left: 3%;
	}
}
@media (max-width: 575px) {
	.top-bar .address {
		display: none;
	}
	.menu-opener {
		margin-right: auto;
	}
	header .logo {
		margin-left: 0;
	}
	.block,
	#about .our-principles,
	#about .our-features {
		padding: 50px 40px;
	}
	#about .our-principles h2,
	#about .our-features h2 {
		text-align: center;
	}
	#about .main-feature {
		padding: 20px 30px;
	}
	#about .contacts .title {
		text-align: center;
	}
	#about .contacts-block {
		position: relative;
		width: auto;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 50px;
		text-align: center;
	}
	#ymap {
		display: none;
	}
	#ymap-mobile {
		display: block;
	}
	#contacts .address {
		margin-bottom: 20px !important;
	}
	#contacts .free-parking {
		line-height: 1;
	}
	.product-main .base-price-desc {
		margin-left: -30px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
	}
	.product-main .buttons {
		-webkit-flex-direction: column;
		-moz-flex-direction: column;
		-ms-flex-direction: column;
		-o-flex-direction: column;
		flex-direction: column;
	}
	.product-main .buttons .btn:first-child {
		margin-right: 0;
		margin-bottom: 20px;
	}
	.roll-ap-materials .item .content {
		padding: 30px;
	}
	.roll-ap-materials ul {
		margin-left: -30px;
		margin-right: -30px;
		border-radius: 0;
	}
	.category .item {
	    -webkit-flex-wrap: wrap;
	    -moz-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	    -o-flex-wrap: wrap;
	    flex-wrap: wrap;
	}
	.category .item .img {
	    -ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	}
	.category .item h3 {
		margin-bottom: 10px;
	}
	#examples .examples-gallery,
	#examples-category .examples-previews {
		margin-left: 0;
		width: 100%;
	}
	#examples .examples-gallery li,
	#examples-category .examples-previews li {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
		margin-left: 0;
	}
	.categories {
		width: 100%;
		margin-left: 0;
	}
	.categories>li {
		width: 100%;
		margin-left: 0;
	}
}
@media (max-width: 500px) {
	.btn-price {
		width: 155px;
		padding: 0 10px;
	}
	.btn-price:before {
		display: none;
	}
	header .logo {
	  -ms-flex: 0 0 170px;
	  flex: 0 0 170px;
	  max-width: 170px;
	}
	.header-center {
	    justify-content: center;
	}
	.header-phone-1 {
		margin-bottom: 0;
	}
	.header-phone .work-time {
		text-align: right;
	}
	.header-phone .work-time span,
	.header-phone-2 p {
		display: none;
	}
}
@media (max-width: 450px) {
	header .logo {
		margin-right: 0;
	}
	.header-center {
		justify-content: center;
    	-ms-flex: 0 0 calc(100% - 170px);
    	flex: 0 0 calc(100% - 170px);
    	max-width: calc(100% - 170px);
	}
	.roll-ap-features .item {
	    -ms-flex: 0 0 100%;
	    flex: 0 0 100%;
	    max-width: 100%;
	    margin-right: 0;
	}
}
@media (max-width: 370px) {
	.top-bar .container {
		justify-content: space-between;
	}
	.menu-opener {
		margin-right: 0;
	}
	.header-main {
		padding-bottom: 20px;
	}
	.header-center {
		-ms-flex: 0 0 100%;
    	flex: 0 0 100%;
    	max-width: 100%;
    	-ms-align-items: center;
    	align-items: center;
		justify-content: center;
		padding-top: 0;
		text-align: center;
	}
	.header-phone {
		-ms-align-items: center;
		align-items: center;
	}
	header .logo {
		-ms-flex: 0 0 200px;
	  flex: 0 0 200px;
	  max-width: 200px;
	  margin: 10px auto 20px;
	  text-align: center;
	}
	.block,
	#about .our-principles,
	#about .our-features {
		padding: 30px 20px;
	}
	.page h1 {
		font-size: 28px;
	}
	#about .about-a4 {
		font-size: 50px;
	}
	#about .equipment-feature {
		text-align: center;
	}
	#about .our-principles h2,
	#about .our-features h2 {
		margin-top: 100px;
		font-size: 22px;
	}
	#about .contacts .title {
		font-size: 18px;
	}
	#about .equipment-feature,
	#about .equipment > .row > div,
	#about .equipment > .row > div > .row > div:first-child {
		margin-bottom: 50px;
	}
}