/*
Author: Nastya Mokrinskaya
*/


@font-face {
	font-family: 'Futura';
	font-weight: 300;
	font-style: normal;

	src: local('Futura Light'), local('Futura Light C'),
		url('../fonts/FuturaLightC.woff') format('woff');
}

@font-face {
	font-family: 'Futura';
	font-weight: 400;
	font-style: normal;

	src: local('Futura Book'), local('Futura Book C'),
		url('../fonts/futurabookc.woff') format('woff');
}

@font-face {
	font-family: 'Futura';
	font-weight: 400;
	font-style: italic;

	src: local('Futura Book Italic'), local('Futura Book C Italic'),
		url('../fonts/futurabookc-italic.woff') format('woff');
}

@font-face {
	font-family: 'Futura';
	font-weight: 600;
	font-style: normal;

	src: local('Futura Demi'), local('Futura Demi C'),
		url('../fonts/futurademic.woff') format('woff');
}


@font-face {
	font-family: 'Noto Serif';
	font-weight: 400;
	font-style: normal;

	src: local(''),
		url('../fonts/noto-serif-v16-latin_cyrillic-ext_cyrillic-regular.woff2') format('woff2'),
		url('../fonts/noto-serif-v16-latin_cyrillic-ext_cyrillic-regular.woff') format('woff');
}

@font-face {
	font-family: 'Noto Serif';
	font-weight: 400;
	font-style: italic;

	src: local(''),
		url('../fonts/noto-serif-v16-latin_cyrillic-ext_cyrillic-italic.woff2') format('woff2'),
		url('../fonts/noto-serif-v16-latin_cyrillic-ext_cyrillic-italic.woff') format('woff');
}

@font-face {
	font-family: 'Noto Serif';
	font-weight: 700;
	font-style: normal;

	src: local(''),
		url('../fonts/noto-serif-v16-latin_cyrillic-ext_cyrillic-700.woff2') format('woff2'),
		url('../fonts/noto-serif-v16-latin_cyrillic-ext_cyrillic-700.woff') format('woff');
}

@font-face {
	font-family: 'Noto Serif';
	font-weight: 700;
	font-style: italic;

	src: local(''),
		url('../fonts/noto-serif-v16-latin_cyrillic-ext_cyrillic-700italic.woff2') format('woff2'),
		url('../fonts/noto-serif-v16-latin_cyrillic-ext_cyrillic-700italic.woff') format('woff');
}


html {
	overflow: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 20px;
}

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: #920128;
}

body {
	width: 100%;
	min-width: 320px;
	max-width: 1920px;
	height: 100%;
	margin: 0 auto;
	padding-right: 0 !important;
	color: #2d2d2d;
	background-color: #fff;
	font-family: "Futura", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.2;
}

section,
nav,
footer,
header,
article,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	text-transform: uppercase;
	font-family: "Noto Serif", Arial, serif;
	font-weight: 400;
}

.site {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.visually-hidden {
	position: absolute;
	clip: rect(0 0 0 0);
	width: 1px;
	height: 1px;
	margin: -1px;
}

.container {
	width: 100%;
	max-width: 1366px;
	margin: 0 auto;
	padding: 0 20px;
}

.overlay {
	position: fixed;
	z-index: 10;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}

.overlay--active {
	display: block;
}

.order-form--modal {
	width: 100%;
}

.styled-list {
	padding: 0;
	list-style-type: none;
}

.styled-list li {
	position: relative;
	margin-bottom: 5px;
	padding-left: 20px;
}

.styled-list li::before {
	position: absolute;
	top: 5px;
	left: 0;
	width: 12px;
	height: 12px;
	content: "";
	border: 3px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	background-color: #920128;
}

.navbar {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin: 0 auto;
}

.navbar-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	width: 100%;
}

.navbar-toggler {
	width: 50px;
	height: 50px;
	padding: 0;
	background-color: #6f001e;
}

.page-header {
	margin: 0 auto;
	text-align: center;
}

.page-header__title {
	position: relative;
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0 30px;
	text-align: center;
}

.page-header__title::before,
.page-header__title::after {
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	content: "";
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	background-color: #9b6028;
}

.page-header__title::before {
	top: 50%;
	left: 0;
}

