@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,700,800&subset=cyrillic');
@import url("content.css");
@import url("form.css");
html, body {
	width: 100%;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
	margin: 0;
	padding: 0;
}
body {
	background: url(../images/bg.jpg);
	font-size: 1.5rem;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0 0 15px 0;
	padding: 0;
}





/*Loading*/
.posts {
	position: relative;
}
.post-loading {
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(255,255,255,0.8);
	left: 0;
	top: 0;
	text-align: center;
	padding: 50px;
	display: block;
	z-index: 50;
}
.post-loading i {
	position: absolute;
	top: 30px;
	left: calc(50% - 25px);
	color: #b34239;
	font-size: 4.5rem;
}
/*Loading End*/



/*Button*/
.button {
	display: inline-block;
	width: auto;
	min-width: 150px;
	height: 40px; 
	line-height: 40px;
	padding: 0 20px 0 15px;
	color: #fff !important;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: normal;
	border-radius: 0;
	outline: none !important;
	text-decoration: none !important;
	transition: all 0.6s ease;
	text-align: center;
	text-shadow: none;
	font-weight: bold;
	position: relative;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}
.button.black {
	background-color: #1b0c00;
}
.button.red {
	background-color: #b34239;
}
.button i {
	position: absolute;
	font-size: 1.0rem;
	display: inline-block;
	margin: 0 0 0 7px;
	top: 14px;
}
.button:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.5);
	color: #fff;
}
.button.red:hover {
	background-color: #1b0c00;
}
.button.black:hover {
	background-color: #b34239;
}
/*Button End*/



/*Header*/
header {
	width: 100%;
	padding: 20px 0;
}
header > div {
	letter-spacing: -0.3em;
}
header .logo {
	width: 250px;
	display: inline-block;
	vertical-align: middle;
}
header .logo a {
	display: inline-block;
	margin-bottom: 10px;
	text-decoration: none;
	vertical-align: top;
	letter-spacing: normal;
}
header .logo img {
	width: 100%;
	border: 0px;
	text-decoration: none !important;
	display: inline-block;
	vertical-align: middle;	
	text-transform: uppercase;
}

.top-contacts {
	display: inline-block;
	width: calc(100% - 250px);
	text-align: right;
	vertical-align: middle;
	letter-spacing: -0.3em;
}
.top-contacts > div {
	display: inline-block;
	width: auto;
	letter-spacing: normal;
	vertical-align: middle;
	letter-spacing: -0.3em;
	padding: 0 20px;
	border-right: 1px solid #ccc;
}
.top-contacts > div:last-child {
	border: none;
	padding: 0 0 0 20px;
}
.top-contacts i {
	width: 40px;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	background-size: 20px;
	background-position: center;
	background-repeat: no-repeat;
}
.top-contacts i.phone-ico {
	background: url(../images/ico/phone-ico.svg) center no-repeat;
	background-size: 80%;
}
.top-contacts i.mail-ico {
	background: url(../images/ico/mail-ico.svg) center no-repeat;
	background-size: 80%;
}
.top-contacts i.clock-ico {
	background: url(../images/ico/clock-ico.svg) center no-repeat;
	background-size: 80%;
}
.top-contacts strong {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 40px);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: -0.5px;
	text-align: left;
	padding: 0 0 0 10px;
}
/*Header End*/


/*Seacrh*/
.search-block {
	width: 250px;
	height: 36px;
	margin-top: 12px;
	display: inline-block;
	vertical-align: top;
	position: relative;
}
.search-block form > input {
	width: 100%;
	height: 36px;
	line-height: 36px;
	font-size: 1.3rem;
	background: transparent;
	border: 2px solid rgba(255,255,255,0.3);
	border-left: none;
	border-right: none;	
	padding: 0 50px 0 10px;
	outline: none;
	color: rgba(255,255,255,0.7);
}
input[type="search"]::-webkit-input-placeholder {
    color: rgba(255,255,255,0.5);
} 
input[type="search"]::-moz-placeholder {
	color: rgba(255,255,255,0.5);
}

.search-block form > button {
	width: 36px;
	height: 36px;
	letter-spacing: normal;
	display: inline-block;
	position: absolute;
	background: url(../images/ico/search.svg) center no-repeat;
	background-size: 16px;
	border: none;
	outline: none;
	right: 0;
	top: 0;
	z-index: 2;
	opacity: 0.5;
	transition: all 0.3s ease;
}
.search-block form > button:hover {
	opacity: 1;
}

/*Autocomplete*/
.autocomplete-suggestions {
    text-align: left; 
    cursor: default; 
    width: 100%;
    top: 15px;
    background: #fff; 
    box-shadow: 0 1px 7px rgba(0,0,0,0.1);
    /* core styles should not be changed */
    position: fixed; 
    display: none; 
    z-index: 600; 
    overflow: hidden; 
    overflow-y: auto; 
    box-sizing: border-box;
}
.autocomplete-suggestion { 
	position: relative; 
	padding: 7px;  
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	font-size: 1.3rem; 
	color: #333;
	transition: all 0.3s ease;
}
.autocomplete-not-find {
	position: relative; 
	padding: 7px;  
	font-size: 1.3rem; 
	color: #e57373;
	text-align: center;
}
.autocomplete-suggestion b { 
	font-weight: normal; 
	color: #fff; 
	background: #b34239;
}
.autocomplete-suggestion.selected { 
	background: #FCE4EC;
	cursor: pointer; 
}


