/*!
Theme Name: Angel
Theme URI: http://underscores.me/
Author: Ihor Tryhuk
Author URI: https://tryhuk.pp.ua/
Version: 1.0.0
Text Domain: angelritual
*/

@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Light.woff') format('woff');
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Regular.woff') format('woff');
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Medium.woff') format('woff');
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: 'Ubuntu';
	src: url('fonts/Ubuntu-Bold.woff') format('woff');
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: 'CormorantUnicase';
	src: url('fonts/CormorantUnicase-SemiBold.woff') format('woff');
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: 'CormorantUnicase';
	src: url('fonts/CormorantUnicase-Bold.woff') format('woff');
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: 'CormorantGaramond';
	src: url('fonts/CormorantGaramond-Medium.woff') format('woff');
	font-weight: 500;
	font-display: swap;
}

:root {
	--container: 1140px;
	--gap: 30px;

	--text-size: 18px;
	--text-size-md: 20px;
	--text-size-sm: 16px;
	--text-size-esm: 14px;
	--h1-size: 48px;
	--h2-size: 42px;
	--h3-size: 36px;
	--h4-size: 32px;
	--h5-size: 28px;
	--h6-size: 24px;

	--border: #DEDDE0;
	--dark: #251A31;
	--fiolet: #694B8E;
	--fiolet-dark: #412267;
	--fiolet-light: #A678DF;
	--yellow-light: #FFF2D1;
	--grey: #898989;
	--white: #FFFFFF;
}

*, ::after, ::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 300;
	font-family: 'Ubuntu', sans-serif;
	color: var(--dark);
	line-height: 1.39;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
/* PART 1 - Before Lazy Load */
img[data-lazyloaded]{
   opacity: 0;
}
/* PART 2 - Upon Lazy Load */
img.litespeed-loaded{
	-webkit-transition: opacity .5s linear 0.2s;
	-moz-transition: opacity .5s linear 0.2s;
	transition: opacity .5s linear 0.2s;
	opacity: 1;
}
.bg-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
a {
	color: var(--dark);
	text-decoration: none;
	transition: .25s;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Cormorant Unicase', serif;
	font-family: 'CormorantUnicase';
	margin: 0 0 20px;
	font-weight: 600;
	line-height: 1.15;
}
h1 {
	font-size: var(--h1-size);
}
h2 {
	font-size: var(--h2-size);
}
h3 {
	font-size: var(--h3-size);
}
h4 {
	font-size: var(--h4-size);
}
h5 {
	font-size: var(--h5-size);
}
h6 {
	font-size: var(--h6-size);
}
p, ul, ol, blockquote, .wp-caption, gallery {
	margin: 0 0 20px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child, .wp-caption:last-child, gallery:last-child {
	margin-bottom: 0;
}
strong {
	font-weight: 700;
}
.form-fields {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px -20px;
}
.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 5px;
	margin-bottom: 20px;
}
.form-field-mb {
	margin-bottom: 50px;
}
.form-field-33 {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-label {
	display: flex;
	align-items: center;
	font-size: var(--text-size-sm);
	font-weight: 500;
	line-height: 1.5;
	color: var(--fiolet);
	margin-bottom: 15px;
}
.form-field-label span {
	flex: 0 0 24px;
	max-width: 24px;
	height: 24px;
	background: var(--fiolet);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: var(--text-size-esm);
	font-weight: 700;
	line-height: 1;
	margin-right: 10px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="date"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	width: 100%;
	background: #F0F0F0;
	border-radius: 5px;
	font-size: var(--text-size-sm);
	font-weight: 300;
	font-family: 'Ubuntu', sans-serif;
	line-height: 1.5;
	padding: 14.5px 24px;
	color: var(--dark);
	outline: none;
	border: 1px solid #F0F0F0;
}
textarea {
	height: 80px;
}
.wpcf7-radio {
	position: relative;
	display: block;
}
.wpcf7-radio .wpcf7-list-item {
	display: block;
	margin: 0 0 15px
}
.wpcf7-radio .wpcf7-list-item:last-child {
	margin-bottom: 0;
}
.wpcf7-list-item-label {
	transition: .25s;
}
.wpcf7-radio .wpcf7-list-item:hover label {
	color: var(--fiolet-light);
	cursor: pointer;
}
button,
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}
input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: rgba(37, 26, 49, .1);
	border-radius: 3px;
	width: 24px;
	height: 24px;
	outline: 0;
	padding: 0px;
	margin: -3px 15px 0 0;
	position: relative;
	cursor: pointer;
}
input[type=radio]:checked:after {
	content: "";
	width: 12px;
	height: 12px;
	display: block;
	position: absolute;
	top: 6px;
	left: 6px;
	background: var(--fiolet-light);
	border-radius: 2px;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	font-size: var(--text-size-esm);
	display: block;
	margin-top: 5px;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	font-size: var(--text-size-sm);
	text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
	display: none !important;
}

.form-field-contacts {
/* 	display: flex;
	align-items: center;
	justify-content: space-between; */
}
.form-field-contacts .wpcf7-radio {
	display: flex;
	align-items: center;
}
.form-field-contacts .wpcf7-radio {
    flex-wrap: wrap;
}
.form-field-contacts .wpcf7-list-item {
	margin: 0 10px 0 0;
}
.form-field-contacts .wpcf7-list-item:last-child {
	margin-right: 0;
}
.form-field-contacts .form-field-label {
/* 	margin-bottom: 0; */
	flex: auto;
}
.form-field-contacts .wpcf7-list-item-label {
	background: none;
    outline: 1px solid #F0E3FF;
    border: 8px solid #fff;
    border-radius: 2px;
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
	cursor:pointer
}
.form-field-contacts input[type=radio] {
	background: none;
	border: 1px solid #F0E3FF;
	border-radius: 10px;
	width: 55px;
	height: 55px;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	display:none;
}
.form-field-contacts input[type=radio]:checked,
.form-field-contacts input[type=radio]:checked ~ .wpcf7-list-item-label {
	background: rgba(105, 75, 142, 0.15);
	border: 8px solid #fff;
	color: var(--fiolet);
}
.form-field-contacts input[type=radio]:before {
	content: '';
	flex: 0 0 39px;
	max-width: 39px;
	height: 39px;
	border-radius: 2px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.form-field-contacts input[value=Viber]:before {
	background-image: url(images/viber.svg);
}
.form-field-contacts input[value=Telegram]:before {
	background-image: url(images/telegram.svg);
}
.form-field-contacts input[value=WhatsApp]:before {
	background-image: url(images/whatsapp.svg);
}
.form-field-contacts input[type=radio]:after {
	display: none;
}
.form-field-info {
	font-size: var(--text-size-esm);
	line-height: 1.42;
	color: var(--fiolet);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 30px;
	font-weight: 600;
	text-align: center;
}
.form-field-info strong {
    font-weight: 600;
}
.form-field-button {
    text-align: center;
}


.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}