.page-header__title::after {
	top: 50%;
	right: 0;
}

.btn {
	position: relative;
	z-index: 1;
	padding: 15px 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	color: #fff;
	border: none;
	border-radius: 30px;
	outline: none;
	background-color: #920128;
	-webkit-box-shadow: none;
	box-shadow: none;
	line-height: 1;
}

.btn::before {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	content: "";
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1, 1);
	-ms-transform: translate(-50%, -50%) rotate(45deg) scale(1, 1);
	transform: translate(-50%, -50%) rotate(45deg) scale(1, 1);
	background-color: #920128;
}

.btn:hover::before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg) scale(1.1, 1.1);
	-ms-transform: translate(-50%, -50%) rotate(45deg) scale(1.1, 1.1);
	transform: translate(-50%, -50%) rotate(45deg) scale(1.1, 1.1);
	background-color: #6f001e;
}

/* .btn:hover,
button:hover {
	background-color: #6f001e;
} */

.btn:focus,
button:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn:active,
button:active {
	border-color: transparent;
	outline: none;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn--second {
	color: inherit;
	border: 1px solid #920128;
	background-color: #fff;
}

.btn--icon:hover {
	color: #fff;
}

.btn--second:hover {
	color: #fff;
}

.contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.contacts__item {
	position: relative;
	margin: 10px;
	padding-left: 25px;
}

.contacts__item::before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 15px;
	height: 15px;
	content: "";
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.contacts__item--phone::before {
	background-image: url("../img/icons/contact-phone.svg");
}

.contacts__item--mail::before {
	background-image: url("../img/icons/contact-mail.svg");
}

.contacts__item--address::before {
	background-image: url("../img/icons/contact-address.svg");
}

.map {
	width: 100%;
	max-width: 1920px;
	min-height: 450px;
	margin: 0 auto;
	border-top: 1px solid #ededed;
}

.appointment-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.appointment-form__label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 20px;
}

.appointment-form__name {
	margin-bottom: 5px;
	padding-left: 20px;
}

input,
textarea {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}

.appointment-form__input {
	padding: 10px 20px;
	border: 1px solid #d7d7d7;
	border-radius: 0;
}

.appointment-form__input:focus {
	border: 1px solid #6f001e;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.appointment-form__input::-webkit-input-placeholder {
	color: #2d2d2d;
}

.appointment-form__input::-moz-placeholder {
	color: #2d2d2d;
}

.appointment-form__input:-ms-input-placeholder {
	color: #2d2d2d;
}

.appointment-form__input::-ms-input-placeholder {
	color: #2d2d2d;
}

.appointment-form__input::placeholder {
	color: #2d2d2d;
}

.appointment-form__input--message {
	margin-bottom: 20px;
}

.appointment-form__btn {
	margin: 0 auto;
}

.success-message {
	position: fixed;
	z-index: 20;
	top: 50%;
	left: 50%;
	width: 95%;
	max-width: 900px;
	padding: 50px;
	-webkit-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-webkit-transform: translate(-50%, 100vh);
	-ms-transform: translate(-50%, 100vh);
	transform: translate(-50%, 100vh);
	text-align: center;
	opacity: 0;
	color: #fff;
	border: 2px solid #fff;
	background-color: #920128;
	-webkit-box-shadow: 0 5px 51px 0 rgba(0, 0, 0, .58), 0 4px 65px 0 rgba(0, 0, 0, .45);
	box-shadow: 0 5px 51px 0 rgba(0, 0, 0, .58), 0 4px 65px 0 rgba(0, 0, 0, .45);
	font-size: 30px;
	font-weight: 700;
}

.success-message--show {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 1;
}

.modal-dialog {
	top: 50%;
	-webkit-transform: translateY(-50%) !important;
	-ms-transform: translateY(-50%) !important;
	transform: translateY(-50%) !important;
}

.modal {
	padding: 0 !important;
	background-color: rgba(0, 0, 0, 0.6);
}

.modal-dialog {
	width: 95%;
	max-width: 500px;
}

.modal-header {
	position: relative;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 20px;
	border-radius: 0;
	background-color: #3d322c;
}

.modal-header::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	content: "";
	background-image: url("../img/slider-pattern.png");
	background-repeat: repeat;
	background-position: center bottom;
	background-size: 500px;
}


