/* Fonts */
@font-face {
	font-family: 'Yanone Kaffeesatz';
	src: url('../fonts/yanone-kaffeesatz-bold.woff2') format('woff2'),
	url('../fonts/yanone-kaffeesatz-bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
	url('../fonts/montserrat-semibold.woff2') format('woff2'),
	url('../fonts/montserrat-semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat Bold'), local('Montserrat-Bold'),
	url('../fonts/montserrat-bold.woff2') format('woff2'),
	url('../fonts/montserrat-bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: local('Montserrat ExtraBold'), local('Montserrat-ExtraBold'),
	url('../fonts/montserrat-extrabold.woff2') format('woff2'),
	url('../fonts/montserrat-extrabold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
/* Fonts */

/* Custom scrollbar */
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #f5f5f5;
}
::-webkit-scrollbar {
	width: 8px;
	background-color: #f5f5f5;
}
::-webkit-scrollbar-thumb {
	background-color: #a0a0a0;
	outline: 1px solid #708090;
}
@-moz-document url-prefix() {
	html {
		scrollbar-color: #a0a0a0 #f5f5f5;
		scrollbar-width: thin;
	}
}
/* Custom scrollbar */

/* Default */
html {
	height: 100%;
}
body {
	font-family: 'Montserrat', 'Arial', sans-serif;
	color: #000;
	font-size: 26px;
	line-height: 139%;
	font-weight: normal;
	-webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	overflow-x: hidden;
	height: 100%;
	/*
	background: #fff url('../img/samsa-background-texture.png');
	*/
}
img {
	max-width: 100%;
	height: auto;
}
ol, ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
h1, h2, h3, h4, p, figure {
	margin: 0;
}
a:hover, a:focus, a:active {
	text-decoration: none;
}
button {
	border: none;
	background: transparent;
	padding: 0;
	box-shadow: none;
	cursor: pointer;
}
button:focus, a:focus, input:focus, textarea:focus {
	outline: none;
}
input, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 0;
	display: block;
	width: 100%;
}
textarea {
	min-height: 114px;
}
input:required:invalid {
	outline: none;
}
/* Default */

/* Slider */
.keen-slider {
	position: relative;
	display: flex;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
}
.keen-slider__slide {
	width: 100%;
	min-height: 100%;
	flex: 0 0 100%;
}
.keen-slider[data-keen-slider-moves] * {
	pointer-events: none;
}
/* Slider */

/* Buttons */
.btn {
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	padding: 20px 28px 18px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
}
.btn-primary {
	position: relative;
	color: #444349;
	background: #fcdca3;
	border: 2px solid #fcdca3;
	transition: background .4s ease, border-color .4s ease;
}
.btn-primary:after {
	content: '';
	display: block;
	position: absolute;
	left: 10px;
	width: calc(100% - 20px);
	height: 5px;
	bottom: -6px;
	background: #d3ae6c;
}
.btn-primary:hover {
	background: #fcd58f;
	border-color: #fcd58f;
}
.btn-primary:active {
	background: #d3ae6c;
	border-color: #d3ae6c;
}

.btn-stroke {
	color: #fff;
	border: 2px solid #fff;
	transition: background .4s ease, color .4s ease;
}
.btn-stroke-dark {
	color: #444349;
	border-color: #444349;
}
.btn-stroke:hover {
	color: #444349;
	background: #fcd58f;
	border-color: #fcd58f;
}
.btn-stroke:active {
	color: #444349;
	background: #d3ae6c;
	border-color: #d3ae6c;
}
/* Buttons */

/* Header */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	padding: 30px 0 0;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo {
	width: 104px;
	flex: 0 0 104px;
	z-index: 6;
}
.main-menu ul {
	display: flex;
	line-height: 1;
}
.main-menu li {
	display: inline-flex;
	line-height: 1;
}
.main-menu li:not(:last-child) {
	margin: 0 40px 0 0;
}
.main-menu ul a {
	font-weight: 800;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	transition: color .4s ease;
}
.main-menu ul a:hover {
	color: #fcd58f;
}
.main-menu ul a:active {
	color: #d3ae6c;
}
.header-info-content {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.header-info-link {
	font-weight: 600;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	display: inline-flex;
	align-items: center;
	padding: 2px 0;
	transition: color .4s ease;
}
.header-info-link:hover {
	color: #fcd58f;
}
.header-info-link:active {
	color: #d3ae6c;
}
.header-info-link svg {
	width: 19px;
	height: 19px;
	flex: 0 0 19px;
	fill: #fff;
	margin: 0 12px 0 0;
	transition: fill .4s ease;
}
.header-info-link:hover svg {
	fill: #fcd58f;
}
.header-info-link:active svg {
	fill: #d3ae6c;
}
.header-info {
	display: flex;
	align-items: center;
	z-index: 4;
}

.btn-menu {
	position: relative;
	line-height: 1;
	display: none;
	width: 70px;
	height: 68px;
	flex: 0 0 70px;
	transition: transform .4s ease;
	margin: 0 0 0 30px;
}
.menu-open .btn-menu {
	transform: rotate(90deg);
}
.btn-menu span {
	display: block;
	position: absolute;
	width: 32px;
	height: 2px;
	background: #fff;
	left: 20px;
	top: 50%;
	margin: -1px 0 0;
	transition: transform .4s ease;
}
.btn-menu span:nth-child(1) {
	transform: translate(0, -8px);
}
.btn-menu span:nth-child(3) {
	transform: translate(0, 8px);
}
.menu-open .btn-menu span:nth-child(1){
	transform: rotate(45deg) translate(0, 0);
}
.menu-open .btn-menu span:nth-child(2){
	transform: scaleX(0);
}
.menu-open .btn-menu span:nth-child(3){
	transform: rotate(-45deg) translate(0, 0);
}
/* Header */

/* Social list */
.social-list {
	display: inline-flex;
	flex-direction: column;
	z-index: 12;
}
.btn-social {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .4s ease;
}
.btn-social:hover {
	background: #fcd58f;
}
.btn-social:active {
	background: #d3ae6c;
}
.btn-social svg {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	fill: #fff;
	transition: fill .4s ease;
}
.btn-social:hover svg, .btn-social:active svg {
	fill: #444349;
}
/* Social list */

/* Form */
.form .btn {
	width: 100%;
	flex: 0 0 100%;
}
.form-element {
	margin: 0 0 20px;
}
.form-element-field {
	border: 1px solid #444349;
	color: #444349;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	padding: 19px 24px 18px;
	transition: border-color .4s ease;
}
.form-element-field::-webkit-input-placeholder {
	color: #9d9c9f;
}
.form-element-field::placeholder {
	color: #9d9c9f;
}
.form-element-field:focus {
	border-color: #d3ae6c;
}
.form-message-wrap {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	text-align: center;
	color: #fff;
	padding: 33px 30px;
	background: #2cc197;
	margin: 40px 0 0;
	justify-content: center;
	display: none;
}
.form-message {
	max-width: 444px;
	margin: 0 auto;
}
/* Form */

/* Modal */
@keyframes scaleIn {
	from { transform: scale(.7) } to { transform: scale(1) }
}
@keyframes scaleOut {
	from { transform: scale(1) } to { transform: scale(.7) }
}
@keyframes fadeIn {
	from { opacity: 0 } to { opacity: 1 } 
}
@keyframes fadeOut {
	from { opacity: 1 } to { opacity: 0; pointer-events: none; }
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 300;
	background: rgba(68, 67, 73, .75);
	overflow: hidden;
	animation: fadeIn .3s normal forwards;
	opacity: 0;
	display: none;
}
.modal-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 80px 0;
}
.modal {
	transform: scale(.7);
	animation: scaleIn .3s normal forwards;
}
.btn-close {
	display: inline-flex;
	line-height: 1;
	position: absolute;
	width: 30px;
	height: 30px;
	top: 14px;
	right: 14px;
	z-index: 8;
	justify-content: center;
	align-items: center;
}
.btn-close svg {
	width: 17px;
	height: 17px;
	fill: #444349;
	transition: fill .4s ease;
	pointer-events: none;
}
.btn-close:hover svg {
	fill: #fcd58f;
}
.btn-close:active svg {
	fill: #d3ae6c;
}
.modal-content {
	width: 670px;
	background: #fff;
	padding: 60px 100px 0;
}
.modal-content .contact-form-section-title {
	margin: 0 0 42px;
}
.modal-out {
	animation: fadeOut .3s normal forwards;
	pointer-events: none;
}
.modal-out .modal {
	animation: scaleOut .3s normal forwards;
}
.modal-content-title {
	font-family: 'Yanone Kaffeesatz';
	font-weight: bold;
	font-size: 32px;
	line-height: 38px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #444349;
	text-transform: uppercase;
	margin: 0 0 38px;
}
.modal-content-title:before, .modal-content-title:after {
	content: '';
	flex: 1;
	height: 2px;
	width: 100%;
	background: #444349;
	margin: 0 30px 0 0;
}
.modal-content-title:after {
	margin: 0 0 0 30px;
}
.modal-content .btn {
	margin: 10px 0 0;
}
.modal-content .form {
	padding: 0 0 60px;
}
.modal-content .form-message-wrap  {
	width: calc(100% + 200px);
	position: relative;
	left: -100px;
	margin: 0;
}
/* Modal */

/* Section title */
.section-title {
	font-family: 'Yanone Kaffeesatz';
	font-weight: bold;
	font-size: 62px;
	line-height: 74px;
	color: #444349;
	text-transform: uppercase;
}
.section-title:before {
	content: '';
	display: block;
	width: 220px;
	height: 2px;
	background: #444349;
	margin: 0 0 48px;
}
/* Section title */

/* Decoration container */
.decoration-container {
	max-width: 1440px;
	margin: 0 auto;
	position: relative;
}
/* Decoration container */

/* Main section */
.main-section {
	position: relative;
	height: 100vh;
	min-height: 900px;
	max-height: 1080px;
}
.main-section .social-list {
	position: absolute;
	right: 26px;
	bottom: 48px;
}
.main-section .social-list:after {
	content: '';
	display: block;
	height: 110px;
	width: 2px;
	background: #fff;
	margin: 16px auto 0;
}
.main-section .container {
	height: 100%;
	position: relative;
	z-index: 8;
}
.main-section-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 2;
}
.main-section:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 6;
	background: linear-gradient(315deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.6) 67%);
}
.main-section-card {
	padding: 256px 0 0;
}
.main-section-title {
	font-family: 'Yanone Kaffeesatz';
	font-weight: bold;
	font-size: 62px;
	line-height: 74px;
	color: #fff;
	max-width: 450px;
	text-transform: uppercase;
	margin: 0 0 92px;
}
.main-section-title:before {
	content: '';
	display: block;
	height: 2px;
	width: 220px;
	background: #fff;
	margin: 0 0 46px;
}
.main-section-card ul {
	font-weight: 600;
	font-size: 22px;
	line-height: 27px;
	color: #fff;
}
.main-section-card li {
	display: flex;
}
.main-section-card li:not(:last-child) {
	margin: 0 0 34px;
}
.main-section-card li:before {
	content: '';
	display: inline-flex;
	height: 27px;
	width: 55px;
	flex: 0 0 auto;
	margin: 0 24px 0 0;
	background: url('../img/list-icon.svg') no-repeat 0 0 / cover
}
.main-section-card li:nth-child(2n):before {
	transform: scaleX(-1) rotate(-15deg);
}
.main-section-card li:nth-child(3n):before {
	transform: scaleY(-1) rotate(-15deg);
}
.main-section-buttons {
	display: flex;
	flex-wrap: wrap;
	margin: 96px 0 0;
}
.main-section-buttons .btn {
	max-width: 300px;
	width: 100%;
}
.main-section-buttons .btn:after {
	display: none;
}
.main-section-buttons .btn:not(:last-child) {
	margin: 0 20px 0 0;
}
/* Main section */

