/*!
Theme Name: Lux Transfer
Theme URI: http://underscores.me/
Author: WEBTOP
Author URI: https://web24.pro/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: luxtransfer
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Lux Transfer is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display+SC:ital,wght@0,700;1,700&display=swap');


:root {
	--container: calc(100vw - 32px);

	--text-size: 14px;
	--text-size-sm: 12px;
	--h1-size: 40px;
	--h2-size: 32px;
	--h3-size: 28px;
	--h4-size: 24px;
	--h5-size: 20px;
	--h6-size: 16px;

	--black: #171616;
	--white: #FFFFFF;
	--white-80: rgba(255, 255, 255, .8);
	--grey: #B2AEA8;
	--main-color: #EECB8C;
	--second-color: #AD9266;
	--gradient: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50.96%), #C9AB76;
	--gradient-2: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50.96%), #AD9266;
}
*, ::after, ::before {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
	color: var(--white);
	background: var(--black);
}
a {
	color: var(--main-color);
	transition: .5s;
}
a:hover {
	text-decoration: none;
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.bg-cover {
	position: relative;
}
.bg-cover img,
.bg-cover video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bg-cover span {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display SC', serif;
	font-weight: 700;
	margin: 0 0 20px;
	line-height: 1.325;
}
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 {
	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 {
	margin-bottom: 0;
}
iframe {
	max-width: 100%;
}
.form-fields {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px -16px;
}
.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 8px;
	margin-bottom: 16px;
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field-label {
	color: var(--grey);
	display: block;
	margin-bottom: 2px;
}
::-webkit-input-placeholder {
	color: var(--grey);
}
::-moz-placeholder {
	color: var(--grey);
}
:-ms-input-placeholder {
	color: var(--grey);
}
:-moz-placeholder {
	color: var(--grey);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
	font-size: var(--text-size);
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
	width: 100%;
	background: none;
	border: none;
	border-bottom: 1px solid #4D4A46;
	color: var(--white);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	padding: 4px 0px;
	height: 30px;
	outline: none;
	transition: .5s;
}
textarea {
	height: 76px;
	resize: vertical;
}
select {
	cursor: pointer;
}
select option {
	background: var(--black);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	border-color: var(--white-80);
}
.form-field-button.center {
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	top: 0;
}
.wpcf7-not-valid-tip {
	margin-top: 2px;
	font-size: var(--text-size-sm);
}
.wpcf7 form .wpcf7-response-output {
	margin: 16px 0 0;
	padding: 8px 12px;
	font-size: var(--text-size-sm);
}
.form-field-policy {
	text-align: center;
	color: var(--grey);
	margin-bottom: 24px;
}
.form-field-policy a {
	text-decoration: underline;
	color: var(--grey);
}
.form-field-policy a:hover {
	color: var(--white);
}
.wpcf7-acceptance {
	display: block;
	cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
	display: block;
}
.wpcf7-acceptance .wpcf7-list-item-label {
	display: block;
	padding-left: 30px;
	cursor: pointer;
}
.wpcf7-acceptance label {
	position: relative;
	display: inline-block;
}
.wpcf7-acceptance input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	background: var(--white);
	border: 1px solid #767676;
	width: 20px;
	height: 20px;
	outline: 0;
	padding: 0px;
	margin: 0;
	margin-right: 0;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
	transition: .5s;
}
.wpcf7-acceptance input[type="checkbox"]:checked:after {
	content: '';
    width: 6px;
    height: 11px;
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    display: block;
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(45deg);
}


.screen-reader-text {
	display: none;
}
.container {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	z-index: 1;
}
.section-sm {
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
	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;
}



.heading {
	position: relative;
	margin-bottom: 30px;
	color: var(--white-80);
}
.heading.center {
	text-align: center;
}
.heading h1,
.heading h2 {
	font-size: var(--h1-size);
	font-weight: 700;
	letter-spacing: -.94px;
	font-family: 'Playfair Display SC', serif;
	color: var(--white);
}
.heading p:first-child {
	margin-bottom: 4px;
	font-size: var(--h5-size);
	font-weight: 400;
	letter-spacing: .3px;
	line-height: 1.1;
	color: var(--main-color);
	text-transform: uppercase;
}


.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: var(--text-size);
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	line-height: 1.5;
	border: none;
	padding: 5px 20px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	outline: none;
	text-decoration: none;
	min-height: 45px;
	cursor: pointer;
	transition: .5s;
}
.btn-primary {
	background: var(--gradient);
	color: var(--white);
}
.btn-primary:hover {
	background: var(--gradient-2);
	color: var(--white);
}

/*
.owl-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	z-index: 9;
}
.owl-dots button {
	flex: 0 0 6px;
	max-width: 6px;
	width: 6px;
	height: 6px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	margin-right: 8px;
	transition: .5s;
}
.owl-carousel.white .owl-dots button {
	background: var(--white) !important;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button:hover {
	opacity: .8;
}
.owl-dots button.active {
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
}*/

