@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700&subset=cyrillic,cyrillic-ext');
@font-face {
	src: url(../fonts/ProximaNova-Light.woff);
	font-family: 'ProximaNova';
	font-weight: 300;
}

@font-face {
	src: url(../fonts/ProximaNova-Regular.woff);
	font-family: 'ProximaNova';
	font-weight: 400;
}

@font-face {
	src: url(../fonts/ProximaNova-Semibold.woff);
	font-family: 'ProximaNova';
	font-weight: 600;
}

@font-face {
	src: url(../fonts/ProximaNova-Bold.woff);
	font-family: 'ProximaNova';
	font-weight: 700;
}

@import (less) "commons.less";
@import (css) "normalize.css";
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
}

a {
	text-decoration: none;
    color: #7B3206;
}

html {
	height: 100%;
}

body {
	max-width: 1920px;
	margin: auto;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
}

.wrapper {
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}

.footer {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.container {
	max-width: 1200px;
	width: 100%;
	padding: 0px 15px;
	margin: 0 auto;
}

.header {
	background: white;
}

.header__top {
	padding: 15px 0px;
	color: white;
	background: url(../ce_images/main/head.jpg) center / cover;
}

.header__top-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.header__logo {
	color: white;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	margin-right: 84px;
}

.header__logo-img {
	width: 103px;
	height: 94px;
	margin-right: 10px;
}

.header__bottom {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.header__menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header__menu-wrap {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 978px;
	-ms-flex: 0 1 978px;
	flex: 0 1 978px;
}

.header__menu-item {
	padding: 20px 0px;
	color: #472612;
	position: relative;
	font-size: 17px;
	line-height: 21px;
	font-weight: 600;
}

.header__menu-item:after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0px;
	height: 5px;
	width: 100%;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.header__menu-item:hover,
.header__menu-item.active {
	color: #DE6F35;
}

.header__menu-item:hover:after,
.header__menu-item.active:after {
	background: #472612;
}

.b-search__show {
	cursor: pointer;
}

.b-search__form {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

.b-search__form-wrap {
	position: absolute;
	display: none;
	top: 0px;
	right: 0px;
	height: 63px;
	width: 100%;
}

.b-search__input {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	border: 1px solid #472612;
	font-size: 25px;
	padding: 15px;
	height: 100%;
	min-width: 10px;
}

.b-search__send {
	background: #472612;
	color: white;
	padding: 10px 25px;
	border: 0px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	height: 100%;
}

.b-search__send:hover {
	background: #371F10;
}

.b-search__close {
	background: #472612;
	position: relative;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 60px;
	-ms-flex: 0 0 60px;
	flex: 0 0 60px;
	height: 100%;
	cursor: pointer;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.b-search__close:after {
	background: white;
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 2px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.b-search__close:before {
	background: white;
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	width: 100%;
	height: 2px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.b-search__close:hover {
	background: #703c1c;
}

.header__menu-toggle {
	height: 42px;
	width: 42px;
	display: block;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 30px;
	-ms-flex: 0 0 30px;
	flex: 0 0 30px;
	margin-right: 10px;
	position: relative;
	cursor: pointer;
	display: none;
}

.header__menu-toggle span {
	position: absolute;
	display: block;
	height: 1px;
	width: 100%;
	background: #472612;
	left: 0px;
	top: 50%;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.header__menu-toggle span:after,
.header__menu-toggle span:before {
	content: '';
	position: absolute;
	height: 1px;
	left: 0px;
	background: #472612;
	width: 100%;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.header__menu-toggle span:after {
	top: -10px;
}

.header__menu-toggle span:before {
	top: 10px;
}

.header__menu-toggle:hover span,
.header__menu-toggle.active span {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.header__menu-toggle:hover span:after,
.header__menu-toggle.active span:after {
	width: 50%;
	-webkit-transform: rotate(45deg) translateX(16px) translateY(-9px);
	-ms-transform: rotate(45deg) translateX(16px) translateY(-9px);
	transform: rotate(45deg) translateX(16px) translateY(-9px);
}

.header__menu-toggle:hover span:before,
.header__menu-toggle.active span:before {
	width: 50%;
	-webkit-transform: rotate(-45deg) translateX(16px) translateY(9px);
	-ms-transform: rotate(-45deg) translateX(16px) translateY(9px);
	transform: rotate(-45deg) translateX(16px) translateY(9px);
}

.header__menu-toggle.active span {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}


/**/

.e-card {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 370px;
	-ms-flex: 0 1 370px;
	flex: 0 1 370px;
	max-width: 370px;
	background: white;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.2);
}

.e-card__photo {
	height: 220px;
	background: transparent center / cover no-repeat;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
}

.e-card__photo img {
	max-width: 370px;
	max-height: 220px;
}

.e-card__content {
	padding: 22px 28px 37px;
}

.e-card__content span.no-link {
	color: #7B3206;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-size: 17px;
    line-height: 21px;
    font-weight: normal;
}

.e-card__name {
	color: #7B3206;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	font-size: 17px;
	line-height: 21px;
}

.e-card__name:hover {
	color: #DE6F35;
}

.e-card__info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 15px;
	margin-bottom: 18px;
}

.e-card__info-item {
	margin-right: 10px;
	font-size: 12px;
	color: rgba(123, 50, 6, 0.8);
	line-height: 15px;
}

.e-card__info-item img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.e-card__info-item span {
	display: inline-block;
	vertical-align: middle;
}

.e-card__desc {
	line-height: 18px;
}


/**/

.b-category {
	background: rgba(222, 111, 53, 0.2);
	padding-top: 63px;
	padding-bottom: 63px;
}

.b-category__head {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 33px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.b-category__head-right {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 640px;
	-ms-flex: 0 0 640px;
	flex: 0 0 640px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.b-category__items {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.b-category__name {
	font-size: 32px;
	line-height: 39px;
	font-weight: 600;
	color: #7B3206;
	text-transform: uppercase;
}

.b-category__name2 {
	font-size: 14px;
	line-height: 39px;
	font-weight: 600;
	color: #DE6F35;
	text-transform: uppercase;
}

.b-category__name2 a {
    color: #7B3206;
}

/**/

.b-taget {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 268px;
	-ms-flex: 0 1 268px;
	flex: 0 1 268px;
	max-width: 268px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.b-taget img {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin: 0px 12px;
}

.b-taget span {
	display: block;
	-webkit-box-flex: 1;
	-webkit-flex: 1 2 113px;
	-ms-flex: 1 2 113px;
	flex: 1 2 113px;
	height: 1px;
	background: #7B3206;
}


/**/

.b-moreinf {
	background: #F8E2D7;
	padding-top: 54px;
	padding-bottom: 62px;
}

.b-moreinf__title {
	font-size: 32px;
	font-weight: 600;
	color: #7B3206;
}

.b-moreinf__head {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 21px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.b-moreinf__link {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.5);
	color: #7B3206;
	border: 1px solid #7B3206;
	padding: 9px 12px;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.b-moreinf__link span {
	display: inline-block;
	margin: 0px 18px;
}

.b-moreinf__link:hover {
	-webkit-box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.1);
}

.b-moreinf__desc {
	margin-top: 34px;
	font-size: 17px;
	line-height: 21px;
}


/**/

.b-good {
	margin: auto;
	max-width: 330px;
	border: 1px solid rgba(123, 50, 6, 0.3);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.3);
}

.b-good__image {
	width: 100%;
	height: 155px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.b-good__image img {
	max-height: 155px;
	max-width: 295px;
}

.b-good__content {
	padding: 24px 23px 31px;
}

.b-good__name {
	font-size: 17px;
	line-height: 21px;
	font-weight: 600;
	color: #7B3206;
}

.b-good__price {
	margin-top: 6px;
	font-size: 13px;
	line-height: 16px;
	color: #DE6F35;
}

.b-good__link {
	margin-top: 8px;
	font-size: 17px;
	line-height: 21px;
	color: black;
}

.b-good__link img {
	margin-left: 5px;
	display: inline-block;
}

.b-good:hover {
	border-color: #7B3206;
}

.arrow {
	position: absolute;
	top: 50%;
	cursor: pointer;
	opacity: 0.5;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.arrow-left {
	left: -45px;
}

.arrow-right {
	right: -45px;
}

.arrow:hover {
	opacity: 1;
}

.b-mainslider {
	padding-top: 68px;
	padding-bottom: 66px;
}

.b-mainslider__wrap {
	max-width: 1062px;
	padding: 0px 15px;
	margin: auto;
}

.footer {
	background: #472612;
}

.footer__top {
	padding-top: 20px;
	padding-bottom: 25px;
}

.footer__top-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footer__logo {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 22px;
	color: white;
	text-transform: uppercase;
}

.footer__logo-img {
	width: 91px;
	height: 80px;
	margin-right: 10px;
}

.footer__menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 631px;
	-ms-flex: 0 1 631px;
	flex: 0 1 631px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-left: 20px;
}

.footer__menu-item {
	color: white;
	font-size: 17px;
	line-height: 21px;
	font-weight: 700;
	display: inline-block;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.footer__menu-item:hover {
	position: relative;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

.footer__bottom {
	padding-top: 35px;
	padding-bottom: 35px;
	background: #371F10;
}

.footer__bottom-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__copy {
	color: white;
	font-size: 10px;
	line-height: 21px;
}

.footer__creater {
	color: white;
	font-size: 10px;
	line-height: 21px;
}

.footer__creater a {
	color: white;
}

.footer__creater a:hover {
	text-decoration: underline;
}


/**/

.f-subscribe {
	border: 1px solid white;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 370px;
	-ms-flex: 0 1 370px;
	flex: 0 1 370px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 40px;
}

.f-subscribe__input {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	border: none;
	color: #828282;
	background: transparent;
	padding: 0px 8px;
}

.f-subscribe__send {
	background: transparent;
	font-size: 17px;
	font-weight: 700;
	line-height: 21px;
	color: white;
	padding: 0px 12px 0px 14px;
	border: none;
	border-left: 1px solid white;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	cursor: pointer;
}

.f-subscribe__send:hover {
	background: white;
	color: #7B3206;
}


/**/

.b-soc {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.b-soc__item {
	position: relative;
	height: 35px;
	width: 35px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 35px;
	-ms-flex: 0 0 35px;
	flex: 0 0 35px;
	-webkit-border-radius: 35px;
	border-radius: 35px;
	background: white;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	cursor: pointer;
	margin: 0px 20px;
}

.b-soc__item img {
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.b-soc__item img:last-child {
	opacity: 0;
	position: absolute;
	top: 0px;
	bottom: 0px;
	margin: auto;
	left: 0px;
	right: 0px;
}

.b-soc__item:hover {
	background: #7B3206;
}

.b-soc__item:hover img:first-child {
	opacity: 0;
}

.b-soc__item:hover img:last-child {
	opacity: 1;
	position: absolute;
}

.b-category.b-category--light {
	background-color: #FAF9F9;
}

#sign {
	text-align: center;
}