.inSearch {
	width: 100%;
	height: 40px;
	display: inline-block;
	vertical-align: top;
	margin: 5px 0 50px;
	position: relative;
}
.inSearch button {
	position: absolute;
	width: 36px;
	height: 36px;
	background-color: #fff;
	right: 2px;
	top: 2px;
	outline: none;
	border: none;
	color: #999;
}

/*Result*/
.searchResult {
	width: 100%;
	height: auto;
	display: inline-block;
	margin-bottom: 25px;	
}
.inside-search {
	margin-bottom: 30px;
}
.searchlGrid {
	width: 100%;
	height: auto;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0,0,0,0.07);
	padding-bottom: 10px;
}
.searchlGrid h4 {
	width: 100%;
	display: inline-block;
	vertical-align: top;	
	padding: 0;
	margin: 0 0 8px;
	font-size: 1.6rem;
	font-weight: bold;
}
.searchlGrid a,
.searchlGrid a mark {
	color: #888;
	transition: all 0.3s ease;
}
.searchlGrid a:hover,
.searchlGrid a:hover mark {
	text-decoration: none;
    color: #ff6600;
}
.searchlGrid > div {
	width: 100%;
	display: inline-block;
	vertical-align: top;	
	margin-bottom: 10px;
	font-size: 1.4rem;	
	color: #888;
}
.searchlGrid > strong {
	font-weight: normal;
	font-size: 1.2rem;
}
.searchlGrid > strong a {
	color: #b34239;
	word-break: break-all;
	text-align: left;	
}
.searchlGrid mark {
	background: rgba(255,211,49,0.5);
	padding: 0;
}
/*Seacrh End*/



/*Banner*/
.banner {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    position: relative;
    height: 620px;
    z-index: 1;
    background-color: #b34239;
}

.banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    position: relative;
}
.banner .swiper-slide > span {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
	transform: scale(1);
	transition: all 25s ease;
}
.banner .swiper-slide-active.swiper-slide > span  {
	transform: scale(1.2);	
}
.banner .swiper-slide > div {
	text-align: left;
	position: relative;
	height: 100%;
	letter-spacing: -0.3em;
	z-index: 15;
}
.banner .swiper-slide > span::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );	
}
.banner .swiper-slide::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 50px;
	opacity: 0.5;
	z-index: 5;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );	
}
.banner .swiper-slide > div::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 0px;
	height: 100%;
}
.banner .swiper-slide .banner-text {
	width: auto;
	max-width: 900px;
	color: #fff;
	font-weight: 900;
	padding: 0 0 0;
	margin: 0;
	letter-spacing: -1px;
	font-size: 3.0rem;
	line-height: 38px;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
	text-align: left;
	text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
	transition: all 0.6s ease;
}
.banner .swiper-slide .banner-text p {
	padding: 0 0 25px;
	margin: 0;
	border-bottom: 7px solid #b34239;
}
.banner .swiper-slide .banner-text .more {
	display: inline-block;
	width: 100%;
	margin-top: 25px;
	font-size: 1.5rem;
	transition: all 0.9s ease;
}

.banner .swiper-slide-next .banner-text,
.banner .swiper-slide-prev .banner-text {
	transform: translateY(200px);
	opacity: 0;
}
.banner .swiper-slide-active .banner-text.
.banner .swiper-slide-active .banner-text .more {
	opacity: 1;
	transform: translateY(0);
}
.banner .swiper-slide-next .banner-text .more,
.banner .swiper-slide-prev .banner-text .more {
	transform: translateY(100px);
	opacity: 0;
}


/*Arrow*/
.banner-button-prev,
.banner-button-next {
	position: absolute;
	width: 44px;
	height: 44px;
	top: calc(50% - 22px);
	z-index: 10;
	cursor: pointer;
	background: url(../images/ico/banner-arrow.svg) center no-repeat #b34239;
	background-size: 18px;
	transition: all 0.3s ease;
}
.banner-button-next {
	right: 0;
	left: auto;
}
.banner-button-prev {
	left: 0;
	right: auto;
	transform: rotate(180deg);
}
.banner-button-prev:hover,
.banner-button-next:hover {
	opacity: 0.5;
} 


/*pagination*/
.swiper-container-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-custom, .swiper-pagination-fraction {
	position: absolute;
	z-index: 20;
	bottom: 25px;
	left: 0;
	padding: 0;
	text-align: center;
	z-index: 55;
}
.banner-pagination > span,
.banner-pagination > span:hover {
	width: 18px;
	height: 6px;
	border: 2px solid #fff;
	opacity: 0.5;
	border-radius: 0px;
	background: #fff;
	transition: all 0.3s ease;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 3px;
}
.banner-pagination > span.swiper-pagination-bullet-active {
	opacity: 1;
	width: 25px;
}