.owl-nav {
	position: absolute;
	width: 100%;
	top: calc(50% - 10px);
	z-index: 9;
}
.owl-nav button {
	position: absolute;
	width: 20px;
	height: 20px;
	-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(--white) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s;
}
.owl-nav button:hover {
	background-color: var(--main-color) !important;
}
.owl-nav button.owl-prev {
	left: 16px;
	transform: scale(-1, 1);
}
.owl-nav button.owl-next {
	right: 16px;
}

/*
.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	margin-right: 20px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--green);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.soc-links li a:hover {
	background: var(--green-2);
}
.soc-links li a svg {
	max-height: 24px;
	max-width: 24px;
}
.soc-links li a path {
	fill: var(--white);
	transition: .5s;
}*/



.modal-mobile {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -9999;
	opacity: 0;
	transition: .5s;
}
.modal-mobile.show {
	z-index: 9999;
	opacity: 1;
}
.modal-mobile-bg {
	background: rgb(0 0 0 / 45%);
	position: absolute;
	opacity: 0;
	transition: .5s;
	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: #211F1E;
	height: 100%;
	width: 100%;
	margin-left: auto;
	transform: translateX(100%);
	transition: .5s;
	overflow: auto;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.modal-mobile.show .modal-mobile-wrap {
	transform: translateX(0);
}
.modal-mobile-header {
	position: relative;
	padding: 8px 0;
	background: #000000;
	z-index: 90;
}
.modal-mobile-header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 44px;
}
.lang-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.lang-menu > li {
	position: relative;
}
.lang-menu > li > a {
	position: relative;
	color: var(--main-color);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 35px;
	text-decoration: none;
	font-weight: 500;
	z-index: 1;
}
.lang-menu > li > a:hover {
	color: var(--white);
}
.lang-menu > li.menu-item-has-children > a:before {
	content: '';
	background: url(images/globus.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	margin-right: 5px;
	transition: .5s;
}
.lang-menu ul {
	display: none;
	position: absolute;
	top: 100%;
	right: 0px;
	width: 100%;
	border: 1px solid var(--main-color);
	background: #000000;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	margin: 0;
	padding: 10px 5px;
	list-style: none;
	z-index: 9;
}
.lang-menu ul li {
	margin-bottom: 8px;
	text-align: center;
}
.lang-menu ul li:last-child {
	margin-bottom: 0;
}
.lang-menu ul li a {
	font-weight: 500;
	text-transform: uppercase;
	color: var(--white);
	display: block;
	text-decoration: none;
}
.lang-menu ul li a:hover {
	color: var(--main-color);
}
.modal-mobile-close {
	-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(--main-color);
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	cursor: pointer;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .5s;
}
.modal-mobile-close:hover {
	background-color: var(--white);
}
.modal-mobile-body {
	position: relative;
	flex: auto;
	padding: 20px 0;
	z-index: 1;
}
.modal-mobile-body .container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
}
.mobile-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-menu li {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
}
.mobile-menu li:last-child {
	margin-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 5px 0;
	text-decoration: none;
	color: var(--white);
	z-index: 1;
}
.mobile-menu li.menu-item-has-children > a {
	flex: 0 0 calc(100% - 32px);
	max-width: calc(100% - 32px);
}
.mobile-menu li:hover > a,
.mobile-menu li.current-menu-item > a {
	color: var(--main-color);
}
.mobile-menu-toggle {
	order: 2;
	-webkit-mask-size: 24px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/arrow-up.svg);
	mask-image: url(images/arrow-up.svg);
	background-color: var(--main-color);
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	cursor: pointer;
	transform: rotate(180deg);
	transition: .5s;
}
.mobile-menu li.menu-item-has-children:hover > .mobile-menu-toggle {
	background-color: var(--white);
}
.mobile-menu li.menu-item-has-children.active > .mobile-menu-toggle {
	background-color: var(--main-color);
	transform: rotate(0deg);
}
.mobile-menu ul {
	flex: 0 0 100%;
	max-width: 100%;
	display: none;
	order: 3;
	margin: 0;
	padding: 0 0 0 20px;
	list-style: none;
	z-index: 9;
}
.modal-mobile-logo {
	text-align: center;
}
.modal-mobile-logo a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
.modal-mobile-logo img {
	max-height: 28px;
}


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: calc(var(--container) - 32px);
	margin: 1.75rem auto;
	pointer-events: none;
	display: flex;
	align-items: center;
	min-height: calc(100% - 3.5rem);
}
.modal-content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--black);
	border: 1px solid var(--main-color);
	background-clip: padding-box;
	outline: 0;
	padding: 30px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1050;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .7;
	z-index: 1049;
}
.modal-title {
	font-size: var(--h5-size);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 24px;
	text-align: center;
}
.modal-close {
	position: absolute;
	-webkit-mask-size: contain;
	-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(--main-color);
	width: 25px;
	height: 25px;
	top: 12px;
	right: 12px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .5s;
	z-index: 9;
}
.modal-close:hover {
	background-color: var(--white);
}