/* About section */
.about-section {
	overflow: hidden;
	position: relative;
}
.about-section-container {
	padding: 146px 0 0;
}
.about-section-decoration {
	position: absolute;
	top: 0;
	width: 75vw;
	max-width: 1067px;
	right: -11%;
}
.about-section .section-title {
	max-width: 320px;
	margin: 0 0 96px;
}
.about-section-content {
	max-width: 470px;
}
.about-section-content p {
	font-weight: 600;
	font-size: 18px;
	line-height: 144%;
	color: #444349;
	text-align: justify;
}
.about-section-content p:not(:last-child) {
	margin: 0 0 26px;
}
.about-image-wrap {
	margin: 136px 0 0;
	padding: 0 0 0 40px;
}
.about-image-wrap img {
	box-shadow: -10px 10px 20px rgba(191, 191, 191, 0.5);
	object-fit: cover;
	object-position: center;
	height: 512px;
	max-width: 770px;
	width: 54vw;
}
.best-row {
	align-items: flex-end;
	margin-bottom: 12px;
}
.best-title-wrap .section-title {
	align-items: flex-end;
	text-align: right;
	display: flex;
	flex-direction: column;
	max-width: 100%;
	margin: 0 0 82px;
}
.best-image-wrap {
	display: flex;
	justify-content: flex-end;
	padding: 0 20px 0 0;
	position: relative;
	z-index: -1;
}
.best-image-wrap img {
	width: 55vw;
	max-width: 784px;
	margin: -62px 0 0;
}
.about-list {
	margin: 0 0 70px;
}
.about-card-content	{
	display: flex;
	align-items: center;
	margin: 0 0 30px;
}
.about-card-icon {
	display: inline-flex;
	border: 5px solid #444349;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	margin: 0 24px 0 0;
	width: 100px;
	height: 100px;
	flex: 0 0 auto;
}
.about-card-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
}
.about-list .row {
	margin: 0;
}
.about-list .col-lg-4 {
	padding: 0;
}
.about-card-icons {
	display: flex;
	justify-content: space-between;
}
.about-card svg {
	width: 111px;
	height: 130px;
	fill: #444349;
}
.about-arrow-down {
	margin: 0 0 0 20%;
}
.about-arrow-up {
	margin: -10px 0 0;
	transform: rotate(180deg) scaleX(-1);
}
.about-buttons-wrap {
	display: flex;
	justify-content: center;
}
.about-buttons-wrap .btn {
	max-width: 300px;
	width: 100%;
}
.about-buttons-wrap .btn:not(:last-child) {
	margin: 0 20px 0 0;
}
/* About section */

