*,
*::after,
*::before {
	box-sizing: border-box;
}
* {
	margin: 0 ;
	padding: 0;
}
html {
	font-size: 16px;
	height: 100%;
	min-width: 320px;
}
body {
	font-family: 'Roboto', sans-serif;
	height: 100%;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 400;
	overflow-x: hidden;
	overflow-y: scroll;
	background: #f2f5f5;
}
p {
	margin-bottom: 1rem;
}
a {
	color: #b4b4b5;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
h1 {
	color: #504e53;
	text-transform: uppercase;
	font-weight: 900;
}
h2 {
	color: #65263c;
	font-weight: 500;
	font-size: 2rem;
}
strong  {
	font-weight: 900;
}
input,
textarea,
button,
img {
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.btn {
	border: 1px solid transparent;
	text-decoration: none;
	padding: .5rem 1rem;
	cursor: pointer;
	transition: all .2s;
	outline: none;
}
.btn--red {
	background: #880000;
	color: #fff;
}
.btn--red:hover {
	background: #e3c188;
	color: #000;
}
.btn--white {
	border: 1px solid #fff;
	color: #fff;
}
svg {
	height: inherit;
	width: inherit;
	display: inline-block;
}
li {
	list-style: none;
	position: relative;
}
.mark li {
	padding-left: 2rem;
	margin-bottom: .5rem;
}
.mark li:last-child {
	margin-bottom: 0;
}
.mark li::before {
	content: '';
	position: absolute;
	background: #65263c;
	border-radius: 50%;
	width: 12px;
	height: 12px;
	left: 0;
	top: 6px;
	display: inline-block;
}
ul {
	margin-left: 1rem;
}
.container {
	margin: 0 auto;
	max-width: calc(1400px - 2rem);
	padding: 0 1rem;
}
.hideScroll {
	overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}

/*
***************************************************************
***************************************************************HEADER
***************************************************************
*/

.header {
	box-shadow: 0px 2px 7px #e1e3e3;
}
.header .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	height: 110px;
}
.header__logo {
	background-image: url(images/logo2.png);
	background-repeat: no-repeat;
	height: 84px;
	width: 550px;
	padding-left: 180px;
	display: flex;
	align-items: center;
	color: #000;
	text-decoration: none;
	font-size: .8rem;
	line-height: 1rem;
        background-size: contain;
}

@media(max-width: 850px) {
	.header {
		display: none;
		margin-bottom: 3.5rem;
	}
}
@media(max-width: 790px) {
	.header__logo {
		width: 280px;
		overflow: hidden;
		background-size: contain;
		padding: 0;
		color: transparent;
		height: 60px;
	}
}
@media(max-width: 490px) {
	.header__btn {
		display: none;
	}
	.header .container {
		justify-content: center;
	}
}

/*
***************************************************************
***************************************************************MAIN MENU
***************************************************************
*/

.main-menu {

}
.main-menu__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.main-menu__link {
  color: #000;
  text-decoration: none;
  padding: 1.5rem 0;
  transition: color .2s;
}
.main-menu__link:hover,
.main-menu__link--active {
	color: #b60000;
}
.main-menu__close {
	position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  line-height: 1.8rem;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  padding: .2rem;
  color: #ababab;
  transition: all .2s;
  display: none;
  cursor: pointer;
}
.main-menu__close:hover {
	color: #000;
}
.menu-icon {
	display: none;
	width: 30px;
	height: 22px;
	position: relative;
	left: 17px;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
  cursor: pointer;
}
.menu-icon span {
	display: block;
	width: 100%;
	height: 2px;
	background: #f00;
	margin-bottom: 8px;
	cursor: pointer;
	transition: width .4s, -webkit-transform .4s;
	transition: transform .4s, width .4s;
	transition: transform .4s, width .4s, -webkit-transform .4s;
}
.menu-icon span:last-child {
	margin-bottom: 0;
}
.show-menu .menu-icon span:nth-child(1) {
	-webkit-transform: rotate(45deg) translate(9px, 8px);
	        transform: rotate(45deg) translate(9px, 8px)
}
.show-menu .menu-icon span:nth-child(2) {
	width: 0;
}
.show-menu .menu-icon span:nth-child(3) {
	-webkit-transform: rotate(135deg) translate(-6px, 5px);
	        transform: rotate(135deg) translate(-6px, 5px)
}
.main-menu__logo {
	width: 50px;
	height: 30px;
	margin-right: 1rem;
        display:none;
	transition: all .2s;
}

@media(max-width: 850px) {
	.menu-icon {
		display: block;
	}
	.main-menu {
		position: fixed;
    padding: 1rem 0;
    /* top: 7rem; */
    top: 0;
    z-index: 100;
    width: 100%;
    background: #fff;
	}
	.main-menu--fixed {
		position: fixed;
		top: 0;
	}
	.main-menu .container {
		display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	}
	.main-menu__logo {
display:block;
	}
	.main-menu__wrap {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
		background: #ebd3ab;
    width: 50%;
    height: 100%;
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3rem 2rem 2rem;
    transition: all .2s;
	}
	.show-menu .main-menu__wrap {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	.main-menu__link {
		display: block;
		padding: .5rem 0;
	}
	.main-menu__close {
		display: block;
	}
}
@media(max-width: 450px) {
	.main-menu__wrap {
    width: 100%;
	}
}

/*
***************************************************************
***************************************************************MAIN SLIDER
***************************************************************
*/

.main-slider {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	overflow: hidden;
}
.main-slider .container {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 4rem 1rem;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
.main-slider h1 {
	color: #504e53;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 5rem;
	line-height: 5rem;
	text-shadow: 0 0 15px #fff;
}
.title--low {
	display: block;
  font-weight: 500;
  font-size: 3rem;
}
.main-slider__prem-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: center;
	padding: 6rem 0;
	max-width: 1000px;
	margin: 0 auto;
}
.prem-block__item {
	width: 320px;
  background: #e3c188;
  padding: 1rem;
  padding-left: 6rem;
  padding-right: 3rem;
  background-repeat: no-repeat;
  background-position: 1rem center;
  position: relative;
  -webkit-clip-path: polygon(86% 0, 100% 57%, 100% 100%, 0 100%, 0 0);
  clip-path: polygon(86% 0, 100% 57%, 100% 100%, 0 100%, 0 0);
}
.prem-block__item::after {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 45px solid #917e60;
  border-right: 45px solid transparent;
  position: absolute;
  top: 0;
  right: 0;
}
.prem-block__item:nth-child(1) {
	background-image: url(images/prem-1.png);
/* 	-webkit-clip-path: polygon(86% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
        clip-path: polygon(86% 0, 100% 38%, 100% 100%, 0 100%, 0 0); */
}
.prem-block__item:nth-child(2) {
	background-image: url(images/prem-2.png);
/* 	-webkit-clip-path: polygon(88% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
        clip-path: polygon(88% 0, 100% 38%, 100% 100%, 0 100%, 0 0); */
}
.prem-block__item:nth-child(3) {
	background-image: url(images/prem-3.png);
/* 	-webkit-clip-path: polygon(91% 0, 100% 38%, 100% 100%, 0 100%, 0 0);
        clip-path: polygon(91% 0, 100% 38%, 100% 100%, 0 100%, 0 0); */
}
.prem-block__item--strong {
  display: block;
  text-align: left;
  font-weight: 900;
}
.prem-block__item--low {
  display: block;
  text-align: left;
}
.main-slider__btn {
	font-size: 1.5rem;
	font-weight: 300;
        padding: 1rem 3rem;
}
.main-slider__slider {
	width: 100%;
}
.main-slider__slides {

}
.main-slider__item {

}
.main-slider__arrows {
  position: absolute;
  left: 50%;
  max-width: calc(1400px - 2rem);
  width: 100%;
  display: block;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 50px;
  z-index: 2;
}
.main-slider__dots {
	width: 100%;
	position: absolute;
	bottom: 3rem;
	text-align: center;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}

@media(max-width: 1540px) {
	.main-slider__dots {
		display: none;
	}
	.main-slider,
	.main-slider .slick-track {
		height: 100vh;
	}
}
@media(max-width: 950px) {
	.main-slider h1 {
		font-size: 7vw;
		line-height: 7vw;
	}
	.title--low {
		font-size: 5vw;
	}
	.main-slider__prem-block {
		padding: 0;
	}
	.prem-block__item {
		margin-bottom: 1rem;
	}
	.main-slider__btn {
		display: inline-block;
		margin-top: 2rem;
	}
}
@media(max-width: 850px) {
	.main-slider {
		margin-top: 60px;
	}
}
@media(max-width: 700px) {
	.main-slider__slider,
	.main-slider__arrows {
		display: none;
	}
	.main-slider .container {
		background-image: url(images/slide.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
	}
	.main-slider h1 {
		margin-bottom: 2rem;
	}
}

/*
***************************************************************
***************************************************************CATALOG
***************************************************************
*/

.catalog {
	background-image: url(images/bg-1.jpg);
	background-repeat: no-repeat;
	padding: 6rem 0;
	background-size: cover;
}
.catalog .container {
	position: relative;
}
.catalog-block {
	padding: 3rem 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.catalog-block__item {
	cursor: pointer;
	transition: all .2s;
	background: #fff;
	margin-bottom: 2rem;
	box-shadow: 0 0 10px #dadada;
}
.catalog-block__img {
	width: 92%;
	margin: .8rem auto;
	display: block;
}
.catalog-block__title {
  text-align: center;
  background: #c6c6c6;
  color: #fff;
  padding: .5rem 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.2rem;
  transition: all .4s;
}
.catalog-block__bottom {
	position: relative;
  margin: 0 .8rem .8rem;
  background: #f6f5f5;
  text-align: center;
  padding: 2rem 0;
}
.catalog-block__bottom::before {
  content: '';
  background: #fff;
  position: absolute;
  left: -.8rem;
  width: calc(100% + 1.6rem);
  height: calc(100% + .8rem);
  top: 0;
}
.catalog-block__bottom::after {
  content: '';
  background: #f6f5f5;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}
.catalog-block__price {
	color: #68676b;
  font-weight: 900;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}
.catalog-block__btn {
  box-shadow: 0 0 5px #bbb3b3;
  margin-top: 2rem;
  display: inline-block;
  color: #000;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  border: 0;
}
.catalog-block__btn:hover {
	background: #e3c188;
  box-shadow: 0 0 2px #080808;
}
.catalog-block__item:hover {
	background: #e3c188;
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
.catalog-block__item:hover .catalog-block__title {
	background: #e3c188;
}

@media(max-width: 1050px) {
	.catalog-block {
		display: block;
		overflow: hidden;
	}
	.catalog-block__item {
		margin: 0 2rem;
	}
}

/*
***************************************************************
***************************************************************CATALOG MODAL
***************************************************************
*/

.catalog-modal {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	background: #fff;
	overflow: hidden;
	padding: 6rem;
	box-shadow: 0 0 5px #cecece;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(-40%);
	        transform: translateY(-40%);
	transition: all .4s;
}
.catalog-modal .slick-disabled {
	display: none !important;
}
.catalog-modal.show {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
	visibility: visible;
}
.catalog-modal__close {
	position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f5f6f7;
  padding: .2rem .7rem;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: .4;
  z-index: 1;
  transition: all .2s;
}
.catalog-modal__close:hover {
	opacity: 1;
}
.catalog-modal__item {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.catalog-modal__body {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.catalog-gallery {
	width: 30%;
}
.catalog-gallery__big {
	height: 245px;
	overflow: hidden;
	width: 100%;
	border: 3px solid #bfa274;
}
.catalog-gallery__carusel {
	position: relative;
	margin-top: 1rem;
}
.catalog-gallery__carusel .slick-arrow {
	width: 30px;
	height: 30px;
}
.catalog-gallery__carusel img {
	margin: 0 .3rem;
        height: 75px;
}
.catalog-modal__info {
	width: 70%;
	padding-left: 3rem;
	height: inherit;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
}
.catalog-modal__post-title {
	background: #ebd3ab;
	-webkit-clip-path: polygon(100% 0, 100% 0%, 85% 100%, 0 100%, 0 0);
	        clip-path: polygon(100% 0, 100% 0%, 85% 100%, 0 100%, 0 0);
	display: inline-block;
	padding: .5rem 6rem .5rem 2rem;
	color: #504e53;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
.catalog-modal__text {
	font-size: 1.2rem;
	margin-bottom: 4rem;
}
.catalog-modal__foot {
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.catalog-modal__props {
  width: 65%;
}
.catalog-modal__prop {
	display: block;
	color: #504e53;
	font-size: 1.3rem;
}
.catalog-modal__btn {
  padding: 1rem 3rem;
  font-size: 1.3rem;
}
.catalog-modal__arrows .slick-prev {
	left: 1rem;
}
.catalog-modal__arrows .slick-next {
	right: 1rem;
}

@media(max-width: 1300px) {
	.catalog-gallery__big {
		height: auto;
	}
}
@media(max-width: 600px) {
	.catalog {
		padding: 2rem 0;
	}
	.catalog-gallery {
		display: none;
	}
	.catalog-modal__info {
		width: 100%;
		padding-left: 0;
	}
	.catalog-modal {
		padding: 2rem;
	}
	.catalog-modal__foot {
		display: block;
		text-align: center;
	}
	.catalog-modal__props {
	  text-align: left;
	}
	.catalog-modal__btn {
		display: inline-block;
		margin-top: 1rem;
	}
	.catalog-modal {
		padding: 1rem;
	}
	.catalog-modal__text {
		font-size: 1rem;
		margin-bottom: 1rem;
	}
	.catalog-modal__prop {
		font-size: 1rem;
	}
	.catalog-modal__post-title {
		width: 100%;
    text-align: center;
    padding: .5rem;
    -webkit-clip-path: none;
            clip-path: none;
	}
}

/*
***************************************************************
***************************************************************ABOUT
***************************************************************
*/

.about {
	background-image: url(images/bg-2.jpg);
	background-repeat: no-repeat;
	padding: 6rem 0;
	background-size: cover;
}
.about__desc {
  padding: 2rem 0 0;
  font-size: 1.3rem;
  font-weight: 400;
}

@media(max-width: 700px) {
	.about__desc {
		text-align: justify;
	}
}

@media(max-width: 550px) {
	.about {
		padding: 2rem 0;
	}
	.about__desc {
		font-size: 1rem;
	}
}

/*
***************************************************************
***************************************************************THISPREM
***************************************************************
*/

.thisprem {
	background-image: url(images/bg-3.jpg);
	background-repeat: no-repeat;
	padding: 6rem 0;
	background-size: cover;
	overflow: hidden;
}
.thisprem__list {
	padding: 3rem 0;
}
.thisprem__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.thisprem__img-wrap {
  border: 25px solid #e8e8e8;
  font-size: 0;
  width: 63%;
  position: relative;
}
.thisprem__item:nth-child(odd) .thisprem__img-wrap::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-right: 50px solid #e8e8e8;
  border-bottom: 40px solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.thisprem__img {
	height: 400px;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.thisprem__desc {
	position: relative;
	background-color: #880000;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 37%;
	border: 10px solid #880000;
}
.thisprem__desc-wrap {
  text-align: center;
  height: calc(100% - 1.5rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 15px;
  transition: all .4s;
  color: #fff;
  position: relative;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  width: 100%;
}
.thisprem__item:nth-child(odd) .thisprem__desc::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-right: 50px solid #880000;
  border-bottom: 40px solid transparent;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-120%, -50%);
          transform: translate(-120%, -50%);
}
.thisprem__item:nth-child(odd) .thisprem__desc-wrap::before {
	content: '';
	opacity: 0;
	width: 0;
	height: 0;
	border-top: 40px solid transparent;
	border-right: 50px solid #a03333;
	border-bottom: 40px solid transparent;
	position: absolute;
	left: 0;
	top: 50%;
	transition: all .4s;
	-webkit-transform: translate(-100%, -50%);
	        transform: translate(-100%, -50%);
}
.thisprem__item:nth-child(even) .thisprem__img-wrap {
	order: 2;
}
.thisprem__item:nth-child(even) .thisprem__desc {
	order: 1;
}
.thisprem__item:nth-child(even) .thisprem__img-wrap::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-left: 50px solid #e8e8e8;
  border-bottom: 40px solid transparent;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.thisprem__item:nth-child(even) .thisprem__desc::before {
	content: '';
  width: 0;
  height: 0;
  border-top: 40px solid transparent;
  border-left: 50px solid #880000;
  border-bottom: 40px solid transparent;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(120%, -50%);
          transform: translate(120%, -50%);
}
.thisprem__item:nth-child(even) .thisprem__desc-wrap::before {
	content: '';
	opacity: 0;
	width: 0;
	height: 0;
	border-top: 40px solid transparent;
	border-left: 50px solid #a03333;
	border-bottom: 40px solid transparent;
	position: absolute;
	right: 0;
	top: 50%;
	transition: all .4s;
	-webkit-transform: translate(100%, -50%);
	        transform: translate(100%, -50%);
}
.thisprem__item:hover .thisprem__desc-wrap {
  background: #a03333;
}
.thisprem__item:hover .thisprem__desc-wrap::before {
	opacity: 1;
}
.thisprem__text {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  width: 100%;
}
.thisprem__btn {
	-webkit-transform: scale(1);
	        transform: scale(1);
}
.thisprem__btn:hover {
	-webkit-transform: scale(1.2);
	        transform: scale(1.2);
}

@media(max-width: 980px) {
	.thisprem__img {
		height: 200px;
	}
	.thisprem__desc-wrap {
		height: 200px;
		flex-wrap: inherit;
	}
	.thisprem__text {
		font-size: 1rem;
	}
}
@media(max-width: 850px) {
	.thisprem__img-wrap {
		width: 50%;
	}
	.thisprem__desc {
		width: 50%;
	}
}
@media(max-width: 650px) {
	.thisprem {
		padding: 2rem 0;
	}
	.thisprem__img-wrap {
		display: none;
	}
	.thisprem__desc::before {
		display: none;
	}
	.thisprem__desc-wrap::before {
		display: none;
	}
	.thisprem__item {
		margin-bottom: 1rem;
	}
	.thisprem__desc {
		width: 100%;
		background-size: cover;
		background-position: center;
	}
	.thisprem__desc-wrap {
		background: rgba(136, 0, 0, 0.6);
	}
	.thisprem__list {
		padding: 0;
		padding-top: 2rem;
	}
}

/*
***************************************************************
***************************************************************REW
***************************************************************
*/

.rew {
	background-image: url(images/bg-4.jpg);
	background-repeat: no-repeat;
	padding: 6rem 0;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.rew__slider {
	padding-top: 3rem;
}
.rew__block {

}
.rew__block .slick-arrow {
	display: none !important;
}
.rew__item {
	font-weight: 400;
	outline: none;
}
.rew__date {

}
.rew__name {
	font-weight: 900;
}
.rew__desc {
	padding-top: 2rem;
}
.rew__slider .slick-dots {
	bottom: -3rem;
}

@media(max-width: 650px) {
	.rew {
		padding: 2rem 0;
	}
	.rew__slider {
		padding-top: 2rem;
	}
	.rew__block .slick-arrow {
		display: inline-block !important;
	}
	.rew__block .slick-dots {
		display: none !important;
	}
}

/*
***************************************************************
***************************************************************DELIVERY
***************************************************************
*/

.delivery {
	max-width: 1500px;
	margin: 0 auto;
	background: #fff;
	padding: 6rem 0;
	box-shadow: 0 0 5px #ccc;
	z-index: 1;
	position: relative;
}
.delivery .container {

}
.delivery h3 {
	padding: 2rem 0;
}
.delivery__info {
  background: #f6ecda;
  padding: 2rem;
  margin: 2rem 0;
}
.delivery__btn {
	display: inline-block;
	margin-top: 2rem;
	font-size: 1.2rem;
}

@media(max-width: 700px) {
	.delivery {
		text-align: justify;
	}
}

@media(max-width: 650px) {
	.delivery {
		padding: 2rem 0;
	}
}

/*
***************************************************************
***************************************************************SERTIFICATES
***************************************************************
*/

.serf {
	background-image: url(images/bg-5.jpg);
	background-repeat: no-repeat;
	padding: 6rem 0;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.serf-tabs {

}
.serf-tabs__names {
	display: flex;
	flex-wrap: wrap;
	margin: 2rem 0 4rem;
}
.serf-tabs__name {
	color: #e3c188;
	text-decoration: underline;
	cursor: pointer;
	font-size: 1.2rem;
}
.serf-tabs__name:hover,
.serf-tabs__name--active {
text-decoration: none;
color: #000;
}
.serf-tabs__separator {
	margin: 0 .5rem;
}
.serf-tabs__contents {

}
.serf-tabs__content {
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
}
.serf-tabs__content--active {
	visibility: visible;
	opacity: 1;
	max-height: inherit;
	transition: all .2s;
}
.serf-slider {

}
.serf-slider__big {

}
.serf-slider__item {
	text-align: center;
	outline: none;
}
.serf-slider__item img {
	width: 220px;
	/*height: 300px;*/
	margin: 0 auto 2rem;
}
.serf-slider__content {
	opacity: 0;
	visibility: hidden;
	background: #efefef;
  width: 260px;
  padding: .5rem 0;
    margin: 0 auto 4rem;
  transition: all .4s;
}
.serf-slider__name {

}
.serf-slider__name strong {
	display: block;
}
.serf-slider__big .slick-center {
	padding: 2rem 0;
	background: #fff;
}
.serf-slider__big .slick-center img {
	width: 260px;
	/*height: 350px;*/
}
.serf-slider__big .slick-center .serf-slider__content {
	opacity: 1;
	visibility: visible;
}
.serf-slider__big .slick-list {
	margin: 4rem 60px !important;
	padding: 0 !important;
}
.serf-slider__carusel {
	margin-top: 2rem;
	width: 100%;
	background: #fff;
	padding: 1rem 12rem;
}
.serf-slider__carusel img {
	margin-right: 2rem;
	outline: none;
        cursor: pointer;
}
.serf-slider__carusel .slick-slide {
	transition: all .2s;
	border: 2px solid transparent;
	padding: .5rem;
}
.serf-slider__carusel .slick-center {
	border: 2px solid #e4c188;
  padding: .5rem;
}

@media(max-width: 850px) {
	.serf-slider__carusel {
		display: none;
	}
	.serf-slider__big .slick-list {
		padding: 0 !important;
		margin: 0 auto !important;
	}
	.serf {
		padding: 2rem 0;
	}
	.serf-slider__content {
		opacity: 1;
		visibility: visible;
		width: 100%;
	}
	.serf-slider__item {
		margin: 0 1rem;
	}
}

/*
***************************************************************
***************************************************************SERTIFICATES
***************************************************************
*/

.contacts {
	position: relative;
}
.contacts__head {
	padding: 3rem 0;
	background: #eaeaea;
}
.contacts__controls {
	padding-top: 2rem;
}
.contacts__sklad {
	display: none;
	margin-left: 4rem;
	text-decoration: none;
	color: #000;
	background: #fff;
	padding: .7rem 2rem;
}
.contacts__body {
	padding: 3rem 0;
	background-image: url(images/bg-6.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.contacts__title {
	color: #5a585d;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
.contacts__desc {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
.contacts__text {

}
.contacts__text a {
	color: #000;
}
.contacts__btn {

}
.contacts__footer {
	height: 50vh;
	width: 100%;
}

@media(max-width: 650px) {
	.contacts__footer {
		height: 100vh;
	}
}

/*
***************************************************************
***************************************************************FOOTER
***************************************************************
*/

.footer {
	background: #880000;
	color: #fff;
	font-weight: 300;
}
.footer .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}
.footer .container:last-child {
	text-align: right;
}
.footer span {
	text-align: left;
}
.footer__link {
	display: block;
	color: #fff;
}
.footer__link-dev {
	text-decoration: none;
}

@media(max-width: 750px) {
	.footer .container {
		display: block;
		padding: 1rem;
	}
	.footer span {
		text-align: left;
		margin-bottom: 1rem;
		display: block;
	}
	.footer .container:last-child {
		text-align: left;
	}
}

/*
***************************************************************
***************************************************************MODAL FORM
***************************************************************
*/

.modal-form {
  pointer-events: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
}
.modal-form.show {
	opacity: 1;
	visibility: visible;
}
.modal-form__body {
	background: #fff;
	margin: 5rem 0;
	border-radius: 5px 5px 0 0;
	max-width: 500px;
	width: 100%;
}
.modal-form__head {
	background: #e3c188;
	padding: 2rem;
	position: relative;
	border-radius: 5px 5px 0 0;
}
.modal-form__title {
	font-size: 2rem;
  font-weight: 900;
  color: #504e53;
}
.modal-form__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	line-height: 1.5rem;
	font-size: 1.5rem;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	padding: .2rem .4rem;
	cursor: pointer;
	transition: all .2s;
}
.modal-form__close:hover {
	background: rgba(255, 255, 255, 1);
}
.modal-form__row {
	padding: 0 2rem;
	margin: 2rem 0;
	position: relative;
}
.modal-form__row:last-child {
	margin-bottom: 3rem;
}
.modal-form__label {
	display: block;
	padding-left: 1.5rem;
	font-size: 1.2rem;
}
.modal-form__input {
	outline: none;
	background: #f3f3f3;
	border: 0;
	padding: 1rem 2rem;
	width: 100%;
	display: block;
	margin-top: .5rem;
	font-size: 1.2rem;
	border-radius: 5px;
}
.modal-form__btn-wrap {
	text-align: center;
}
.modal-form__btn {
	font-size: 1.4rem;
	padding: 1rem 2.5rem;
}
.modal-form__btn:disabled {
    pointer-events: none;
    background: #f3f3f3;
    color: #757575;
}
.custom-check {
  padding-left: 2.5rem;
  position: relative;
}
.custom-check span {
	width: 30px;
  height: 30px;
  display: inline-block;
  background: #f3f3f3;
  border-radius: 5px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.custom-check [type=checkbox] {
	display: none;
}
.custom-check [type=checkbox]:checked + span::after {
	content: '✔';
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.modal-form__error-mes {
    padding: .5rem;
    background: #880000;
    color: #fff;
    text-align: center;
}
.modal-form__success-mes {
    padding: .5rem;
    background: #0f8800;
    color: #fff;
    text-align: center;
}

@media(max-width: 500px) {
	.modal-form__body {
		margin: 0;
	}
	.modal-form__label {
		font-size: 1rem;
	}
	.modal-form__row {
		padding: 0 1rem;
		margin: 1rem 0;
	}
	.modal-form__head {
		padding: 1rem;
	}
}

/*
***************************************************************
***************************************************************OTHER
***************************************************************
*/

.btn-top {
	background-image: url(images/arrow-top.png);
  background-color: #880000;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-position: center 1rem;
  border: 0;
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  color: #fff;
  padding-top: 2.5rem;
 	cursor: pointer;
 	transition: all .2s;
 	outline: none;
 	opacity: 0;
 	z-index: 1;
}
.btn-top--show {
	opacity: 1;
}
.btn-top:hover {
	background-color: #e3c188;
}

@media(max-width: 700px) {
	.btn-top {
		bottom: 1rem;
	}
}
@media(max-width: 650px) {
	.btn-top {
		display: none;
	}
}

.h-tel {
  border: 1px solid transparent;
  text-decoration: none;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: all .2s;
	outline: none;
	background: #880000;
	color: #fff;
	display: inline-block;
}
.h-tel:hover {
	background: #e3c188;
  color: #000;
}
.h-tel__phone {
	display: none;
}
.h-tel.show  {
	background: none;
}
.h-tel.show .h-tel__text {
  display: none;
}
.h-tel.show:hover {

}
.h-tel.show .h-tel__phone,
.h-tel.show .h-tel__phone a {
	display: inherit;
  color: #000;
}