.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: flex;
	flex-wrap: wrap;
	margin: 26px -12px 2px;
}
.gallery:first-child {
	margin-top: 0;
}
.gallery:last-child {
	margin-bottom: -24px;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 0 0 24px;
	padding: 0 12px;
}
.gallery-item * {
	height: 100%;
}
.gallery-item > * {
	overflow: hidden;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	border: 1px solid var(--grey-light);
}
.gallery-columns-2 .gallery-item {
	flex: 0 0 calc(100% / 2);
	max-width: calc(100% / 2);
}
.gallery-columns-3 .gallery-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.gallery-columns-4 .gallery-item {
	flex: 0 0 calc(100% / 4);
	max-width: calc(100% / 4);
}
.gallery-columns-5 .gallery-item {
	flex: 0 0 calc(100% / 5);
	max-width: calc(100% / 5);
}
.gallery-columns-6 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-7 .gallery-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
}
.gallery-columns-8 .gallery-item {
	flex: 0 0 calc(100% / 8);
	max-width: calc(100% / 8);
}
.gallery-columns-9 .gallery-item {
	flex: 0 0 calc(100% / 9);
	max-width: calc(100% / 9);
}
.gallery-caption {
	display: block;
}
.alignleft {
	float: left;
	margin-right: 50px;
	margin-bottom: 20px;
}
.alignright {
	float: right;
	margin-left: 50px;
	margin-bottom: 20px;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.wrapper {
	position: relative;
	z-index: 1;
}
.header {
	position: sticky;
	top: 0;
	background: var(--black);
	padding: 8px 0;
	z-index: 92;
}
.header-wrap {
	display: flex;
	align-items: center;
	height: 44px;
	gap: 20px;
}
.header-logo {
	flex: auto;
}
.header-logo img {
	max-height: 44px;
}
.header-contacts {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-contacts p {
	margin: 0;
	font-size: 0;
}
.header-contacts p a {
	display: flex;
}
.header-contacts p a:before {
	content: '';
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	transition: .5s;
}
.header-contacts p a:hover:before {
	background-color: var(--main-color);
}
.header-contacts p.e-mail a:before {
	-webkit-mask-image: url(images/mail.svg);
	mask-image: url(images/mail.svg);
}
.header-contacts p.phone a:before {
	-webkit-mask-image: url(images/phone.svg);
	mask-image: url(images/phone.svg);
}
.header-toggle {
	display: flex;
	align-items: center;
}
.header-toggle button {
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	-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);
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
	transition: .5s;
}
.header-toggle button:hover {
	background-color: var(--main-color);
}




.map-section {
	position: relative;
	z-index: 1;
}
.map-section iframe {
	width: 100%;
	height: calc(var(--container) / 2.5);
}


.footer {
	position: relative;
	padding: 24px 0;
	z-index: 1;
}
.footer-logo {
	border-bottom: 1px solid var(--second-color);
	padding-bottom: 10px;
	text-align: center;
}
.footer-logo a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
.footer-logo img {
	max-height: 28px;
}
.footer-contacts {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 30px 0;
}
.footer-contacts p {
	text-align: center;
	color: var(--grey);
	margin: 0;
}
.footer-contacts p a {
	color: var(--grey);
	text-decoration: none;
}
.footer-contacts p a:hover {
	color: var(--main-color);
}
.copyright {
	text-align: center;
	color: var(--grey);
	font-weight: 300;
}

.fixed-whatsapp {
	position: fixed;
	bottom: 40px;
	right: calc((100% - var(--container)) / 2 + 24px);
	z-index: 70;
}
.fixed-whatsapp a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #25d366;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: none;
	outline: none;
	padding: 0;
	cursor: pointer;
}
.fixed-whatsapp a:hover {
	background: #10b44d;
}
.fixed-whatsapp a:before {
	content: '';
	flex: 0 0 25px;
	max-width: 25px;
	width: 25px;
	height: 25px;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-image: url(images/whatsapp.svg);
	mask-image: url(images/whatsapp.svg);
	background-color: var(--white);
	transition: .5s;
}