/* Products section */
.products-section {
	overflow: hidden;
	padding: 0 0 300px;
	margin: -100px 0 0;
}
.products-section-container {
	padding: 390px 0 0;
	z-index: -1;
}
.products-section-container img {
	position: absolute;
	bottom: 0;
	width: 71vw;
	max-width: 1017px;
	left: -27%;
}
.products-section .section-title {
	margin: 0 0 100px;
}
.products-card {
	height: 562px;
	position: relative;
	box-shadow: 0px 20px 40px rgba(102, 102, 102, 0.5);
}
.products-card:after {
	content: '';
	display: block;
	position: absolute;
	z-index: 4;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 50%, #000 100%);
}
.products-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.products-card-title {
	position: absolute;
	left: 0;
	bottom: 40px;
	width: 100%;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	text-transform: uppercase;
	color: #fff;
	padding: 0 56px 0 30px;
	z-index: 6;
}
.products-slider {
	overflow: visible;
	flex-wrap: nowrap;
	max-width: 1100px;
}
/* Products section */

/* Why section */
.why-section {
	overflow: hidden;
}
.why-section .section-title {
	margin: 0 0 90px;
}

.why-image-wrap {
	position: relative;
	z-index: -1;
	padding: 0 0 0 60px;
	margin: 166px 0 0;
}
.why-image-wrap img {
	width: 70vw;
	max-width: 1019px;
}
.why-buttons-wrap {
	display: flex;
}
.why-buttons-wrap .btn {
	width: 300px;
	max-width: 100%;
}
.why-buttons-wrap .btn:not(:last-child) {
	margin: 0 20px 0 0;
}