.modal-title {
	position: relative;
	z-index: 2;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 1.5rem;
	text-align: center;
}

.modal-content {
	border: none;
	border-radius: 0
}

.modal-body {
	font-size: 0.9rem;
}

.modal-body {
	padding: 30px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.7))), url(../img/pattern-bath.jpg);
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7)), url(../img/pattern-bath.jpg);
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7)), url(../img/pattern-bath.jpg);
	background-repeat: repeat;
	background-position: left center;
	background-size: 300px;
}

.modal-header .modal-close {
	position: absolute;
	z-index: 1;
	top: -5px;
	right: -5px;
	display: block;
	width: 35px;
	height: 35px;
	margin: 0;
	padding: 0;
	opacity: 1;
	border: 0;
	border-radius: 0;
	background-color: #920128;
	background-image: url("../img/icons/close.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 15px 15px;
}

.modal-header .modal-close:hover {
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	opacity: 1 !important;
	background-color: #6f001e
}

.modal-header .modal-close span {
	display: none;
}

.modal-overlay {
	position: fixed;
	z-index: 10;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.modal-overlay--show {
	display: block;
}

.modal--privacy .modal-dialog {
	top: 20px;
	max-width: 95%;
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important;
}

.modal--privacy .modal-content {
	overflow: auto;
}

.modal--privacy .modal-body {
	padding: 20px;
}

.modal-footer {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*-main-style-*/

.site-header {
	position: absolute;
	z-index: 2;
	top: 0;
	width: 100%;
	height: auto;
	max-width: 1920px;
	margin: 0 auto;
}

.site-header--fixed {
	position: fixed;
	z-index: 3;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	background-color: rgba(61, 50, 44, .6);
	-webkit-box-shadow: 5px 15px 20px 5px rgba(0, 0, 0, 0.15);
	box-shadow: 5px 15px 20px 5px rgba(0, 0, 0, 0.15);
}

.header-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: rgba(0, 0, 0, 0.6);
}

.header-top__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 10px 0;
}

.main-site-info {
	background-color: rgba(61, 50, 44, .9);
	z-index: 1;
	position: relative;
}

.contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.contacts__item {
	position: relative;
	margin: 0;
	margin-left: 20px;
	padding: 5px;
	padding-left: 40px;
}

.contacts__item--phone:first-child {
	margin-left: 0;
}

.contacts__item::after {
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 0;
	display: block;
	width: 30px;
	height: 30px;
	content: "";
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: .9;
	background-image: url(../img/icons/branch.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.contacts__item::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	display: block;
	width: 30px;
	height: 30px;
	content: "";
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px;
}

.contacts__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: #fff;
}

.contacts__content:hover {
	text-decoration: none;
	color: #9b6028;
}

.contacts__item--phone::before {
	background-image: url("../img/icons/contact-phone.svg");
}

.contacts__item--mail::before {
	background-image: url("../img/icons/contact-mail.svg");
}

.contacts__item--address::before {
	background-image: url("../img/icons/contact-address.svg");
}

.main-site-info__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.logo:hover {
	text-decoration: none;
	color: #920128;
}


.logo__img {
	width: 40px;
	margin-right: 15px;
}

.logo__text {
	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-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
}

.logo__name {
	text-transform: uppercase;
	color: #9b6028;
	font-family: "Noto Serif", Arial, serif;
	font-size: 22px;
	font-weight: 600;
}

.logo__slogan {
	letter-spacing: .1rem;
	font-size: 18px;
}

.navbar-nav {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.navbar-nav__item {
	text-align: center;
}

.navbar-nav__link {
	position: relative;
	display: block;
	padding: 25px 10px 25px 30px;
	color: #fff;
	font-size: 1rem;
}

.navbar-nav__link::before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 10px;
	height: 10px;
	content: "";
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	background-color: #9b6028;
}

.navbar-nav__link:hover::before {
	background-color: #920128;
}

.navbar-nav__link:hover {
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
	color: #9b6028;
}

.section {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 4rem 0;
}

.section--main-slide {
	padding: 0;
}

.slider-main__item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	min-height: 850px;
	background-repeat: no-repeat;
	background-position: center center
}