.banner.inside {
	height: 200px;
}
.banner.inside .swiper-slide {
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	filter: blur(5px);
}
.banner.inside .swiper-slide::before {
	height: 100%;
	opacity: 1;
	background: rgba(0,0,0,0.6);	
}
.banner .swiper-slide::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );	
}
.banner.inside .banner-button-prev,
.banner.inside .banner-button-next,
.banner.inside .swiper-slide .banner-text,
.banner.inside .banner-pagination {
	display: none;
}
/*Banner End*/




/*Other*/
.page-title {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 25;
}
.page-title .container {
	height: 100%;
	text-align: left;
	padding: 20px 15px;
	position: relative;
	letter-spacing: -0.3em;
}
.page-title .container::before {
	content: "";
	width: 0;
	height: 170px;
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

.page-title .container > div {
	display: inline-block;
	vertical-align: middle;
	width: 99%;
	letter-spacing: normal;
	position: relative;
	padding-left: 30px;
}
.page-title .container > div ::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 10px;
	height: 100%;
	background: #b34239;
}
.page-title .container h1 {
	color: #fff;
	padding: 0;
	margin: 0;
	letter-spacing: -1px;
	font-size: 2.8rem;
	margin-bottom: 5px;
	text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
	font-weight: lighter;
}

.breadcrumb {
	background: none;
	padding: 0;
	margin: 0 0 10px;
	color: #fff;
	font-size: 1.2rem;
}
.breadcrumb > .active {
    color: rgba(255,255,255,0.5);
}
.breadcrumb a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}
.breadcrumb a:hover {
	color: #ccc;
}


.alert {
	border-width: 2px;
	border-radius: 0px;
}
.alert .close {
	outline: none;
}
/*Other End*/



/*About*/
.about {
	width: 100%;
	padding: 60px 0 45px;
	display: inline-block;
	vertical-align: top;
	background: rgba(0,0,0,0.05);
}
.about-text {
	padding: 0 0;
	text-align: left;
	font-size: 1.7rem;
}
.about-text > h1,
.main-title {
	text-align: left;
	font-weight: bold;
	letter-spacing: -2px;
	position: relative;
	padding-bottom: 20px;
	color: #b34239;
	margin-bottom: 30px;
	line-height: normal;
	text-transform: uppercase;	
}
.main-title {
	font-size: 3.0rem;
}
.about-text > h1::before,
.main-title::before {
	content: "";
	width: 50px;
	height: 4px;
	background: #1b0c00;
	position: absolute;
	bottom: 0;
	left: 0;
}
.about-text > h1.red,
.main-title.red {
	color: #b34239;
}
.about-text > h1.white,
.main-title.white {
	color: #fff;
}
/*About End*/


/*Services*/
.services {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	background: #fff;
	position: relative;
}

.services > span {
	width: 50%;
	height: 100%;
	display: inline-block;
	vertical-align: top;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.services-info {
	width: 50%;
	margin-left: 50%;
	padding: 50px 0 20px 50px;
}
/*Services End*/


/*Advantage*/
.advant {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	background-color: #b34239;
	position: relative;
}
.advant::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(../images/advant-bg.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.2;
	z-index: 0;
}
.advant h1 {
	text-align: center;
	font-weight: lighter;
	letter-spacing: -1px;
	position: relative;
	color: #fff;
	margin-bottom: 45px;
	line-height: normal;
	text-transform: uppercase;
	font-size: 3.0rem;		
}
.advant > div {
	position: relative;
	padding: 70px 0 40px
}
.advant > div::before,
.advant > div::after {
	content: "";
	position: absolute;	
	height: 100%;
	width: 50%;
	top: 0;		
	opacity: 0.8;
}
.advant > div::before {
	right: 0;
	background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
	background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=1 );	
}
.advant > div::after {
	left: 0;
	background: -moz-linear-gradient(left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=1 );	
}
.advant .container {
	position: relative;
	z-index: 2;
}
.advantList {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	list-style: none;
	padding: 0;
	margin: 0;
	letter-spacing: -0.3em;
	text-align: center;
}
.advantList > li {
	width: calc(25% - 30px);
	margin: 0 15px 30px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	letter-spacing: normal;
}
.advantList > li span {
	display: inline-block;
	vertical-align: top;
	margin-bottom: 15px;
	width: 180px;
	height: 180px;
	border: 2px solid rgba(0,0,0,0.1);
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 100%;
	opacity: 0.8;
	background-color: rgba(0,0,0,0.2);
	box-shadow: 0 5px 20px rgba(255,255,255,0.1);
}
.advantList > li h3 {
	color: #fff;
	font-size: 1.4rem;
	text-transform: uppercase;
	line-height: 25px;
	margin: 0;
	padding: 0;
}
/*Advantage End*/