.page-header {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}
.page-header.with-bg {
	min-height: 260px;
}
.page-header-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.page-header-bg:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: var(--black);
	opacity: .4;
	z-index: 1;
}
.page-header-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.369231) 49.04%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 2;
}
.page-title {
	font-size: var(--h1-size);
	font-weight: 700;
	color: var(--white);
}
.page-title:before {
	content: '';
	display: block;
	width: 112px;
	height: 2px;
	background: var(--main-color);
	margin-bottom: 18px;
}
.page-header.with-bg .page-title:before {
	margin-bottom: 38px;
}
.page-body.section {
	padding-top: 30px;
}

.error-404-number {
	font-size: calc(var(--h1-size) * 4);
	color: var(--grey);
	font-weight: 800;
	text-align: center;
	line-height: 1;
	margin-bottom: 20px;
}
.error-404-button {
	text-align: center;
}



.heroSlider-section {
	height: calc(100vh - 60px);
}
.heroSlider-item {
	height: calc(100vh - 60px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.heroSlider-item__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.heroSlider-item__bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(23, 22, 22, 0.5);
	z-index: 1;
}
.heroSlider-item__wrap {
	padding: 0 24px 60px;
}
.heroSlider-item__before {
	font-weight: 700;
	letter-spacing: .23px;
	text-transform: uppercase;
	margin-bottom: 0;
}
.heroSlider-item__heading {
	font-family: 'Inter', 'sans-serif';
	font-size: calc(var(--h1-size) * 1.5);
	font-weight: 600;
	line-height: 1.25;
	text-transform: uppercase;
}
.heroSlider-item__after {
	color: var(--main-color);
	text-transform: uppercase;
	font-size: var(--h5-size);
	font-weight: 600;
	letter-spacing: .3px;
	margin-bottom: 15px;
}



.page-body-wrap {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.widget-area {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.widget-title {
	color: var(--main-color);
	font-size: var(--h5-size);
	line-height: 1.5;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 15px;
}
.widget_categories ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.widget_categories ul li a {
	border: 1px solid var(--main-color);
	display: block;
	color: var(--white-80);
	padding: 7px 16px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	border-radius: 9px;
	text-decoration: none;
}
.widget_categories ul li a:hover {
	color: var(--white);
}


.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.blog-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0 0 30px;
	padding: 0 15px;
}
.blog-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid var(--main-color);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	z-index: 1;
}
.blog-item__image {
	height: calc(var(--container) / 1.225);
}
.blog-item__info {
	position: relative;
	padding: 24px;
	z-index: 1;
}
.blog-item__title {
	font-family: 'Open Sans', sans-serif;
	font-size: var(--h5-size);
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
}
.blog-item__title a {
	color: #F6ECD8;
	text-decoration: none;
}
.blog-item__title a:hover {
	color: var(--main-color);
}
.blog-item__meta {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 15px;
	color: var(--white-80);
}
.blog-item__meta span {
	position: relative;
	z-index: 1;
}
.blog-item__meta span:after {
	content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white-80);
    top: 8px;
    right: -15px;
}
.blog-item__meta span:last-child:after {
	display: none;
}