.slider-main__item::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	content: "";
	background-image: url(../img/slider-pattern.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	background-size: contain;
}

.slider-main__item--first {
	background-color: #2d2d2d;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(109, 63, 63, .2)), color-stop(rgba(0, 0, 0, .35)), to(rgba(0, 0, 0, .7))), url("../img/slider/1.jpg");
	background-image: -o-linear-gradient(top, rgba(109, 63, 63, .2), rgba(0, 0, 0, .35), rgba(0, 0, 0, .7)), url("../img/slider/1.jpg");
	background-image: linear-gradient(to bottom, rgba(109, 63, 63, .2), rgba(0, 0, 0, .35), rgba(0, 0, 0, .7)), url("../img/slider/1.jpg");
}

.slider-main__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 100px;
}

.slider-main__text {
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	text-align: center;
	color: #fff;
}

.slider-main__title {
	position: relative;
	margin: 0;
	margin-bottom: 10px;
	padding: 0;
	font-size: 2rem;
}

.slider-main__title span {
	display: block;
	color: #920128;
	font-size: 3rem;
}

.slider-main__subtitle {
	margin: 0 0 1rem;
	padding: 0;
	font-size: 1.2rem;
	font-weight: 400;
}

.production-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	list-style: none;
}

.production-list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	    width: 47%;
	margin: 1%;
	border: 1px solid #d7d7d7;
	border-radius: 30px;
	-webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.05);
}

.production-list__title {
	margin-bottom: 25px;
	text-transform: inherit;
	font-size: 1.4rem;
}

.production-list__subtitle {
	font-size: 0.8rem;
}

.production-list__content {
	padding: 30px 20px;
	text-align: center;
}

.btn-production {
	margin-top: 20px;
}

.production-list__row {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 10px;
	padding: 10px;
	padding-left: 40px;
	color: #fff;
	border-radius: 20px;
	background-color: #9b6028;
}

.production-list__row::before {
	position: absolute;
	top: 50%;
	left: 10px;
	display: block;
	width: 20px;
	height: 20px;
	content: "";
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.production-list__row--calendar::before {
	background-image: url(../img/icons/2checks.svg);
}

.production-list__row--day::before {
	background-image: url(../img/icons/clock.svg);
}

.production-list__row--people::before {
	background-image: url(../img/icons/people.svg);
}

.production-list__name,
.production-list__info {
	margin-bottom: 0;
	font-weight: 300;
}

.production-list__price {
	font-weight: 400;
}

.price__title {
	margin-bottom: 5px;
	text-transform: uppercase;
	font-size: 0.8rem;
}

.production-list__pic {
	position: relative;
	border-bottom: 1px solid #d7d7d7;
}

.production-list__img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-radius: 30px 30px 0 0;
}

.size-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	list-style: none;
	white-space: nowrap;
	font-size: 0.7rem;
}

.size-list li {
	width: 31%;
	margin: 1%;
	padding: 5px 10px;
	text-align: center;
	border: 1px solid #ededed;
	border-radius: 5px;
}

.section--about {
	background-color: #f5f5f5;
}

.about {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.about__pic {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 48%;
}

.label {
	position: absolute;
	bottom: -50px;
	left: 50%;
	width: 100%;
	max-width: 400px;
	padding: 30px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
	background-color: #fff;
	-webkit-box-shadow: 0px 7px 11px rgba(105, 105, 105, 0.04);
	box-shadow: 0px 7px 11px rgba(105, 105, 105, 0.04);
}

.label__title {
	color: #920128;
	font-size: 3rem;
}

.label__text {
	margin-bottom: 0;
}

.about__img {
	width: 100%;
	height: auto;

	-o-object-fit: cover;
	object-fit: cover;
}

.about__text {
	width: 48%;
}

.section--features {
	position: relative;
	background-color: #2d2d2d;
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/section-features-bg.jpg");
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../img/section-features-bg.jpg");
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/section-features-bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.section--features::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	content: "";
	background-image: url("../img/slider-pattern.png");
	background-repeat: repeat;
	background-position: center center;
	background-size: auto;
}

.features-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.features-list__item {
	width: 31%;
	margin: 1%;
	text-align: center;
	color: #fff;
}

.features-list__icon {
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
	margin: 0 auto 10px;
	margin-bottom: 20px;
	font-style: normal;
}

.features-list__icon::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	width: 80%;
	height: 80%;
	content: "";
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: rgba(61, 50, 44, .8);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50%;
}