.section {
	position: relative;
	padding-top: 75px;
	padding-bottom: 75px;
	z-index: 1;
}
.pt-0 {
	padding-top: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.d-none {
	display: none !important;
}
.heading {
	position: relative;
	margin-bottom: 50px;
	font-size: var(--text-size-md);
	line-height: 1.5;
}
.heading h2 {
	font-size: var(--h1-size);
	margin-bottom: 15px;
	line-height: 1.14;
}
.heading h2:last-child {
	margin-bottom: 0;
}
.heading p {
	max-width: 100%;
	color: var(--grey);
}


.btn {
	position: relative;
	display: inline-block;
	text-align: center;
	font-size: var(--text-size);
	font-weight: 400;
	line-height: 1.5;
	padding: 21px 62px;
	border-radius: 0;
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 1;
	transition: .25s;
}
.btn-sm {
	padding: 21px 58px;
	font-size: var(--text-size-sm);
}
.btn:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	transition: .25s;
}
.btn:after {
	content: '';
	position: absolute;
	width: calc(100% - 14px);
	height: calc(100% - 14px);
	top: 7px;
	left: 7px;
	z-index: -1;
	transition: .25s;
}
.btn-primary {
	color: var(--white);
}
.btn-primary:before {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12.5px);
}
.btn-primary:after {
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: var(--fiolet);
}
.btn-primary:hover:after {
	background: var(--fiolet-light);
}
.btn-secondary {
	color: var(--white);
}
.btn-secondary:before {
	background: rgba(36, 26, 49, 0.10);;
	backdrop-filter: blur(12.5px);
}
.btn-secondary:after {
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: var(--fiolet);
}
.btn-secondary:hover:after {
	background: var(--fiolet-light);
}


.owl-nav {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9;
}
.owl-nav:before {
	content: '';
	position: absolute;
	width: 60px;
	height: 100%;
	background: rgba(37, 26, 49, .35);
	top: 0;
	left: 0;
	z-index: -1;
}
.owl-nav:after {
	content: '';
	position: absolute;
	width: 60px;
	height: 100%;
	background: rgba(37, 26, 49, .35);
	top: 0;
	right: 0;
	z-index: -1;
}
.owl-nav button {
	position: absolute;
	width: 50px;
	height: 50px;
	top: calc(50% - 25px);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-right.svg);
	mask-image: url(images/arrow-right.svg);
	background-color: var(--fiolet-dark) !important;
	transition: .25s;
	z-index: 1;
}
.owl-nav button.owl-prev {
	left: 35px;
	transform: scale(-1, 1);
}
.owl-nav button.owl-next {
	right: 35px;
}
.owl-nav button:hover {
	background-color: var(--fiolet-light) !important;
}

.owl-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
	z-index: 2;
}
.owl-dots button {
	flex: 0 0 20px;
	max-width: 20px;
	height: 20px;
	border-radius: 0px;
	margin-right: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border) !important;
	transition: .25s;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button.active {
	background: rgba(105, 75, 142, 0.20) !important;
	border-color: rgba(105, 75, 142, 0.20) !important;
}
.owl-dots button:before {
	content: '';
	flex: 0 0 10px;
	max-width: 10px;
	height: 10px;
	background: #E1DBE8;
	transition: .25s;
}
.owl-dots button:hover:before,
.owl-dots button.active:before {
	background: var(--fiolet);
}


.soc-links {
	position: relative;
	display: flex;
	align-items: center;
}
.soc-links-label {
	flex: 0 0 120px;
	max-width: 120px;
	margin-right: 20px;
	font-size: var(--text-size-esm);
	font-weight: 400;
	line-height: 1.42;
	color: var(--white);
	text-align: right;
}
.soc-links ul {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.soc-links ul li {
	position: relative;
	margin-right: 10px;
}
.soc-links ul li:last-child {
	margin-right: 0;
}
.soc-links ul li a {
	position: relative;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .1);
	z-index: 1;
}
.soc-links ul li a:before {
	content: '';
	position: absolute;
	background: var(--fiolet);
	border: 1px solid rgba(255, 255, 255, .1);
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	top: 5px;
	left: 5px;
	z-index: -1;
	transition: .25s;
}
.soc-links ul li a:hover:before {
	background: var(--fiolet-light);
}
.soc-links ul li a svg {
	flex: 0 0 19px;
	max-width: 19px;
	height: 19px;
}
.soc-links ul li a svg path {
	fill: var(--white);
}
.soc-mobile {
	display: none;
}
@media (max-width: 991px) {
	.soc-mobile {
		display: block;
	}
	.soc-desktop {
		display: none;
	}
}


@media (min-width:992px) {
	.hide-lg {
		display: none !important;
	}
}


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
	/*transition: opacity .15s linear;*/
}
body.modal-open {
	/*overflow: hidden;*/
	/**padding-right: 17px;*/
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 650px;
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
	/*transition: transform .3s ease-out;*/
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--white);
	background-clip: padding-box;
	outline: 0;
	border-radius: 0px;
	overflow: hidden;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: var(--dark);
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .9;
	z-index: 1049;
}
.modal-header {
	position: relative;
	padding: 30px 50px;
	background: #F4F3F4;
	z-index: 1;
}
.modal-title {
	font-family: 'CormorantGaramond';
	font-weight: 500;
	font-size: calc(var(--h3-size) / 1.2);
	margin-bottom: 0px;
	line-height: 1.16;
}
.modal-title span {
	display: block;
	font-size: var(--text-size-sm);
	color: var(--fiolet);
}
.modal-close {
	position: absolute;
	-webkit-mask-size: 16px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/close.svg);
	mask-image: url(images/close.svg);
	background-color: var(--dark);
	width: 36px;
	height: 36px;
	top: 8px;
	right: 8px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .25s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--fiolet-light);
}
.modal-body {
	position: relative;
	padding: 50px;
}



.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}
.wp-caption-text {
	text-align: center;
}
.gallery {
	display: grid;
	grid-gap: var(--gap);
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}
.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: var(--gap);
	margin-bottom: var(--gap);
}
.alignright {
	float: right;
	margin-left: var(--gap);
	margin-bottom: var(--gap);
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--gap);
}


/* General CSS */
.plwao-hide{display: none;}
.plwao-overflow{overflow: hidden;}
.plwao-loader-wrap, .plwao-loader-wrap *{box-sizing: border-box;}
.plwao-loader-wrap{background:var(--dark);position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 99999; overflow: auto; display: flex; justify-content: center; align-items: center; -ms-flex-align:start; display: -webkit-box; -webkit-box-pack: center; -webkit-box-align: center;}
.plwao-loader-inr{text-align: center; margin: auto 0; padding: 40px;}
.plwao-loader-wrap .plwao-img{display: inline-block; animation: pulse 2s infinite;width: 100px}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	70% {
		transform: scale(1.5);
	}

	100% {
		transform: scale(1);
	}
}


