/*!
Theme Name: LotPark
Theme URI: http://underscores.me/
Author: MX-Studio
Author URI: https://mx-studio.pl/
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: lotpark
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.

LotPark 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=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
	--container: 1160px;

	--text-size: 16px;
	--text-size-sm: 14px;
	--h1-size: 42px;
	--h2-size: 36px;
	--h3-size: 30px;
	--h4-size: 24px;
	--h5-size: 20px;
	--h6-size: 18px;

	--blue: #0274E8;
	--blue-dark: #0E1C49;
	--blue-light: #EDF5FA;
	--black: #1B242E;
	--white: #ffffff;
	--grey: #565656;
	--grey-light: #7F87A1;
}

*, ::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: 'Roboto', sans-serif;
	line-height: 1.5;
	color: var(--grey);
	background: var(--white);
}
a {
	text-decoration: none;
	color: var(--black);
	transition: .25s;
}
a:hover {
	color: var(--blue);
}
img {
	margin: 0;
	vertical-align: middle;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
img[data-lazyloaded]{
    opacity: 0;
}
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 {
	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: 'Roboto', sans-serif;
	font-weight: 500;
	margin: 0 0 20px;
	line-height: 1.1428;
	color: var(--black);
}
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 -15px -30px;
}
.form-field {
	position: relative;
	flex: 0 0 100%;
	max-width: 100%;
	padding: 0 15px;
	margin-bottom: 30px;
}
@media(max-width: 480px) {
	.form-field {
		margin-bottom: 20px;
	}
}
.form-field-50 {
	flex: 0 0 50%;
	max-width: 50%;
}
.form-field > label {
	color: var(--grey-light);
	font-weight: 400;
	line-height: 1.1718;
	margin-bottom: 6px;
	/*text-transform: uppercase;*/
	display: block;
}
::-webkit-input-placeholder {
	color: #242C46;
}
::-moz-placeholder {
	color: #242C46;
}
:-ms-input-placeholder {
	color: #242C46;
}
:-moz-placeholder {
	color: #242C46;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="number"],
select,
textarea {
	display: block;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
	line-height: 1.5;
	width: 100%;
	min-width: 0;
	-webkit-appearance: none;
	background: var(--white);
	border: 1px solid #C7CBDB;
	color: var(--black);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 12px 20px;
	height: 50px;
	outline: none;
	transition: .25s;
}
textarea {
	height: 100px;
	resize: vertical;
}
select {
	cursor: pointer;
}

.form-field-radioButtons {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.form-field-radioButton {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 30px;
	padding: 0 15px;
}
.form-field-radioButton label {
	position: relative;
	text-align: center;
	background: #EEEEEE;
	color: var(--blue);
	font-weight: 500;
	font-size: 14px;
	line-height: 1.1;
	display: flex;
	align-items: center;
	justify-content: center;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 10px;
	min-height: 50px;
	text-transform: uppercase;
	cursor: pointer;
	transition: .25s;
	z-index: 1;
}
.form-field-radioButton strong, .form-field-radioButton span {
	display: block;
	text-align: center;
}

.form-field-radioButton strong, .form-field-radioButton strong span {
	font-weight: 700;
	font-size: 20px;
	margin-top: 10px;
}

@media (max-width: 767px) {
    .form-field-radioButton strong, .form-field-radioButton strong span {
        margin-top: 0;
    }
}

.form-field-radioButton strong span {
	display: inline-block;
	color:#fff;
}

.form-field-radioButton span {
	font-weight: 400;
	font-size: 12px;
	color: #7F87A1;
}

.form-field-radioButton__badge {
	position: absolute;
	top: -1px;
	left: -3px;
	color: #fff;
	background: url(images/form-label-badge-new.svg) no-repeat center;
	background-size: contain;
	width: 49px;
	height: 46px;
	font-size: 7px;
	font-weight: 700;
	transition: .25s;
	z-index: 1;
}
.form-field-radioButton__badge span {
	color: #fff;
	font-size: 7px;
	font-weight: 700;
}

.form-field-radioButton:hover .form-field-radioButton__badge span {
	color: #0274E8;
}

.form-field-radioButton input:checked + label .form-field-radioButton__badge,
.form-field-radioButton label:hover .form-field-radioButton__badge {
	background-image: url(images/form-label-badge-new-active.svg);
	color: var(--blue);
}
.form-field-radioButton input:checked + label .form-field-radioButton__badge span {
    color: var(--blue);
}

.form-field-radioButton__badge span {
	transform: rotate(-43.06deg);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 14px;
}
.form-field-radioButton input {
	position: absolute;
	opacity: 0;
	z-index: -9999;
}
.form-field-radioButton input:checked + label,
.form-field-radioButton label:hover {
	background: var(--blue);
	color: var(--white);
}




/*.form-field-button {
	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: 20px 0 0;
	padding: 10px 15px;
	font-size: var(--text-size-sm);
	text-align: center;
	background: var(--white);
}
.form-field-policy {
	font-size: var(--text-size-sm);
	line-height: 1.15;
	font-weight: 300;
	color: #626262;
	margin-bottom: 40px;
}
.form-field-policy a {
	text-decoration: underline;
	color: #626262;
}
.form-field-policy a:hover {
	color: var(--black);
}
.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: 29px;
	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 #D2D2D2;
	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: .25s;
}
.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: 80px;
	padding-bottom: 80px;
	z-index: 1;
}
.section-md {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	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;
}
@media (min-width: 992px) {
	.hide-lg {
		display: none !important;
	}
}
.bg-blue-light {
	background: var(--blue-light);
}


.heading {
	position: relative;
	font-weight: 300;
	color: var(--grey-light);
	line-height: 1.66;
	margin-bottom: 25px;
}
.heading:last-child {
	margin-bottom: 0;
}
.heading.center {
	text-align: center;
}
.heading h1,
.heading h2 {
	font-size: var(--h1-size);
}
.heading p.before-heading {
	margin-bottom: 12px;
	font-size: var(--h5-size);
	line-height: 1.2;
	color: var(--blue);
	font-weight: 400;
}
.heading p.after-heading {
	font-size: var(--h5-size);
	line-height: 1.2;
	color: var(--black);
	font-weight: 500;
	margin-top: -12px;
}



.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	line-height: 1.5;
	border: 1px solid transparent;
	padding: 12px 33px;
	text-transform: uppercase;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	outline: none;
	min-height: 50px;
	cursor: pointer;
	transition: .25s;
}
.btn-primary {
	background-color: var(--blue-dark);
	border-color: var(--blue-dark);
	color: var(--white);
}
.btn-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}
.btn-secondary {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-secondary:hover {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-outline-secondary {
	background-color: transparent;
	border-color: var(--white);
	color: var(--white);
}
.btn-outline-secondary:hover {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-outline-secondary-2 {
	background-color: transparent;
	border-color: var(--blue);
	color: var(--white);
}
.btn-outline-secondary-2:hover {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--blue);
}
.btn-thirdy {
	background-color: var(--blue);
	border-color: var(--blue);
	color: var(--white);
}
.btn-thirdy:hover {
	background-color: var(--black);
	border-color: var(--black);
	color: var(--white);
}


.owl-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
	z-index: 9;
}
.owl-dots button {
	flex: 0 0 6px;
	max-width: 6px;
	width: 6px;
	height: 6px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-right: 15px;
	background: #D7DAE5;
	border: none;
	padding: 0;
	outline: none;
	cursor: pointer;
	transition: 0s;
}
.owl-dots button:last-child {
	margin-right: 0;
}
.owl-dots button:hover {
	background: var(--blue);
}
.owl-dots button.active {
	flex: 0 0 8px;
	max-width: 8px;
	width: 8px;
	height: 8px;
	background: var(--blue);
}

.owl-nav {
	position: absolute;
	top: calc(50% - 25px);
	width: 100%;
	z-index: 9;
}
.owl-nav button {
	position: absolute;
	flex: 0 0 50px;
	max-width: 50px;
	width: 50px;
	height: 50px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background: #EDF3FA !important;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .25s;
}
.owl-nav button.owl-prev {
	left: -80px;
}
.owl-nav button.owl-next {
	right: -80px;
}
.owl-nav button:hover {
	background: #0274E8 !important;
}
.owl-nav button:before {
	content: '';
	-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(--blue-dark);
    flex: 0 0 25px;
    max-width: 25px;
    width: 25px;
    height: 25px;
    transition: .25s;
}
.owl-nav button.owl-prev:before {
	transform: rotate(-180deg);
}
.owl-nav button:hover:before {
	background-color: var(--white);
}


.soc-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.soc-links li {
	margin-right: 15px;
}
.soc-links li:last-child {
	margin-right: 0;
}
.soc-links li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
}
.soc-links li a img {
	max-width: 100%;
	max-height: 100%;
	transition: .25s;
}
.soc-links li a:hover img {
	transform: scale(1.05);
}



.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(--white);
	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: 15px;
	right: 15px;
	-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(--black);
	width: 28px;
	height: 28px;
	border: none;
	padding: 0;
	outline: none !important;
	transition: .25s;
}
.modal-mobile-close:hover {
	background-color: var(--blue);
}
.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 {
	border-bottom: 1px solid var(--blue-light);
}
.mobile-menu > li:last-child {
	border-bottom: 0;
}
.mobile-menu li a {
	order: 1;
	font-size: var(--h6-size);
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	font-weight: 500;
	display: block;
	padding: 13px 0;
	z-index: 1;
}
.mobile-menu li:hover > a{
	color: var(--blue);
}
.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-phone {
	margin-top: 15px;
}

.modal-mobile-phone a {
	margin-right: 15px;
}

.modal-mobile-phone p {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}


.modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1055;
	display: none;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
	z-index: 94;
}
.modal-dialog {
	position: relative;
	width: auto;
	max-width: 760px;
	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: var(--blue-dark);
	color: var(--white);
	background-clip: padding-box;
	outline: 0;
	padding: 68px 80px 80px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	z-index: 1;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	opacity: 0;
	z-index: -1;
}
.modal-backdrop.show {
	opacity: .5;
	z-index: 1;
}
.modal-title {
	font-size: var(--h1-size);
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 32px;
	text-align: center;
	color: var(--white);
}
.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(--white);
	width: 24px;
	height: 24px;
	top: 22px;
	right: 22px;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: .25s;
	z-index: 9;
}
.modal-close:hover {
	opacity: .8;
}


.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: fixed;
	width: 100%;
	top: 0;
	z-index: 92;
}
.header:before {
	content: '';
	background: var(--white);
	opacity: .1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: .25s;
	z-index: -1;
}
.header.fixed:before {
	opacity: 1;
	box-shadow: 0px 10px 15px 0px rgba(159, 159, 159, 0.5);
}
.topbar {
	position: relative;
	background: var(--blue-dark);
	color: var(--white);
	padding: 13px 0;
	min-height: 50px;
	z-index: 1;
}
.topbar a {
	color: var(--white);
	text-decoration: underline;
}
.topbar a:hover {
	opacity: .8;
}
.header-main {
	position: relative;
	padding: 30px 0;
	z-index: 1;
	transition: .25s;
}
.header.fixed .header-main {
	padding: 15px 0;
}
.header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
}
.header-logo img {
	max-height: 50px;
	max-width: 140px;
}
@media(max-width: 480px) {
	.header-logo img {
		max-height: 30px;
	}
}
.header-logo img.fixed {
	display: none;
}
.header.fixed .header-logo img.fixed {
	display: block;
}
.header.fixed .header-logo img.nofixed {
	display: none;
}
.main-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.main-menu li {
	margin-right: 50px;
}
.main-menu li:last-child {
	margin-right: 0;
}
.main-menu li a {
	color: var(--white);
}
.header.fixed .main-menu li a {
	color: var(--grey);
}
.main-menu li a:hover,
.header.fixed .main-menu li a:hover {
	color: var(--blue);
}
.header-contacts {
	display: flex;
	align-items: center;
}
.header-phone {
	position: relative;
	font-size: var(--h4-size);
	margin: 0;
	font-weight: 700;
	padding-left: 23px;
}

.header-phone:before {
	content: '';
	width: 18px;
	height: 20px;
	background: url(./images/phone.svg) no-repeat center center/cover;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}


.header-phone a {
	color: var(--white);
}
.header.fixed .header-phone a {
	color: var(--blue-dark);
}
.header-phone a:hover,
.header.fixed .header-phone a:hover {
	color: var(--blue);
}
.header-whatsapp {
	margin: 0 0 0 12px;
}
.header-whatsapp a {
	display: block;
	height: 22px;
}
.header-whatsapp a:hover {
	transform: scale(1.05);
}
.header-button .btn {
	padding-left: 18px;
	padding-right: 18px;
}
.header.fixed .header-button .btn {
	border-color: var(--blue-dark);
	color: var(--blue-dark);
}
.header.fixed .header-button .btn:hover {
	background-color: var(--blue-dark);
	color: var(--white);
}
.header-toggle {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-toggle button {
	flex: 0 0 32px;
	max-width: 32px;
	width: 32px;
	height: 32px;
	-webkit-mask-image: url(images/menu.svg);
	mask-image: url(images/menu.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: var(--white);
	border-radius: 0;
	border: none;
	padding: 0;
	outline: none !important;
	cursor: pointer;
	transition: .25s;
}
.header-toggle button:hover {
	background-color: var(--blue);
}
.header.fixed .header-toggle button {
	background: var(--blue-dark);
}
.header.fixed .header-toggle button:hover {
	background: var(--blue);
}




.main {
	position: relative;
	overflow: hidden;
	z-index: 1;
}



.footer {
	position: relative;
	background: var(--blue-dark);
	color: var(--grey-light);
	z-index: 1;
}
.footer-wrap {
	display: flex;
	justify-content: space-between;
	margin: 0 -15px;
	padding: 60px 0;
}
.footer-widget {
	max-width: 30%;
	padding: 0 15px;
}
.footer-widget-title {
	color: var(--white);
	font-size: var(--h4-size);
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.footer-logo {
	margin-bottom: 30px;
}
.footer-logo img {
	max-height: 66px;
}
.footer-company {
	font-weight: 300;
	line-height: 1.8;
}
.footer-menu {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-moz-column-gap: 30px;
	-webkit-column-gap: 30px;
	column-gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-menu li {
	page-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 8px;
}
.footer-menu li a {
	font-size: var(--h6-size);
	font-weight: 300;
	color: var(--white);
}
.footer-contacts {
	position: relative;
}
.footer-contacts p {
	margin-bottom: 16px;
	font-weight: var(--h6-size);
	font-weight: 300;
	line-height: 1.2;
}
.footer-contacts p.phone {
	margin-bottom: 14px;
	font-size: var(--h3-size);
	font-weight: 700;
}
.footer-contacts p:last-child {
	margin-bottom: 0;
}
.footer-contacts p a {
	color: var(--blue);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.footer-contacts a:hover {
	color: var(--white);
}
.footer-contacts p.phone a {
	color: var(--white);
	text-decoration: none;
}
.footer-contacts p.phone a:hover {
	color: var(--blue);
}
.bottom-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: var(--text-size-sm);
	font-weight: 300;
	padding-bottom: 30px;
}
.copyright {
	margin: 0;
}
.bottom-menu {
	flex: auto;
	max-width: 100%;
	margin: 0 40px;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
}
.bottom-menu li {
	margin-right: 40px;
}
.bottom-menu li:last-child {
	margin-right: 0;
}
.bottom-menu li a,
.developer a {
	color: var(--blue);
}
.bottom-menu li a:hover,
.developer a:hover {
	color: var(--white);
}



.hero-section {
	position: relative;
	padding: 200px 0 50px;
	min-height: 600px;
	z-index: 1;
}
.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-bg:after {
	content: '';
	position: absolute;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(217, 217, 217, 0) 100%);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.hero-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.hero-left {
	flex: 0 0 calc(60% - 30px);
	max-width: calc(60% - 30px);
	margin-bottom: 36px;
	padding-top: 8px;
}
.hero-heading {
	font-size: calc(var(--h1-size) * 1.7142);
	line-height: 1.111;
	font-weight: 500;
	color: var(--white);
	margin-bottom: 20px;
}
.hero-description {
	font-size: var(--h3-size);
	line-height: 1.2;
	color: var(--white);
}
.hero-right {
	flex: 0 0 40%;
	max-width: 40%;
	margin-bottom: 36px;
}
.hero-map {
	position: relative;
	height: 100%;
	min-height: 220px;
	z-index: 1;
}
.hero-map iframe {
	width: 100%;
	height: 100%;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
/*.hero-map:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.hero-map svg {
	width: 50px;
	height: 67px;
	filter: drop-shadow(0px 20px 15px #89B7E5);
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 30px));
    z-index: 2;
}*/
.hero-bottom {
	flex: 0 0 100%;
	max-width: 100%;
}
.hero-bottom-wrap {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--white);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	padding: 40px 60px;
	z-index: 1;
}
.hero-form-title {
	margin: 0 30px 0 0;
	font-size: var(--h3-size);
	font-weight: 500;
	line-height: 1.2;
	color: var(--blue);
	max-width: 180px;
}
.hero-form {
	flex: auto;
}
.formCheck-form {
	align-items: flex-end;
}
.formCheck-input {
	flex: 0 0 calc((100% - 150px - 200px) / 2);
	max-width: calc((100% - 150px - 200px) / 2);
}
.formCheck-price {
	flex: 0 0 150px;
	max-width: 150px;
}
.formCheck-summ {
	height: 50px;
	font-size: var(--h6-size);
	text-transform: uppercase;
	color: var(--blue-dark);
	font-weight: 500;
	display: flex;
	align-items: baseline;
}
.formCheck-summ span {
	font-size: var(--h2-size);
	margin-right: 5px;
}
.formCheck-button {
	flex: 0 0 200px;
	max-width: 200px;
}
.formCheck-button .btn {
	width: 100%;
	min-width: auto;
}



.advantages-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.advantages-left {
	flex: 0 0 calc(100% / 3 - 20px);
	max-width: calc(100% / 3 - 20px);
}
.advantages-right {
	flex: 0 0 calc(100% / 3 * 2 - 20px);
	max-width: calc(100% / 3 * 2 - 20px);
}
.advantages-items {
	margin: 0 -25px -50px;
	display: flex;
	flex-wrap: wrap;
}
.advantages-item {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 50px;
	padding: 0 25px;
}
.advantages-item__wrap {
	display: flex;
}
.advantages-item__image {
	text-align: center;
	flex: 0 0 48px;
	max-width: 48px;
	margin-right: 25px;
}
.advantages-item__text {
	flex: auto;
	font-weight: 300;
	line-height: 1.5;
}
.advantages-item__text span {
	display: block;
	color: var(--blue-dark);
	font-weight: 500;
	font-size: var(--h5-size);
	line-height: 1.2;
	margin-bottom: 2px;
}


.about-wrap {
	display: flex;
	flex-wrap: wrap;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	background: var(--blue-dark);
	color: var(--white);
	min-height: 440px;
}
.about-left {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 90px 40px 90px 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-heading h2 {
	color: var(--white);
}
.about-right {
	flex: 0 0 50%;
	max-width: 50%;
}
.owl-aboutImages {
	height: 100%;
}
.owl-aboutImages .owl-stage-outer,
.owl-aboutImages .owl-stage-outer * {
	height: 100%;
}
.owl-aboutImages .owl-nav {
	top: auto;
	bottom: 20px;
	right: 25px;
	width: auto;
	display: flex;
}
.owl-aboutImages .owl-nav button {
	position: relative;
	margin-right: 12px;
	left: 0 !important;
	right: 0 !important;
}
.owl-aboutImages .owl-nav button:last-child {
	margin-right: 0;
}



.about-2-section {
	overflow: hidden;
}
.about-2-wrap {
	display: flex;
	flex-wrap: wrap;
	background: var(--blue-dark);
	color: var(--white);
	min-height: 440px;
}
.about-2-left {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 90px 40px 90px 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.about-2-heading h2 {
	color: var(--white);
}
.about-2-right {
	flex: 0 0 50%;
	max-width: 50%;
}
.about-2-images {
	height: 100%;
	/*width: calc((100vw - var(--container)) / 2 + 100%);*/
}
.owl-about-2-Images {
	height: 100%;
}
.owl-about-2-Images .owl-stage-outer,
.owl-about-2-Images .owl-stage-outer * {
	height: 100%;
}
.owl-about-2-Images .owl-nav {
	top: auto;
	bottom: 20px;
	right: calc((100vw - var(--container)) / 2 + 25px);
	right: 25px;
	width: auto;
	display: flex;
}
.owl-about-2-Images .owl-nav button {
	position: relative;
	margin-right: 12px;
	left: 0 !important;
	right: 0 !important;
}
.owl-about-2-Images .owl-nav button:last-child {
	margin-right: 0;
}




.process-blocks {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.process-block {
	flex: 0 0 50%;
	max-width: 50%;
	margin: 0 0 30px;
	padding: 0 15px;
}
.process-block-heading {
	margin-bottom: 64px;
	font-size: var(--h4-size);
	text-align: center;
	font-weight: 500;
	color: var(--blue);
}
.process-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.process-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	padding: 0 15px;
	margin: 0 0 30px;
}
.process-item__wrap {
	position: relative;
}
.process-item__wrap:before {
	content: '';
	background: url(images/arrow-process.svg) no-repeat center bottom;
	background-size: contain;
	position: absolute;
	width: calc(100% + 24px);
	height: 31px;
	top: -42px;
	left: calc(var(--container) / 12 - 12px);
	z-index: 1;
}
.process-item:last-child .process-item__wrap:before {
	display: none;
}
.process-item__image {
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto 18px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.process-item__image img {
	max-width: 44px;
	max-height: 44px;
}
.process-item__number {
	position: absolute;
	font-size: var(--h6-size);
	font-weight: 500;
	line-height: 1.33;
	color: var(--blue-dark);
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.process-item__text {
	font-size: var(--h6-size);
	line-height: 1.33;
	color: var(--blue-dark);
	text-align: center;
}



.processFeedback {
	position: relative;
	max-width: 764px;
	border: 1px dashed var(--blue);
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	margin: 80px auto 0;
	overflow: hidden;
	z-index: 1;
}
.processFeedback-image {
	position: absolute;
	bottom: 0;
	left: 50px;
	z-index: -1;
}
.processFeedback-wrap {
	position: relative;
	text-align: center;
	padding: 24px 150px 16px;
}
.processFeedback-title {
	font-size: var(--h4-size);
	font-weight: 500;
	line-height: 1;
	color: var(--black);
	margin-bottom: 2px;
}
.processFeedback-text {
	color: var(--black);
	font-size: var(--h6-size);
	margin-bottom: 8px;
}
.processFeedback-phone {
	display: flex;
	align-items: center;
	justify-content: center;
}
.processFeedback-phone a {
	font-size: var(--h4-size);
	font-weight: 700;
	color: var(--black);
}
.processFeedback-phone a:hover {
	color: var(--blue);
}
.processFeedback-phone:before {
	content: '';
	-webkit-mask-image: url(images/phone-2.svg);
	mask-image: url(images/phone-2.svg);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: #38D547;
	flex: 0 0 24px;
	max-width: 24px;
	width: 24px;
	height: 24px;
	margin-right: 10px;
}






.price-section:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/bg-logo.svg);
    mask-image: url(images/bg-logo.svg);
    background-color: #93B8CF;
    position: absolute;
    width: 100%;
    max-width: 1030px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: .23;
    z-index: -1;
	
}
.price-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.price-left {
	flex: 0 0 calc(40% - 55px);
	max-width: calc(40% - 55px);
}
.price-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7.5px -2px;
}

.price-item-col {
	flex: 0 0 50%;
	max-width: 50%;
}
.price-item {
	width: 100%;
	margin: 0 0 2px;
	padding: 0 7.5px;
}
.price-item__wrap {
	position: relative;
	background: var(--blue);
	color: var(--white);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	padding: 8px 16px;
	height: 100%;
	min-height: 40px;
	display: flex;
	align-items: center;
	z-index: 1;
}
.price-item__day {
	font-size: var(--h6-size);
	line-height: 1.1;
	margin: 0;
	flex: 0 0 50%;
	max-width: 50%;
}
.price-item__price {
	font-size: var(--h6-size);
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.1;
	flex: 0 0 50%;
	max-width: 50%;
}
.price-right {
	flex: 0 0 calc(60% - 60px);
	max-width: calc(60% - 60px);
}
.price-form {
	position: relative;
	background: rgba(255,255,255,.6);
	box-shadow: 0px 10px 15px 0px rgba(166, 174, 202, 0.1);
	padding: 30px 38px 40px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	max-width: 565px;
	z-index: 1;
}
.price-form-title {
	font-size: var(--h4-size);
	font-weight: 500;
	color: var(--black);
	margin-bottom: 0;
	line-height: 1.1;
	text-align: center;
}
.price-form-address {
	font-size: var(--h6-size);
	color: var(--black);
	text-align: center;
}
.price-form .form-fields {
	margin-bottom: -15px;
}
.price-form .form-field {
	margin-bottom: 15px;
}
.priceForm-button {
	text-align: center;
}




.tariffs-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -16px -32px;
	padding-top: 16px;
}
.tariffs-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 32px;
	padding: 0 16px;
}
.tariffs-item__wrap {
	position: relative;
	height: 100%;
	border: 1px solid #C7CBDB;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	z-index: 1;
}
.tariffs-item.popular .tariffs-item__wrap {
	margin-top: -16px;
	height: calc(100% + 32px);
	margin-left: -8px;
	margin-right: -8px;
	box-shadow: 0px 5px 15px 0px rgba(229, 231, 236, 1);
}
.tariffs-item__badge {
	position: absolute;
	font-size: var(--text-size-sm);
	font-weight: 700;
	text-transform: uppercase;
	background: linear-gradient(224.08deg, #0274E8 2.85%, #02BEE8 43.46%, #0274E8 75.4%);
	color: var(--white);
	padding: 2px 10px;
	transform: rotate(-45deg);
	transform-origin: left top;
	z-index: 1;
	width: 173px;
	top: 98px;
	left: -25px;
	text-align: center;
}
.tariffs-item__head {
	flex: 0 0 122px;
	max-height: 122px;
	background: var(--blue-dark);
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 20px;
}
.tariffs-item:nth-child(1) .tariffs-item__head {
	background: #53649B;
}
.tariffs-item:nth-child(2) .tariffs-item__head {
	background: #283664;
}
.tariffs-item:nth-child(3) .tariffs-item__head {
	background: var(--blue-dark);
}
.tariffs-item__subheading {
	margin-bottom: 5px;
}
.tariffs-item__heading {
	font-size: calc(var(--h4-size) * 1.0833);
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
}
.tariffs-item__heading span {
	color: var(--blue);
	font-size: var(--h5-size);
	margin-left: 10px;
}
.tariffs-item__body {
	position: relative;
	flex: auto;
}
.tariffs-item__body p {
	font-size: var(--h6-size);
	font-weight: 300;
	text-align: center;
	min-height: 60px;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
}
.tariffs-item__body p:nth-child(2n+1) {
	background: var(--blue-light);
}
.tariffs-item__body p.distance {
	font-weight: 400;
	font-size: var(--h5-size);
	color: var(--black);
}
.tariffs-item__footer {
	position: relative;
	padding: 30px 20px 45px;
	z-index: 1;
}
.tariffs-item__price {
	font-size: var(--h4-size);
	color: var(--black);
	text-align: center;
	line-height: 1;
}
.tariffs-item__price span {
	font-size: var(--h1-size);
	font-weight: 700;
	margin-right: 5px;
}
.tariffs-item__day {
	font-size: var(--h5-size);
	text-align: center;
	margin-bottom: 10px;
	color: var(--black);
}
.tariffs-item__button {
	text-align: center;
}



.banner-section {
	position: relative;
	background: var(--blue-dark);
	z-index: 1;
}
.banner-bg {
	position: absolute;
	width: 60%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
}
.banner-bg:after {
	content: '';
	background: linear-gradient(90deg, #0E1C49 0%, rgba(34, 67, 175, 0) 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.banner-heading h2 {
	color: var(--white);
}
.banner-wrap {
	position: relative;
	display: flex;
}
.banner-block {
	position: relative;
	max-width: 360px;
	margin-right: 42px;
	z-index: 1;
}
.banner-block:last-child {
	margin-right: 0;
}
.banner-block-title {
	font-size: calc(var(--h4-size) * 1.0833);
	font-weight: 500;
	margin-bottom: 0;
	color: var(--blue);
	margin-bottom: 2px;
}
.banner-block-text {
	font-size: var(--h4-size);
	font-weight: 500;
	margin-bottom: 16px;
	color: var(--white);
}
.banner-block-whatsapp {
	display: flex;
}
.banner-block-whatsapp a {
	margin-right: 15px;
}
.banner-block-whatsapp a:hover {
	transform: scale(1.05);
}
.banner-block-whatsapp p {
	font-weight: 500;
	color: var(--white);
}
.banner-image {
	position: absolute;
	width: 514px;
	height: calc(100% + 140px);
	right: -117px;
	bottom: 0;
	z-index: -1;
}
.banner-image img {
	object-fit: contain;
	object-position: left bottom;
	width: 100%;
	height: 100%;
}




.payments-items {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -15px -30px;
}
.payments-item {
	flex: 0 0 calc(100% / 6);
	max-width: calc(100% / 6);
	margin: 0 0 30px;
	padding: 0 15px;
}
.payments-item__image {
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.payments-item__image img {
	max-height: 64px;
}







.reviews-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.reviews-left {
	flex: 0 0 calc(25% - 15px);
	max-width: calc(25% - 15px);
}
.reviews-right {
	flex: 0 0 calc(75% - 15px);
	max-width: calc(75% - 15px);
}

.reviews-block {
	margin: 0 -5px -11px;
}
.reviews-item {
	height: 100%;
	padding: 1px 5px 11px;
}
.reviews-item__wrap {
	position: relative;
	height: 100%;
	background: var(--white);
	box-shadow: 0px 5px 6px 0px rgba(235, 240, 254, 1);
	padding: 30px 14px 30px 22px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	z-index: 1;
}
.reviews-item__top {
	display: flex;
	align-items: center;
	margin-bottom: 19px;
}
.reviews-item__image {
	flex: 0 0 45px;
	max-width: 45px;
	margin-right: 11px;
}
.reviews-item__info {
	flex: auto;
}
.reviews-item__name {
	color: var(--blue-dark);
	margin-bottom: 0;
}
.reviews-item__date {
	color: var(--grey-light);
	font-size: var(--text-size-sm);
	font-weight: 300;
}
.reviews-item__rating {
	margin-bottom: 11px;
	display: flex;
	align-items: center;
}
.reviews-item__rating span {
	flex: 0 0 17px;
	max-width: 17px;
	height: 17px;
	margin-right: 4px;
	-webkit-mask-image: url(images/star.svg);
    mask-image: url(images/star.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--grey-light);
}
.reviews-item__rating span:last-child {
	margin-right: 0;
}
.reviews-item__rating span.active {
	background-color: #FBBC04;
}
.reviews-item__rating:after {
	content: '';
	background: url(images/google-1.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 18px;
    max-width: 18px;
    height: 17px;
    margin-left: 19px;
}
.reviews-item__review {
	position: relative;
	font-size: var(--text-size-sm);
	font-weight: 300;
	line-height: 1.7;
	color: #555555;
	max-height: 166px;
	overflow: auto;
}
.owl-reviews .owl-nav button {
	background: var(--white) !important;
}
.owl-reviews .owl-nav button:hover {
	background: var(--blue) !important;
}
.owl-reviews .owl-nav button.owl-prev {
	left: calc((var(--container) * .25 - 15px) * -1 - 80px - 30px);
}

.reviews-info__wrap {
	position: relative;
	padding-top: 13px;
}
.reviews-info__heading {
	margin-bottom: 14px;
}
.reviews-info__rating {
	position: relative;
	margin-bottom: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.reviews-info__rating-value {
	font-size: var(--h3-size);
	font-weight: 700;
	line-height: 1;
	color: #5CADFF;
	margin-right: 12px;
}
.reviews-info__stars {
	position: relative;
	width: 96px;
	height: 17px;
	z-index: 1;
}
.reviews-info__stars::before {
	content: '';
	-webkit-mask-image: url(images/star.svg);
    mask-image: url(images/star.svg);
    -webkit-mask-size: contain;
	-webkit-mask-repeat: space;
	-webkit-mask-position: left;
    background-color: var(--grey-light);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.reviews-info__stars span {
	background: var(--blue-light);
	position: absolute;
	overflow: hidden;
	font-size: 0;
	top: 0;
	left: 0;
	z-index: 1;
}
.reviews-info__stars span:before {
	content: '';
	-webkit-mask-image: url(images/star.svg);
    mask-image: url(images/star.svg);
    -webkit-mask-size: contain;
	-webkit-mask-repeat: space;
	-webkit-mask-position: left;
    background-color: #FBBC04;
	width: 96px;
	height: 17px;
	display: block;
}
.reviews-info__count {
	flex: 0 0 100%;
	max-width: 100%;
	text-align: center;
	color: var(--black);
	font-size: var(--h6-size);
	font-weight: 400;
	line-height: 1.66;
}
.reviews-info__logo {
	display: flex;
	justify-content: center;
	text-align: center;
	margin-bottom: 16px;
}
.reviews-info__logo svg {
	max-width: 100%;
}
.reviews-info__button {
	text-align: center;
}
.reviews-info__button .btn {
	width: 100%;
	max-width: 226px;
}
.reviews-info__button .btn:after {
	content: '';
	background: url(images/google-1.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 18px;
	max-width: 18px;
	width: 18px;
	height: 18px;
	margin-left: 16px;
}



.location-section {
	position: relative;
	z-index: 1;
}
.location-map {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.location-map iframe {
	width: 100%;
	height: 100%;
}
/*.location-map:after {*/
/*	content: '';*/
/*	position: absolute;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	top: 0;*/
/*	left: 0;*/
/*	z-index: 1;*/
/*}*/
.location-wrap {
	position: relative;
	height: 360px;
	z-index: 1;
	opacity: 0 !important;
	z-index: -1;
}
.location-title {
	padding: 25px 50px 25px 25px;
	display: flex;
	align-items: center;
	font-size: var(--h3-size);
	line-height: 1.2;
	color: var(--black);
	width: 50%;
	max-width: 610px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50px, calc(-50% - 30px));
	z-index: 1;
}
.location-title svg {
	flex: 0 0 50px;
	max-width: 50px;
	height: 67px;
	filter: drop-shadow(0px 20px 15px #89B7E5);
	margin-right: 26px;
}
.page-header {
	position: relative;
	background: var(--blue-dark);
	padding: 200px 0 50px;
	z-index: 1;
}
.page-title {
	color: var(--white);
	font-size: var(--h1-size);
}
.error-404-number {
	font-size: calc(var(--h1-size) * 7);
	color: var(--blue);
	text-align: center;
	line-height: 1;
	margin-bottom: 30px;
	font-weight: 700;
}
.error-404-button {
	text-align: center;
}


.pageThanks-section {
	position: relative;
	padding: 200px 0 50px;
	background: var(--blue-dark);
	z-index: 1;
}
.pageThanks-image {
	text-align: center;
	margin-bottom: 25px;
}
.pageThanks-image img {
	max-height: 84px;
}
.pageThanks-content h1 {
	font-size: var(--h2-size);
	color: var(--white);
	text-align: center;
	max-width: 530px;
	margin: 0 auto 15px;
}

.pageThanks-content h2 {
	font-size: var(--h4-size);
	font-weight: 400;
	color: var(--white);
	text-align: center;
	max-width: 530px;
	margin: 0 auto 30px;
}
.pageThanks-button {
	text-align: center;
}





.reservationsForm-block {
	position: relative;
	margin-bottom: 30px;
}
.reservationsForm-block:last-child {
	margin-bottom: 0;
}
.reservationsForm-title {
	font-size: var(--h4-size);
	font-weight: 500;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.reservationsForm-title a {
	font-size: var(--h6-size);
	font-weight: 400;
	color: var(--white);
	text-transform: none;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-style: dashed;
}
.reservationsForm-title a:hover {
	text-decoration: none;
}

.reservationsForm-bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.reservationsForm-price {
	position: relative;
	flex: 0 0 auto;
	z-index: 1;
}
.reservationsForm-price label {
	color: #fff;
	display: block;
	text-transform: uppercase;
}
.reservationsForm-price p {
	font-weight: 500;
	color: #fff;
	font-size: var(--h4-size);
	text-transform: uppercase;
}
.reservationsForm-price p span {
	font-size: var(--h2-size);
	line-height: 1;
	margin-right: 5px;
}
.reservationsForm-price p del {
	display: block;
	font-size: 20px;
	font-weight: 700;
	color: #7F87A1;
	line-height: 1;
	margin-right: 5px;
}
.reservationsForm-btn {
	display: flex;
}
.reservationsForm-btn .btn {
	flex: auto;
	max-width: 100%;
	margin-right: 30px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	/*max-width: 400px;*/
	/*margin: 0 auto;*/
}
.reservationsForm-btn .btn:last-child {
	margin-right: 0;
}

.reservationsForm-btn .btn#js-online:before {
	content: '';
	background: url(images/form-online-pay-1.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 38px;
	max-width: 38px;
	width: 38px;
	height: 17px;
	margin-right: 12px;
}
.reservationsForm-btn .btn#js-online:after {
	content: '';
	background: url(images/form-online-pay-2.svg) no-repeat center;
	background-size: contain;
	flex: 0 0 38px;
	max-width: 38px;
	width: 38px;
	height: 17px;
	margin-left: 12px;
}

.reservationsForm-policy {
	flex: auto;
	max-width: 100%;
	font-size: var(--text-size-sm);
	color: var(--grey-light);
	font-weight: 300;
    margin-top: 25px;
}
.reservationsForm-policy a {
	color: var(--grey-light);
	text-decoration: underline;
}
.reservationsForm-policy a:hover {
	color: var(--white);
}
.reservationsForm-policy label {
	margin: 0;
}
.reservationsForm-policy label input, .reservationsForm-additionally label input {
	opacity: 0;
	position: absolute;
	z-index: -99;
}
.reservationsForm-policy label span, .reservationsForm-additionally label span {
	position: relative;
	display: inline-block;
	padding-left: 30px;
	cursor: pointer;
}
.reservationsForm-policy label span:before, .reservationsForm-additionally label span:before {
	content: '';
	border-radius: 1px;
	background: var(--white);
	border: 1px solid var(--blue);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: 1;
}
.reservationsForm-policy label input:checked ~ span:after,  .reservationsForm-additionally label input:checked ~ span:after{
	content: '';
    width: 6px;
    height: 12px;
    border-bottom: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    display: block;
    position: absolute;
    top: 3px;
    left: 7px;
    transform: rotate(45deg);
    z-index: 2;
}

.reservationsForm-refund {
	color: var(--grey-light);
	text-align: center;
	font-size: var(--text-size-sm);
	font-weight: 400;
}






.blog-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -16px -32px;
}
.blog-item {
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
	margin: 0 0 32px;
	padding: 0 16px;
}
.blog-item__wrap {
	position: relative;
    background: var(--white);
    box-shadow: 0px 5px 15px 0px rgba(229, 231, 236, 1);
    border: 1px solid #C7CBDB;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
}
.blog-item__image {
	position: relative;
	overflow: hidden;
	flex: 0 0 calc((var(--container) - 32px * 2) / 3 / 1.5);
	max-height: calc((var(--container) - 32px * 2) / 3 / 1.5);
}
.blog-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 1s;
}
.blog-item__wrap:hover .blog-item__image img {
	transform: scale(1.05);
}
.blog-item__info {
	position: relative;
	flex: auto;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.blog-item__title {
	font-size: var(--h6-size);
	margin-bottom: 20px;
}
.blog-item__more a {
	display: inline-flex;
	align-items: center;
	color: var(--blue);
}
.blog-item__more a:after {
	content: '';
	-webkit-mask-image: url(images/arrow-right.svg);
    mask-image: url(images/arrow-right.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background-color: var(--blue);
    flex: 0 0 12px;
    max-width: 12px;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    transition: .25s;
}
.blog-item__more a:hover:after {
	margin-left: 15px;
}

.navigation.pagination {
	position: relative;
	margin-top: 36px;
	display: block;
	z-index: 3;
}
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-numbers {
	position: relative;
    margin-right: 8px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    height: 36px;
    min-width: 36px;
    border-radius: 7px;
}
.page-numbers:last-child {
	margin-right: 0;
}
.page-numbers:hover,
.page-numbers.current {
	border-color: var(--blue);
	background: var(--blue);
	color: var(--white);
}



.blogSingle-image {
	position: relative;
	text-align: center;
	margin-bottom: 30px;
}
.blogSingle-image img {
	max-height: 360px;
	border-radius: 20px;
}
.blogSingle-content {
	position: relative;
	overflow: hidden;
}
.blogSingle-content h1 {
	font-size: 32px;
}
.blogSingle-content h2 {
	font-size: 28px;
}
.blogSingle-content h3 {
	font-size: 24px;
}
.blogSingle-content h4 {
	font-size: 22px;
}
.blogSingle-content h5 {
	font-size: 20px;
}
.blogSingle-content h6 {
	font-size: 18px;
}




.faq-items {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
	z-index: 1;
}
.faq-item {
	position: relative;
	background: var(--white);
	border: 1px solid var(--blue-dark);
	margin-bottom: 20px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	padding: 13px 10px 13px 20px;
	transition: .5s;
	z-index: 1;
}
.faq-item:last-child {
	margin-bottom: 0;
}
.faq-item.active {
	background: var(--blue-dark);
	color: var(--white);
}
.faq-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: var(--h6-size);
	color: var(--black);
	line-height: 1.1;
	font-weight: 700;
	cursor: pointer;
	transition: .5s;
}
.active .faq-item__head {
	color: var(--white);
}
.faq-item__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	max-width: 30px;
	width: 30px;
	height: 30px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-left: 20px;
	background: var(--blue-dark);
	transition: .5s;
}
.active .faq-item__toggle {
	background: var(--white);
}
.faq-item__toggle:before {
	content: '';
	-webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-image: url(images/arrow-down.svg);
    mask-image: url(images/arrow-down.svg);
    background-color: var(--white);
    flex: 0 0 24px;
    max-width: 24px;
    width: 24px;
    height: 24px;
    transition: .25s;
}
.active .faq-item__toggle:before {
	background-color: var(--blue-dark);
    transform: rotate(180deg);
}
.faq-item__body {
	font-weight: 300;
	margin-top: 10px;
}



.hr-line {
	position: relative;
	display: block;
	width: var(--container);
	height: 1px;
	margin: 0 auto;
	background: #242424;
	opacity: .1;
}


.info-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.info-left {
	flex: 0 0 calc(50% - 60px);
	max-width: calc(50% - 60px);
}
.info-right {
	flex: 0 0 50%;
	max-width: 50%;
}
.info-content {
	color: var(--grey-light);
	font-weight: 300;
	font-size: var(--h6-size);
	line-height: 1.66;
}







@media (max-width: 1249px) {
	:root {
		--container: 910px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.header-main {
		padding: 20px 0;
	}
	.main-menu li {
    	margin-right: 24px;
	}
	.hero-bottom-wrap {
		padding: 30px;
	}
	.hero-form-title {
		max-width: 160px;
		margin-right: 20px;
	}
	.hero-heading {
		font-size: calc(var(--h1-size) * 1.6);
	}
	.formCheck-form.form-fields {
		margin: 0 -8px -16px;
	}
	.formCheck-form.form-fields .form-field {
		margin: 0 0 16px;
		padding: 0 8px;
	}
	.formCheck-input {
		flex: 0 0 calc((100% - 135px - 170px) / 2);
		max-width: calc((100% - 135px - 170px) / 2);
	}
	.formCheck-price {
    	flex: 0 0 135px;
    	max-width: 135px;
	}
	.formCheck-button {
    	flex: 0 0 170px;
    	max-width: 170px;
	}
	.advantages-items {
		margin: 0 -15px -40px;
	}
	.advantages-item {
		margin: 0 0 40px;
		padding: 0 15px;
	}
	.about-left,
	.about-2-left {
		padding: 70px 40px 70px 50px;
	}
	.about-2-wrap {
		min-height: 360px;
	}
	.process-item__text {
		font-size: var(--text-size);
	}
	.price-left {
	    flex: 0 0 calc(46% - 20px);
	    max-width: calc(46% - 20px);
	}
	.price-right {
    	flex: 0 0 calc(54% - 20px);
    	max-width: calc(54% - 20px);
	}
	.banner-block-title {
		font-size: var(--h4-size);
	}
	.banner-block-text {
		font-size: var(--h5-size);
	}
	.banner-image {
		width: 400px;
		right: -180px;
	}
	.location-title {
		font-size: var(--h5-size);
	}
	.footer-menu {
		-moz-column-count: 1;
	    -webkit-column-count: 1;
	    column-count: 1;
	    -moz-column-gap: 0px;
	    -webkit-column-gap: 0px;
	    column-gap: 0px;
	}
	.header-phone {
		font-size: var(--h5-size);
	}
	.footer-contacts p.phone {
		font-size: var(--h4-size);
	}

	.info-left {
	    flex: 0 0 calc(50% - 30px);
	    max-width: calc(50% - 30px);
	}
	.info-content {
		font-size: var(--text-size);
	}

}




@media (max-width: 991px) {
	:root {
		--container: 690px;

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 36px;
		--h2-size: 32px;
		--h3-size: 28px;
		--h4-size: 24px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.section {
		padding-top: 65px;
		padding-bottom: 65px;
	}
	.main-menu,
	.header-button {
		display: none;
	}
	.header-main,
	.header.fixed .header-main {
		padding: 10px 0;
	}
	.header-logo {
		flex: auto;
		margin-right: 20px;
	}
	.header-contacts {
		flex: 0 0 auto;
		margin-right: 30px;
	}
	.topbar {
		min-height: 40px;
		padding: 8px 0;
	}
	.topbar-message {
		font-size: var(--text-size-sm);
	}
	.hero-section {
		min-height: 480px;
		padding: 150px 0 35px;
	}
	.hero-left {
	    flex: 0 0 100%;
	    max-width: 100%;
	    margin-bottom: 30px;
	    padding-top: 0;
	}
	.hero-heading {
        font-size: calc(var(--h1-size)* 1.3);
        text-align: center;
    }
    .hero-description {
    	font-size: var(--h4-size);
        text-align: center;
    }
    .hero-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-bottom: 30px;
    }
    .hero-bottom-wrap {
    	display: block;
    }
    .hero-form-title {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-right: 0;
    	margin-bottom: 20px;
    }
    .formCheck-form.form-fields .form-field {
    	flex: 0 0 50%;
    	max-width: 50%;
    }
    .advantages-left {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-bottom: 30px;
    }
    .advantages-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .about-left,
    .about-2-left {
        padding: 40px 30px;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .about-right,
    .about-2-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    	height: 360px;
    }
    .about-2-images {
    	/*width: 100vw;
    	margin-left: calc((100vw - var(--container)) / -2);*/
    }
    .process-block {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .process-item__wrap:before {
    	left: calc(var(--container) / 6 - 12px);
    }
    .price-left {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-bottom: 30px;
    }
    .price-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .price-form {
    	margin: 0 auto;
    }
    .tariffs-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .tariffs-item.popular .tariffs-item__wrap {
    	margin-top: 0;
    	height: 100%;
    }
    .banner-wrap {
    	flex-wrap: wrap;
    	padding-right: 100px;
    }
    .banner-block {
    	flex: 0 0 50%;
    	max-width: 50%;
    	margin-bottom: 30px;
    	margin-right: 0;
    }
    .banner-block:nth-child(3) {
    	margin-bottom: 0;
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .footer-wrap {
    	flex-direction: column;
    	margin: 0;
    	align-items: center;
    	padding: 40px 0;
    }
    .footer-widget {
    	text-align: center;
    	max-width: 100%;
    	margin-bottom: 30px;
    }
    .footer-widget:last-child {
    	margin-bottom: 0;
    }
    .bottom-wrap {
    	padding-bottom: 20px;
    	flex-direction: column;
    	align-items: center;
    	text-align: center;
    }
    .bottom-menu {
    	margin: 0 0 10px;
    	display: block;
    	order: 1;
    }
    .bottom-menu li {
    	margin-right: 0;
    	margin-bottom: 4px;
    }
    .bottom-menu li:last-child {
    	margin-bottom: 0;
    }
    .copyright {
    	order: 2;
    	margin-bottom: 8px;
    }
    .developer {
    	order: 3;
    }

    .pageThanks-section,
    .page-header {
    	padding: 150px 0 35px;
    }
    .error-404-number {
    	font-size: calc(var(--h1-size) * 5);
    }



    .blog-item {
    	flex: 0 0 50%;
    	max-width: 50%;
    }
    .blog-item__image {
    	flex: 0 0 calc((var(--container) - 32px) / 2 / 1.5);
    	max-height: calc((var(--container) - 32px) / 2 / 1.5);
    }


    .reviews-left {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-bottom: 24px;
    }
    .reviews-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }


    .payments-item__image {
    	height: 44px;
    }
    .payments-item__image img {
    	max-height: 44px;
    }


    .processFeedback-image {
    	left: 0;
    }
    .processFeedback-wrap {
    	padding: 24px 100px 16px;
    }


    .info-left {
    	flex: 0 0 100%;
    	max-width: 100%;
    	margin-bottom: 20px;
    }
    .info-right {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
}


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

		--text-size: 16px;
		--text-size-sm: 14px;
		--h1-size: 32px;
		--h2-size: 28px;
		--h3-size: 24px;
		--h4-size: 22px;
		--h5-size: 20px;
		--h6-size: 18px;
	}
	.modal-dialog {
		max-width: 100%;
		margin-left: 15px;
		margin-right: 15px;
	}
	.modal-content {
		padding: 50px 40px 40px;
	}
	.banner-image {
		display: none;
	}
	.banner-wrap {
		padding-right: 0;
	}
	.location-title {
		flex-direction: column-reverse;
        align-items: center;
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        transform: translate(-50%, calc(50% - 39px));
        top: auto;
        text-align: center;
        bottom: 50%;
	}
	.location-title svg {
		flex: 0 0 36px;
		max-width: 36px;
		height: 44px;
		margin: 20px 0 0 0;
	}

	.reservationsForm-block {
		margin-bottom: 40px;
	}
	.form-field-50 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.form-field-radioButtons {
		margin-bottom: 30px;
	}
	.form-field-radioButton {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 6px;
	}
    @media (max-width: 767px) {
    	.form-field-radioButton {
    		margin-bottom: 20px;
    	}
    }
	.form-field-radioButton:last-child {
		margin-bottom: 0;
	}
	.reservationsForm-bottom {
		display: block;
	}
	.reservationsForm-policy {
		margin-bottom: 30px;
	}
	.reservationsForm-btn {
		flex-direction: column;
	}
	.reservationsForm-btn .btn {
		margin: 0 0 10px;
		width: 100%;
	}
	.reservationsForm-btn .btn:last-child {
		margin-bottom: 0;
	}
}







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

		--text-size: 15px;
		--text-size-sm: 13px;
		--h1-size: 28px;
		--h2-size: 24px;
		--h3-size: 22px;
		--h4-size: 20px;
		--h5-size: 18px;
		--h6-size: 16px;
	}
	.header-logo {
		margin-right: 16px;
	}
	.header-logo img {
		max-width: 100%;
	}
	.header-contacts {
		margin-right: 16px;
	}
	.hero-section {
		min-height: 775px;
	}
	.formCheck-form.form-fields .form-field {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.formCheck-summ {
		height: auto;
	}
	.advantages-items {
		margin: 0 -15px -30px;
	}
	.advantages-item {
		flex: 0 0 100%;
		max-width: 100%;
		margin: 0 0 30px;
		padding: 0 15px;
	}
	.process-items {
		margin: 0 -5px -10px;
	}
	.process-item {
		margin: 0 0 10px;
		padding: 0 5px;
	}
	.process-item__text {
		font-size: var(--text-size-sm);
	}
	.process-item__wrap:before {
        left: calc(var(--container) / 6 - 2px);
        width: calc(100% + 6px);
    }
    .price-form {
    	padding: 30px;
    }
    .banner-block {
    	margin-right: 20px;
    	flex: 0 0 calc(50% - 10px);
    } 
    .banner-block:nth-child(2) {
    	margin-right: 0;
    }
    .banner-block-button .btn {
        min-width: auto;
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;
    }
    .header-phone {
        font-size: var(--h6-size);
    }
    .header-whatsapp {
    	margin-left: 8px;
    }
    .header-whatsapp a,
    .header-whatsapp a svg {
    	width: 20px;
    	height: 20px;
    }

    .blog-item {
    	flex: 0 0 100%;
    	max-width: 100%;
    }
    .blog-item__image {
    	flex: 0 0 calc(var(--container) / 1.5);
    	max-height: calc(var(--container) / 1.5);
    }

    .payments-item {
    	flex: 0 0 calc(100% / 3);
    	max-width: calc(100% / 3);
    }

    .processFeedback-wrap {
    	padding-right: 16px;
    }
}

#js-cash.loading, #js-online.loading {
	position: relative;
}

#js-cash.loading::after,  #js-online.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border: 2px solid #fff;
	border-top: 2px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	transform: translate(-50%, -50%);
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.error {
	box-shadow: inset 0 0 10px 1px rgba(255, 102, 102, 0.8);
}

.error-mail {
	box-shadow: inset 0 0 10px 1px rgba(255, 102, 102, 0.8);
}

@media (max-width: 480px) {
	.heroForm-price {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.angle-bottom {
	display: inline-block;
	width: 15px;
	height: 9px;
	background: url(./images/angle-bottom.svg) no-repeat center center;
	margin-left: 10px;
	transition: .3s ease-in-out;
}

.angle-bottom.active {
	transform: rotate(180deg);
}

.reservationsForm-additionally {
	margin-bottom: 0;
    padding: 0;
}

.reservationsForm-additionally .reservationsForm-additionally-top {
	width: max-content;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #0274E8;
	cursor: pointer;
	margin-bottom: 15px;
}


.reservationsForm-additionally .reservationsForm-additionally-bottom p {
	margin-bottom: 7px;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #7F87A1;
}

.hidden-optional {
	display: none;
}

.not-opacity {
	display: none !important;
}

.video-wrapper {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 56.25%; /* співвідношення 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 20px;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.coupon-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}

.coupon-wrapper div {
	width: calc(60% - 5px);
}

.couponCheckBtn {
	width: calc(40% - 5px);
	height: 50px;
	background: #0274E8;
	color: #fff;
	text-transform: uppercase;
	border: none;
	border-radius: 10px;
	cursor: pointer;
}

.reservationsForm-game {
	margin-bottom: 40px;
	padding-left: 0;
}

.reviews-section {
	padding-top: 50px;
	padding-bottom: 0;
}

.social {
	width: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 30%;
	right: 0;
	gap: 5px;
	z-index: 1000;
}
@media (max-width: 480px) {
	.social {
		width: 40px;
	}
}

.social .social-item {
	width: 100%;
	height: 60px;
	background: #0274E8;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 480px) {
	.social .social-item {
		height: 40px;
	}
}

.social .social-item img {
	width: 30px;
	height: 30px;
	object-fit: cover;
	object-position: center;
}
@media (max-width: 480px) {
	.social .social-item img {
		width: 20px;
		height: 20px;
	}
}

.price-per-day {
    display: inline !important;
}

/**
 * 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%}


.faq-show-more.btn {
	display: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 16px;
    padding: 12px 33px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin: 50px auto 0 auto;
}