@charset "UTF-8";

:root {
	/* Colors */
	/* Мигдаль Крайола */
	--agds-color-1: #ECDACA;
	--agds-color-1-rgb: 236, 218, 202;

	/* Мідний Крайола */
	--agds-color-2: #D99C69;
	--agds-color-2-rgb: 217, 156, 105;

	/* Світлий коричневий */
	--agds-color-3: #AF7542;
	--agds-color-3-rgb: 175, 117, 66;

	/* Горіхово-коричневий */
	--agds-color-4: #5F4426;
	--agds-color-4-rgb: 95, 68, 38;

	/* Олень коричневий */
	--agds-color-5: #51391D;
	--agds-color-5-rgb: 81, 57, 29;

	/* Темний коричневий */
	--agds-color-6: #402C15;
	--agds-color-6-rgb: 64, 44, 21;

	/* Чорний коричневий */
	--agds-color-7: #251809;
	--agds-color-7-rgb: 37, 24, 9;

	/* Чорний коричневий */
	--agds-color-8: #857265;
	--agds-color-8-rgb: 133, 114, 101;

	--agds-white: #ffffff;
	--agds-white-rgb: 255, 255, 255;
	--agds-light: #f8f9fa;
	--agds-light-2: #C4C4C4;
	--agds-grey: #7B7B7B;
	--agds-dark: #0F0F0F;
	--agds-black: #000000;
	--agds-black-rgb: 0, 0, 0;

	/* Sizes */
	--agds-gap: calc(16px + (20 - 16) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	--agds-gap-card: calc(20px + (30 - 20) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	--agds-gap-ls: calc(30px + (40 - 30) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	--agds-gap-sm: calc(30px + (60 - 30) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	--agds-gap-md: calc(40px + (80 - 40) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	--agds-gap-xl: calc(50px + (100 - 50) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	--agds-gap-xxl: calc(60px + (120 - 60) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));

	/* Transitions */
	--agds-transition: var(--agds-transition-duration-sm) var(--agds-transition-timing-function);
}

/* MAIN */
html,
body {
	color: var(--agds-color-4);
	letter-spacing: 0.03rem;
	background-color: var(--agds-light);

}

.bg-brown {
	color: var(--agds-white);
	fill: var(--agds-white);
	background-color: var(--agds-color-7);
}

.text-brown-light {
	color: var(--agds-color-3);
}

._b-top {
	border-top: 1px solid var(--agds-color-1);
}

._decor-image-border {
	padding: 10px;
	border: 1px solid var(--agds-color-1);
	border-radius: calc(var(--agds-border-radius) * 7);
}

._decor-image-border img {
	border-radius: calc(var(--agds-border-radius) * 6);
}

body:not(.home) .main {
	margin-top: var(--agds-header-height);
}

.title-decor {
	position: relative;
	padding-bottom: 32px;
	margin-bottom: 42px;
}

.title-decor::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	width: 202px;
	height: 13px;
	background-image: url('../img/decor/decor-title-brown-light.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	opacity: .8;
}

.title-decor--brown::after {
	background-image: url('../img/decor/decor-title-brown.svg');
}

.bg-brown .title-decor--brown::after {
	opacity: 1;
}

.section-title {
	color: var(--agds-dark);
}

.section-title.title-decor::after {
	opacity: 1;
}

.sticky-this {
	position: -moz-sticky;
	position: -ms-sticky;
	position: sticky;
	-webkit-transition: top var(--agds-header-transition);
	-o-transition: top var(--agds-header-transition);
	transition: top var(--agds-header-transition);
	top: calc(var(--agds-header-height) + 20px);
}

._img-zoom-icon {
	position: relative;
}

._img-zoom-icon::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(var(--agds-black-rgb), 30%);
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

._img-zoom-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 36px;
	height: 36px;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTciIGhlaWdodD0iNTciIHZpZXdCb3g9IjAgMCA1NyA1NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTU1LjQ5OTQgNTUuNUw0Mi43ODkgNDIuNzY3TTQ5LjgzMjcgMjUuNzVDNDkuODMyNyAzMi4xMzczIDQ3LjI5NTMgMzguMjYzIDQyLjc3ODggNDIuNzc5NUMzOC4yNjIzIDQ3LjI5NiAzMi4xMzY2IDQ5LjgzMzMgMjUuNzQ5NCA0OS44MzMzQzE5LjM2MjEgNDkuODMzMyAxMy4yMzY0IDQ3LjI5NiA4LjcxOTg2IDQyLjc3OTVDNC4yMDMzNiAzOC4yNjMgMS42NjYwMiAzMi4xMzczIDEuNjY2MDIgMjUuNzVDMS42NjYwMiAxOS4zNjI3IDQuMjAzMzYgMTMuMjM3IDguNzE5ODYgOC43MjA0N0MxMy4yMzY0IDQuMjAzOTcgMTkuMzYyMSAxLjY2NjYzIDI1Ljc0OTQgMS42NjY2M0MzMi4xMzY2IDEuNjY2NjMgMzguMjYyMyA0LjIwMzk3IDQyLjc3ODggOC43MjA0N0M0Ny4yOTUzIDEzLjIzNyA0OS44MzI3IDE5LjM2MjcgNDkuODMyNyAyNS43NVYyNS43NVoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=');
	background-repeat: no-repeat;
	background-size: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	z-index: 1;
}

._img-zoom-icon:hover::before,
._img-zoom-icon:hover::after {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

@media screen and (max-width: 767px) {
	._decor-image-border {
		padding: 5px;
	}

	.title-decor {
		padding-bottom: 24px;
		margin-bottom: 32px;
	}
}

/* Preloader */
.preloader {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(var(--agds-black-rgb), 80%);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	z-index: 99;
	display: none
}

/* Overlay Main*/
.fancybox__backdrop,
.overlay-main {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(var(--agds-black-rgb), 70%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	z-index: 9;
}

.fancybox__footer {
	z-index: 99;
}

html.with-fancybox .fancybox__backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

/* Breadcrumbs */
.breadcrumbs {
	padding: 20px 0;
	font-size: 14px;
	color: var(--agds-color-3);
}

.breadcrumbs__list {
	white-space: nowrap;
	overflow: auto
}

.breadcrumbs__list li:first-child {
	position: relative;
	padding-left: 22px
}

.breadcrumbs__list li:first-child:before {
	content: '';
	position: absolute;
	left: 0;
	top: 6%;
	width: 14px;
	height: 14px;
	background-image: url('../img/icons/i-home.svg');
	background-repeat: no-repeat;
	background-size: 100%
}

.breadcrumbs__list li a:hover {
	color: var(--agds-color-2)
}

.breadcrumbs__list::-webkit-scrollbar {
	display: none
}

.breadcrumbs__separator {
	padding: 0 14px;
	font-size: 14px;
}

.breadcrumb__last {
	color: var(--agds-grey);
}

.breadcrumbs+section {
	margin-top: var(--agds-gap-ls);
}

@media screen and (max-width: 767px) {
	.breadcrumbs {
		padding: 18px 0;
		font-size: 12px
	}

	.breadcrumbs__separator {
		padding: 0 10px
	}

	.breadcrumbs__list li:first-child {
		padding-left: 21px
	}

	.breadcrumbs__list li:first-child:before {
		width: 14px;
		height: 14px;
		top: -5%;
	}
}


/* BUTTONS */
.btn {
	display: inline-block;
	position: relative;
	border-radius: var(--agds-border-radius-md);
	padding: 18px 24px;
	font-weight: 600;
	text-align: center;
	line-height: 1;
	text-transform: uppercase;
	border: none;
	outline: none;
	cursor: pointer;
	color: var(--agds-white);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.btn--sm {
	padding: 12px 20px;
	border-radius: var(--agds-border-radius-sm);
	font-weight: 400;
	font-size: 14px;
}

/* Main Button */
.btn-main {
	background-color: var(--agds-color-3);
}

.btn-main:hover {
	background-color: var(--agds-color-2);
}

/* Accent Button */
.btn-accent {
	color: var(--agds-color-2);
	border: 1px solid var(--agds-color-2);
	background-color: var(--agds-white);
}

.btn-accent:hover {
	background-color: var(--agds-color-2);
	color: var(--agds-white);
}

.btn-accent.btn-has-icon svg {
	fill: var(--agds-color-2);
}

.btn-accent.btn-has-icon:hover svg {
	fill: var(--agds-white);
}

/* Border Button */
.btn-border {
	background-color: transparent;
	border: 1px solid var(--agds-color-2);
}

.btn-border:hover {
	background-color: var(--agds-color-2);
	color: var(--agds-white);
}

.btn-border--white {
	border-color: var(--agds-white);
}

.btn-border--white:hover {
	border-color: var(--agds-color-2);
}

.btn-border--brown {
	border-color: var(--agds-color-2);
	background-color: rgb(var(--agds-color-2-rgb), 20%);
}

/* Has Icon Button */
.btn-has-icon {
	padding-right: 20px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.btn-has-icon svg {
	--flex: 15px;
	position: relative;
	fill: var(--agds-white);
	-webkit-box-flex: 0;
	-ms-flex: 0 0 var(--flex);
	flex: 0 0 var(--flex);
	max-width: var(--flex);
	height: var(--flex);
	margin-left: 12px;
}

.socials-link-text:hover svg,
.btn-has-icon:hover svg {
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}

.btn-main.btn-has-icon:hover svg {
	fill: var(--agds-white);
}

@media screen and (max-width: 767px) {
	.btn {
		font-size: 14px;
	}
}

/* MODALS */
.modal {
	--gap-x: calc(20px + (50 - 20) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	--gap-y: calc(30px + (50 - 30) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	cursor: auto !important;
	max-width: 600px;
	width: 100%;
	padding: var(--gap-y) var(--gap-x);
	border-radius: var(--agds-border-radius-xl);
	background-color: rgb(var(--agds-white-rgb), 100%);
}

.is-compact .fancybox__content>.f-button.is-close-btn {
	background-color: transparent;
}

/* Form Booking */
.form-booking {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1160px;
	padding: var(--agds-gap-card);
	background-color: rgb(var(--agds-color-8-rgb), 40%);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	border-radius: calc(var(--agds-border-radius) * 6);
}

.form-booking .title {
	position: relative;
	font-weight: 400;
}

.form-booking .title::before {
	content: '';
	display: inline-block;
	margin-bottom: -2px;
	margin-right: 5px;
	width: 18px;
	height: 18px;
	background-image: url('../img/icons/i-clipboard-text.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

.form-booking .btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wpforms-confirmation-container img {
	margin-bottom: 30px;
}

.wpforms-confirmation-container h3 {
	font-weight: 600;
	margin-bottom: 10px;
}

.wpforms-submit-container {
	position: relative;
	text-align: center;
}

label.wpforms-field-label {
	display: block;
	cursor: pointer;
	font-size: 14px;
	color: var(--agds-grey);
}

.wpforms-required-label {
	color: var(--agds-danger);
}

.modal .wpforms-field:not(.wpforms-field-hidden, .wpforms-field-checkbox) {
	position: relative;
	margin-bottom: 20px;
}

.flatpickr-input::-webkit-input-placeholder {
	color: inherit;
}

.flatpickr-input::-moz-placeholder {
	color: inherit;
}

.flatpickr-input:-ms-input-placeholder {
	color: inherit;
}

.flatpickr-input::-ms-input-placeholder {
	color: inherit;
}

.flatpickr-input::placeholder {
	color: inherit;
}

form .wpforms-field:not(.wpforms-field-hidden, .wpforms-field-checkbox) {
	padding: 12px 20px;
	color: var(--agds-black);
	background-color: var(--agds-light);
	border-radius: var(--agds-border-radius-md);
	border: 1px solid transparent;
}

form .wpforms-field {
	position: relative;
}

.form-wrap div.wpforms-container .wpforms-form .choices__inner,
form input[type=email],
form input[type=text] {
	padding: 3px 0;
	background-color: transparent;
	color: var(--agds-black);
	width: 100%;
	font-weight: 400;
	border-radius: 0;
	outline: none !important;
	line-height: 1;
	border: none;
	position: relative;
}

form input[type="checkbox"].wpforms-error+label:before,
form .wpforms-field.wpforms-has-error {
	border-color: var(--agds-danger);
}

.form-wrap div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item--selectable:after {
	display: none;
}

.form-wrap div.wpforms-container .wpforms-form .choices__list--single {
	padding: 0;
	font-size: inherit;
}

.form-wrap div.wpforms-container .wpforms-form .choices {
	margin-bottom: 0;
	position: static;
}

.form-wrap div.wpforms-container .wpforms-form .choices__list--dropdown {
	padding: 10px 0;
	left: 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: auto;
	background-color: var(--agds-white);
	border-radius: var(--agds-border-radius-md) !important;
	border: none;
	top: calc(100% + 5px);
	-webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
	box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
	-webkit-animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
	animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
}

.form-wrap div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item {
	padding: 10px 25px;
	font-size: inherit;
}

.form-wrap div.wpforms-container .wpforms-form .choices__list--dropdown .choices__item--selectable.is-highlighted {
	background-color: transparent;
	color: var(--agds-color-2);
}

.form-wrap div.wpforms-container .wpforms-form .choices[data-type*="select-one"]:after {
	right: 40px;
	margin-top: -1px;
	border-color: var(--agds-color-3) transparent transparent transparent;
}

.form-wrap div.wpforms-container .wpforms-form .choices[data-type*="select-one"] .choices__button {
	top: 50%;
	-webkit-transform: translateY(-35%);
	-ms-transform: translateY(-35%);
	transform: translateY(-35%);
	right: -5px;
	margin-right: 0;
}

.form-wrap div.wpforms-container .wpforms-form .choices__list--single .choices__item {
	color: var(--agds-black) !important;
}

.form-wrap div.wpforms-container .wpforms-form .choices__placeholder {
	opacity: 1 !important;
}

.choices__item--choice.is-selected {
	display: none;
}

.wpforms-field-checkbox {
	margin-bottom: 30px;
	padding: 0 20px;
}

.wpforms-field-date-time::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 30px;
	width: 22px;
	height: 22px;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMuMTQzNDIgMy44NTY5M0MyLjc2NDUzIDMuODU2OTMgMi40MDExNyA0LjAwNzQ0IDIuMTMzMjYgNC4yNzUzNUMxLjg2NTM1IDQuNTQzMjYgMS43MTQ4NCA0LjkwNjYyIDEuNzE0ODQgNS4yODU1MVYxOC44NTY5QzEuNzE0ODQgMTkuMjM1OCAxLjg2NTM1IDE5LjU5OTIgMi4xMzMyNiAxOS44NjcxQzIuNDAxMTcgMjAuMTM1IDIuNzY0NTMgMjAuMjg1NSAzLjE0MzQyIDIwLjI4NTVIMTguODU3N0MxOS4yMzY2IDIwLjI4NTUgMTkuNTk5OSAyMC4xMzUgMTkuODY3OSAxOS44NjcxQzIwLjEzNTggMTkuNTk5MiAyMC4yODYzIDE5LjIzNTggMjAuMjg2MyAxOC44NTY5VjUuMjg1NTFDMjAuMjg2MyA0LjkwNjYyIDIwLjEzNTggNC41NDMyNiAxOS44Njc5IDQuMjc1MzVDMTkuNTk5OSA0LjAwNzQ0IDE5LjIzNjYgMy44NTY5MyAxOC44NTc3IDMuODU2OTNIMTYuMDAwNiIgc3Ryb2tlPSIjQUY3NTQyIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xLjcxNDg0IDguODU2OTNIMjAuMjg2MyIgc3Ryb2tlPSIjQUY3NTQyIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik02IDEuNzE0MzZWNi4wMDAwNyIgc3Ryb2tlPSIjQUY3NTQyIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNiAxLjcxNDM2VjYuMDAwMDciIHN0cm9rZT0iI0FGNzU0MiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNiAzLjg1NjkzSDEzLjE0MjkiIHN0cm9rZT0iI0FGNzU0MiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K');
	background-repeat: no-repeat;
	background-size: 100%;
	z-index: 2;
}

.book-time::before {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0nI0FGNzU0MicgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yMi4wMDEgMTNjMC01LjUyMi00LjQ3NS0xMC4wMDEtMTAuMDAyLTEwLjAwMS01LjUyMyAwLTEwLjAwMSA0LjQ3OS0xMC4wMDEgMTAuMDAxIDAgNC4zMTYgMy4wODcgMTAgMTAuMDAxIDEwIDYuOTMgMCAxMC4wMDItNS42OTMgMTAuMDAyLTEwem0tMTAuMDAyIDhjLTQuNDExIDAtOC4wMDEtMy41OS04LjAwMS04IDAtNC40MTMgMy41OS04LjAwMSA4LjAwMS04LjAwMSA0LjQxMiAwIDguMDAyIDMuNTg4IDguMDAyIDguMDAxIDAgNC40MS0zLjU5IDgtOC4wMDIgOHptLTEuMjc5LTYuODE3bC0yLjMyNS0yLjE4My0xLjM5NSAxLjQzNSAzLjc0NiAzLjU2NSA2LjU1OS02LjU5Mi0xLjQyMi0xLjQwOC01LjE2MyA1LjE4M3ptLTkuOTE4LTUuNDY4Yy0uNTM1LS44MjQtLjgwMi0xLjc3Mi0uODAyLTIuNzE4IDAtMi43NTcgMi4yMzMtNC45OTUgNC45OTEtNC45OTUuOTQ4IDAgMS44OTYuMjY4IDIuNzIxLjgwMy0zLjE3MiAxLjIxNy01LjY5MiAzLjczOS02LjkxIDYuOTF6bTE4LjIwMS03LjcxNWMtLjk0NyAwLTEuODk1LjI2OC0yLjcxOS44MDMgMy4xNyAxLjIxOCA1LjY5NCAzLjczOSA2LjkxNCA2LjkwOS41MzQtLjgyMy44MDEtMS43Ny44MDEtMi43MTcgMC0yLjc2MS0yLjIzNi00Ljk5NS00Ljk5Ni00Ljk5NXoiLz48L3N2Zz4=');
}

.book-time input::-webkit-input-placeholder {
	color: var(--agds-black);
}

.book-time input::-moz-placeholder {
	color: var(--agds-black);
}

.book-time input:-ms-input-placeholder {
	color: var(--agds-black);
}

.book-time input::-ms-input-placeholder {
	color: var(--agds-black);
}

.book-time input::placeholder {
	color: var(--agds-black);
}

.flatpickr-calendar {
	border-radius: var(--agds-border-radius-md) !important;
	margin-left: -20px;
	margin-top: 15px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
	background: var(--agds-color-3) !important;
	border-color: var(--agds-color-3) !important;
}

.flatpickr-day.today {
	border-color: var(--agds-color-3) !important;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
	background: var(--agds-color-1) !important;
	border-color: var(--agds-color-1) !important;
}

.ui-timepicker-wrapper {
	border: none !important;
	border-radius: var(--agds-border-radius-sm) !important;
	margin-top: -5px !important;
	margin-left: -5px !important;
	-webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
	box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
	-webkit-animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
	animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
}

.ui-timepicker-list:hover .ui-timepicker-selected {
	color: var(--agds-color-2) !important;
}

.ui-timepicker-list li {
	padding: 5px 0 5px 7px !important;
	font-size: 16px !important;
}

.ui-timepicker-wrapper::-webkit-scrollbar {
	width: 3px;
}

li.ui-timepicker-selected,
.ui-timepicker-list li:hover,
.ui-timepicker-list .ui-timepicker-selected:hover {
	background-color: transparent !important;
	color: var(--agds-color-2) !important;
}

li.ui-timepicker-selected {
	font-weight: 600;
}

.wpforms-field-checkbox a {
	color: var(--agds-color-2);
	text-decoration: underline;
}

em.wpforms-error,
.wpforms-hidden,
form label.wpforms-error,
form .wpforms-label-hide,
form .wpforms-sublabel-hide {
	display: none !important;
}

form input::-webkit-input-placeholder {
	color: var(--agds-grey);
}

form input::-moz-placeholder {
	color: var(--agds-grey);
}

form input:-ms-input-placeholder {
	color: var(--agds-grey);
}

form input::-ms-input-placeholder {
	color: var(--agds-grey);
}

form input::placeholder {
	color: var(--agds-grey);
}

form input[type="checkbox"] {
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

form input[type="checkbox"]+label {
	margin-left: -13px;
	position: relative;
	cursor: pointer;
	font-size: 14px;
}

form input[type="checkbox"]+label:before {
	content: '';
	top: -1px;
	-webkit-appearance: none;
	padding: 7px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 12px;
	border: 1px solid;
	border-radius: 2px;
}

form input[type="checkbox"]:checked+label:before {
	border: 1px solid var(--agds-color-2);
	background-color: var(--agds-color-2);
}

form input[type="checkbox"]:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 3px;
	left: 6px;
	width: 6px;
	height: 9px;
	border: solid var(--agds-white);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.fancybox__content :focus:not(.carousel__button.is-close) {
	outline: none
}

.wpforms-submit-spinner {
	position: absolute;
	bottom: 18px;
	left: 23px;
}

/* HEADER */
.header {
	position: fixed;
	right: var(--fancybox-scrollbar-compensate, 0);
	top: 0;
	left: 0;
	background-color: transparent;
	color: var(--agds-white);
	z-index: 10;
}

.header.header-nav--active::after,
.header::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(var(--agds-color-7-rgb), 90%);
	border-bottom: 1px solid var(--agds-color-6);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.header--transp::after {
	background-color: transparent;
	border-color: transparent;
	-webkit-backdrop-filter: blur(0px);
	backdrop-filter: blur(0px);
}

.header-container {
	max-width: 1700px;
}

.header__inner {
	height: var(--agds-header-height);
}

.logo {
	display: block;
	max-width: 200px;
}

nav ul.nav-list li.menu-item {
	position: relative;
}

nav ul.nav-list li.menu-item a {
	font-size: 14px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
}

nav ul.nav-list>li.menu-item:not(:last-child) {
	margin-right: 45px;
}

.contacts-item__link span,
.socials-link-text span {
	position: relative;
	display: inline-block;
}

.contacts-item__link span::after,
.socials-link-text span::after,
.footer-bottom a::after,
nav ul.nav-list li.menu-item a::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed transparent;
	opacity: 0;
	visibility: hidden;
}

.contacts-item__link:hover span::after,
.socials-link-text:hover span::after,
.nav ul.nav-list li.menu-item a[aria-current="page"][href]:not([href*="#"]):after,
.footer a:hover::after,
.nav ul.nav-list li.menu-item a._active::after,
.nav ul.nav-list li.menu-item a:hover::after {
	border-color: currentColor;
	opacity: 1;
	visibility: visible;
}

.menu-item-has-children__icon {
	display: none;
}

.header-right .phones {
	margin-right: 20px;
}

@media screen and (max-width: 1500px) {
	.header .logo {
		max-width: 180px;
	}

	nav ul.nav-list>li.menu-item:not(:last-child) {
		margin-right: 35px;
	}
}

@media screen and (min-width: 1200px) {
	.header__nav ul.nav-list .sub-menu {
		display: block;
		position: absolute;
		padding: 16px;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		max-width: 220px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		list-style: none;
		cursor: default;
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
		border-radius: var(--agds-border-radius-sm);
		border: 1px solid var(--agds-color-4);
		background-color: rgb(var(--agds-color-6-rgb), 85%);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
		z-index: 2;
	}

	.header__nav ul.nav-list>li>.sub-menu {
		max-width: 220px;
		top: 100%;
		left: -16px;
	}

	.header__nav ul.nav-list>li>.sub-menu li:not(:last-child) {
		margin-bottom: 10px;
	}

	.header__nav ul.nav-list>li.menu-item-has-children {
		padding-right: 16px;
		cursor: pointer;
	}

	.header__nav ul.nav-list>li.menu-item-has-children a {
		position: relative;
	}

	.header__nav ul.nav-list>li.menu-item-has-children::after {
		content: '';
		position: absolute;
		display: block;
		top: 50%;
		right: 0px;
		width: 9px;
		height: 9px;
		background-image: url('../img/icons/i-arrow-down.svg');
		background-size: 100%;
		background-repeat: no-repeat;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.header__nav ul.nav-list>li.menu-item-has-children:hover::after {
		-webkit-transform: rotate(180deg) translateY(50%);
		-ms-transform: rotate(180deg) translateY(50%);
		transform: rotate(180deg) translateY(50%);
	}

	.header__nav ul.nav-list>li.menu-item-has-children .sub-menu>li .sub-menu {
		left: 100%;
		top: -10px;
	}

	.header__nav ul.nav-list>li.menu-item-has-children .sub-menu>li:hover>.sub-menu,
	.header__nav ul.nav-list>li.menu-item-has-children:hover>.sub-menu {
		pointer-events: auto;
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width: 1199px) {
	.header__nav {
		position: fixed;
		right: -100%;
		top: var(--agds-header-height);
		width: 100%;
		max-width: 360px;
		height: calc(100% - var(--agds-header-height));
		padding: 30px 40px 20px;
		overflow: auto;
		color: var(--agds-white);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		will-change: auto;
		border-left: 1px solid var(--agds-color-6-rgb);
		background-color: rgb(var(--agds-color-7-rgb), 90%);
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
		gap: var(--agds-gap-ls);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.header__nav._show {
		right: 0%;
	}

	.burger {
		position: relative;
		width: 40px;
		height: 40px;
		margin-left: 30px;
		cursor: pointer;
		border: 1px solid var(--agds-color-2);
		border-radius: var(--agds-border-radius);
		background-color: rgb(var(--agds-color-2-rgb), 20%);
		z-index: 3;
	}

	.burger:before,
	.burger:after,
	.burger span {
		position: absolute;
		width: 50%;
		height: 2px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		background-color: var(--agds-white);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.burger:before {
		content: '';
		top: 12px;
	}

	.burger span {
		top: 18px;
	}

	.burger:after {
		content: '';
		bottom: 12px;
	}

	.burger._active:before {
		-webkit-transform: rotate(45deg) translateX(-50%);
		-ms-transform: rotate(45deg) translateX(-50%);
		transform: rotate(45deg) translateX(-50%);
		left: 45%;
		top: 24px;
	}

	.burger._active span {
		-webkit-transform: scale(0) translateX(-50%);
		-ms-transform: scale(0) translateX(-50%);
		transform: scale(0) translateX(-50%);
	}

	.burger._active:after {
		-webkit-transform: rotate(-45deg) translateX(-50%);
		-ms-transform: rotate(-45deg) translateX(-50%);
		transform: rotate(-45deg) translateX(-50%);
		left: 45%;
		bottom: 25px;
	}

	.header__nav ul.nav-list {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		max-width: 100%;
	}

	.header__nav::-webkit-scrollbar {
		display: none;
	}

	.header__nav ul.nav-list li.menu-item:not(:last-child) {
		margin-right: 0;
		margin-bottom: 10px;
		display: block;
		width: 100%;
		padding-bottom: 5px;
	}

	.header__nav ul.nav-list li.menu-item a {
		font-size: 16px;
	}

	.menu-item-has-children__icon {
		position: absolute;
		display: block;
		left: -30px;
		top: 0px;
		width: 20px;
		height: 20px;
		cursor: pointer;
		fill: var(--agds-white);
		-webkit-transition: var(--agds-transition);
		-o-transition: var(--agds-transition);
		transition: var(--agds-transition);
	}

	.menu-item-has-children__icon svg {
		padding: 5px;
		pointer-events: none;
	}

	.header__nav ul.nav-list>li.menu-item-has-children .sub-menu {
		padding: 12px 0px 12px 12px;
	}

	.header__nav ul.nav-list li.menu-item-has-children .sub-menu>li a {
		font-size: 14px;
	}

	.header__nav ul.nav-list>li.menu-item-has-children .sub-menu[hidden] {
		display: none;
	}

	.menu-item-has-children._active>.menu-item-has-children__icon {
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	.header__nav .phones-item__link {
		padding: 12px 20px;
		border-radius: var(--agds-border-radius);
		background-color: var(--agds-color-5);
		text-align: center;
		display: block;
		font-size: 14px;
		line-height: 1;
		margin-bottom: 8px;
		width: 100%;
	}

	.header__nav .phones-item__link:hover {
		color: var(--agds-black);
		background-color: var(--agds-color-2);
	}
}

@media screen and (max-width: 767px) {
	.header .logo {
		max-width: 160px;
	}

	.header__nav {
		max-width: 87%;
		padding: 30px 30px 20px 40px;
	}

	.burger {
		margin-left: 0;
	}

	.header-left .header__btn {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border: 1px solid var(--agds-color-2);
		border-radius: var(--agds-border-radius);
		background-color: rgb(var(--agds-color-2-rgb), 20%);
	}

	.header-left svg {
		fill: var(--agds-white);
		max-width: 50%;
	}
}

/* HERO SECTION */
.front-restaurant-2-section .container::after,
.front-restaurant-1-section .container::after,
.restaurant-about-3-section .container::after,
.hero-section .container::after {
	content: '';
	position: absolute;
	bottom: calc(var(--agds-gap-xl) * -0.5);
	left: 0;
	background-image: url('../img/decor/decor-star-brown-light.svg');
	width: 335px;
	height: 74px;
	background-size: 100%;
	background-repeat: no-repeat;
}

.front-restaurant-1-section .container::after,
.page-template-restaurant-about .hero-section .container::after,
.restaurant-about-3-section .container::after {
	width: 396px;
	height: 45px;
	left: -60px;
	background-image: url('../img/decor/decor-star-2-brown-light.svg');
}

.front-restaurant-2-section .container::after {
	left: auto;
	right: -60px;
}

.hero-gallery__bottom {
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
}

.hero-gallery .gallery__img img {
	aspect-ratio: var(--agds-aspect-ratio-md);
}

@media screen and (min-width: 992px) {
	.hero-content {
		max-width: 60%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 991px) {
	.hero-section {
		padding-bottom: 150px;
	}

	.hero-gallery {
		margin-top: var(--agds-gap-sm);
	}

	.page-template-restaurant-about .hero-section .container::after,
	.restaurant-about-3-section .container::after,
	.hero-section .container::after {
		bottom: -140px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.front-restaurant-section .container::after {
		display: none;
	}

	.page-template-restaurant-about .hero-section {
		padding-bottom: 100px;
	}

	.page-template-restaurant-about .hero-section .container::after,
	.restaurant-about-3-section .container::after {
		bottom: -100px;
	}
}

@media screen and (max-width: 767px) {

	.page-template-restaurant-about .hero-section .container::after,
	.restaurant-about-3-section .container::after,
	.hero-section .container::after {
		width: 80%;
	}
}

/* FRONT HERO SECTION*/
.front-hero-section {
	min-height: 600px;
	height: 100vh;
	z-index: 2;
}

.front-hero-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background-image: url('../img/decor/decor-bg-hero.svg');
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 2;
}

.front-hero-section__title.title-decor::after {
	opacity: .5;
}

.front-hero-slider img {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.front-hero-section__inner {
	position: absolute;
	top: 45%;
	left: 50%;
	width: calc(100% - var(--agds-gutter-xl));
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 3;
}

/* BOOKING SECTION */
.booking-section {
	z-index: 3;
}

.booking-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: -o-linear-gradient(bottom, rgb(var(--agds-color-7-rgb), 20%), rgb(var(--agds-color-7-rgb), 20%)),
		-o-linear-gradient(top, rgb(var(--agds-color-7-rgb), 30%) 49.94%, var(--agds-color-7) 100%);
	background: -webkit-gradient(linear, left bottom, left top, from(rgb(var(--agds-color-7-rgb), 20%)), to(rgb(var(--agds-color-7-rgb), 20%))),
		-webkit-gradient(linear, left top, left bottom, color-stop(49.94%, rgb(var(--agds-color-7-rgb), 30%)), to(var(--agds-color-7)));
	background: linear-gradient(0deg, rgb(var(--agds-color-7-rgb), 20%), rgb(var(--agds-color-7-rgb), 20%)),
		linear-gradient(180deg, rgb(var(--agds-color-7-rgb), 30%) 49.94%, var(--agds-color-7) 100%);
}

.booking-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 422px;
	background-image: url('../img/decor/decor-bg-booking.svg');
	background-size: 100%;
	background-repeat: no-repeat;
}

.front-hero-section .form-booking {
	position: absolute;
	bottom: var(--agds-gap-ls);
	text-align: left;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 5;
}

@media screen and (max-width: 991px) {
	.front-hero-section {
		height: 80vh;
	}

	.form-booking {
		max-width: calc(100% - var(--agds-gutter-xl));
	}

	.form-booking__inner.d-grid {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 767px) {
	.front-hero-section {
		height: 100vh;
		z-index: auto;
	}

	.front-hero-section__inner {
		top: 50%;
	}

	/* ScrollDown */
	.scroll-down {
		position: absolute;
		background-color: var(--agds-white);
		border-radius: 50%;
		bottom: 40px;
		width: 40px;
		height: 40px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-animation: pulse 3s infinite;
		animation: pulse 3s infinite;
		z-index: 9;
	}

	.scroll-down svg {
		position: absolute;
		top: 52%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 20px;
		height: 20px;
		fill: var(--agds-color-4);
	}

	@-webkit-keyframes pulse {
		0% {
			-webkit-box-shadow: 0 0 0 0 rgb(var(--agds-color-1-rgb), 40%);
			box-shadow: 0 0 0 0 rgb(var(--agds-color-1-rgb), 40%);
		}

		70% {
			-webkit-box-shadow: 0 0 0 25px transparent;
			box-shadow: 0 0 0 25px transparent;
		}

		100% {
			-webkit-box-shadow: 0 0 0 60px transparent;
			box-shadow: 0 0 0 60px transparent;
		}
	}

	@keyframes pulse {
		0% {
			-webkit-box-shadow: 0 0 0 0 rgb(var(--agds-color-1-rgb), 40%);
			box-shadow: 0 0 0 0 rgb(var(--agds-color-1-rgb), 40%);
		}

		70% {
			-webkit-box-shadow: 0 0 0 25px transparent;
			box-shadow: 0 0 0 25px transparent;
		}

		100% {
			-webkit-box-shadow: 0 0 0 60px transparent;
			box-shadow: 0 0 0 60px transparent;
		}
	}

	.form-booking__inner.d-grid {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}

	.front-hero-section .form-booking {
		bottom: auto;
		top: calc(100% + var(--agds-gap-md));
	}

	.booking-section .form-booking {
		max-width: 100%;
	}
}

/* MOTTO SECTION */
.motto-section {
	padding: calc(var(--agds-gap-xxl) * 2) 0;
	background-image: url('../img/bg/bg-motto.svg');
	background-position: bottom;
	background-size: 100%;
	background-repeat: no-repeat;
}

.motto-section__title {
	max-width: 82%;
	margin: 0 auto;
	/* opacity: .85; */
}

@media screen and (max-width: 991px) {
	.motto-section {
		background-size: 120%;
	}
}

@media screen and (max-width: 767px) {
	.motto-section {
		position: relative;
		background-image: url('../img/bg/bg-motto-mob.svg');
		background-position: center 86%;
		background-size: 100%;
		padding: 250px 0;
	}

	.motto-section::after,
	.motto-section::before {
		content: '';
		position: absolute;
		top: 50px;
		left: 50%;
		-webkit-transform: translateX(-50%) scale(-1, 1);
		-ms-transform: translateX(-50%) scale(-1, 1);
		transform: translateX(-50%) scale(-1, 1);
		width: 224px;
		height: 116px;
		background-image: url('../img/decor/decor-star-brown.svg');
		background-repeat: no-repeat;
		background-size: 100%;
	}

	.motto-section::after {
		-webkit-transform: translateX(-50%) scale(1);
		-ms-transform: translateX(-50%) scale(1);
		transform: translateX(-50%) scale(1);
		top: auto;
		bottom: 50px;
	}

	.widget-booking {
		height: 405px;
		top: 0;
		max-width: 100%;
		position: relative;
		margin: 80px 0 100px;
	}

	.motto-section__title {
		max-width: 100%;
	}
}

/* FRONT ROOMS SECTION */
.front-rooms-section {
	background-image: url('../img/bg/bg-rooms-slider.svg');
	background-position: center 85%;
	background-repeat: no-repeat;
	position: relative;
}

.swiper:not(.gallery-top, .gallery-thumbs, .about-rooms-slider) {
	overflow: initial;
}

.swiper:not(.gallery-top, .gallery-thumbs, .front-hero-slider) {
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background-color: var(--agds-color-3);
}

.swiper-pagination-bullet-active {
	background-color: var(--agds-color-2)
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 0;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 3px;
}

.swiper-button-disabled {
	opacity: .3;
	pointer-events: none;
}

.slider-button--prev {
	margin-right: 16px;
}

.slider-button svg {
	cursor: pointer;
	max-width: 30px;
	max-height: 30px;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.slider-button:hover svg {
	fill: var(--agds-color-2);
}

.card-item {
	border-radius: calc(var(--agds-border-radius) * 6);
	overflow: hidden;
	position: relative;
	-webkit-transition: var(--agds-transition-duration-md);
	-o-transition: var(--agds-transition-duration-md);
	transition: var(--agds-transition-duration-md);
}

.rooms-item {
	aspect-ratio: 490 / 550;
}

.offers-item {
	aspect-ratio: 450 / 350;
}

.card-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(var(--agds-color-7-rgb), 70%);
	-webkit-transition: var(--agds-transition-duration-md);
	-o-transition: var(--agds-transition-duration-md);
	transition: var(--agds-transition-duration-md);
	z-index: 0;
}

.card-item:hover::after {
	opacity: 0.4;
}

.card-item-content {
	position: absolute;
	left: var(--agds-gap-card);
	right: var(--agds-gap-card);
	bottom: var(--agds-gap-card);
	z-index: 2;
}

.card-item__title {
	color: var(--agds-white);
}

.offers-item .card-item__btn {
	padding: 10px 14px;
	border-radius: var(--agds-border-radius-md);
}

.offers-item .card-item__btn svg {
	fill: var(--agds-white);
	max-width: 18px;
}

.offers-item .tax-tags {
	margin-bottom: 10px;
}

.tax-tags__item {
	line-height: 1;
	padding: 8px 14px;
	border-radius: var(--agds-border-radius-md);
	border: 1px solid rgb(var(--agds-white-rgb), 80%);
	font-size: 12px;
	color: rgb(var(--agds-white-rgb), 80%);
}

/* OFFERS SINGLE SECTION  */
.offers-single-hero-section .tax-tags__item {
	border-color: var(--agds-color-3);
	font-size: 14px;
	color: var(--agds-color-3);
}

.offers-single-hero-section .container::after {
	content: '';
	position: absolute;
	bottom: calc(var(--agds-gap-md) * -1);
	right: 0;
	width: 334px;
	height: 119px;
	background-image: url('../img/decor/decor-star-4-brown-light.svg');
	background-repeat: no-repeat;
	background-size: 100%;
}

.tax-tags__item:not(:last-child) {
	margin-right: 10px;
}

.rooms-amenities {
	border: 1px solid var(--agds-color-5);
	padding: var(--agds-gap-card);
	font-size: 18px;
}

.rooms-amenities__item-wrap {
	gap: 10px;
	margin-top: 20px;
}

.rooms-amenities__item {
	border: 1px solid var(--agds-color-5);
	color: var(--agds-light-2);
	padding: 8px 15px;
	font-size: 16px;
	border-radius: var(--agds-border-radius-md);
}

@media screen and (max-width: 767px) {
	.front-rooms-section {
		background-image: none;
		padding-bottom: 220px;
	}

	.front-rooms-section::before {
		content: '';
		position: absolute;
		left: 50%;
		-webkit-transform: translateX(-50%) scale(-1, 1);
		-ms-transform: translateX(-50%) scale(-1, 1);
		transform: translateX(-50%) scale(-1, 1);
		bottom: 50px;
		width: 224px;
		height: 116px;
		background-image: url('../img/decor/decor-star-brown.svg');
		background-repeat: no-repeat;
		background-size: 100%;
	}

	.rooms-amenities {
		font-size: 16px;
	}

	.rooms-amenities__item {
		padding: 7px 15px;
		font-size: 14px;
		border-radius: var(--agds-border-radius-sm);
	}

	.rooms-item {
		aspect-ratio: 440 / 550;
	}

	.card-item__btn {
		width: 100%;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		max-width: 100%;
	}

	.tax-tags__item {
		border-radius: var(--agds-border-radius-sm);
	}

	.offers-single-hero-section .tax-tags__item {
		font-size: 16px;
		padding: 8px 14px;
	}

	.offers-item {
		aspect-ratio: var(--agds-aspect-ratio-sq);
	}

	.offers-item .card-item__title {
		font-size: 20px;
	}
}

/* FILTER */

.select {
	position: relative;
	text-transform: uppercase;
}

.select__item {
	position: relative;
}

.select__title {
	border: 1px solid var(--agds-color-5);
	color: var(--agds-color-5);
	background-color: var(--agds-light);
	cursor: pointer;
	border-radius: var(--agds-border-radius-md);
}

.select__value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 50px;
	padding: 0px 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.select__value::before {
	content: "";
	display: inline-block;
	width: 11px;
	height: 7px;
	background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMCA3LjMzbDIuODI5LTIuODMgOS4xNzUgOS4zMzkgOS4xNjctOS4zMzkgMi44MjkgMi44My0xMS45OTYgMTIuMTd6Ii8+PC9zdmc+") center / 100% no-repeat;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.select__options {
	display: none;
	position: absolute;
	overflow: hidden;
	top: calc(100% + 5px);
	min-width: 100%;
	left: 0;
	border: 1px solid var(--agds-color-5);
	background-color: var(--agds-light);
	border-radius: var(--agds-border-radius-md);
	padding: 10px 0;
}

.select__option {
	cursor: pointer;
	padding: 7px 20px;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

/* .select__option[data-value="0"] {
	display: none !important;
} */

.select__option:hover {
	color: var(--agds-color-2);
}

.select._active {
	z-index: 9;
}

.select._active .select__value::before {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.select._active .select__options {
	display: block;
}

/* FRONT RESTARAUNT SECTION  */
.front-restaurant-section .gallery {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.front-restaurant-section .gallery__img {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: 1fr auto;
	grid-template-rows: 1fr auto;
	margin-bottom: 10px;
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
}

.front-restaurant-section .gallery__img>img {
	grid-row: 1 / -1;
	-ms-grid-column: 1;
	grid-column: 1;
}

.front-restaurant-section .gallery .image-link:nth-child(4) .gallery__img,
.front-restaurant-section .gallery .image-link:first-child .gallery__img {
	height: 450px;
}

.front-restaurant-section .gallery .image-link:nth-child(3) .gallery__img,
.front-restaurant-section .gallery .image-link:nth-child(2) .gallery__img {
	height: 320px;
}

.front-restaurant-section .gallery .image-link:nth-child(2) .gallery__img,
.front-restaurant-section .gallery .image-link:nth-child(4) .gallery__img {
	margin-bottom: 0;
}

@media screen and (max-width: 991px) {
	.front-restaurant-section .section-title-wrap {
		margin-top: var(--agds-gap-md);
	}
}

@media screen and (max-width: 767px) {
	.front-restaurant-section .gallery {
		-webkit-column-gap: 5px;
		-moz-column-gap: 5px;
		column-gap: 5px;
	}

	.front-restaurant-section .gallery__img {
		margin-bottom: 5px;
	}

	.front-restaurant-section .gallery .image-link:nth-child(4) .gallery__img,
	.front-restaurant-section .gallery .image-link:first-child .gallery__img {
		height: 260px;
	}

	.front-restaurant-section .gallery .image-link:nth-child(3) .gallery__img,
	.front-restaurant-section .gallery .image-link:nth-child(2) .gallery__img {
		height: 200px;
	}
}

/* ROOMS SINGLE SECTION */
.rooms-single-hero-section .container::after,
.rooms-single-hero-section .container::before {
	content: '';
	position: absolute;
	background-size: 100%;
	background-repeat: no-repeat;
}

.rooms-single-hero-section .container::after {
	bottom: calc(var(--agds-gap-xl) * -1);
	right: 0;
	background-image: url('../img/bg/bg-stars-brown-light.svg');
	width: 334px;
	height: 171px;
}

.rooms-single-hero-section .container::before {
	bottom: 20px;
	left: 0;
	background-image: url('../img/bg/bg-stars-2-brown-light.svg');
	width: 266px;
	height: 22px;
}

/* Gallery */
.gallery-top .image {
	aspect-ratio: var(--agds-aspect-ratio-md);
}

.gallery-top .swiper-button-nav {
	--swiper-navigation-sides-offset: 20px;
	color: var(--agds-white);
	background-color: rgb(var(--agds-color-3-rgb), 92%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.gallery-top:hover .swiper-button-nav {
	opacity: 1;
	visibility: visible;
}

.gallery-top .swiper-button-nav::after {
	font-size: 18px;
}

.gallery-top .swiper-button-prev:after {
	margin-right: 4px;
}

.gallery-top .swiper-button-next:after {
	margin-left: 4px;
}

.gallery-thumbs {
	margin-top: 10px;
}

.gallery-thumbs__img img {
	cursor: pointer;
	aspect-ratio: var(--agds-aspect-ratio-md);
}

.gallery-thumbs .swiper-slide {
	opacity: 0.5;
	overflow: hidden;
	border-radius: calc(var(--agds-border-radius) * 3);
	border: 1px solid transparent;
}

.gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border-color: var(--agds-color-3);
}

.info-table {
	border: 1px solid rgb(var(--agds-black-rgb), 30%);
	padding: var(--agds-gap-card);
	gap: calc(var(--agds-gap) / 2);
}

.info-table__item span:first-of-type {
	color: rgb(var(--agds-black-rgb), 70%);
	margin-right: 4px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 250px;
	flex: 0 0 250px;
	max-width: 250px;
}

@media screen and (max-width: 991px) {
	.single-gallery {
		margin-bottom: var(--agds-gap-md);
	}

	.gallery-top .swiper-button-nav {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.rooms-single-hero-section .container::before {
		display: none;
	}

	.rooms-single-hero-section .container::after {
		bottom: 10%;
		opacity: 0.5;
	}

	.info-table {
		gap: var(--agds-gap);
	}

	.info-table__item span:first-of-type {
		margin: 0 0 5px;
		-webkit-box-flex: 100%;
		-ms-flex: 100%;
		flex: 100%;
		max-width: 100%;
	}
}

/* VIDEO SECTION */
.rooms-single-video-section {
	overflow: hidden;
	padding-bottom: 0;
	background-image: url('../img/bg/bg-motto.svg');
	background-position: bottom;
	background-size: 100%;
	background-repeat: no-repeat;
}

.rooms-single-video-section .phone-mockup {
	position: relative;
	left: 80px;
}

.rooms-single-video-section .phone-mockup img {
	margin: 40px auto -180px;
	height: auto;
}

.phone-mockup-video {
	position: absolute;
	top: 220px;
	left: 50%;
	-webkit-transform: translateX(-90%);
	-ms-transform: translateX(-90%);
	transform: translateX(-90%);
}

.phone-mockup .circle {
	position: relative;
	display: block;
	width: 98px;
	height: 98px;
	border-radius: 50%;
	background-color: rgb(var(--agds-white-rgb), 40%);
	background-image: url('../img/icons/i-play.svg');
	background-size: 37px 43px;
	background-position: 55% 50%;
	background-repeat: no-repeat;
	margin: 0 auto 50px;
}

.phone-mockup .circle:hover {
	background-color: rgb(var(--agds-color-2-rgb), 40%);
}

.phone-mockup .circle::before,
.phone-mockup .circle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 2px solid rgb(var(--agds-white-rgb), 40%);
	-webkit-animation: pulse 3s infinite;
	animation: pulse 3s infinite;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
}

.phone-mockup .circle:hover::after,
.phone-mockup .circle:hover::before {
	border-color: rgb(var(--agds-color-2-rgb), 40%);
}

.phone-mockup .circle::before {
	width: 112px;
	height: 112px;
}

.phone-mockup .circle::after {
	width: 130px;
	height: 130px;
	border-width: 1px;
}

.phone-mockup-video span {
	font-size: calc(16px + (20 - 16) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	display: inline-block;
	text-transform: uppercase;
	text-align: center;
	max-width: 216px;
	font-weight: 300;
}

@-webkit-keyframes pulse {
	0% {
		opacity: 0;
		-webkit-transform: translate(-50%, -50%) scale(.8);
		transform: translate(-50%, -50%) scale(.8);
	}

	50% {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%) scale(1.15);
		transform: translate(-50%, -50%) scale(1.15);
	}

	100% {
		opacity: 0;
		-webkit-transform: translate(-50%, -50%) scale(.8);
		transform: translate(-50%, -50%) scale(.8);
	}
}

@keyframes pulse {
	0% {
		opacity: 0;
		-webkit-transform: translate(-50%, -50%) scale(.8);
		transform: translate(-50%, -50%) scale(.8);
	}

	50% {
		opacity: 1;
		-webkit-transform: translate(-50%, -50%) scale(1.15);
		transform: translate(-50%, -50%) scale(1.15);
	}

	100% {
		opacity: 0;
		-webkit-transform: translate(-50%, -50%) scale(.8);
		transform: translate(-50%, -50%) scale(.8);
	}
}

@media screen and (max-width: 991px) {
	.rooms-single-video-section {
		background-size: 120%;
	}
}

@media screen and (max-width: 767px) {
	.rooms-single-video-section {
		background-image: url('../img/bg/bg-motto-mob.svg');
		background-position: center 86%;
		background-size: 100%;
	}

	.rooms-single-video-section .phone-mockup {
		left: 60px;
	}

	.rooms-single-video-section .phone-mockup img {
		margin: 40px auto -115px;
	}

	.phone-mockup-video {
		top: 115px;
		left: 50%;
		-webkit-transform: translateX(-80%);
		-ms-transform: translateX(-80%);
		transform: translateX(-80%);
	}

	.phone-mockup .circle {
		width: 68px;
		height: 68px;
		background-size: 27px 33px;
		margin: 0 auto 30px;
	}

	.phone-mockup .circle::before {
		width: 82px;
		height: 82px;
	}

	.phone-mockup .circle::after {
		width: 100px;
		height: 100px;
	}
}

/* LAST CHANCE SECTION */
.col-decor {
	position: absolute;
	left: 50%;
	width: 200px;
	height: 13px;
	-webkit-transform: translate(-50%, 50%) rotate(90deg);
	-ms-transform: translate(-50%, 50%) rotate(90deg);
	transform: translate(-50%, 50%) rotate(90deg);
	background-image: url('../img/decor/decor-title-brown-light.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	opacity: .8;
}

@media screen and (max-width: 767px) {
	.rooms-single-last-chance-section .title {
		margin-top: var(--agds-gap-md);
	}
}

/* SERVICES EXTRA SECTION */
.services-item {
	padding: var(--agds-gap-card);
	border: 2px solid var(--agds-color-1);
}

@media screen and (max-width: 991px) {
	.services {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 767px) {
	.services {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

/* MENU SECTION */
.restaurant-menu-item {
	aspect-ratio: var(--agds-aspect-ratio-md);
	background-color: var(--agds-color-4);
	padding: var(--agds-gap-card);
}


/* ABOUT PAGE */
@media screen and (max-width: 991px) {
	.about-page-section .content h2 {
		text-align: center;
	}

	.restaurant-about-3-section .container::after {
		display: none;
	}
}

/* HOTEL ABOUT */
.hotel-about-2-section::after {
	content: '';
	position: absolute;
	bottom: calc(var(--agds-gap-xl) * -0.6);
	right: 50%;
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
	background-image: url('../img/decor/decor-star-2-brown-light.svg');
	width: 335px;
	height: 45px;
	background-size: 100%;
	background-repeat: no-repeat;
}

.hotel-about-2-section .container::after {
	content: '';
	position: absolute;
	top: calc(var(--agds-gap-xl) * -0.2);
	right: 0;
	background-image: url('../img/decor/decor-star-3-brown-light.svg');
	width: 156px;
	height: 32px;
	background-size: 100%;
	background-repeat: no-repeat;
}

.hotel-about-2-section .gallery__img img {
	aspect-ratio: var(--agds-aspect-ratio-vt);
}

.about-rooms-slider .gallery__img img {
	aspect-ratio: var(--agds-aspect-ratio-md);
}

.about-rooms-slider {
	padding-bottom: 30px;
}

.about-rooms-slider .swiper-pagination {
	display: block;
}

.about-services-extra-section .about-page-section__inner {
	border-top: 2px solid var(--agds-color-6);
}

.home .about-services-extra-section .about-page-section__inner {
	border-top: none;
}

.services-extra-cards-item {
	position: relative;
	background-color: var(--agds-color-6);
	padding: 50px 20px;
	-webkit-transition: var(--agds-transition-xl);
	-o-transition: var(--agds-transition-xl);
	transition: var(--agds-transition-xl);
}

.services-extra-cards-item:hover {
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

.services-extra-cards-item::after {
	content: "";
	position: absolute;
	top: 10px;
	right: 10px;
	bottom: 10px;
	left: 10px;
	border-radius: var(--agds-border-radius-md);
	border: 2px dashed var(--agds-color-4);
}

.services-extra-cards-item__icon {
	max-width: 40px;
	margin: 0 auto 20px;
}

@media screen and (max-width: 991px) {
	.page-template-hotel-about .hero-section {
		padding-bottom: 100px;
	}

	.hotel-about-2-section {
		padding-bottom: 40px;
	}

	.hotel-about-2-section .container::after {
		display: none;
	}

	.hotel-about-2-section .container {
		padding-top: 0;
	}

	.hotel-about-2-section .hero-gallery {
		margin-bottom: var(--agds-gap-sm);
	}

	.about-rooms-slider {
		margin-bottom: var(--agds-gap-xl);
	}

	.about-services-extra-section .title-decor-img {
		display: none;
	}

	.services-extra-cards {
		-ms-grid-columns: 1fr 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr;
		margin-bottom: var(--agds-gap-sm);
	}

	.content-btn-wrap {
		text-align: center;
	}

	.hotel-about-socials-section .content,
	.hotel-about-rules-section .content {
		margin-top: var(--agds-gap-xl);
	}
}

@media screen and (max-width: 767px) {
	.services-extra-cards {
		margin-bottom: var(--agds-gap-sm);
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

/* CONTACTS SECTION */
.contacts-section {
	background-image: url('../img/bg/bg-contacts.svg');
	background-size: contain;
	background-position: right center;
}

.contacts-grid {
	font-size: calc(20px + (24 - 20) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
	text-transform: uppercase;
	row-gap: calc(40px + (60 - 40) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
}

.contacts-grid::after {
	content: '';
	position: absolute;
	bottom: calc(var(--agds-gap-xl) * -0.5);
	width: 396px;
	height: 45px;
	left: 0;
	-webkit-transform: translateX(-30%);
	-ms-transform: translateX(-30%);
	transform: translateX(-30%);
	background-image: url('../img/decor/decor-star-2-brown-light.svg');
	background-size: 80%;
	background-position: center;
	background-repeat: no-repeat;
}

.contacts-block__label {
	margin-bottom: 10px;
}

.contacts-block__label span {
	font-size: 14px;
	color: var(--agds-grey);
}

.contacts-block__label svg {
	max-width: 13px;
	max-height: 14px;
	fill: var(--agds-grey);
	margin-right: 8px;
	margin-bottom: 3px;
}

.contacts-block__label svg.icon-i-location {
	max-width: 14px;
}

.phones-item:not(:last-child) {
	margin-bottom: 2%;
}

.contacts-block .socials {
	gap: 10px;
}

.map-wrap iframe {
	width: 100%;
	-webkit-filter: grayscale(.5);
	filter: grayscale(.5);
	height: 400px;
}

@media screen and (max-width: 991px) {
	.contacts-section {
		background-image: none;
	}

	.map-wrap iframe {
		margin-top: var(--agds-gap-xxl);
	}
}

@media screen and (max-width: 767px) {
	.contacts-grid {
		padding-bottom: 50px;
		text-align: center;
	}

	.contacts-grid::after {
		width: 100%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

































































































/* FOOTER */
.footer-bottom a {
	position: relative;
}

.footer-contacts__title {
	padding-bottom: 10px;
	margin-bottom: 0;
}

.footer-contacts__title::after {
	width: 50px;
	height: 3px;
	opacity: .7;
}

.footer-contacts .phones {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	max-width: 100%;
}

/* Socials */
.socials-link {
	width: 28px;
	height: 28px;
	border-radius: var(--agds-border-radius);
	background-color: var(--agds-white);
}

.socials-link:hover {
	background-color: var(--agds-color-2);
}

.socials-link__icon {
	max-width: 60%;
	fill: var(--agds-dark);
	-webkit-transition: fill var(--agds-transition);
	-o-transition: fill var(--agds-transition);
	transition: fill var(--agds-transition);
}

.socials-link:hover .socials-link__icon {
	fill: var(--agds-white);
}

.socials-link-text {
	line-height: 1.1;
	font-size: calc(20px + (24 - 20) * ((100vw - 360px) / (var(--max-viewport) - var(--min-viewport))));
}

.socials-link-text__icon {
	margin-left: 8px;
	max-width: 16px;
}

.footer-bottom {
	border-top: 1px dashed rgb(var(--agds-color-1-rgb), 15%);
}

/* Dev */
.footer-dev {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 5px;
}

.footer-dev__icon {
	max-width: 16px;
	max-height: 16px;
	-webkit-transition: var(--agds-transition);
	-o-transition: var(--agds-transition);
	transition: var(--agds-transition);
	fill: currentColor;
}

.footer-dev:hover .footer-dev__icon {
	-webkit-animation: heartbeat 1.4s infinite;
	animation: heartbeat 1.4s infinite;
	fill: var(--agds-color-2);
}

@-webkit-keyframes heartbeat {
	0% {
		opacity: 1
	}

	20% {
		opacity: .6
	}

	100% {
		opacity: 1
	}
}

@keyframes heartbeat {
	0% {
		opacity: 1
	}

	20% {
		opacity: .6
	}

	100% {
		opacity: 1
	}
}

@media screen and (max-width: 991px) {
	.footer-logo img {
		margin: 0 auto var(--agds-gap-md);
		max-width: 160px;
	}

	.footer-contacts {
		margin-bottom: var(--agds-gap-sm);
	}

	.footer-bottom {
		font-size: 12px;
	}

	.copyright {
		margin: 3px 0;
	}
}

/* 404 */
.error-404-section {
	min-height: 80vh;
	background-image: url('../img/bg/bg-404.svg');
	background-position: center;
	background-size: 85%;
	background-repeat: no-repeat;
}

.error-404-section h1 {
	font-size: 100px;
}

.error-404-section .btn {
	margin-top: 20px;
}

@media screen and (max-width: 991px) {
	.error-404-section {
		background-size: 125%;
	}
}

@media screen and (max-width: 767px) {
	.error-404-section {
		background-size: 185%;
		min-height: 60vh;
	}

	.error-404-section__inner {
		max-width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
}