.wrapper {
	position: relative;
	z-index: 1;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	transition: .25s;
}
.header.sticky {
	background: var(--dark);
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 95px;
}
.header-logo {
	display: flex;
	align-items: center;
	margin-right: var(--gap);
}
.header-logo img {
	max-height: 45px;
}
.header-logo-title {
	margin-left: 8px;
	font-family: 'Cormorant Unicase', serif;
	font-family: 'CormorantUnicase';
	font-weight: 700;
	font-size: 32px;
	color: var(--white);
}
.header-logo-title a {
	color: var(--white);
}
.header-logo-text {
	position: relative;
	max-width: 175px;
	margin-left: 21px;
	padding-left: 21px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.28;
	color: var(--white);
	z-index: 1;
}
.header-logo-text:before {
	content: '';
	background: var(--white);
	opacity: 1;
	position: absolute;
	width: 1px;
	min-height: 45px;
	height: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.header-phone {
	position: relative;
	margin-right: var(--gap);
}
.header-phone span {
	color: var(--fiolet-light);
	font-size: var(--text-size-esm);
	line-height: 1.42;
	display: block;
}
.header-phone p {
	font-size: var(--text-size-md);
	font-weight: 500;
	line-height: 1.25;
	color: var(--white);
}
.header-phone p a {
	color: var(--white);
}
.header-phone p a:hover {
	color: var(--fiolet-light);
}
.header-toggle {
	display: none;
	align-items: center;
	justify-content: center;
}
.header-toggle button {
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	background-color: var(--white);
	flex: 0 0 36px;
	max-width: 36px;
	width: 36px;
	height: 36px;
	border: none;
	outline: none;
	padding: 0;
	border-radius: 0;
	cursor: pointer;
	transition: .25s;
}
.header-toggle button:hover {
	background-color: var(--fiolet-light);
}


.navigation {
	position: absolute;
	top: 95px;
	left: 0;
	width: 100%;
	border-top: 1px solid rgba(255,255,255,.15);
	border-bottom: 1px solid rgba(255,255,255,.15);
	z-index: 98;
}
.main-menu {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.main-menu li {
	position: relative;
	flex: auto;
	max-width: 100%;
	z-index: 1;
}
.main-menu li:hover {
	z-index: 2;
}
.main-menu li:after,
.main-menu li:first-child:before {
	content: '';
	width: 1px;
	height: 35px;
	background: var(--white);
	opacity: .15;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: -1;
}
.main-menu li:first-child:before {
	right: auto;
	left: 0;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu li a {
	position: relative;
	font-weight: 400;
	line-height: 1.56;
	color: var(--white);
	font-size: var(--text-size-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 63px;
	z-index: 1;
}
.main-menu li a:before {
	content: '';
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(12.5px);
	position: absolute;
	width: calc(100% + 2px);
	height: 100%;
	top: 0;
	left: -1px;
	opacity: 0;
	transition: .25s;
	z-index: -1;
}
.main-menu li a:hover:before {
	opacity: 1;
}
.main-menu li a:active {
	color: var(--fiolet-light);
}


.main {
	overflow: hidden;
}

.hero-section {
	padding-top: 235px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 840px;
	height: 100vh;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-bg:after {
	content: '';
	background: radial-gradient(50% 50% at 50% 50%, rgba(36, 30, 44, 0.50) 0%, rgba(36, 30, 44, 0.75) 43.23%, rgba(36, 30, 44, 0.90) 73.96%, #241E2C 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	opacity:0.75;
}
.hero-section .container {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.hero-wrap {
	flex: auto;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero-heading {
	font-size: calc(var(--h1-size) * 1.5625);
	font-weight: 700;
	line-height: 1.2;
	color: var(--yellow-light);
	margin-bottom: 9px;
}
.hero-content {
	font-size: var(--h6-size);
	line-height: 1.3;
	color: var(--white);
	margin-bottom: 55px;
}
.hero-content:last-child {
	margin-bottom: 0;
}
.hero-content p {
    margin-bottom: 38px;
}
.hero-content p:last-child {
	margin-bottom: 0;
}
.hero-content p u {
	text-decoration-color: rgba(255,255,255,.25);
	text-underline-offset: 8px;
}
.hero-bottom {
	position: relative;
	display: flex;
	align-items: flex-start;
}
.hero-button {
	margin-right: 45px;
}
.hero-caption {
	display: flex;
	align-items: center;
	line-height: 1.25;
	color: var(--white);
	font-weight: 400;
	font-size: var(--text-size-sm);
	min-height: 69px;
}
.hero-caption span {
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	margin-right: 18px;
}
.hero-button-label {
	margin-top: 6px;
	display: block;
	text-align: center;
	font-size: calc(var(--text-size) / 1.5);
	color: var(--yellow-light);
	line-height: 1.66;
	font-weight: 500;
	text-transform: uppercase;
}
.hero-additional-content {
	position: relative;
	margin-top: 50px;
	border-left: 3px solid var(--yellow-light);
	padding: 15px 30px;
	font-size: var(--text-size-esm);
	font-weight: 400;
	line-height: 1.42;
	color: var(--white);
	max-width: 310px;
	margin-left: auto;
	z-index: 1;
}
.hero-additional-content:before {
	content: '';
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 101.11%);
	backdrop-filter: blur(12.5px);
	position: absolute;
	width: calc(100% + 140px);
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-additional-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.hero-additional-content ul li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 23px;
}
.hero-additional-content ul li:last-child {
	margin-bottom: 0;
}
.hero-additional-content ul li:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
	transform-origin: left bottom;
	background: var(--yellow-light);
	z-index: 1;
}


.advanteges-wrap {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
}
.advanteges-heading {
	flex: 0 0 50%;
	max-width: 50%;
	font-family: 'Cormorant Garamond', serif;
	font-family: 'CormorantGaramond';
	font-size: calc(var(--h3-size) / 1.2);
	font-weight: 500;
	line-height: 1.33;
	margin-bottom: 50px;
}
.advanteges-caption {
	flex: 0 0 50%;
	max-width: 50%;
	text-align: right;
	margin-bottom: 50px;
}
.advanteges-caption span {
	position: relative;
	display: inline-block;
	font-family: 'Cormorant Unicase', serif;
	font-family: 'CormorantUnicase';
	font-size: var(--h6-size);
	font-weight: 600;
	color: var(--fiolet);
	line-height: 1.66;
	z-index: 1;
}
.advanteges-caption span:after {
	content: '';
	position: absolute;
	width: calc(100% + 16px + (100vw - var(--container)) / 2);
	height: 1px;
	background: var(--dark);
	opacity: .15;
	left: -16px;
	bottom: 0;
	z-index: 1;
}
.advanteges-items {
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -30px;
}
.advanteges-item {
	flex: 0 0 calc((100% / 3) - (2 * 75px / 3));
	max-width: calc((100% / 3) - (2 * 75px / 3));
	margin-right: 75px;
	margin-bottom: 30px;
}
.advanteges-item:nth-child(3n) {
	margin-right: 0;
}
.advanteges-item__wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.advanteges-item__wrap span {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px 0px;
	background: rgba(166, 120, 223, 0.10);
	flex: 0 0 80px;
	max-width: 80px;
	width: 80px;
	height: 80px;
	margin-right: 25px;
}
.advanteges-item__wrap span img {
	max-height: 40px;
	max-width: 40px;
}
.advanteges-item__wrap p {
	font-size: var(--text-size-sm);
	font-weight: 400;
	line-height: 1.56;
}



.specialOffer-heading {
	position: relative;
	text-align: center;
	margin-bottom: 20px;
	font-size: calc(var(--h1-size) * 1.041);
	font-family: 'Cormorant Unicase', serif;
	font-family: 'CormorantUnicase';
	font-weight: 600;
	line-height: 1.2;
	z-index: 1;
}
.specialOffer-heading span {
	position: relative;
	z-index: 1;
}
.specialOffer-heading span:before {
	content: '';
	position: absolute;
	width: 100vw;
	height: 1px;
	top: 50%;
	right: calc(100% + 50px);
	background: var(--border);
	transform: translateY(-50%);
	z-index: -1;
}
.specialOffer-wrap {
	position: relative;
	padding: 40px 0;
	display: flex;
	z-index: 1;
}
.specialOffer-wrap:before {
	content: '';
	background: #F7F6F7;
	position: absolute;
	width: 100vw;
	height: 100%;
	top: 0;
	left: calc((100vw - var(--container)) / -2);
	z-index: -1;
}
.specialOffer-image {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.specialOffer-image span {
	position: absolute;
	width: 100%;
	height: 358px;
	bottom: calc(-75px - 40px);
	left: 0;
	z-index: 1;
}
.specialOffer-image img{
    max-width: 400px;
    right: -50px;
    bottom: -50px;
    position: relative;
}
.specialOffer-content {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	padding: 0 35px;
	font-size: var(--text-size-md);
	font-weight: 400;
}
.specialOffer-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.specialOffer-content ul li {
	position: relative;
	margin-bottom: 15px;
	padding-left: 39px;
	line-height: 1.2;
}
.specialOffer-content ul li:last-child {
	margin-bottom: 0;
}
.specialOffer-content ul li:before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0;
	width: 24px;
	height: 24px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/checked.svg);
	mask-image: url(images/checked.svg);
	background-color: var(--fiolet-light);
	z-index: 1;
}
.specialOffer-button {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	text-align: right;
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.documents-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.documents-image {
	position: relative;
    flex: 0 0 42%;
    max-width: 42%;
    padding: 55px 0;
    z-index: 1;
    order: 1;
}
.documents-image:before {
	content: '';
	border: 1px solid var(--border);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: -55px;
	z-index: -1;
}
.documents-image img {
	width: 100%;
}
.documents-info {
	flex: 0 0 58%;
	max-width: 58%;
	padding-right: 100px;
}
.documents-wrap .heading {
	margin-bottom: 60px;
}
.documents-content {
    position: relative;
    padding-right: 0;
}
.documents-content h3 {
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	font-size: var(--h6-size);
	line-height: 1.25;
	margin-bottom: 40px;
}
.documents-content h3 span {
	position: relative;
	display: inline-block;
}
.documents-content h3 span:after {
	content: '';
	position: absolute;
	width: calc(100% + 100px + 16px);
	height: 1px;
	bottom: -10px;
	right: -16px;
	background: var(--border);
	z-index: -1;
}
.documents-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.documents-content ul li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 25px;
}
.documents-content ul li:last-child {
	margin-bottom: 0;
}
.documents-content ul li:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	transform-origin: left bottom;
	background: var(--fiolet-light);
	z-index: 1;
}



.banner-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.banner-bg:after {
	content: '';
	background: radial-gradient(50% 50% at 50% 50%, rgba(36, 30, 44, 0.50) 0%, rgba(36, 30, 44, 0.75) 43.23%, rgba(36, 30, 44, 0.90) 73.96%, #241E2C 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	opacity:0.75;
}
.banner-wrap {
	max-width: 840px;
	margin: 0 auto;
}
.banner-section .info-item__content{
	padding: 0;
    max-width: 432px;
    margin: 0 auto;
    color: #fff;
    padding-left: 124px;
    box-sizing: content-box;
}
.banner-label {
	position: relative;
	text-align: center;
	margin-bottom: 25px;
	font-size: var(--h6-size);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.banner-label span {
	position: relative;
	max-width: calc(100% - 100px);
	z-index: 1;
}
.banner-label:before {
	content: '';
	flex: auto;
	max-width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.20) 100%);
	margin-right: 32px;
}
.banner-label:after {
	content: '';
	flex: auto;
	max-width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.00) 100%);
	margin-left: 32px;
}
.banner-content {
	position: relative;
	color: var(--white);
	margin-bottom: 25px;
	font-size: var(--text-size-md);
}
.banner-content:last-child {
	margin-bottom: 0;
}
.banner-content h2 {
	font-size: calc(var(--h1-size) * 1.041);
	line-height: 1.2;
	margin-bottom: 25px;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}
.banner-content h2:last-child {
	margin-bottom: 0;
}
.banner-content h2 strong {
	display: block;
	position: relative;
	z-index: 1;
}
.banner-content h2 strong:before {
	content: '';
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.05) 24.63%, rgba(255, 255, 255, 0.20) 52.74%, rgba(255, 255, 255, 0.05) 77.01%, rgba(255, 255, 255, 0.00) 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 3px;
	left: 0;
	z-index: -1;
}
.banner-button {
	text-align: center;
	margin-top: 55px;
}


.info-section .heading {
	max-width: 100%;
}
.info-item__wrap {
	display: flex;
	flex-wrap: wrap;
}
.info-item:nth-child(2n) .info-item__wrap {
	flex-direction: row-reverse;
}
.info-item__images {
	position: relative;
	flex: 0 0 42%;
	max-width: 42%;
	padding: 55px 0;
	z-index: 1;
}
.info-item__images:before {
	content: '';
	border: 1px solid var(--border);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -55px;
	z-index: -1;
}
.info-item:nth-child(2n) .info-item__images:before {
	left: auto;
	right: -55px;
}
.owl-infoImages,
.owl-infoImages.owl-carousel .owl-stage-outer,
.owl-infoImages.owl-carousel .owl-stage,
.owl-infoImages.owl-carousel.owl-drag .owl-item,
.info-item__image {
	height: 100% !important;
}
.owl-infoImages .owl-dots {
	position: absolute;
	width: 100%;
	top: calc(100% + 15px);
	left: 0;
	margin: 0;
}
.owl-infoImages .owl-nav button {
	background-color: var(--white) !important;
}
.owl-infoImages .owl-nav button:hover {
	opacity: .8;
}
.info-item__info {
	flex: 0 0 58%;
	max-width: 58%;
	padding-left: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.info-item:nth-child(2n) .info-item__info {
	padding-left: 0;
	padding-right: 100px;
}
.info-item__content {
	position: relative;
	padding-right: 100px;
	padding-top: calc(75px + 55px);
	padding-bottom: calc(75px + 55px);
}
.info-item__content p{
	margin-top:20px;
}
.info-item:nth-child(2n) .info-item__content {
	padding-right: 0;
	padding-left: 100px;
	text-align: right;
}
.info-item__content h3 {
	font-family: 'Ubuntu', sans-serif;
	font-weight: 400;
	font-size: var(--h6-size);
	line-height: 1.25;
	margin-bottom: 40px;
}
.info-item__content h3 span {
	position: relative;
	display: inline-block;
}
.info-item__content h3 span:after {
	content: '';
	position: absolute;
	width: calc(100% + 100px + 16px);
	height: 1px;
	bottom: -10px;
	right: -16px;
	background: var(--border);
	z-index: -1;
}
.info-item:nth-child(2n) .info-item__content h3 span:after {
	right: auto;
	left: -16px;
}
.info-item__content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.info-item__content ul li {
	position: relative;
	margin-bottom: 20px;
	padding-left: 25px;
}
.info-item:nth-child(2n) .info-item__content ul li {
	padding-left: 0;
	padding-right: 25px;
}
.info-item__content ul li:last-child {
	margin-bottom: 0;
}
.info-item__content ul li:before {
	content: '';
	position: absolute;
	top: 3px;
	left: 0;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	transform-origin: left bottom;
	background: var(--fiolet-light);
	z-index: 1;
}
.info-item:nth-child(2n) .info-item__content ul li:before {
	left: auto;
	right: 0;
}



.products-section:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 330px;
	background: #F7F7F6;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.products-section .heading {
	text-align: center;
}

.products-item {
	position: relative;
	padding: 20px;
	z-index: 1;
}
.products-item:before {
	content: '';
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	top: 1px;
	left: 1px;
	position: absolute;
	border: 1px solid var(--border);
}
.products-item__wrap {
	position: relative;
	background: var(--white);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10);
	padding: 30px 23px 23px;
	z-index: 1;
}
.products-item__image {
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
.products-item__image img {
	max-height: 320px;
	width: auto !important;
}
.products-item__button .btn {
	width: 100%;
}
.owl-products {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.owl-products .owl-stage-outer {
	flex: 0 0 100%;
	max-width: 100%;
	order: 1;
}
.owl-products .owl-dots {
	justify-content: flex-start;
	order: 2;
	flex: 0 0 calc(100% - 140px);
	max-width: calc(100% - 140px);
}
.owl-products .owl-nav {
	position: relative;
	flex: 0 0 140px;
	max-width: 140px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: auto;
	height: auto;
	margin-top: 25px;
	order: 3;
}
.owl-products .owl-nav:before,
.owl-products .owl-nav:after {
	display: none;
}
.owl-products .owl-nav button {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
}



.steps-section .heading {
	text-align: center;
}
.steps-items {
	position: relative;
	height: 275px;
	z-index: 1;
}
.steps-items:before {
	content: '';
	position: absolute;
	background: var(--border);
	width: 100vw;
	height: 1px;
	top: 127px;
	left: calc((100vw - var(--container)) / -2);
	z-index: -1;
}
.steps-item {
	position: absolute;
	text-align: center;
	width: 250px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.steps-item:nth-child(1) {
	bottom: calc(100% - 127px);
}
.steps-item:nth-child(2) {
	top: calc(127px);
	left: 174px;
}
.steps-item:nth-child(3) {
	bottom: calc(100% - 127px);
	left: calc(250px + 106px);
}
.steps-item:nth-child(4) {
	top: calc(127px);
	left: calc(250px + 106px + 174px);
}
.steps-item:nth-child(5) {
	bottom: calc(100% - 127px);
	right: 174px;
}
.steps-item:nth-child(6) {
	top: calc(127px);
	right: 0;
}
.steps-item:nth-child(2n+1) {
	flex-direction: column-reverse;
}
.steps-item__dot {
	position: relative;
	display: block;
	width: 15px;
	height: 15px;
	margin: -7.5px auto 15px;
	border: 1px solid var(--border);
	border-radius: 50%;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.steps-item:nth-child(2n+1) .steps-item__dot {
	margin-top: 15px;
	margin-bottom: -7.5px;
}
.steps-item__dot:before {
	content: '';
	flex: 0 0 5px;
	max-width: 5px;
	height: 5px;
	background: var(--fiolet);
	border-radius: 50%;
}
.steps-item__number {
	font-family: 'CormorantUnicase';
	font-size: var(--h2-size);
	color: var(--fiolet);
	font-weight: 700;
	display: block;
	margin-bottom: 10px;
	line-height: 1;
}
.steps-item:nth-child(2n+1) .steps-item__number {
	margin-bottom: 0;
	margin-top: 10px;
}
.steps-item p {
	font-size: var(--text-size-sm);
	line-height: 1.25;
	color: var(--grey);
}

.steps-content {
	position: relative;
	max-width: 980px;
	margin: 50px auto 0;
	line-height: 1.66;
	font-weight: 400;
	z-index: 1;
}
.steps-content h3 {
	margin-bottom: 25px;
	font-family: 'Ubuntu';
	font-size: var(--h6-size);
	font-weight: 300;
	line-height: 1.25;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.steps-content h3 span {
	position: relative;
	max-width: calc(100% - 100px);
	z-index: 1;
}
.steps-content h3:before {
	content: '';
	flex: auto;
	max-width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(36, 26, 49, 0.00) 0%, rgba(36, 26, 49, 0.20) 100%);
	margin-right: 30px;
}
.steps-content h3:after {
	content: '';
	flex: auto;
	max-width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(36, 26, 49, 0.20) 0%, rgba(36, 26, 49, 0.00) 100%);
	margin-left: 30px;
}
.steps-content p {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}





.delivery-section .heading {
	text-align: center;
}
.delivery-section .heading p {
	margin-left: auto;
	margin-right: auto;
}
.delivery-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.delivery-item {
	position: relative;
	flex: 0 0 25%;
	max-width: 25%;
	margin-bottom: var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.delivery-item__image {
	position: relative;
	border-radius: 15px 0px;
	background: rgba(166, 120, 223, 0.10);
	width: 80px;
	height: 80px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.delivery-item__image img {
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
}
.delivery-item p {
	text-align: center;
	font-size: var(--text-size-sm);
	font-weight: 400;
	line-height: 1.56;
}

.delivery-banner {
	position: relative;
	margin-top: 75px;
	padding-top: 40px;
	padding-left: 16%;
	padding-right: 16%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}
.delivery-banner:before {
	content: '';
	position: absolute;
	background: linear-gradient(90deg, rgba(36, 26, 49, 0.00) 0%, rgba(36, 26, 49, 0.20) 50%, rgba(36, 26, 49, 0.00) 100%);
	width: calc(100% - 100px);
	height: 1px;
	left: 50px;
	top: 0;
	z-index: 1;
}
.delivery-banner-text {
	max-width: 390px;
	font-size: var(--text-size-md);
	line-height: 1.5;
	margin-bottom: 0;
}




.prices-section:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 66%;
	top: 0;
	left: 0;
	background: #F7F7F6;
	z-index: -1;
}
.prices-section .heading {
	text-align: center;
}
.prices-items {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
}
.prices-item {
	position: relative;
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin-bottom: var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.prices-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	border: 1px solid #F5F5F5;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10);
	padding: 40px 40px 30px;
	display: flex;
	flex-direction: column;
}
.prices-item__title {
	font-size: calc(var(--h3-size) / 1.2);
	text-align: center;
	color: var(--fiolet);
	line-height: 1.33;
	margin-bottom: 0;
}
.prices-item__price {
	font-size: var(--h5-size);
	text-align: center;
	font-family: 'CormorantUnicase';
	font-weight: 600;
	line-height: 1.42;
	margin-bottom: 15px;
}
.products-item__info {
	flex: auto;
	max-height: 100%;
}
.prices-item__content {
	position: relative;
	margin-bottom: 15px;
	font-size: var(--text-size-sm);
}
.prices-item__content:before,
.prices-item__content:after {
	content: '';
	background: url(images/sep-line.svg) no-repeat center;
	background-size: contain;
	width: 100%;
	height: 25px;
	display: block;
	margin: 0 auto;
}
.prices-item__content:before {
	margin-bottom: 25px;
}
.prices-item__content:after {
	margin-top: 25px;
}
.prices-item__content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.prices-item__content ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 25px;
}
.prices-item__content ul li:last-child {
	margin-bottom: 0;
}
.prices-item__content ul li:before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	transform-origin: left bottom;
	background: var(--fiolet-light);
	z-index: 1;
}
.prices-item__additiona-content {
	font-size: var(--text-size-esm);
	margin-bottom: 15px;
}
.prices-item__additiona-content p {
	margin-bottom: 8px;
}
.prices-item__additiona-content p:last-child {
	margin-bottom: 0;
}
.prices-item__images {
	position: relative;
	width: calc(100% + 20px);
	margin-left: -10px;
	margin-bottom: 15px;
}
.prices-item__image {
	height: 180px;
}
.prices-item__button {
	position: relative;
	width: calc(100% + 20px);
	margin-left: -10px;
}
.prices-item__button .btn {
	width: 100%;
}
.prices-item__label {
	position: relative;
	margin-top: 10px;
	text-align: center;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .5px;
	line-height: 2;
	text-transform: uppercase;
	min-height: 20px;
}
.prices-content {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin-top: 0;
    font-size: var(--text-size-esm);
    line-height: 1.42;
    text-align: center;
    font-size: 12px;
}
.owl-priceImages .owl-nav:before,
.owl-priceImages .owl-nav:after {
	width: 40px;
	background: rgba(255, 255, 255, .02);
}
.owl-priceImages .owl-nav button {
	width: 40px;
	height: 40px;
	top: calc(50% - 20px);
	background: var(--white) !important;
}
.owl-priceImages .owl-nav button:hover {
	opacity: .8;
}
.owl-priceImages .owl-nav button.owl-prev {
	left: 20px;
}
.owl-priceImages .owl-nav button.owl-next {
	right: 20px;
}



.faq-section {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.faq-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.faq-wrap .heading {
	flex: 0 0 calc(100% - 343px - 30px);
	max-width: calc(100% - 343px - 30px);
	margin-bottom: 40px;
}
.faq-button {
	flex: 0 0 343px;
	max-width: 343px;
	margin-bottom: 40px;
}
.faq-button .btn {
	width: 100%;
}
.faq-items {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 50px 0;
	z-index: 1;
}
.faq-items:before {
	content: '';
	width: 1px;
	height: 100%;
	background: var(--border);
	position: absolute;
	left: calc(100% / 3 + var(--gap) / 2 + 1px);
	top: 0;
	z-index: -1;
}
.faq-item {
	margin-bottom: 10px;
}
.faq-item:last-child {
	margin-bottom: 0;
}
.faq-item__head {
	position: relative;
	width: calc(100% / 3 + var(--gap) / 2);
	border-left: 5px solid transparent;
	padding: 15px 35px;
	cursor: pointer;
	transition: .25s;
}
.faq-item__head:hover {
	color: var(--fiolet);
}
.faq-item.active .faq-item__head {
	border-color: var(--fiolet-light);
	background: rgba(166, 120, 223, 0.05);
	color: var(--fiolet);
}
.faq-item__head:after {
	content: '';
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow.svg);
	mask-image: url(images/arrow.svg);
	background-color: var(--fiolet-light);
	position: absolute;
	width: 12px;
	height: 24px;
	right: -13px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: .25s;
	z-index: 1;
}
.faq-item.active .faq-item__head:after {
	opacity: 1;
}
.faq-item__content {
	display: none;
	width: calc(100% - (100% / 3 + var(--gap) / 2) - 74px);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	height: max-content;
}
.faq-item.active .faq-item__content {
	display: block;
}
.faq-item__content-inner {
	padding: 50px 0;
	line-height: 1.66;
	color: var(--grey);
}
.faq-item__content-inner p {
	margin-bottom: 30px;
}
.faq-item__content-inner p:last-child {
	margin-bottom: 0;
}



.compare-section .heading {
	text-align: center;
}
.compare-section .heading p {
	margin-left: auto;
	margin-right: auto;
}
.compare-table {
	position: relative;
	z-index: 1;
}
.compare-row,
.compare-head {
	display: flex;
	border-top: 1px solid var(--border);
}
.compare-col {
	flex: 0 0 calc((100% - 25%) / 2);
	max-width: calc((100% - 25%) / 2);
	padding: 35px 40px;
	font-size: var(--text-size-esm);
	font-weight: 400;
	line-height: 1.42;
}
.compare-col:first-child {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 30px;
	border-right: 1px solid var(--border);
	color: var(--fiolet-dark);
	font-weight: 500;
}
.compare-col:last-child {
	background: #F7F7F6;
	border-left: 1px solid var(--border);
}
.compare-head .compare-col {
	padding: 20px 40px;
	font-size: var(--text-size-md);
	font-weight: 300;
	line-height: 1.5;
	color: var(--dark);
	background: none;
	border: none;
}
.compare-head .compare-col:first-child {
	padding: 20px 30px;
}
.compare-row .compare-col:nth-child(2) p,
.compare-row .compare-col:nth-child(3) p {
	display: flex;
}
.compare-row .compare-col:nth-child(2) p:before,
.compare-row .compare-col:nth-child(3) p:before {
	content: '';
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px;
	flex: 0 0 30px;
	max-width: 30px;
	height: 30px;
	margin-right: 15px;
}
.compare-row .compare-col:nth-child(2) p:before {
	background-image: url(images/error.svg);
}
.compare-row .compare-col:nth-child(3) p:before {
	background-image: url(images/checked-2.svg);
}






.footer {
	position: relative;
	padding: 60px 0 0;
	background: var(--dark);
	color: var(--white);
	z-index: 1;
}
.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-logo {
	display: flex;
	align-items: center;
	margin-right: var(--gap);
}
.footer-logo img {
	max-height: 45px;
}
.footer-logo-title {
	margin-left: 8px;
	font-family: 'Cormorant Unicase', serif;
	font-family: 'CormorantUnicase';
	font-weight: 700;
	font-size: 32px;
	color: var(--white);
}
.footer-logo-title a {
	color: var(--white);
}
.footer-logo-text {
	position: relative;
	max-width: 175px;
	margin-left: 21px;
	padding-left: 21px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.28;
	color: var(--white);
	z-index: 1;
}
.footer-logo-text:before {
	content: '';
	background: var(--white);
	opacity: 1;
	position: absolute;
	width: 1px;
	min-height: 45px;
	height: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.footer-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 calc(var(--gap) / -2) calc(var(--gap) * -1);
	padding: 50px 0;
}
.footer-widget {
	flex: 0 0 25%;
	max-width: 25%;
	margin: 0 0 var(--gap);
	padding: 0 calc(var(--gap) / 2);
}
.footer-contacts__item {
	position: relative;
	margin-bottom: 25px;
}
.footer-contacts__item:last-child {
	margin-bottom: 0;
}
.footer-contacts__item span {
	display: block;
	color: var(--fiolet-light);
	font-size: var(--text-size-esm);
	font-weight: 400;
	line-height: 1.42;
	margin-bottom: 5px;
}
.footer-contacts__item p {
	font-size: var(--text-size-sm);
	line-height: 1.56;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 5px;
}
.footer-contacts__item p:last-child {
	margin-bottom: 0;
}
.footer-contacts__item.phone p {
	font-size: var(--text-size-md);
	line-height: 1.25;
}
.footer-contacts__item p a {
	color: var(--white);
}
.footer-contacts__item p a:hover {
	color: var(--fiolet-light);
}
.footer-menu {
	position: relative;
	text-align: right;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--text-size-esm);
	font-weight: 400;
	line-height: 1.42;
}
.footer-menu li {
	margin-bottom: 12px;
}
.footer-menu li:last-child {
	margin-bottom: 0;
}
.footer-menu li a {
	color: var(--white);
}
.footer-menu li a:hover {
	color: var(--fiolet-light);
}

.footer-bottom {
	position: relative;
	background: rgba(255, 255, 255, 0.15);
	padding: 15px 0;
	color: rgba(255, 255, 255, 0.35);
	z-index: 1;
}
.footer-bottom-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.copyright {
	font-size: var(--text-size-esm);
	font-weight: 400;
	line-height: 1.42;
	margin-bottom: 0;
}

.bottom-menu {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--text-size-esm);
	font-weight: 400;
	line-height: 1.42;
}
.bottom-menu li {
	margin-right: 12px;
}
.bottom-menu li:last-child {
	margin-right: 0;
}
.bottom-menu li a {
	color: rgba(255, 255, 255, 0.35);
}
.bottom-menu li a:hover {
	color: var(--fiolet-light);
}