.features-list__icon::after {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background-image: url(../img/icons/branch.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.features-list__icon--forest::before {
	background-image: url("../img/icons/feature-forest.svg");
}

.features-list__icon--spa::before {
	background-image: url("../img/icons/feature-spa.svg");
}

.features-list__icon--bbq::before {
	background-image: url("../img/icons/feature-bbq.svg");
}

.features-list__icon--hot::before {
	background-image: url("../img/icons/feature-hot.svg");
}

.features-list__icon--wallet::before {
	background-image: url("../img/icons/feature-wallet.svg");
}

.features-list__icon--group::before {
	background-image: url("../img/icons/feature-group.svg");
}


.features-list__title {
	margin-bottom: 15px;
	font-size: 1rem;
}


.features-list__text {
	color: #d8d8d8;
	font-weight: 300;
}

.features-list__text:last-child {
	margin-bottom: 0;
}

.section--service {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.7))), url(../img/pattern-bath.jpg);
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7)), url(../img/pattern-bath.jpg);
	background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7)), url(../img/pattern-bath.jpg);
	background-repeat: repeat;
	background-position: left center;
	background-size: 500px;
}

.service-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	list-style: none;
	counter-reset: div;
}

.service-list__item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 31%;
	margin: 1%;
	border-radius: 30px;
	-webkit-box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.05);
}

.service-list__item::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	border-radius: 30px;
	background-color: rgba(58, 33, 33, 0.6);
}

.service-list__pic {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 260px;
}

.service-list__img {
	width: 100%;
	height: auto;
	border-radius: 30px;

	-o-object-fit: cover;
	object-fit: cover;
}

.service-list__title {
	position: absolute;
	bottom: 0;
	padding: 20px;
	padding-left: 65px;
	color: #fff;
	font-size: 1rem;
}

.service-list__title::after {
	position: absolute;
	top: 50%;
	left: 20px;
	display: block;
	width: 30px;
	height: 30px;
	content: "";
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	text-align: center;
	color: #fff;
	background-color: #A36029;
}

.service-list__title::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 20px;
	display: block;
	width: 30px;
	height: 30px;
	content: counter(div, decimal-leading-zero);
	counter-increment: div;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	font-size: 15px;
	line-height: 30px;
}

.service-list__price {
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px;
	color: #fff;
	border-radius: 30px 0 20px 0;
	background-color: #920128;
	font-weight: 700;
}


.section--main-form {
	background-color: #2d2d2d;
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/section-main-form-bg.jpg");
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../img/section-main-form-bg.jpg");
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/section-main-form-bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.main-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.main-form__text {
	color: #fff;
}

.main-form p {
	color: #b3b3b3;
}

.main-form__info {
	width: 48%;
}

.main-form__form {
	width: 48%;
	padding: 50px;
	background-color: #fff;
}

.form-contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0;
	padding: 30px 0;
	list-style: none;
	border-top: 1px solid #b3b3b3
}

.form-contacts__item {
	position: relative;
	margin: 0;
	margin-left: 20px;
	padding: 5px;
	padding-left: 40px;
}

.form-contacts__item--phone:first-child {
	margin-left: 0;
}

.form-contacts__item::before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 30px;
	height: 30px;
	content: "";
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #920128;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px;
}

.form-contacts__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: #fff;
	font-size: 1.3rem;
}

.form-contacts__content:hover {
	text-decoration: none;
	color: #920128;
}

.form-contacts__item--phone::before {
	background-image: url("../img/icons/contact-phone.svg");
}

.brand-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 0;
	list-style: none;
}

.brand-list__item {
	width: 14%;
	margin: 1%;
	padding: 5px;
	border: 1px solid #d7d7d7;
}

.brand-list__img {
	width: 100%;
	height: auto;
}

.contacts-info {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 0;
	padding: 30px;
	list-style: none;
	color: #fff;
	background-color: #920128;
}