.why-section-content {
	width: calc(100% + 30px);
}
.why-section-content ul {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
	margin: 0 0 58px;
}
.why-section-content li {
	display: flex;
}
.why-section-content li:before {
	content: '';
	display: inline-flex;
	height: 27px;
	width: 55px;
	flex: 0 0 auto;
	margin: 0 22px 0 0;
	background: url('../img/list-icon.svg') no-repeat 0 0 / cover;
}
.why-section-content li:nth-child(2n):before {
	transform: scaleX(-1) rotate(-15deg);
}
.why-section-content li:nth-child(3n):before {
	transform: scaleY(-1) rotate(-15deg);
}
.why-section-content li:not(:last-child) {
	margin: 0 0 20px;
}
/* Why section */

/* Whom section */
.whom-section {
	margin: 0 0 78px;
}
.whom-section .section-title {
	max-width: 350px;
	margin: 0 0 80px;
}
.whom-card {
	margin: 0 0 86px;
	display: flex;
	align-items: center;
}
.whom-card img {
	width: 103px;
	flex: 0 0 auto;
	margin: 0 8px 0 0;
}
.whom-card-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
}
.whom-row {
	justify-content: center;
}
.whom-row > div:nth-child(-n+3) {
	flex: 0 0 26%;
	max-width: 26%;
}
/* Whom section */