.navigation.pagination {
	position: relative;
	margin-top: 30px;
	z-index: 2;
}
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-links .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	color: var(--white);
	background: #232120;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 0 5px;
	text-decoration: none;
}
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
	background: var(--second-color);
}



.singleBlog-image {
	height: calc(var(--container) / 1.5769);
}
.singleBlog-cat-item {
	border: 1px solid var(--main-color);
	display: block;
	color: var(--white-80);
	padding: 7px 16px;
	-moz-border-radius: 9px;
	-webkit-border-radius: 9px;
	border-radius: 9px;
}
.singleBlog-meta {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 30px;
	color: var(--white-80);
}
.singleBlog-meta span {
	position: relative;
	z-index: 1;
}
.singleBlog-meta span:after {
	content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--white-80);
    top: 8px;
    right: -15px;
}
.singleBlog-meta span:last-child:after {
	display: none;
}





.reviews-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.reviews-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0 0 30px;
	padding: 0 15px;
}
.reviews-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid var(--main-color);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	padding: 24px;
	z-index: 1;
}
.reviews-item__image {
	width: 130px;
	height: 130px;
	margin: 0 auto 24px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
}
.reviews-item__name {
	font-size: var(--h5-size);
	font-weight: 700;
	line-height: 1.5;
	color: var(--main-color);
	text-transform: uppercase;
	margin-bottom: 15px;
}
.reviews-item__content > * {
	margin-bottom: 15px;
}
.reviews-item__content > *:last-child {
	margin-bottom: 0;
}



.cars-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.cars-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0 0 30px;
	padding: 0 15px;
}
.cars-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid var(--main-color);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	z-index: 1;
}
.cars-item__image {
	height: calc(var(--container) / 1.25);
}
.cars-item__info {
	padding: 24px;
}
.cars-item__title {
	font-size: var(--h5-size);
	font-weight: 600;
	margin-bottom: 15px;
}
.cars-item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
}
.cars-item__meta span {
	display: flex;
	align-items: center;
	gap: 8px;
}
.cars-item__meta span:before {
	content: '';
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--main-color);
}
.cars-item__meta span.passenger-capacity:before {
    -webkit-mask-image: url(images/passenger-capacity.svg);
    mask-image: url(images/passenger-capacity.svg);
}
.cars-item__meta span.fuel:before {
	-webkit-mask-image: url(images/fuel.svg);
    mask-image: url(images/fuel.svg);
}
.cars-item__meta span.gear-box:before {
	-webkit-mask-image: url(images/gear-box.svg);
    mask-image: url(images/gear-box.svg);
}



.services-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.services-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0 0 30px;
	padding: 0 15px;
}
.services-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid var(--main-color);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	z-index: 1;
}
.services-item__image {
	height: calc(var(--container) / 1.1);
}
.services-item__info {
	position: relative;
	padding: 24px;
	z-index: 1;
}
.services-item__title {
	font-family: 'Open Sans', sans-serif;
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.services-item__title a {
	color: var(--main-color);
	text-decoration: none;
}
.services-item__title a:hover {
	color: var(--second-color);
}
.services-item__excerpt {
	margin-bottom: 20px;
}




.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	font-family: 'Opes Sans', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
}
.page-content blockquote {
	position: relative;
	padding: 16px 24px;
	background: #282727;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	z-index: 1;
}
.page-content ul {
	list-style: square;
}
.page-content ul li::marker {
	color: var(--main-color);
}