.contacts-info::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(61, 50, 44, .94)), to(rgba(61, 50, 44, .94))), url(../img/pattern-bath.jpg);
	background-image: -o-linear-gradient(top, rgba(61, 50, 44, .94), rgba(61, 50, 44, .94)), url(../img/pattern-bath.jpg);
	background-image: linear-gradient(180deg, rgba(61, 50, 44, .94), rgba(61, 50, 44, .94)), url(../img/pattern-bath.jpg);
	background-repeat: repeat;
	background-position: left center;
	background-size: 500px;
}

.contacts-info__name {
	color: #b3b3b3;
	margin-bottom: 5px;
	font-weight: 300;
}

.contacts-info__item {
	position: relative;
	width: 31%;
	padding-top: 70px;
	text-align: center;
}

.contacts-info__item::before {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 50px;
	height: 50px;
	content: "";
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50%;
}

.contacts-info__item--address::before {
	background-image: url("../img/icons/contact-address.svg");
}

.contacts-info__item--phone::before {
	background-image: url("../img/icons/contact-phone.svg");
}

.contacts-info__item--mail::before {
	    background-image: url(../img/icons/clock.svg);
}

.contacts-info__item::after {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 50px;
	height: 50px;
	content: "";
	background-color: #920128;
	-webkit-transform: translateX(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	z-index: -1;
}

.contacts-info__content {
	display: block;
	margin-bottom: 5px;
	text-decoration: none;
	color: #fff;
}

.contacts-info__content:hover {
	text-decoration: none;
	color: #9b6028;
}


.site-footer {
	padding: 20px 0;
	text-align: center;
	color: #b3b3b3;
	background-color: #2d2d2d;
}

.footer-bottom__link {
	color: #b3b3b3;
}

.footer-bottom__link--copy {
	text-transform: uppercase;
}

.footer-bottom__link--privacy,
.footer-bottom__link--orvin {
	font-size: 0.8rem;
}

.footer-bottom__link:hover {
	text-decoration: none;
	color: #920128;
}

.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;

	-o-object-fit: cover;

	object-fit: cover;
}

.gallery__row {}

.gallery__controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 30px;
}

.gallery__content {
	position: relative;
	z-index: 1;
	display: block;
	overflow: hidden;
	padding: 10px;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	border-radius: 0;
}