/* Before section */
.before-section {
	margin: 0 0 48px;
	overflow: hidden;
}
.before-row {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	margin: 0 0 50px;
}
.before-card {
	height: 362px;
	position: relative;
	flex: 1;
}
.before-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.before-card:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(0, 0, 0, 0.01) 50%, #000 100%);
	z-index: 4;
}
.before-card:nth-child(2) .before-card-title {
	left: auto;
	right: 40px;
}
.before-card:nth-child(2):before {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.01) 50%, #000 100%);
}
.before-card-title {
	position: absolute;
	left: 40px;
	bottom: 50px;
	z-index: 6;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	color: #fff;
	text-transform: uppercase;
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
}
.before-card-title:after {
	content: '';
	display: block;
	width: 2px;
	height: 110px;
	background: #fff;
	margin: 30px 0 0;
}
.before-text {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
	margin: 0 0 80px;
}
.before-buttons-wrap {
	display: flex;
	justify-content: center;
}
.before-buttons-wrap .btn {
	width: 300px;
	max-width: 100%;
}
.before-buttons-wrap .btn:not(:last-child) {
	margin: 0 20px 0 0;
}
.before-section-title-wrap {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 46px;
}
.before-section-title-wrap .section-title {
	max-width: 450px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}
.before-section-container {
	padding: 106px 0 0;
	z-index: -1;
}
.before-section-container img {
	position: absolute;
	top: 0;
	width: 63vw;
	max-width: 897px;
	right: 53%;
}
/* Before section */