/*Blocks*/
.center-block {
	width: 100%;
	padding: 60px 0 20px;
	min-height: 250px;
}
.left-block,
.right-block {
	margin-bottom: 40px;
}
/*Blocks End*/





/*Category*/
.product-cat {
	width: 100%;
	padding: 60px 0 80px;
}
.product-cat-card {
	margin: 25px 0 0;
	letter-spacing: -0.3em;
}
.product-cat-card.mb-30 {
	margin-bottom: 30px;
}
.product-cat-card a {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	width: 25%;
	margin: 0;
	letter-spacing: normal;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	/*border: 2px solid rgba(0,0,0,0.1);*/
}
.product-cat-card a > img {
	width: 100%;
	border: 0;
	
}

.product-cat-card a > h4 {
	background: rgba(179,66,57,1);
	color: #fff;
	padding: 15px 10px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: 1.4rem;
	transition: all 0.3s ease;
	margin: 0;
}
.product-cat-card a:hover > h4 {
	bottom: 70%;
	background: transparent;
}

.product-cat-card a::before {
	content: "";
	width: calc(100% - 0px);
	height: calc(100% - 0px);
	background: rgba(179,66,57,0.9);
	position: absolute;
	left: 0px;
	top: 0px;
	opacity: 0;
	/*transform: scale(0);*/
	transition: all 0.3s ease;
}
.product-cat-card a:hover::before {
	opacity: 0.99;
	transform: scale(1);	
}
.product-cat-card a > div {
	position: absolute;
	z-index: 3;
	color: #fff;
	text-transform: uppercase;
	width: 150px;
	display: inline-block;
	margin: 0;
	font-size: 1.3rem;
	padding: 10px;
	text-align: center;
	left: calc(50% - 75px);
	bottom: 0;
	transition: all 0.5s ease;
	background: #1b0c00;
	opacity: 0;
	z-index: 5;
}
.product-cat-card a:hover > div {
	transform: translateY(-80px);
	opacity: 1;
}
/*category End*/