.gallery__content::before {
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	visibility: hidden;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	content: "";
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	opacity: 0;
	border-radius: 30px;
	background-color: rgba(61, 50, 44, .5);
	background-image: url("../img/icons/plus.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 30px auto;
}

.gallery__content:hover::before {
	visibility: visible;
	opacity: 1;
}

.gallery__content::after {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	visibility: hidden;
	width: 60px;
	height: 60px;
	content: "";
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	-webkit-transform: translate(-50%, -50%) scale(1.2);
	-ms-transform: translate(-50%, -50%) scale(1.2);
	transform: translate(-50%, -50%) scale(1.2);
	opacity: 0;
	border-radius: 0;
	border-radius: 14px;
	background-color: rgba(155, 96, 40, 1);
}

.gallery__content:hover.gallery__content:hover::after {
	visibility: visible;
	-webkit-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.gallery__img {
	border: 1px solid #d7d7d7;
	border-radius: 30px;
}

.gallery__arrow {
	position: relative;
	z-index: 1;
	width: 40px;
	height: 40px;
	padding: 0;
	cursor: pointer;
	-webkit-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
	opacity: 1 !important;
	border: 0;
	background-color: transparent;
}

.gallery__arrow::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	content: "";
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: .7;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.gallery__arrow--prev::before {
	background-image: url(../img/icons/arrow-prev.svg);
}

.gallery__arrow--next::before {
	background-image: url(../img/icons/arrow-next.svg);
}

.gallery__arrow::after {
	position: absolute;
	top: 50%;
	display: block;
	width: 10px;
	height: 10px;
	content: "";
	-webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	opacity: .7;
	background-color: #9b6028;
}

.gallery__arrow--prev::after {
	left: 40px;
}

.gallery__arrow--next::after {
	right: 40px;
}

.gallery__arrow--prev:hover::before {
	-webkit-transform: translateX(-10px);
	-ms-transform: translateX(-10px);
	transform: translateX(-10px);
	opacity: 1;
}

.gallery__arrow--next:hover::before {
	-webkit-transform: translateX(10px);
	-ms-transform: translateX(10px);
	transform: translateX(10px);
	opacity: 1;
}

.gallery__arrow--prev:hover::after,
.gallery__arrow--next:hover::after {
	-webkit-transform: translateY(-50%) rotate(360deg);
	-ms-transform: translateY(-50%) rotate(360deg);
	transform: translateY(-50%) rotate(360deg);
	opacity: 1;
}


.section--feedback {}

.feedback-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.feedback-list__item {
	width: 48%;
	margin: 1%;
	margin-bottom: 20px;
	padding: 30px 20px;
	list-style: none;
	border: 1px solid #d7d7d7;
	border-radius: 30px;
}

.feedback-list__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.feedback-list__pic {
	position: relative;
	width: 80px;
	height: 80px;
}

.feedback-list__pic::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	content: "";
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 20px;
	background-position: center;
	background-size: cover;
}

.feedback-list__pic--woman::before {
	background-image: url(../img/woman.jpg);
}

.feedback-list__pic--man::before {
	background-image: url(../img/man.jpg);
}

.feedback-list__caption {
	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-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	padding-left: 60px;
}

.feedback-list__caption::before {
	position: absolute;
	z-index: -1;
	top: -10px;
	left: 10px;
	display: block;
	width: 40px;
	height: 40px;
	content: "";
	background-image: url(../img/icons/quote.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.feedback-list__name {
	text-transform: inherit;
	margin-bottom: 8px;
}

.feedback-list__time {
	font-size: .8rem;
	color: #3d322c;
}

.feedback-list__text:last-child {
	margin-bottom: 0;
}


@media(max-width: 1199px) {
	.slider-main__item {
		min-height: 700px;
	}
}

@media(max-width: 991px) {
	html {
		font-size: 18px;
	}

	.slider-main__item {
		min-height: 600px;
	}

	.slider-main__title {
		font-size: 1.5rem;
	}

	.slider-main__title span {
		font-size: 2rem;
	}

	.production-list__item,
	.service-list__item {
		width: 48%;
	}

	.about {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.about__pic {
		width: 100%;
		max-width: 700px;
		margin: 0 auto 100px;
	}

	.about__text {
		width: 100%;
	}

	.features-list__item {
		width: 48%;
	}

	.main-form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.main-form__info {
		width: 100%;
	}

	.main-form__form {
		width: 100%;
	}

	.brand-list__item {
		width: 31%;
	}

}

@media(max-width: 768px) {
	.navbar {
		position: fixed;
		top: 20px;
		right: 15px;
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		width: auto;
	}

	.navbar-toggler {
		z-index: 20;
		width: 40px;
		height: 40px;
		margin: 0 !important;
		padding: 0;
		-webkit-transition: all 0.3s linear;
		-o-transition: all 0.3s linear;
		transition: all 0.3s linear;
		border-radius: 0;
		background-color: #920128;
	}

	.navbar-toggler::before,
	.navbar-toggler::after,
	.navbar-toggler span::before {
		position: absolute;
		top: 50%;
		left: 50%;
		display: block;
		width: 25px;
		height: 2px;
		content: "";
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		background-color: #fff;
	}

	.navbar-toggler::before {
		-webkit-transform: translate(-50%, -8px);
		-ms-transform: translate(-50%, -8px);
		transform: translate(-50%, -8px);
	}

	.navbar-toggler::after {
		-webkit-transform: translate(-50%, 6px);
		-ms-transform: translate(-50%, 6px);
		transform: translate(-50%, 6px);
	}

	.navbar-toggler.close::before {
		-webkit-transform: translateX(-50%) rotate(45deg);
		-ms-transform: translateX(-50%) rotate(45deg);
		transform: translateX(-50%) rotate(45deg);
	}

	.navbar-toggler.close::after {
		-webkit-transform: translateX(-50%) rotate(-45deg);
		-ms-transform: translateX(-50%) rotate(-45deg);
		transform: translateX(-50%) rotate(-45deg);
	}

	.navbar-toggler.close span::before {
		background-color: transparent;
	}

	.navbar-toggler.close {
		opacity: 1 !important;
		background-color: #920128;
	}

	.navbar-nav {
		position: relative;
		z-index: 2;
	}

	.navbar-collapse {
		position: fixed;
		z-index: 11;
		top: 0;
		right: 0;
		bottom: 0;
		display: block !important;
		width: 100%;
		max-width: 250px;
		min-height: 100vh;
		padding: 70px 15px 20px;
		-webkit-transition: all 0.6s ease;
		-o-transition: all 0.6s ease;
		transition: all 0.6s ease;
		-webkit-transform: translateX(200%);
		-ms-transform: translateX(200%);
		transform: translateX(200%);
		opacity: 0;
		background-color: #2d2d2d;
	}

	.navbar-collapse::before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		content: "";
		background-image: url("../img/slider-pattern.png");
		background-repeat: repeat;
		background-position: center center;
		background-size: auto;
	}

	.navbar-collapse.menu--show {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}

	.page-header__title__title,
	h2 {
		font-size: 1.5rem;
	}

	.logo {
		margin-bottom: 10px;
	}

	.logo__img {
		width: 45px;
	}

	.logo__img {
		margin-right: 10px;
	}

	.logo__name {
		font-size: 16px;
	}

	.logo__slogan {
		font-size: 13px;
	}

	.header-top__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.contacts {
		-webkit-box-align: center;
		align-items: center;
		-ms-flex-align: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		align-items: center;
	}

	.contacts__item {
		margin: 0;
	}

	.navbar-nav__link {
		padding: 10px 30px;
		text-align: left;
		color: #fff;
	}

	.production-list__item,
	.service-list__item {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.service-list__bottom {
		text-align: center;
	}

	.contacts-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.contacts-info__item {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.gallery__controls {
		margin-bottom: 10px;
	}

	.gallery__arrow {
		width: 30px;
		height: 30px;
	}

	.gallery__arrow::after {
		width: 8px;
		height: 8px;
	}

	.gallery__arrow--next::after {
		right: 30px;
	}

	.gallery__arrow--prev::after {
		left: 30px;
	}

	.feedback-list__item {
		width: 100%;
	}

}

@media(max-width: 640px) {
	.features-list__item {
		width: 100%;
		margin: 0 0 20px 0;
		text-align: center;
	}

	.features-list__icon {
		margin: 0 auto 20px;
	}

	.section {
		padding: 2rem 0;
	}

	.section--main-slide {
		padding: 0;
	}

	.slider-main__item {
		min-height: 500px;
	}

}

@media(max-width: 480px) {
	.page-header__title__title {
		-webkit-box-align: center;
		align-items: center;
		-ms-flex-align: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
	}

	.contacts-info__item {
		padding-top: 50px;
	}

	.contacts-info__item::before {
		width: 40px;
		height: 40px;
	}

	.contacts-info__item::after {
		width: 40px;
		height: 40px;
	}

	.main-form__form {
		padding: 20px;
	}

	.slider-main__title {
		font-size: 1.2rem;
	}

	.slider-main__title span {
		font-size: 1.5rem;
	}

	.slider-main__subtitle {
		font-size: 1rem;
	}

	.modal-body {
		padding: 20px 10px;
	}

	.btn::before {
		width: 40px;
		height: 40px;
	}

	.production-list__content {
		padding: 20px 10px;
	}

	.production-list__name,
	.production-list__info,
	.production-list__price {
		font-size: 0.9rem;
	}

	.feedback-list__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.feedback-list__item {
		margin: 0;
		margin-bottom: 10px;
		padding: 20px 15px;
	}

	.feedback-list__pic {
		width: 70px;
		height: 70px;
		margin-bottom: 10px;
	}

	.feedback-list__caption {
		padding-left: 50px;
	}

	.feedback-list__caption::before {
		width: 30px;
		height: 30px;
		top: 0;
	}

	.feedback-list__name {
		margin-bottom: 5px;
		font-size: 1.4rem;
	}

	.features-list__icon {
		margin: 0 auto 10px;
		width: 80px;
		height: 80px;
	}

	.features-list__icon::before {
		background-size: 45%;
	}

}

@media(max-width: 350px) {}



.gallery__content{
    max-height: 360px!important;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 360px;
    -o-object-fit: cover;

    max-height: 100%;
    margin: 0 auto;
}