/* Payment section */
.payment-section {
	overflow: hidden;
	margin: 0 0 28px;
}
.payment-section-container {
	padding: 200px 0 0;
	z-index: -1;
}
.payment-section-container img {
	position: absolute;
	top: 0;
	left: 49%;
	max-width: 1104px;
	width: 77vw;
}
.payment-section .section-title {
	max-width: 560px;
	margin: 0 0 112px;
}
.payment-card {
	text-align: center;
	margin: 0 0 100px;
}
.payment-card-image-wrap {
	display: inline-flex;
	width: 100px;
	height: 100px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 5px solid #444349;
	margin: 0 0 40px;
}
.payment-card-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
	max-width: 366px;
	margin: 0 auto;
}
/* Payment section */

/* Advantages section */
.advantages-section-container {
	padding: 156px 0 0;
	z-index: -1;
}
.advantages-section-container img {
	position: absolute;
	bottom: -204px;
	right: 74%;
	max-width: 897px;
	width: 63vw;
}
.advantages-section {
	margin: 0 0 136px;
	overflow: hidden;
}
.advantages-section .section-title {
	max-width: 630px;
	margin: 0 0 96px;
}
.advantages-buttons-wrap {
	display: flex;
	justify-content: center;
	margin: 90px 0 0;
}
.advantages-buttons-wrap .btn {
	width: 300px;
	max-width: 100%;
}
.advantages-buttons-wrap .btn:not(:last-child) {
	margin: 0 20px 0 0;
}
.advantages-label {
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
	text-transform: uppercase;
	writing-mode: vertical-lr;
	display: flex;
	align-items: center;
	margin: 0 52px 0 0;
}
.advantages-label:after {
	content: '';
	display: block;
	width: 2px;
	flex: 1;
	background: #444349;
	margin: 20px 0 0;
}
.advantages-card {
	display: flex;
	height: 100%;
}
.advantages-column {
	padding-top: 30px;
	padding-bottom: 30px;
}
.advantages-column:first-child {
	border-right: 2px solid #444349;
}
.advantages-card-text {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
}
.advantages-card-text li {
	display: flex;
	align-items: center;
}
.advantages-card-text li:not(:last-child) {
	margin: 0 0 20px;
}
.advantages-card-text li:before {
	content: '';
	display: inline-flex;
	height: 27px;
	width: 38px;
	flex: 0 0 auto;
	margin: 0 24px 0 0;
	background: url('../img/minus-icon.svg');
}
.advantages-column:first-child li:nth-child(2n):before {
	transform: scaleX(-1);
}
.advantages-column:nth-child(2) .advantages-card-text li:before {
	background: url('../img/done-icon.svg');
}
.advantages-column:nth-child(2) .advantages-card-text {
	padding: 0 0 0 30px;
}
.advantages-column:nth-child(2) .advantages-label {
	margin: 0 0 0 auto;
	padding: 0 0 0 40px;
}
/* Advantages section */

/* Request section */
.request-section {
	overflow: hidden;
}
.request-section-container {
    padding: 136px 0 0;
    z-index: -1;
}
.request-section-container img {
    position: absolute;
    top: 0;
    right: 11%;
    max-width: 1087px;
    width: 76vw;
}

.request-section-title-wrap {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 10px;
}
.request-section-title-wrap .section-title {
	max-width: 392px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}
.request-image-wrap {
	padding: 0 40px 0 0;
	display: flex;
	justify-content: flex-end;
}
.request-image-wrap img {
	box-shadow: -10px 10px 20px rgba(191, 191, 191, 0.5);
	object-fit: cover;
	object-position: center;
	height: 512px;
	max-width: 770px;
	width: 54vw;
}
.request-section-content {
	padding: 0 0 0 30px;
	margin: 84px 0 0;
}
.request-section-text {
	margin: 0 0 86px;
}
.request-section-text p {
	font-size: 18px;
	line-height: 144%;
	text-align: justify;
	color: #444349;
}
.request-section-text strong {
	font-weight: 800;
}
.request-section-text p:not(:last-child) {
	margin: 0 0 26px;
}
/* Request section */

/* Partner section */
.partner-section {
	margin: 0 0 130px;
	overflow: hidden;
}