/*Product*/
.productRow {
	margin: 0 -6px 40px;
	letter-spacing: -0.3em;
}
.productGrid {
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	width: calc(25% - 12px);
	margin: 0 6px 12px;
	text-align: center;
	text-decoration: none !important;
	transition: all 0.4s ease;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: relative;
	padding-bottom: 70px;
	overflow: hidden;
}
.productGrid:hover {
	transform: translateY(-5px);
	opacity: 0.8;
}
.productGrid > div {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.productGrid > strong {
	display: block;
	width: 100%;
	color: #333333;
	font-size: 1.2rem;
	text-transform: none;
	transition: all 0.3s ease;
	padding: 10px 15px;
	position: absolute;
	bottom: 0;
	background: #fff;
	/*box-shadow: 0 -5px 5px rgba(0,0,0,0.05);*/
}
.productGrid:hover > strong {
	transform: translateY(-10px);
}
.productGrid > strong > span {
	display: none;
	opacity: 0.6;
	font-weight: lighter;
	font-size: 1.3rem;
}


.product-photos {
	letter-spacing: -0.3em;
}
.product-photos a {
	display: inline-block;
	width: 25%;
	box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.product-photos a:first-child {
	width: 100%;
}


.other-product {
	width: 100%;
	padding: 60px 0 30px;
	background: rgba(0,0,0,0.05);	
}
.other-product h1 {
	margin-bottom: 50px;
}
.other-product .productGrid > strong {
	background: #fff;
}
.other-product .productGrid > strong > span {
	display: none;
}
/*Product End*/


/*Order*/
.order {
	display: inline-block;
	width: 100%;
	padding: 0;
	margin-bottom: 40px;
	letter-spacing: -0.3em;
	text-align: left;
}
.order h4 {
	letter-spacing: normal;
	margin-bottom: 5px;
	color: #9E9E9E;
	letter-spacing: -1px;
}
.orderType {
	display: inline-block;
	vertical-align: middle;
	letter-spacing: normal;
	margin-right: 20px;
}
.orderType span {
	display: inline-block;
	vertical-align: middle;
	padding-right: 7px;
	color: #757575;
	font-weight: 600;
	font-size: 1.3rem;
	letter-spacing: -0.5px;
}
.orderType i {
	display: inline-block;
	vertical-align: middle;
	height: 16px;
	width: 16px;
	text-align: center;
	font-size: 1.3rem;
	line-height: 14px;
	cursor: pointer;
	color: #BDBDBD;
	transition: all 0.3s ease;
}
.orderType i.fa-sort-asc {
	line-height: 22px;
}
.orderType i.active {
	color: #b34239;
	cursor: default;
}
/*Order End*/



/*Partners*/
.partners {
	width: 100%;
	display: inline-block;
	vertical-align: top;
	padding: 60px 0 70px;
	background: rgba(0,0,0,0.05);
	position: relative;
}
.partners-slide {
	position: relative;
	overflow: hidden;	
	margin-top: 30px;
}
.partners-slide .swiper-slide {
	width: 50%;
	display: inline-block;
	height: 120px;
	border: 2px solid rgba(0,0,0,0.05);
	border-left-width: 0;
	border-right-width: 0;
	background-color: rgba(0,0,0,0.03);
}
.partners-slide .swiper-slide > div {
	display: block;
	width: 100%;
	height: 100%;
	background-size: 70%;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.3s ease;	
	-webkit-filter: grayscale(1); /* Webkit браузеры */  
    filter: gray; /* для IE6-9 */  
    filter: grayscale(1); /* W3C */  
    opacity: 0.6;
}
.partners-slide .swiper-slide:hover div {
	-webkit-filter: grayscale(0); /* Webkit браузеры */  
    filter: none; /* для IE6-9 */  
    filter: grayscale(0); /* W3C */  	
	background-size: 80%;
	opacity: 1;
}
.partners-slide .swiper-slide a {
	display: block;
	width: 100%;
	height: 100%;
}

/*Arrow*/
.partners-button-prev,
.partners-button-next {
	position: absolute;
	width: 28px;
	height: 28px;
	top: calc(50% - 14px);
	z-index: 10;
	cursor: pointer;
	background: url(../images/ico/banner-arrow.svg) center no-repeat #1b0c00;
	background-size: 14px;
	transition: all 0.3s ease;
	opacity: 0.5;
}
.partners-button-next {
	right: 0;
	left: auto;
}
.partners-button-prev {
	left: 0;
	right: auto;
	transform: rotate(180deg);
}
.partners-button-prev:hover,
.partners-button-next:hover {
	opacity: 1;
	background-color: #b34239;
} 
/*Partners End*/




/*Contacts*/
.contacts {
	width: 100%;
	min-height: 400px;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0;
	background: #fff;
}

.object-location {
	width: 50%;
	height: 100%;
	background: #fff;
	display: inline-block;
	vertical-align: top;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}
.object-location i {
	position: absolute;
	font-size: 4.5rem;
	color: #b34239;
	width: 50px;
	height: 50px;
	left: calc(50% - 25px);
	top: calc(50% - 25px);
}
.object-location.full-map {
	width: 100%;
	position: relative;
	height: 450px;
}
.contacts-block {
	width: 50%;
	padding: 60px 0;
}
.contacts-block h3 {
	width: 100%;
	text-align: left;
	padding: 0;
	margin: 0 0 30px;
	color: #b34239;
	line-height: normal;
	font-weight: lighter;
	text-transform: uppercase;	
	font-size: 3.0rem;	
}

.contacts-list {
	width: 100%;
	padding: 0 15px 0 0;
	margin: 0 0 50px;
	list-style: none;
}
.contacts-list:last-child {
	margin-bottom: 0;
}
.contacts-list > li {
	width: 100%;
	display: block;
	border-bottom: 1px solid rgba(000,000,000,0.1);
	margin-bottom: 20px;
	padding: 0 0 20px;
	font-size: 1.8rem;
	color: #888;
	letter-spacing: -0.3em;
}
.contacts-list > li:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.contacts-list > li .ico {
	width: 50px;
	height: 50px;
	display: inline-block;
	vertical-align: middle;
	background-color: #b34239;
	font-size: 5.6rem;
	font-weight: bold;
	text-align: center;
	line-height: 100px;
	color: #fff;
	background-position: center;
	background-repeat: no-repeat;	
}
.contacts-list > li .address {
	background-image: url(../images/ico/address-ico-white.svg);
	background-size: 60%;
}
.contacts-list > li .phone {
	background-image: url(../images/ico/phone-ico-white.svg);
	background-size: 60%;
}
.contacts-list > li .clock {
	background-image: url(../images/ico/clock-ico-white.svg);
	background-size: 60%;
}
.contacts-list > li .email {
	background-image: url(../images/ico/mail-ico-white.svg);
	background-size: 60%;
}
.contacts-list > li span {
	width: calc(100% - 50px);
	padding-left: 30px;
	display: inline-block;
	vertical-align: middle;
	letter-spacing: normal;
}
/*Contacts End*/



/*Footer*/
footer {
	width: 100%;
	padding: 20px 0;
	background: #b34239;
}

.copyright {
	width: 100%;
	margin-bottom: 15px;
	color: rgba(255,255,255,0.7);
	font-size: 1.5rem;
	text-align: center;
}

.social {
	width: 100%;
	display: inline-block;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
.social li {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	margin: 0;	
}
.social li a {
	display: inline-block;
	width: auto;
	text-align: center;
	opacity: 1;
	margin: 0 10px;
	transition: all 0.3s ease;
}
.social li a:hover {
	opacity: 0.5;
}
.social li i {
	color: rgba(255,255,255,0.5);
	font-size: 2.2rem;
}
/*Footer End*/


/*Top btn*/
.top {
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	z-index: 60;
	background: url(../images/ico/arrow.svg) 20px center no-repeat #1b0c00;
	transform: translateY(70px) rotate(-90deg);
	box-shadow: 0 5px 15px rgba(000,000,000,0.3);
	cursor: pointer;
	transition: all 0.5s ease;
}
.top.show {
	transform: translateY(0px) rotate(-90deg);
}
.top:hover {
	opacity: 0.7;
}
/*Top btn End*/


/* ==========================================================================
   01. PC
   ========================================================================== */
@media screen and (min-width: 991px) {
	/*Menu*/
	.mobile-menu-btn {
		display: none;
	}	
	.menu-box {
		width: 100%;
		height: 60px;
		display: block;
		position: relative;
		z-index: 50;
		letter-spacing: -0.3em;
	}
	.menu-box > .fixed-block {
		width: 100%;
		height: 60px;
		position: fixed;
		top: 0;
		left: 0;
		text-align: right;
		/*background-color: #1b0c00;*/
		background: #b34239;
		box-shadow: 0 5px 20px rgba(000,000,000,0.3);
		
	}
	.menu-panel {
		height: 60px;
		display: block !important;
		text-align: left;
		letter-spacing: -0.3em;
	}

	.top-menu {
		width: calc(100% - 250px);
		height: 60px;
		display: inline-block;
		vertical-align: middle;
		letter-spacing: -0.3em;
		padding: 0;
		margin: 0;
	}	
	.top-menu > li {
		display: inline-block;
		vertical-align: middle;
		position: relative;
		letter-spacing: 0.1px;
		padding: 0 20px;
		transition: all 0.3s ease;
	}
	.top-menu > li::after {
		content: "";
		width: 0;
		height: 40px;
		display: block;
		position: absolute;
		bottom: 10px;
		left: 50%;
		border: 2px solid #fff;
		border-left: none;
		border-right: none;
		transition: all 0.3s ease;
		opacity: 0.3;
		z-index: 0;
	}
	.top-menu > li > a {
		display: block;
		width: 100%;
		font-size: 1.2rem;
		color: rgba(255,255,255,0.7);
		height: 60px;
		line-height: 60px;
		cursor: pointer;
		padding: 0;
		text-transform: uppercase;
		text-decoration: none;
		transition: all 0.3s ease;
		position: relative;
		z-index: 2;
	}
	.top-menu > li:hover::after,
	.top-menu > li.active::after {
		opacity: 0.3;
		width: 90%;
		left: 5%;
	}
	.top-menu > li:hover a,
	.top-menu > li.active a {
		color: #fff;
	}	
	.top-menu > li.has-dropdown::before {
		font-family: "FontAwesome";
		content: "\f105";
		position: absolute;
		top: calc(50% - 8px);
		right: 10px;
		font-size: 1.0rem;
		color: #e8c8db;
		transition: all 0.2s ease;
	}
	.top-menu > li.has-dropdown:hover::before {
		top: calc(50% - 6px);
		transform: rotate(90deg);
	}
	.subsection > li.has-dropdown > a {
		position: relative;
	}
	.subsection > li.has-dropdown > a::before {
		font-family: "FontAwesome";
		content: "\f105";
		position: absolute;
		top: calc(50% - 8px);
		right: 10px;
		font-size: 1.1rem;
		color: #e8c8db;
		transition: all 0.2s ease;
	}
	.top-menu li > .subsection {
		width: 230px;
	    position: absolute;
	    top: 48px;
	    left: calc(50% - 115px);
	    z-index: -1;
	    padding: 0;
	    background-color: #fff;
	    list-style: none;
	    text-align: left;
	    display: none;
	    border-top: 2px solid #fff;
	    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	}
	.top-menu li:hover > .subsection {
		display: block;
	    transform: translateY(0);
	    z-index: 5;
	}	
	.top-menu li .subsection::before {
		content: '';
		width: 0;
		height: 0;
		position: absolute;
		top: -8px;
		left: calc(50% - 3px);
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 8px solid #fff;
	}
	.top-menu li > .subsection > li {
		position: relative;
	}
	.top-menu li > .subsection > li .subsection {
		left: 90%;
		top: 10px;
		border-left: 2px solid #b34239;
		border-top: 0px;
	}	
	.top-menu li > .subsection > li .subsection::before {
		content: '';
		width: 0;
		height: 0;
		position: absolute;
		top: 10px;
		left: -14px;
		margin-bottom: -4px;
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
		border-right: 7px solid #b34239;
	}	
	.top-menu li > .subsection li {
		width: 100%;
		transition: all 0.2s ease;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.top-menu li > .subsection li a {
		width: 100%;
		display: inline-block;
		padding: 7px 15px;
		font-size: 1.4rem;
		color: #1b0c00;
		transition: all 0.2s ease;
	}
	.top-menu li > .subsection li > ul li a {
		padding: 7px 15px;
	}
	.top-menu li > .subsection li:nth-last-child(1) {
		border-bottom: none;
	}
	.top-menu li > .subsection > li:hover {
		background: rgba(0,0,0,0.05);
	}
	.top-menu li > .subsection > li:hover > a {
		text-decoration: none;
		color: #b34239;
	}
	/*Menu panel End*/

}



/* ==========================================================================
   03. PC: Notebook
   ========================================================================== */
@media screen and (max-width: 1440px) {


}


/* ==========================================================================
   04. Tablet: Landscape
   ========================================================================== */
@media screen and (max-width: 1279px) {

	/*Header*/
	header {
		padding: 10px 0;
	}
	.top-contacts > div {
		padding: 0 10px;
	}
	.top-contacts > div:last-child {
		padding: 0 0 0 10px;
	}
	.top-contacts i {
		width: 30px;
		height: 30px;
	}
	.top-contacts strong {
		width: calc(100% - 30px);
		font-size: 1.5rem;
	}


	/*Seacrh*/
	.search-block {
		width: 200px;
	}


	/*Menu*/
	.top-menu {
		width: calc(100% - 200px);
	}	
	.top-menu > li > a {
		font-size: 1.1rem;
	}



	/*Banner*/
	.banner {
	    height: 500px;
	}
	.banner .swiper-slide > div {
		text-align: center;
	}

	.banner .swiper-slide .banner-text {
		font-size: 2.5rem;
		line-height: 32px;
		text-align: center;
	}
	/*Arrow*/
	.banner-button-prev,
	.banner-button-next {
		width: 40px;
		height: 40px;
		top: calc(50% - 20px);
	}


}


/* ==========================================================================
   04. Tablet: Portrait
   ========================================================================== */
@media screen and (max-width: 991px) {

	/*Header*/
	header .logo {
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}
	header .logo a {
		max-width: 250px;
	}

	.top-contacts {
		width: 100%;
		text-align: center;
	}
	.top-contacts > div {
		padding: 0;
		border-right: 1px solid #ccc;
	}
	.top-contacts > div:last-child {
		padding: 0;
	}	
	.top-contacts i {
		width: 30px;
		height: 30px;
	}
	.top-contacts strong {
		width: 100%;
		font-size: 1.6rem;
		text-align: center;
		padding: 0;
	}

	/*Seacrh*/
	.search-block {
		width: 100%;
		padding: 0 20px;
		margin-top: 0;
		position: absolute;
		top: 35px;
		left: 0;
	}
	.search-block form > button {
		right: 20px;
	}


	/*Menu*/
	.mobile-menu-btn {
		display: block;
		width: 46px;
		height: 46px;
		border: none;
		outline: none;
		padding: 0;
		margin: 0;
		z-index: 555;
		top: 15px;
		left: 15px;
		background: #b34239;
		position: fixed;
		transition: all 0.2s ease;
		box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	}	
	.mobile-menu-btn.in {
		left: 400px;
		box-shadow: none;
	}
	.mobile-menu-btn::before {
		content: "";
		position: absolute;
		top: 2px;
		left: 0;
		width: 46px;
		height: 44px;
		background: url(../images/ico/menu.svg) center no-repeat;
		transition: all 0.2s ease;
	}
	.mobile-menu-btn.in::before {
		background: url(../images/ico/menu-close.svg) center no-repeat;
		transform: rotate(-90deg);
	}	
	.menu-mask {
		width: 100%;
		height: 100%;
		left: 0;
		bottom: 0;
		display: none;
		position: fixed;
		opacity: 1;
		z-index: 554;
		background: rgba(0,0,0,0.8);
	}

	.menu-panel {
		height: 100%;
		padding: 0;
		position: fixed;
		z-index: 555;
		left: 0;
		top: 0;
		width: 400px;
		background: #b34239;
		opacity: 0;
		overflow-x: scroll;
		transform: translateX(-100%);
		transition: all 0.2s ease;
	}
	.menu-panel.in {
		opacity: 1;
		transform: translateX(0);		
	}

	.top-menu {
		width: 100%;
		padding: 0 20px;
		margin: 100px 0 0;
		list-style: none;
		display: inline-block;
		vertical-align: top;
	}
	.top-menu > li {
		width: 100%;
		display: inline-block;
		vertical-align: middle;
		position: relative;
		vertical-align: top;
	}
	.top-menu > li > a {
		display: inline-block;
		width: 100%;
		text-align: left;
		color: #fff;
		padding: 16px 0;
		font-size: 1.4rem;
		line-height: normal;
		text-decoration: none;
		text-transform: uppercase;
		vertical-align: top;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.top-menu > li:last-child > a {
		border-bottom: 0px;
	}

	.top-menu > li > a.active {
		opacity: 0.7;
	}
	li.has-dropdown {
		position: relative;
	}
	li.has-dropdown a {
		padding-right: 50px;
	}
	li.has-dropdown > div {
		position: absolute;
		width: 36px;
		height: 36px;
		right: 0;
		top: 8px;
		z-index: 2;
		cursor: pointer;
	}
	li.has-dropdown > div::before {
		font-family: "FontAwesome";
		content: "\f196";
		position: absolute;
		top: 2px;
		right: 0;
		font-size: 2.5rem;
		color: #fff;
	}
	li.has-dropdown > div.open::before {
		content: "\f147";
	}
	li.has-dropdown .subsection {
		width: 100%;
	    padding: 0 0 0 20px;
	    margin: 0;
	    display: none;
	    list-style: none;
	    text-align: left;
	    vertical-align: top;
	    border-left: 1px solid rgba(255,255,255,0.1);
	    border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.top-menu .subsection li {
		width: 100%;
	}
	.top-menu .subsection li a {
		width: 100%;
		display: block;
		padding: 16px 0;
		font-size: 1.5rem;
		color: rgba(255,255,255,0.7);
		text-decoration: none;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.top-menu .subsection li:last-child a {
		border-bottom: none;
	}


	/*Banner*/
	.banner {
	    height: 300px;
	}
	.banner .swiper-slide .banner-text {
		font-size: 1.8rem;
		line-height: 22px;
	}
	.banner .swiper-slide .banner-text p {
	    padding: 0;
	    border-bottom: none;
	}


	/*Services*/
	.services > span {
		width: 100%;
		height: 300px;
		position: relative;
	}
	.services-info {
		width: 100%;
		margin-left: 0;
		padding: 50px 0 20px 0;
	}


	/*Advantage*/
	.advant > div {
	    padding: 70px 0 20px;
	}	
	.advant h1 {
		font-size: 2.3rem;		
	}
	.advant .container {
		position: relative;
		z-index: 2;
	}
	.advantList > li {
		width: calc(50% - 30px);
		margin: 0 15px 60px;
	}


	/*Category*/
	.product-cat-card a {
		width: 50%;
	}


	/*Contacts*/
	.object-location {
		display: block;
		width: 100%;
		height: 400px;
		position: relative;
	}	
	.contacts-block {
		width: 100%;
		padding: 60px 0;
	}		

	/*Product*/
	.productGrid {
		width: calc(50% - 12px);
	}
}


/* ==========================================================================
   05. Mobile: Landscape
   ========================================================================== */
@media screen and (max-width: 767px) {

	/*Menu*/
	.mobile-menu-btn.in {
		left: 300px;
	}	
	.menu-panel {
		width: 300px;
	}	

	/*Banner*/
	.banner-button-prev,
	.banner-button-next,
	.swiper-container-horizontal>.swiper-pagination-bullets, 
	.swiper-pagination-custom, .swiper-pagination-fraction	 {
		display: none;
	}	

	.banner .swiper-slide .banner-text .more .button {
	    min-width: 120px;
	    height: 30px;
	    line-height: 30px;
	    padding: 0 15px 0 10px;
	}
	.banner .swiper-slide .banner-text .more .button i {
	    top: 10px;
	}	

	/*Title*/
	.main-title,
	.contacts-block h3 {
		font-size: 2.3rem;
	}	
	.page-title .container h1 {
		font-size: 2.2rem;
	}	


	/*Advantage*/
	.advantList > li span {
		margin-bottom: 10px;
		width: 100px;
		height: 100px;
	}	
	.advantList > li h3 {
		font-size: 1.2rem;
		line-height: 18px;
	}

	/*Contacts*/
	.contacts-list > li {
		margin-bottom: 10px;
		padding: 0 0 10px;
		font-size: 1.5rem;
	}	
	.contacts-list > li span {
		padding-left: 20px;
	}	


	/*Footer*/
	footer {
		padding: 20px 0 70px;
	}
}



/* ==========================================================================
   06. Mobile: Portrait
   ========================================================================== */
@media screen and (max-width: 550px) {

	/*Header*/
	header .logo {
		margin: 25px 0 25px;
	}
	header .logo a {
		max-width: 150px;
	}

	.top-contacts > div {
		border-right: none;
		margin-bottom: 15px;
	}


	/*Banner*/
	.banner {
	    height: 250px;
	}
	.banner .swiper-slide .banner-text {
		font-size: 1.2rem;
		line-height: 18px;
	}


	/*Menu*/
	.mobile-menu-btn.in {
		left: 250px;
	}	
	.menu-panel {
		width: 250px;
	}		


	/*Services*/
	.services > span {
		height: 180px;
	}


	/*Advantage*/
	.advant > div {
	    padding: 70px 0 40px;
	}	
	.advant h1 {
		font-size: 2.0rem;		
	}
	.advantList > li {
		width: calc(100% - 30px);
		margin: 0 15px 40px;
	}	

	/*Category*/
	.product-cat-card a {
		width: 100%;
	}	


	/*Product*/
	.productGrid {
		width: calc(100% - 12px);
	}


	/*Contacts*/
	.object-location {
		height: 280px;
	}		

	/*Other*/
	.breadcrumb {
		display: none;
	}


}


/* ==========================================================================
   07. Mobile: Ultra Small
   ========================================================================== */
@media screen and (max-width: 340px) {


}