.advantages-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px -20px;
}
.advantages-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0 0 20px;
	padding: 0 10px;
}
.advantages-item__wrap {
	display: flex;
	gap: 15px;
}
.advantages-item__image {
	flex: 0 0 64px;
	max-width: 64px;
	height: 64px;
	background: #232120;
	-moz-border-radius: 14px;
	-webkit-border-radius: 14px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.advantages-item__image img {
	max-width: 35px;
	max-height: 35px;
}
.advantages-item__text {
	flex: auto;
	color: var(--white-80);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.advantages-item__text span {
	color: var(--white);
	font-size: var(--h5-size);
	font-weight: 700;
	line-height: 1.5;
	display: block;
	letter-spacing: .23px;
	text-transform: uppercase;
}



.excursions-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.excursions-item {
	flex: 0 0 100%;
	max-width: 100%;
	margin: 0 0 30px;
	padding: 0 15px;
}
.excursions-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid var(--main-color);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	z-index: 1;
}
.excursions-item__image {
	height: calc(var(--container) / 1.1);
}
.excursions-item__info {
	position: relative;
	padding: 24px;
	z-index: 1;
}
.excursions-item__title {
	font-family: 'Open Sans', sans-serif;
	font-size: var(--h5-size);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
	text-transform: uppercase;
	color: var(--main-color);
}




.tariffs-item__wrap {
	position: relative;
}
.tariffs-item__head {
	position: relative;
	height: calc(var(--container) / 1.56);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	margin-bottom: 20px;
	z-index: 1;
}
.tariffs-item__image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.tariffs-item__image:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(23, 22, 22, 0.5);
	z-index: 1;
}
.tariffs-item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
.tariffs-item__meta span {
	display: flex;
	align-items: center;
	gap: 8px;
}
.tariffs-item__meta span:before {
	content: '';
	flex: 0 0 15px;
	max-width: 15px;
	width: 15px;
	height: 15px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--main-color);
}
.tariffs-item__meta span.passenger-capacity:before {
    -webkit-mask-image: url(images/passenger-capacity.svg);
    mask-image: url(images/passenger-capacity.svg);
}
.tariffs-item__meta span.fuel:before {
	-webkit-mask-image: url(images/fuel.svg);
    mask-image: url(images/fuel.svg);
}
.tariffs-item__meta span.gear-box:before {
	-webkit-mask-image: url(images/gear-box.svg);
    mask-image: url(images/gear-box.svg);
}
.tariffs-item__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(238, 203, 140, 0.3);
	font-size: var(--h5-size);
	font-weight: 500;
	text-transform: uppercase;
	color: var(--main-color);
	margin-bottom: 12px;
}
.tariffs-item__content {
	font-weight: 500;
	color: var(--white-80);
}
.tariffs-item__content table {
	width: 100%;
	border: none;
}
.tariffs-item__content table td {
	padding: 5px;
	border: none;
	text-transform: uppercase;
}
.tariffs-item__content table td:first-child {
	padding-left: 0;
}
.tariffs-item__content table td:last-child {
	padding-right: 0;
}
.tariffs-item__content hr {
	border-color: rgba(238, 203, 140, 0.3);
}


.contacts-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.contacts-info p {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
}
.contacts-info p:before {
	content: '';
	flex: 0 0 35px;
	max-width: 35px;
	width: 35px;
	height: 35px;
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--second-color);
}
.contacts-info p.phone:before {
	-webkit-mask-image: url(images/phone-2.svg);
    mask-image: url(images/phone-2.svg);
}
.contacts-info p.address:before {
	-webkit-mask-image: url(images/location.svg);
    mask-image: url(images/location.svg);
}
.contacts-info p.e-mail:before {
	-webkit-mask-image: url(images/mail-2.svg);
    mask-image: url(images/mail-2.svg);
}
.contacts-info p a {
	color: var(--white);
	text-decoration: none;
}
.contacts-info p a:hover {
	color: var(--main-color);
}









@media (min-width: 576px) {
	:root {
		--container: 516px;
	}
	.wrapper {
		width: 548px;
		margin: auto;
	}
}