.partner-section-container {
    padding: 350px 0 0;
    z-index: -1;
}
.partner-section-container img {
    position: absolute;
    top: 0;
    left: 58%;
    max-width: 984px;
    width: 69vw;
}

.partner-section .section-title {
	max-width: 300px;
	margin: 0 0 96px;
}
.partner-card {
	margin: 0 0 110px;
}
.partner-card-image-wrap {
	height: 142px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px;
}
.partner-card-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
	text-align: center;
}
/* Partner section */

/* Reviews section */
.reviews-section-container {
    padding: 76px 0 0;
    z-index: -1;
}
.reviews-section-container img {
    position: absolute;
    top: 0;
    right: 36%;
    max-width: 1104px;
    width: 77vw;
}

.reviews-section {
	padding: 0 0 204px 0;
	overflow: hidden;
}
.reviews-section .section-title {
	max-width: 310px;
	margin: 0 0 46px;
}
.review-card {
	height: 100%;
	box-shadow: 0px 20px 40px rgba(102, 102, 102, 0.5);
}
.review-card-header {
	position: relative;
	height: 340px;
}
.review-card-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.review-card-author {
	position: absolute;
	z-index: 6;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	color: #fff;
	bottom: 20px;
	width: 100%;
	padding: 0 30px;
	text-transform: uppercase;
}
.review-card-header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 50%, #000 100%);
}
.review-card-footer {
	background: #fff;
	padding: 20px 50px 56px 30px;
}
.reviews-slider {
	overflow: visible;
	flex-wrap: nowrap;
	max-width: 1100px;
}
.review-card-date {
	font-weight: 500;
	font-size: 12px;
	line-height: 15px;
	color: #a2a1a4;
	margin: 0 0 20px;
}
.review-card-text {
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	color: #444349;
	position: relative;
	z-index: 4;
}
.review-card-text svg {
	position: absolute;
	top: -10px;
	left: 0;
	width: 32px;
	height: 24px;
	fill: #fcdca3;
	z-index: -1;
}
/* Reviews section */

/* Location section */
.location-section {
	overflow: hidden;
}
.location-section-container {
	padding: 70px 0 0;
	z-index: -1;
}
.location-section-container img {
	position: absolute;
	top: 0;
	left: 35%;
	max-width: 870px;
	width: 61vw;
}
.location-section .section-title {
	margin: 0 0 46px;
}
.gmap-wrap {
	box-shadow: 0px -10px 20px rgba(191, 191, 191, 0.5);
}
.gmap-inner {
	position: relative;
	height: 576px;
	background: #e3e3e3;
	overflow: hidden;
}
.gmap {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 4;
}
.gmap-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	object-fit: cover;
	object-position: center;
	filter: blur(4px);
	transition: opacity .5s ease;
}
.gmap-loaded .gmap-placeholder {
	opacity: 0;
	pointer-events: none;
}
/* Location section */

/* Footer */
.footer {
	background: #444349;
	padding: 44px 0 30px;
}
.footer-contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}
.footer-contacts a:not(:last-child) {
	margin: 0 0 6px;
}
.footer-copyright {
	font-weight: 600;
	font-size: 10px;
	line-height: 12px;
	text-align: center;
	color: #7c7b7f;
}
.footer-info {
	display: flex;
	align-items: flex-start;
	max-width: 484px;
}
.footer-logo {
	width: 104px;
	flex: 0 0 104px;
	margin: 0 50px 0 0;
}
.footer-title {
	font-weight: 800;
	font-size: 22px;
	line-height: 27px;
	color: #fff;
	text-transform: uppercase;
}
.footer-license {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	color: #fff;
}
.footer .social-list {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.footer .social-list:before {
	content: '';
	flex: 1;
	display: block;
	height: 2px;
	background: #fff;
	width: 100%;
	margin: 0 10px 0 0;
}
.footer-row {
	margin-bottom: 24px;
}
/* Footer */