.page-header {
	position: relative;
	padding: 210px 0 50px;
	background: var(--dark);
	color: var(--white);
	z-index: 1;
}
.page-title {
	font-size: calc(var(--h1-size) * 1.2);
	font-weight: 700;
	line-height: 1.2;
	color: var(--yellow-light);
}
.error-404-number {
	font-size: calc(var(--h1-size) * 7);
	color: var(--fiolet-dark);
	font-weight: 700;
	text-align: center;
	line-height: 1;
	margin-bottom: var(--gap);
}
.error-404-button {
	text-align: center;
}



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
  	transition: .25s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .25s;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.modal-mobile.show .modal-mobile-bg {
	opacity: 1;
}
.modal-mobile-wrap {
  position: relative;
  background: var(--dark);
  height: 100%;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  transform: translateX(100%);
  padding: 60px 20px 20px;
  transition: .25s;
  overflow: auto;
  z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-mask-image: url(images/close.svg);
  mask-image: url(images/close.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: var(--white);
  width: 24px;
  height: 24px;
  border: none;
  padding: 0;
  outline: none !important;
  cursor: pointer;
  transition: .25s;
}
.modal-mobile-close:hover {
	background-color: var(--fiolet-light);
}








@media (max-width: 1199px) {
	:root {
		--container: 930px;
		--gap: 30px;

		--text-size: 16px;
		--text-size-md: 18px;
		--text-size-sm: 14px;
		--text-size-esm: 13px;
		--h1-size: 42px;
		--h2-size: 36px;
		--h3-size: 32px;
		--h4-size: 28px;
		--h5-size: 24px;
		--h6-size: 20px;
	}
	.btn {
		padding: 21px 52px;
	}
	.btn-sm {
		padding: 21px 46px;
	}
	.advanteges-item__wrap p br {
		display: none;
	}
	.documents-wrap .heading {
    	margin-bottom: 50px;
	}
	.documents-info,
	.info-item__info {
		padding-left: 60px;
	}
	.documents-content,
	.info-item__content {
		padding-right: 60px;
	}
	.info-item:nth-child(2n) .info-item__info {
		padding-left: 0;
		padding-right: 60px;
	}
	.info-item:nth-child(2n) .info-item__content {
		padding-right: 0;
		padding-left: 60px;
	}
	.products-item__image {
		height: 200px;
		margin-bottom: 30px;
	}
	.products-item__image img {
		max-height: 200px;
	}
	.products-item__button .btn,
	.prices-item__button .btn {
		padding-left: 20px;
		padding-right: 20px;
	}
	.prices-item__wrap {
		padding: 30px 30px 25px;
	}
	.compare-col {
		padding: 30px 35px;
	}
	.compare-head .compare-col {
		padding: 20px 35px;
	}
	.steps-item:nth-child(2) {
		left: 136px;
	}
	.steps-item:nth-child(3) {
		left: calc(136px * 2);
	}
	.steps-item:nth-child(4) {
		left: calc(136px * 3);
	}
	.steps-item:nth-child(5) {
		right: 136px;
	}
}




@media (max-width: 991px) {
	:root {
		--container: 710px;
		--gap: 30px;

		--text-size: 16px;
		--text-size-md: 18px;
		--text-size-sm: 15px;
		--text-size-esm: 14px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 22px;
		--h6-size: 20px;
	}
	.heading,
	.documents-wrap .heading,
	.faq-wrap .heading {
		margin-bottom: 35px;
		font-size: var(--text-size);
	}
	.heading h2 {
		margin-bottom: 10px;
	}
	.heading h2:last-child {
		margin-bottom: 0;
	}
	.heading br {
		display: none;
	}
	.header-logo-text,
	.header-phone span,
	.header-soc,
	.navigation {
		display: none;
	}
	.header-wrap {
		height: 68px;
	}
	.header-logo {
		flex: auto;
		max-width: 100%;
	}
	.header-phone p a {
		font-size: 0;
		width: 36px;
		height: 36px;
		-webkit-mask-size: 32px;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-image: url(images/24-hours.svg);
		mask-image: url(images/24-hours.svg);
		background-color: var(--white);
		display: block;
	}
	.header-phone p a:hover {
		background-color: var(--fiolet-light);
	}
	.header-toggle {
		display: flex;
	}
	.hero-section {
		padding-top: 110px;
		min-height: 480px;
	}
	.hero-heading {
		margin-bottom: 20px;
	}
	.hero-content {
		margin-bottom: 50px;
	}
	.advanteges-caption {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
		margin-bottom: 10px;
	}
	.advanteges-heading {
		flex: 0 0 100%;
		max-width: 100%;
		order: 2;
		margin-bottom: 30px;
	}
	.advanteges-items {
		order: 3;
		margin-bottom: -20px;
	}
	.advanteges-item {
		flex: 0 0 100%;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.specialOffer-section {
		padding-bottom: 0 !important;
	}
	.specialOffer-wrap {
		flex-wrap: wrap;
	}
	.specialOffer-image {
		flex: 0 0 50%;
		max-width: 50%;
		margin-top: -120px;
		margin-bottom: 20px;
	}
	.specialOffer-image span {
		position: relative;
		height: auto;
		width: auto;
		bottom: 0;
	}
	.specialOffer-image img {
		max-height: 240px;
		max-width: 100%;
	}
	.specialOffer-content {
		flex: 0 0 50%;
		max-width: 50%;
		margin-bottom: 20px;
	}
	.specialOffer-button {
		flex: 0 0 100%;
		max-width: 100%;
		display: block;
		text-align: center;
	}
	.documents-info, .info-item__info, .banner-section .info-item__content {
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
		order: 1;
		margin-bottom: var(--gap);
	}
	.info-item:nth-child(2n) .info-item__info {
		padding-right: 0;
	}
	.documents-image,
	.info-item__images {
		flex: 0 0 100%;
		max-width: 480px;
		padding: 35px 0;
		order: 2;
	}
	.documents-image:before,
	.info-item__images:before {
		left: -35px;
	}
	.info-item:nth-child(2n) .info-item__images:before {
		right: -35px;
	}
	.documents-content h3,
	.info-item__content h3 {
		margin-bottom: 30px;
	}
	.banner-label {
		margin-bottom: 15px;
	}
	.banner-content {
		margin-bottom: 20px;
	}
	.banner-button {
		margin-top: 35px;
	}
	.info-section {
		padding-bottom: 0 !important;
	}
	.info-section .heading {
		max-width: 100%;
	}
	.info-item {
		margin-bottom: 60px;
	}
	.info-item:last-child {
		margin-bottom: 0;
	}
	.owl-infoImages .owl-dots {
		top: calc(100% + 7px);
	}
	.info-item__content {
		padding-top: 0;
		padding-bottom: 0;
	}

	.steps-items {
		height: auto;
	}
	.steps-items:before {
		width: 1px;
		height: calc(100% + 20px);
		top: -10px;
		left: 7px;
	}
	.steps-item {
		position: relative;
		bottom: 0 !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		width: 100%;
		margin-bottom: 20px;
		flex-direction: row !important;
		justify-content: flex-start;
		align-items: center;
	}
	.steps-item:last-child {
		margin-bottom: 0;
	}
	.steps-item__dot {
		flex: 0 0 15px;
		max-width: 15px;
		margin: 0 15px 0 0 !important;
	}
	.steps-item__number {
		margin: 0 15px 0 0 !important;
	}
	.steps-item p {
		flex: auto;
		max-width: 100%;
		text-align: left;
	}
	.steps-item p br {
		display: none;
	}
	.delivery-item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.delivery-banner {
		margin-top: 60px;
		padding-top: 30px;
		flex-wrap: wrap;
	}
	.delivery-banner-text {
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.delivery-banner-button {
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
	}
	.prices-item {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.prices-item__wrap {
		height: auto;
	}
	.prices-item__content:before {
    	margin-bottom: 15px;
	}
	.prices-item__content:after {
    	margin-top: 15px;
	}
	.prices-item__image {
		height: calc((var(--container) - 40px) / 1.666);
	}
	.prices-item__label {
		min-height: auto;
	}

	.faq-wrap .heading {
		flex: 0 0 100%;
		max-width: 100%;
		order: 1;
	}
	.faq-items {
		padding: 0;
		order: 2;
		margin-bottom: var(--gap);
		min-height: auto !important;
	}
	.faq-button {
		flex: 0 0 100%;
		max-width: 100%;
		order: 3;
		margin-bottom: 0;
		text-align: center;
	}
	.faq-button .btn {
		width: auto;
	}
	.faq-items:before {
		display: none;
	}
	.faq-item {
		margin-bottom: 15px;
		background: rgba(166, 120, 223, 0.05);
	}
	.faq-item:last-child {
		margin-bottom: 0;
	}
	.faq-item.active .faq-item__head {
		color: var(--dark);
	}
	.faq-item__head,
	.faq-item.active .faq-item__head {
		width: 100%;
		padding-right: 45px;
		padding-left: 25px;
		border-color: var(--fiolet-light);
		background: rgba(166, 120, 223, 0.05);
	}
	.faq-item.active2 .faq-item__head,
	.faq-item.active .faq-item__head:hover {
		color: var(--fiolet-light);
	}
	.faq-item__head:after {
		transform: translateY(-50%) rotate(90deg);
		width: 14px;
		height: 14px;
		right: 20px;
		opacity: 1;
	}
	.faq-item.active2 .faq-item__head:after {
		transform: translateY(-50%) rotate(-90deg);
	}
	.faq-item__content {
		position: relative;
		width: 100%;
		height: auto;
		padding: 15px 30px;
	}
	.faq-item.active .faq-item__content {
		display: none;
	}
	.faq-item.active2 .faq-item__content {
		display: block;
	}
	.faq-item__content-inner {
		padding: 0;
	}
	.faq-item__content-inner p {
    	margin-bottom: 20px;
	}
	.faq-item__content-inner p:last-child {
    	margin-bottom: 0px;
	}

	.compare-col {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.compare-head .compare-col:first-child {
		display: none;
	}
	.compare-row {
		flex-wrap: wrap;
	}
	.compare-row .compare-col:first-child {
		flex: 0 0 100%;
		max-width: 100%;
		border-right: 0;
		border-bottom: 1px solid var(--border);
		text-align: center;
		padding: 20px 30px;
	}
	.compare-head .compare-col {
		text-align: center;
	}
	.footer-top {
		flex-direction: column;
	}
	.footer-logo {
		margin-right: 0;
		margin-bottom: 30px;
	}
	.footer-wrap {
		margin: 0;
		flex-wrap: wrap;
		padding: 40px 0 0;
	}
	.footer-widget {
    	flex: 0 0 calc(50% - 15px);
    	max-width: calc(50% - 15px);
    	margin: 0 0 40px;
    	padding: 0;
    	text-align: center;
	}
	.footer-menu {
		text-align: center;
	}
	.footer-contacts__item {
		margin-bottom: 15px;
	}
	.footer-bottom-wrap {
		flex-direction: column-reverse;
	}
	.copyright {
		margin-top: 10px;
	}
	.page-header {
		padding-top: 100px;
		padding-bottom: 35px;
	}
	.error-404-number {
    	font-size: calc(var(--h1-size) * 6);
 	}
 	.page-title {
 		font-weight: var(--h1-size);
 	}
 	.page-content {
 		padding-top: 50px !important;
 	}
 	.main-menu {
 		flex-direction: column;
 	}
 	.main-menu li {
 		border-bottom: 1px solid rgba(255,255,255,.15);
 		width: 100%;
 	}
 	.main-menu li:last-child {
 		border-bottom: none;
 	}
 	.main-menu li:after, .main-menu li:first-child:before {
 		display: none;
 	}
 	.modal-header {
 		padding: 20px 50px 20px 35px;
 	}
 	.modal-body {
 		padding: 35px;
 	}
 	.form-field-mb {
    	margin-bottom: 35px;
	}
	.hero-additional-content {
		margin-top: 35px;
	}
}




@media (max-width: 767px) {
	:root {
		--container: 510px;
		--gap: 30px;

		--text-size: 16px;
		--text-size-md: 17px;
		--text-size-sm: 15px;
		--text-size-esm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.form-field-33,
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.form-field-contacts {
		display: block;
	}
	.form-field-contacts .form-field-label {
		margin-bottom: 15px;
	}
	.form-field-button {
		text-align: center;
	}
	.hero-heading {
    	font-size: calc(var(--h1-size) * 1.45);
 	}
 	.advanteges-heading {
 		font-size: var(--h3-size);
 	}
 	.specialOffer-image {
    	flex: 0 0 40%;
    	max-width: 40%;
    	margin-top: -60px;
    	margin-bottom: 20px;
	}
	.specialOffer-content {
		flex: 0 0 60%;
		max-width: 60%;
		padding-left: 30px;
		padding-right: 0;
	}
	.steps-content h3 {
		margin-bottom: 15px;
	}
	.compare-col,
	.compare-head .compare-col {
		padding: 20px;
	}

	.modal-dialog {
		margin-left: 20px;
		margin-right: 20px;
	}
}



@media (max-width: 575px) {
	:root {
		--container: calc(100vw - 40px);
		--gap: 30px;

		--text-size: 16px;
		--text-size-md: 17px;
		--text-size-sm: 15px;
		--text-size-esm: 14px;
		--h1-size: 28px;
		--h2-size: 26px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.form-field-contacts .wpcf7-list-item {
		margin: 0 10px 10px 0;
	}
	.section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.header-logo-title,
	.footer-logo-title {
		font-size: 28px;
	}
	.hero-heading {
		line-height: 1;
		font-size: calc(var(--h1-size) * 1.6);
		text-align: center;
	}
	.hero-content p u {
		text-underline-offset: 5px;
	}
	.hero-content {
    	margin-bottom: 30px;
    	font-size: var(--text-size-md);
    	text-align: center;
	}
	.hero-bottom {
		flex-direction: column;
		align-items: center;
	}
	.hero-button {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.hero-caption {
		min-height: auto;
	}
	.documents-image, .info-item__images {
		max-width: 100%;
	}
	.owl-products .owl-nav {
		flex: 0 0 110px;
		max-width: 110px;
	}
	.owl-products .owl-dots {
    	flex: 0 0 calc(100% - 110px);
    	max-width: calc(100% - 110px);
	}
	.banner-label span {
		max-width: 100%;
	}
	.documents-content, .info-item__content {
		padding-right: 0;
	}
	.info-item__content h3 span:after,
	.documents-content h3 span:after {
		right: -5px;
	}
	.documents-content ul li,
	.info-item__content ul li {
		margin-bottom: 12px;
	}
	.documents-content ul li:last-child,
	.info-item__content ul li:last-child {
		margin-bottom: 0;
	}
	.info-item:nth-child(2n) .info-item__content {
		padding-left: 0;
	}
	.info-item:nth-child(2n) .info-item__content h3 span:after {
		left: -5px;
	}
	.delivery-item {
    	flex: 0 0 100%;
    	max-width: 100%;
	}
	.delivery-banner {
		padding-left: 0;
		padding-right: 0;
	}
	.compare-head .compare-col {
		font-size: var(--text-size);
	}
	.compare-col, .compare-head .compare-col {
    	padding: 16px 12px;
	}
	.compare-row .compare-col:nth-child(2) p, .compare-row .compare-col:nth-child(3) p {
		display: block;
		text-align: center;
	}
	.compare-row .compare-col:nth-child(2) p:before, .compare-row .compare-col:nth-child(3) p:before {
		width: 30px;
		display: block;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 5px;
	}
	.footer-widget {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.error-404-number {
    	font-size: calc(var(--h1-size) * 5.5);
	}
	.plwao-loader-wrap .plwao-img {
		width: 80px;
	}
}








/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
