@keyframes fadeInTop {
	0% {
		translate: 0 -100%;
	}

	to {
		translate: 0 0;
	}
}

@keyframes fadeOutTop {
	0% {
		translate: 0 0;
	}

	to {
		translate: 0 -200%;
	}
}

@keyframes showIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes showOut {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes pulse {
	0% {
		opacity: 0;
	}

	80%,
	to {
		opacity: 1;
	}
}

.menu-link, .burger {
	position: relative;
	order: 10;
	flex-shrink: 0;
	width: 32px;
	height: 24px;
}

.burger.active .burger__lines,
.menu-link.active .menu-lines {
	background: 0 0;
}

.burger.active .burger__lines:after,
.menu-link.active .menu-lines:after {
	top: 0;
	rotate: -135deg;
}

.burger.active .burger__lines:before,
.menu-link.active .menu-lines:before {
	top: 0;
	rotate: 135deg;
}

.burger__lines,
.burger__lines:before,
.burger__lines:after,
.menu-lines,
.menu-lines:before,
.menu-lines:after {
	position: absolute;
	right: 0;
	width: 28px;
	height: 2px;
	background-color: #fff;
	transition: .4s;
	pointer-events: none;
}

.burger:hover .burger__lines,
.burger:hover .burger__lines:before,
.burger:hover .burger__lines:after {
	background-color: #f90;
}

.burger.active:hover .burger__lines {
	background: 0 0;
}

.burger__lines,
.menu-lines {
	top: 50%;
	translate: 0 -50%;
}

.burger__lines:before,
.menu-lines:before {
	content: "";
	top: -8px;
}

.burger__lines:after,
.menu-lines:after {
	content: "";
	top: 8px;
}

.checkbox {
	position: relative;
	display: flex;
	align-items: flex-start;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
}

.checkbox__input {
	position: relative;
	display: flex;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	margin: 0;
	cursor: pointer;
}

.checkbox__input:before {
	content: "";
	aspect-ratio: 1;
	border: 1px solid #f90;
	border-radius: 4px;
	mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 4C16 1.79086 14.2091 0 12 0H4C1.79086 0 0 1.79086 0 4V12C0 14.2091 1.79086 16 4 16H12C14.2091 16 16 14.2091 16 12V4ZM4.00699 10.1748C3.72841 9.96957 3.67217 9.57584 3.88216 9.30084C4.08708 9.03247 4.46929 8.97788 4.74116 9.17814L6.2757 10.3086L11.1399 4.46926C11.3569 4.20877 11.7426 4.1702 12.0069 4.38258C12.2778 4.6003 12.3176 4.99788 12.0951 5.26494L6.48472 12L4.00699 10.1748Z' fill='%23FF9900' /%3E%3C/svg%3E") center/cover no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 4C16 1.79086 14.2091 0 12 0H4C1.79086 0 0 1.79086 0 4V12C0 14.2091 1.79086 16 4 16H12C14.2091 16 16 14.2091 16 12V4ZM4.00699 10.1748C3.72841 9.96957 3.67217 9.57584 3.88216 9.30084C4.08708 9.03247 4.46929 8.97788 4.74116 9.17814L6.2757 10.3086L11.1399 4.46926C11.3569 4.20877 11.7426 4.1702 12.0069 4.38258C12.2778 4.6003 12.3176 4.99788 12.0951 5.26494L6.48472 12L4.00699 10.1748Z' fill='%23FF9900' /%3E%3C/svg%3E") center/cover no-repeat;
	background: 0 0;
	transition: background-color .3s, border-color .3s;
	box-sizing: border-box;
}

.checkbox__input:checked:before {
	background: #f90;
}

.checkbox__input:disabled~span {
	opacity: .4;
	cursor: not-allowed;
}

.checkbox__input:focus-visible {
	outline: 0;
}

.checkbox__input:focus-visible:before {
	background: color-mix(in srgb, white 85%, #f90);
}

.checkbox__text {
	text-box: trim-start cap text;
}

.checkbox-text {
	position: relative;
}

.checkbox-text .checkbox__text {
	transition: all .4s;
}

.checkbox-text .checkbox__input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.checkbox-text .checkbox__input:focus-visible+.checkbox__text:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	box-shadow: 0 0 0 1px #f90;
	border-radius: 4px;
}

.checkbox-text .checkbox__input:before {
	display: none;
}

.checkbox-text .checkbox__input:checked~.checkbox__text {
	color: #f90;
}

.map-wrapper {
	position: relative;
	width: 100%;
	background: center/cover no-repeat;
	overflow: hidden;
}

.map {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

[class*=ymaps-2][class*=-ground-pane] {
	filter: saturate(0) brightness(40%);
}

.ymaps-2-1-79-controls__control_toolbar,
.ymaps-2-1-79-copyright__content-cell,
.ymaps-2-1-79-copyright__link,
.ymaps-2-1-79-gototaxi,
.ymaps-2-1-79-gototech,
.ymaps-2-1-79-gotoymaps,
.ymaps-2-1-79-gotoymaps__container,
.ymaps-2-1-79-listbox__button,
.ymaps-2-1-79-listbox__button-icon {
	display: none !important;
}

.loader {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 153, 0, .4);
	opacity: 0;
	transition: opacity .3s;
	pointer-events: none;
}

.loader.is-active {
	opacity: 1;
}

.loader:after {
	content: "";
	position: absolute;
	top: calc(50% - 24px);
	left: calc(50% - 24px);
	width: 48px;
	height: 48px;
	border: solid 8px #fff;
	border-left-color: transparent;
	border-radius: 50%;
	animation: rotation .7s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0);
	}

	to {
		transform: rotate(359deg);
	}
}

.splide__progress {
	height: 8px;
	border-radius: 4px;
	background: #2a2a2a;
}

.splide__progress-bar {
	height: 100%;
	border-radius: 4px;
	background: #f90;
	transition: all .4s;
}

.splide__arrow {
	position: absolute;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #f90;
	border-radius: 8px;
	background: rgba(16, 16, 16, .7);
	transition: all .4s;
	opacity: 1;
}

.splide__arrow[disabled] {
	pointer-events: none;
}

.splide__arrow:focus-visible {
	background-color: #f90;
}

.splide__arrow:focus-visible:before {
	background: #101010;
}

.splide__arrow:before {
	content: "";
	width: 45%;
	height: 45%;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background: #f90;
}

.splide__arrow svg {
	display: none;
}

.splide__prev {
	left: 0;
	translate: -50% 0;
}

.splide__prev:before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='26' height='21' viewBox='0 0 26 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.0001 10.3335L1.66675 10.3335' stroke='%23FF9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M10.3333 0.999836L1 10.3332L10.3333 19.6665' stroke='%23FF9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='26' height='21' viewBox='0 0 26 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25.0001 10.3335L1.66675 10.3335' stroke='%23FF9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M10.3333 0.999836L1 10.3332L10.3333 19.6665' stroke='%23FF9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}

.splide__next {
	right: 0;
	translate: 50% 0;
}

.splide__next:before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='26' height='21' viewBox='0 0 26 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.00016 10.3335L24.3335 10.3335' stroke='%23FF9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M15.6667 19.6667L25 10.3333L15.6667 1' stroke='%23FF9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg width='26' height='21' viewBox='0 0 26 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.00016 10.3335L24.3335 10.3335' stroke='%23FF9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M15.6667 19.6667L25 10.3333L15.6667 1' stroke='%23FF9900' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}

.crumbs {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 24px;
	row-gap: 8px;
}

.crumbs li:not(:last-child) {
	color: rgba(255, 255, 255, .6);
}

.crumbs li:last-child {
	pointer-events: none;
	color: #f90;
}

.crumbs li:last-child a {
	cursor: default;
}

.crumbs li:not(:last-child) {
	position: relative;
}

.crumbs li:not(:last-child):before {
	content: "";
	position: absolute;
	top: 50%;
	translate: 50% -50%;
	width: 12px;
	height: 12px;
	background: url("data:image/svg+xml,%3Csvg width='7' height='13' viewBox='0 0 7 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.6' d='M0.5 0.5L6.5 6.5L0.499999 12.5' stroke='white' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E") center/contain no-repeat;
}

.text-block {
	text-wrap: pretty;
}

.text-block>:last-child {
	margin-bottom: 0;
}

.text-block h1,
.text-block h2,
.text-block h3,
.text-block b,
.text-block strong {
	font-weight: 700;
}

.text-block h1 {
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}

.text-block h2 {
	font-weight: 700;
	line-height: 1.08333;
	text-transform: uppercase;
}

.text-block h3 {
	font-weight: 800;
	line-height: 1.375;
}

.text-block h4 {
	font-weight: 600;
}

.text-block p:last-child {
	margin-bottom: 0;
}

.text-block img {
	object-fit: cover;
}

.text-block .video {
	position: relative;
	max-height: 882px;
	aspect-ratio: auto;
	overflow: hidden;
	cursor: pointer;
}

.text-block .video:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(16, 16, 16, .6);
	transition: opacity .3s;
}

.text-block .video:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	z-index: 2;
	background: url("data:image/svg+xml,%3Csvg width='52' height='57' viewBox='0 0 52 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.32 4.32128C1.41002 3.56441 1.67537 2.83898 2.09494 2.20266C2.51452 1.56634 3.07675 1.03667 3.73695 0.655761C4.39714 0.274854 5.13709 0.0532114 5.89798 0.00845545C6.65887 -0.0363005 7.4197 0.0970637 8.12 0.397946C11.66 1.91128 19.5933 5.50795 29.66 11.3179C39.73 17.1313 46.8133 22.2079 49.89 24.5113C52.5167 26.4813 52.5233 30.3879 49.8933 32.3646C46.8467 34.6546 39.85 39.6646 29.66 45.5513C19.46 51.4379 11.62 54.9913 8.11333 56.4846C5.09333 57.7746 1.71333 55.8179 1.32 52.5613C0.860001 48.7546 0 40.1113 0 28.4379C0 16.7713 0.856668 8.13128 1.32 4.32128Z' fill='%23FF9900' /%3E%3C/svg%3E") center/contain no-repeat;
}

.text-block .video.is-playing:after,
.text-block .video.is-playing:before {
	display: none;
}

.text-block .video:not(.is-playing) video::-webkit-media-controls {
	display: none;
}

.text-block ul,
.text-block ol {
	display: grid;
}

.text-block ul ul,
.text-block ul ol,
.text-block ol ul,
.text-block ol ol {
	padding-top: 12px;
}

.text-block ul li>*,
.text-block ol li>* {
	display: contents;
}

.text-block ul>li {
	position: relative;
}

.text-block ul>li:before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	translate: 0 -50%;
	width: 6px;
	height: 6px;
	flex-basis: 6px;
	flex-grow: 0;
	flex-shrink: 0;
	background: #f90;
	border-radius: 50%;
}

.text-block ol {
	list-style: none;
	counter-reset: number;
}

.text-block ol>li {
	padding-left: 12px;
}

.text-block ol>li:before {
	counter-increment: number;
	content: counters(number, ".") ". ";
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	font: inherit;
	color: #f90;
}

.text-block ol ol {
	padding-left: 20px;
}

.text-block blockquote {
	margin: 0;
	background: #dfe4ec;
}

.text-block .table {
	width: 100%;
	overflow-y: hidden;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	max-width: 100%;
	padding-bottom: 9px;
	overflow-x: auto;
	overflow-y: hidden;
}

@supports (-moz-appearance:none) {
	.text-block .table {
		scrollbar-color: #fff #2a2a2a;
		scrollbar-width: thin;
	}
}

.text-block .table::-webkit-scrollbar {
	height: 4px;
}

.text-block .table::-webkit-scrollbar-track-piece {
	background: #2a2a2a;
	border-radius: 4px;
}

.text-block .table::-webkit-scrollbar-thumb {
	background: #fff;
	border-radius: 4px;
}

.text-block table {
	width: 100%;
	border-collapse: collapse;
}

.text-block table th {
	font-weight: 700;
	text-align: left;
}

.text-block table td,
.text-block table th {
	padding: 16px;
}

.text-block table tr>:first-child {
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
}

.text-block table tr>:last-child {
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}

.text-block table thead {
	background: #000;
	color: #fff;
}

.text-block table tbody tr:nth-child(even) {
	background: #ccc;
}

.text-block table tbody tr:nth-child(odd) {
	background: #fafafa;
}

.text-block table:not(:has(thead)) tbody tr {
	position: relative;
}

.text-block table:not(:has(thead)) tbody tr>th:first-child {
	position: sticky;
	left: 0;
	top: 0;
	background: inherit;
}

.text-block video {
	max-width: 100%;
	object-fit: cover;
}

.text-block mark {
	background: color-mix(in srgb, white 8%, #f90);
}

@keyframes fadeInTop {
	0% {
		translate: 0 -100%;
	}

	to {
		translate: 0 0;
	}
}

@keyframes fadeOutTop {
	0% {
		translate: 0 0;
	}

	to {
		translate: 0 -200%;
	}
}

@keyframes showIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes showOut {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes pulse {
	0% {
		opacity: 0;
	}

	80%,
	to {
		opacity: 1;
	}
}

body {
	background: #101010;
	line-height: 1.5;
}

.main {
	position: relative;
	min-height: 500px;
}

.section-dark {
	position: relative;
}

.section-dark:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(16, 16, 16, .8) 0, #101010 100%);
}

.section__bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0);
}

.active-text {
	color: #f90;
}

.title {
	font-weight: 700;
}

.title-2 {
	font-weight: 600;
	line-height: 1.2;
}

.title-3 {
	font-weight: 600;
	text-transform: uppercase;
}

.title-4 {
	font-weight: 600;
}

.title_not-decor:after,
.title_not-decor:before {
	display: none;
}

.title_left {
	text-align: left;
}

.subtitle {
	font-weight: 500;
}

.button {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: .5em 1.5em;
	flex-shrink: 0;
	background: #f90;
	border: 1px solid transparent;
	border-radius: .5em;
	color: #101010;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
}

.button_shine:after {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	width: 60%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, 0) 100%);
	transform: skewX(-20deg);
	animation: buttonShine 3s ease-in-out infinite;
}

@keyframes buttonShine {
	0% {
		left: -150%;
	}

	50%,
	to {
		left: 150%;
	}
}

.button:focus-visible {
	background: color-mix(in srgb, black 12%, #f90);
}

.button_border {
	background: 0 0;
	border-color: #f90;
	color: #f90;
}

.button_border.button_white {
	border-color: #fff;
	background: 0 0;
	color: #fff;
}

.button_border.button_white:focus-visible {
	background: #fff;
}

.button_border:focus-visible {
	background: #f90;
	color: #101010;
}

.button_white {
	background: #fff;
	color: #101010;
}

.button[disabled] {
	opacity: .2;
	pointer-events: none;
}

.call {
	display: grid;
	grid-template-columns: 24px 1fr auto;
	align-items: center;
}

.call>svg {
	max-width: 20px;
	max-height: 20px;
	stroke: #f90;
}

.social {
	display: flex;
	align-items: center;
	gap: 12px;
}

.social__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border: 1px solid #f90;
	border-radius: 50%;
	transition: all .4s;
}

.social__item:focus-visible svg,
.social__item:focus-visible img {
	scale: 1.1;
}

.social__item svg,
.social__item img {
	max-width: 50%;
	max-height: 50%;
}

.social__item svg {
	fill: #fff;
}

.info {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	min-height: 40px;
	background: rgba(255, 255, 255, .12);
	border-radius: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, .6);
	transition: all .4s;
}

.info_link {
	padding: 0;
	background: 0 0;
	color: rgba(255, 255, 255, .6);
}

.info svg {
	flex-shrink: 0;
	fill: none;
	stroke: currentColor;
	transition: none;
}

.section-404 {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	translate: -50% -50%;
	display: grid;
	align-items: center;
	justify-content: center;
	justify-items: center;
	text-align: center;
}

.section-404__bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.section-404__title {
	font-weight: 700;
	line-height: 1;
}

.ticket {
	width: min(100%, 595px);
	background: #fff url(../img/ticket/bg.webp) center/cover no-repeat;
	color: #101010;
	overflow: hidden;
}

.ticket__top {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	column-gap: 12px;
}

.ticket__top:after {
	content: "";
	position: absolute;
	left: -10vw;
	bottom: 0;
	width: 100vw;
	height: 1px;
	background: #e0e0e0;
}

.ticket__logo {
	grid-row: span 2;
}

.ticket__title {
	font-weight: 700;
}

.ticket__subtitle {
	font-weight: 500;
	color: #f90;
}

.ticket__row {
	display: grid;
	grid-template-columns: 1fr auto;
}

.ticket__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.ticket__item-top {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 8px;
	font-weight: 600;
	color: #777;
}

.ticket__item-top:before {
	content: "";
	flex-shrink: 0;
	background: url("data:image/svg+xml,%3Csvg width='8' height='9' viewBox='0 0 8 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.279443 3.55062C0.919824 4.40446 1.77367 5.06263 2.76981 5.41839C3.2501 5.59628 3.76596 5.70301 4.28183 5.73859H4.42413C3.30347 5.41839 2.53857 4.93811 1.95155 3.88859C1.43569 2.9636 1.31117 1.80736 1.80924 0.846784C2.04049 0.402075 2.46741 -0.078211 3.01885 0.0107309C3.62366 0.117461 3.69481 0.651112 3.5525 1.14919C3.35683 1.8963 2.98327 2.59004 2.85876 3.37273C2.80539 3.71071 2.82318 4.08427 2.92991 4.40446V4.42225C3.39241 4.86695 3.97942 5.18715 4.60202 5.38282C4.7799 5.43618 4.95778 5.48955 5.11788 5.52512C5.91938 5.65628 6.74475 5.6203 7.55488 5.43674V5.82753C7.39479 6.82368 6.66547 7.67752 5.79384 8.14001C4.72653 8.72703 3.46356 8.76261 2.28953 8.6203C2.07607 8.58472 2.05828 8.26453 2.28953 8.26453C3.2501 8.30011 4.26404 8.19338 5.10009 7.67752C5.47365 7.44627 5.79384 7.16165 6.04287 6.80589C6.07845 6.75252 6.09624 6.71695 6.13182 6.66358C5.18903 7.28617 3.69481 7.2506 2.71645 6.98377C1.18665 6.57464 0.546268 5.00926 0.0126172 3.67513C-0.0585362 3.49725 0.190501 3.4261 0.279443 3.55062Z' fill='%23777777' /%3E%3C/svg%3E") center/8px no-repeat;
}

.ticket__item-text {
	font-weight: 600;
}

.ticket__item-smalltext {
	font-size: 14px;
	font-weight: 600;
}

.ticket__qr {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.ticket__footer {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
}

.ticket__age {
	padding: .375em 1em;
	display: flex;
	align-items: center;
	border: 1px solid #f90;
	border-radius: 12px;
	color: #f90;
	font-weight: 600;
}

.form__fields {
	gap: 12px;
}

.form__fields .checkbox {
	margin-top: 8px;
}

.form__row {
	grid-column: 1/-1;
	display: flex;
	align-items: center;
}

.input,
.textarea {
	width: 100%;
	padding-inline: 12px;
	border: 1px solid #383838;
	border-radius: 12px;
	font: inherit;
}

.input:user-invalid,
.textarea:user-invalid {
	color: #f03;
	border-color: #f03;
}

.input:user-invalid::placeholder,
.textarea:user-invalid::placeholder {
	color: #f03;
}

.input::placeholder,
.textarea::placeholder {
	color: rgba(255, 255, 255, .32);
}

.input {
	height: 48px;
}

.textarea {
	height: 96px;
	padding-block: 12px;
}

.input-item {
	display: grid;
	grid-template-rows: auto 1fr;
}

.input-item span {
	color: #f90;
}

.input-date {
	position: relative;
	cursor: pointer;
}

.input-date:focus-within span {
	opacity: 0;
}

.input-date input {
	cursor: pointer;
}

.input-date input::-webkit-calendar-picker-indicator {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.input-date input.empty:not(:focus) {
	color: transparent;
}

.input-date span {
	position: absolute;
	left: 16px;
	top: 50%;
	translate: 0 -50%;
	z-index: 1;
	color: rgba(255, 255, 255, .32);
	pointer-events: none;
}

.input-date.active input::-webkit-datetime-edit {
	opacity: 1;
}

.input-date.active span {
	opacity: 0;
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 11;
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: rgba(0, 0, 0, .3);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.modal_open .modal__content,
.modal_open .modal__close {
	animation: modal-open .4s ease forwards;
}

.modal_close .modal__content,
.modal_close .modal__close {
	animation: modal-close .4s ease forwards;
}

.modal__dialog {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.modal__content {
	position: relative;
	max-width: 836px;
	max-height: 90vh;
	padding-right: 9px;
	overflow-y: auto;
	overflow-x: hidden;
	background: #101010;
	cursor: default;
	transition: all .4s;
}

@supports (-moz-appearance:none) {
	.modal__content {
		scrollbar-color: #fff #2a2a2a;
		scrollbar-width: thin;
	}
}

.modal__content::-webkit-scrollbar {
	width: 4px;
}

.modal__content::-webkit-scrollbar-track-piece {
	background-color: #2a2a2a;
	border-radius: 4px;
}

.modal__content::-webkit-scrollbar-thumb {
	background-color: #fff;
	border-radius: 4px;
}

@keyframes modal-open {
	0% {
		opacity: 0;
		translate: 0 -24px;
	}

	to {
		opacity: 1;
		translate: 0 0;
	}
}

@keyframes modal-close {
	0% {
		opacity: 1;
		translate: 0 0;
	}

	to {
		opacity: 0;
		translate: 0 -24px;
	}
}

.modal__content-wrapper {
	display: grid;
	grid-template-columns: 1fr auto;
	max-width: 936px;
	padding-inline: 12px;
}

.modal__title {
	justify-content: flex-start;
	text-align: left;
}

.modal__title:after,
.modal__title:before {
	display: none;
}

.modal__form .form__fields {
	grid-template-columns: repeat(2, 1fr);
}

.modal__form .textarea {
	grid-row: span 3;
	height: 100%;
}

.modal__form .checkbox {
	align-items: center;
}

.modal__form .submit {
	min-width: 200px;
}

.modal__close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	background: 0 0;
	border: 1px solid rgba(255, 255, 255, .4);
	cursor: pointer;
	transition: all .4s;
}

.modal__close svg {
	width: 50%;
	height: 50%;
	fill: rgba(255, 255, 255, .4);
	stroke: none;
}

.modal__close:focus-visible {
	background: rgba(255, 255, 255, .4);
}

.modal-thank .modal__content {
	display: grid;
	justify-items: center;
}

.modal-thank .modal__title,
.modal-thank .modal__subtitle {
	margin: 0;
}

.modal-return .text-block ul {
	gap: 0;
}

.modal-return .text-block ul:not(:last-child) {
	padding-bottom: 24px;
}

.modal-return .text-block ul>li {
	padding-left: 25px;
}

.modal-return .text-block ul>li:before {
	left: 12px;
	width: 2px;
	height: 2px;
	background: currentColor;
}

.modal-return__text {
	max-height: 60vh;
	padding-right: 9px;
	overflow-y: auto;
	overflow-x: hidden;
}

@supports (-moz-appearance:none) {
	.modal-return__text {
		scrollbar-color: #fff #2a2a2a;
		scrollbar-width: thin;
	}
}

.modal-return__text::-webkit-scrollbar {
	width: 4px;
}

.modal-return__text::-webkit-scrollbar-track-piece {
	background-color: #2a2a2a;
	border-radius: 4px;
}

.modal-return__text::-webkit-scrollbar-thumb {
	background-color: #fff;
	border-radius: 4px;
}

.modal-return__button {
	display: table;
	margin-inline: auto;
}

.modal-refund .form__fields {
	grid-template-columns: repeat(2, 1fr);
}

.modal-refund .input-item-textarea {
	grid-row: span 3;
}

.cookies {
	position: fixed;
	left: 50%;
	translate: -50% 100%;
	z-index: 11;
	width: 100vw;
	display: flex;
	justify-content: center;
	opacity: 0;
	transition: all .4s;
	pointer-events: none;
}

.cookies.active {
	translate: -50% 0;
	opacity: 1;
	pointer-events: auto;
}

.cookies-wrapper {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	row-gap: 8px;
	margin-inline: auto;
	width: min(1122px, 100vw - 24px);
	padding-block: 20px;
	background: #101010;
}

.cookies__title {
	display: flex;
	align-items: center;
	font-weight: 600;
	line-height: 1.3;
}

.cookies__title svg {
	fill: #f90;
}

.cookies__text a {
	color: #f90;
	text-decoration: underline;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	text-underline-offset: .1lh;
	transition: color .3s, text-decoration-color .3s;
	text-decoration-color: currentColor;
}

.cookies__text a:focus-visible {
	text-decoration-color: transparent;
}

.cookies__button {
	min-width: 160px;
	grid-row: span 2;
}

.header {
	position: sticky;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	will-change: transform;
}

.header__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__top-wrapper {
	display: flex;
	align-items: center;
}

.header__top-wrapper .container {
	width: 100%;
}

.header__menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 12px;
	color: rgba(255, 255, 255, .6);
	text-shadow: 1px 2px 0 0 rgba(0, 0, 0, .2);
}

.header__menu a:focus-visible {
	color: #f90;
}

.header__address {
	display: grid;
	grid-template-columns: 24px 1fr;
	display: flex;
	align-items: center;
	text-shadow: 1px 2px 0 0 rgba(0, 0, 0, .2);
}

.header__address svg {
	max-width: 20px;
	max-height: 20px;
	fill: none;
	stroke: #f90;
}

.footer {
	background: #101010;
}

.footer__top {
	display: grid;
	grid-template-columns: 1fr 2fr;
	align-items: start;
}

.footer__top-wrapper {
	background: #000;
}

.footer__left {
	display: grid;
	align-items: start;
	justify-items: start;
}

.footer__text {
	display: grid;
	grid-template-columns: 100%;
	gap: 4px;
	color: rgba(255, 255, 255, .5);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
}

.footer__text a {
	display: contents;
}

.footer__menu {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	text-shadow: 1px 2px 0 0 rgba(0, 0, 0, .2);
	color: rgba(255, 255, 255, .6);
}

.footer__menu a,
.footer__menu button {
	transition: all .4s;
}

.footer__menu a:focus-visible,
.footer__menu button:focus-visible {
	color: #f90;
}

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 12px;
	flex-wrap: wrap;
}

@keyframes fadeInTop {
	0% {
		translate: 0 -100%;
	}

	to {
		translate: 0 0;
	}
}

@keyframes fadeOutTop {
	0% {
		translate: 0 0;
	}

	to {
		translate: 0 -200%;
	}
}

@keyframes showIn {
	0% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes showOut {
	0% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes pulse {
	0% {
		opacity: 0;
	}

	80%,
	to {
		opacity: 1;
	}
}

.container {
	position: relative;
	margin-inline: auto;
	max-width: 1760px;
	box-sizing: content-box;
}

.container-left,
.container-right {
	position: relative;
	width: 100vw;
	max-width: calc(100vw - (100vw - 430px)/2);
	padding: 0;
}

.container-right {
	margin-left: auto;
	margin-right: 0;
	padding-left: 12px;
}

.container-left {
	margin-right: auto;
	margin-left: 0;
	padding-right: 12px;
}

:root {
	--active: #f90;
	--text: #fff;
}

*,
:before,
:after {
	box-sizing: border-box;
}

a,
button,
input,
textarea {
	-webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: 0;
}

html {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

html:not(.loaded) [data-da*=header__mobile],
html:not(.loaded) ._dynamic_adapt_,
html:not(.loaded) .sub-menu-wrapper {
	position: absolute;
	opacity: 0;
}

html:not(.loaded) .header {
	opacity: 0;
}

html:not(.loaded) [data-lines] {
	opacity: 0;
}

html.safari {
	-webkit-text-size-adjust: 100%;
}

html.safari input,
html.safari textarea {
	font-size: 16px !important;
}

html.safari input {
	-webkit-appearance: none;
	appearance: none;
}

@supports not (-webkit-hyphens:none) {
	body {
		padding-right: 0 !important;
	}
}

body {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	color: #fff;
	-webkit-tap-highlight-color: transparent;
	overflow-x: clip;
}

body.no-scroll {
	overflow-y: hidden;
}

.wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
	overflow-x: clip;
}

.main {
	flex: 1;
}

html,
body,
.header__mobile {
	scrollbar-gutter: stable;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
figure,
fieldset,
iframe {
	margin: 0;
	padding: 0;
}

button,
a {
	cursor: pointer;
	color: inherit;
}

li {
	padding: 0;
	color: inherit;
	list-style: none;
}

button {
	padding: 0;
	border: 0;
	background: 0 0;
}

a {
	text-decoration: none;
}

strong,
a,
button,
li {
	font: inherit;
}

button:focus-visible,
a:focus-visible {
	outline: 3px solid #f90;
	outline-offset: 8px;
	border-radius: 16px;
	z-index: 20;
}

input,
textarea {
	border: 0;
	background: 0 0;
	text-decoration: none;
	color: inherit;
	font-family: "Montserrat";
	-webkit-appearance: none;
	appearance: none;
}

input::placeholder,
textarea::placeholder {
	font: inherit;
	color: inherit;
}

input:focus-visible,
textarea:focus-visible,
[role=combobox]:focus-visible {
	outline: 1px solid #f90;
}

textarea {
	resize: none;
	max-height: 100%;
	padding-right: 9px;
	overflow-y: auto;
	overflow-x: hidden;
}

@supports (-moz-appearance:none) {
	textarea {
		scrollbar-color: #fff #2a2a2a;
		scrollbar-width: thin;
	}
}

textarea::-webkit-scrollbar {
	width: 4px;
}

textarea::-webkit-scrollbar-track-piece {
	background-color: #2a2a2a;
	border-radius: 4px;
}

textarea::-webkit-scrollbar-thumb {
	background-color: #fff;
	border-radius: 4px;
}

@supports (-webkit-hyphens:none) {
	input {
		-webkit-appearance: none;
		appearance: none;
		font-size: 16px !important;
	}
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type=number] {
	-moz-appearance: textfield;
}

input[type=submit],
input[type=button] {
	cursor: pointer;
}

img {
	max-width: 100%;
	object-fit: contain;
}

picture {
	display: contents;
}

svg {
	max-height: 100%;
	transition: all .4s;
}

sup {
	font-size: .5em;
}

[data-digits-counter] {
	display: inline-block;
	white-space: nowrap;
}

[data-lines] {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

[data-lines].active {
	-webkit-line-clamp: unset;
	overflow: visible;
}

.form__fields {
	display: grid;
}

.logo {
	display: flex;
}

.button,
.submit,
.menu li,
a,
.tel {
	transition: color .3s, background .3s, opacity .3s;
}

.menu li {
	position: relative;
	z-index: 2;
}

.menu-item:not(.menu-item-has-children) .menu-item-arrow {
	display: none;
}

.link-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.hover-translate {
	transition: translate .4s;
}

.hover-translate:focus-visible {
	translate: 0 -3px;
}

.hover-scale {
	transition: all .4s;
}

.hover-scale [class*=-img] {
	overflow: hidden;
}

.hover-scale [class*=-img] img {
	transition: .4s ease-in;
}

.hover-scale:focus-visible [class*=-img] img {
	scale: 1.02;
}

.hover-icon img,
.hover-icon svg {
	transition: all .4s;
}

.hover-icon:focus-visible img,
.hover-icon:focus-visible svg {
	scale: 1.08;
}

.underline {
	text-decoration: underline;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	text-underline-offset: .1lh;
	transition: color .3s, text-decoration-color .3s;
}

.underline:focus-visible {
	text-decoration-color: transparent;
}

.hover-underline {
	text-decoration: underline;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	text-underline-offset: .1lh;
	transition: color .3s, text-decoration-color .3s;
	text-decoration-color: transparent;
}

.hover-underline:focus-visible {
	text-decoration-color: currentColor;
}

[hidden] {
	display: none !important;
}

[data-scrolling] * {
	-webkit-user-select: none;
	user-select: none;
}

.flex {
	display: flex;
}

.justify-center {
	justify-content: center;
	justify-items: center;
}

.align-center {
	align-content: center;
	align-items: center;
}

.contact__wrapper {
	position: relative;
	min-height: 400px;
	border-radius: 12px;
	overflow: hidden;
}

.contact__map {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
}

.contact__block {
	position: relative;
	z-index: 2;
	background: #101010;
	border-radius: 8px;
	overflow: hidden;
}

.contact__block-img {
	overflow: hidden;
}

.contact__block-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .5s;
}

.contact__block-img img:focus-visible {
	scale: 1.01;
}

.contact__block-content {
	display: grid;
	align-items: start;
}

.contact__block-title {
	text-transform: unset;
}

.contact__items {
	display: grid;
	align-items: start;
}

.contact__item {
	display: grid;
	grid-template-columns: 24px 1fr auto;
	align-items: center;
	line-height: 1.5;
	text-shadow: 1px 2px 0 0 rgba(0, 0, 0, .2);
}

.contact__item>svg {
	max-width: 20px;
	max-height: 20px;
	stroke: #f90;
}

.contact__social {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.promo__item {
	height: 100%;
}

.promo__item-img {
	object-fit: cover;
}

.promo .splide__slide {
	width: auto !important;
	max-width: 80vw;
}

.booking {
	position: relative;
	display: inline-flex;
	overflow: hidden;
	touch-action: none;
	cursor: grab;
}

.booking__controls {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.booking__control {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	background: #6e6e6e;
	border-radius: 8px;
	transition: all .4s;
}

.booking__control:focus-visible {
	background: color-mix(in srgb, black 10%, #6e6e6e);
}

.booking__control svg {
	max-width: 12px;
	max-height: 12px;
}

.booking__tooltip {
	position: absolute;
	display: grid;
	min-width: 260px;
	border: 1px solid #2a2a2a;
	background: #101010;
	font-weight: 600;
	opacity: 0;
	transition: all .4s;
	pointer-events: none;
}

.booking__tooltip.active {
	opacity: 1;
	pointer-events: auto;
}

.booking [data-type] {
	cursor: pointer;
}

.booking [data-type=table] {
	position: relative;
}

.booking .is-selected,
.booking .is-reserved,
.booking [data-reserved=yes] {
	opacity: .6;
}

.booking .is-reserved[data-reserved=yes] {
	pointer-events: none;
}

.booking-category {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	align-content: center;
	gap: 8px;
}

.booking-category__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	grid-row: span 2;
	overflow: hidden;
}

.booking-category__icon:empty {
	width: auto;
}

.booking-category__icon img,
.booking-category__icon svg {
	width: max(35px, 70%);
	height: max(30px, 70%);
}

.booking-category__title {
	line-height: 1;
	font-weight: 600;
}

.booking-category__price {
	margin-top: -4px;
	font-weight: 700;
	line-height: 1;
	color: #44a180;
}

.modal-book .modal__content {
	max-width: min(1842px, 98vw);
	padding: 0;
}

.modal-book .modal__close {
	background: 0 0;
	border: 1px solid rgba(255, 255, 255, .4);
}

.modal-book .modal__close svg {
	fill: rgba(255, 255, 255, .4);
	stroke: none;
}

.modal-book .modal__close:focus-visible {
	background: rgba(255, 255, 255, .4);
}

.modal-book__wrapper {
	display: grid;
	grid-template-columns: 1fr 41.26%;
	align-items: start;
}

.modal-book__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.modal-book__categories {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #2a2a2a;
}

.modal-book__categories .booking-category {
	padding: 12px;
	flex-grow: 1;
	border-radius: 12px;
}

.modal-book__categories .booking-category__price {
	color: var(--color);
}

.modal-book__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.modal-book .places__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	color: #f90;
}

.modal-book .places__delete {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #767676;
	transition: all .4s;
}

.modal-book .places__delete:focus-visible {
	color: #f90;
}

.modal-book .places__delete svg {
	width: 1em;
	height: 1em;
	stroke: currentColor;
	transition: none;
}

.modal-book .places__items {
	display: grid;
	max-height: 426px;
	padding-right: 16px;
	overflow-y: auto;
	overflow-x: hidden;
}

@supports (-moz-appearance:none) {
	.modal-book .places__items {
		scrollbar-color: #fff #2a2a2a;
		scrollbar-width: thin;
	}
}

.modal-book .places__items::-webkit-scrollbar {
	width: 4px;
}

.modal-book .places__items::-webkit-scrollbar-track-piece {
	background-color: #2a2a2a;
	border-radius: 4px;
}

.modal-book .places__items::-webkit-scrollbar-thumb {
	background-color: #fff;
	border-radius: 4px;
}

.modal-book .places__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding-left: 16px;
	width: 100%;
	font-weight: 600;
}

.modal-book .places__item:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	translate: 0 -50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color);
}

.modal-book .places__item-price {
	color: #44a180;
	font-weight: 700;
}

.modal-book .places__item-delete {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #373737;
	transition: all .4s;
}

.modal-book .places__item-delete:focus-visible {
	background: #f90;
}

.modal-book .places__item-delete:focus-visible svg {
	stroke: #fff;
}

.modal-book .places__item-delete svg {
	width: 50%;
	height: 50%;
	fill: none;
	stroke: #767676;
	transition: none;
}

.modal-book .places__text {
	display: flex;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	color: #888;
}

.modal-book__payment {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	font-weight: 600;
	line-height: 1.33333;
}

.modal-book__map svg {
	aspect-ratio: 760/840;
}

.event__title {
	margin-bottom: 12px;
}

.event__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.event__labels {
	display: flex;
	flex-wrap: wrap;
	row-gap: 12px;
}

.event__label {
	display: flex;
	align-items: center;
	padding: .5em 1.5em;
	border: 1px solid rgba(255, 255, 255, .5);
	color: rgba(255, 255, 255, .5);
	white-space: nowrap;
	transition: all .4s;
}

.event__label:focus-visible {
	border-color: #f90;
	color: #f90;
}

.event__label.active {
	border-color: #f90;
	color: #f90;
}

.event__label svg {
	fill: currentColor;
	transition: none;
}

.event__date {
	align-items: center;
	padding-left: .75em;
	padding-right: 1.5em;
	align-items: center;
	gap: 12px;
	padding-left: 48px;
	white-space: nowrap;
	border-color: #f90;
	color: #f90;
}

.event__date span {
	position: static;
	translate: 0 0;
	color: #f90;
}

.event__date input {
	position: absolute;
	inset: 0;
	padding-left: 40px;
	background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.8 6H7.2C5.43269 6 4 7.39289 4 9.11111V16.8889C4 18.6071 5.43269 20 7.2 20H16.8C18.5673 20 20 18.6071 20 16.8889V9.11111C20 7.39289 18.5673 6 16.8 6Z' fill='%23FF9900' stroke='%23FF9900' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M8.4 4V7M15.6 4V7M3 10H21' stroke='%23101010' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E") 12px center/24px no-repeat;
}

.event__date input:focus-visible {
	outline: 0;
}

.event__date:focus-visible {
	background: 0 0;
	color: color-mix(in srgb, black 12%, #f90);
	border-color: color-mix(in srgb, black 12%, #f90);
}

.event__date:focus-within {
	outline: 3px solid #f90;
	outline-offset: -3px;
}

.event__wrapper {
	display: grid;
	gap: var(--gap);
	--gap: min(12px + 4px, 12px + 4 * ((100vw - 320px) / 1600));
	--min-columns-width: 310px;
	--max-columns: 4;
	grid-template-columns: repeat(auto-fill, minmax(clamp(var(--min-columns-width), 30vw, 100%/var(--max-columns) - var(--gap)/var(--max-columns)*(var(--max-columns) - 1)), 1fr));
}

.event__item {
	position: relative;
	z-index: 1;
	border: 1px solid #2a2a2a;
	overflow: hidden;
	cursor: pointer;
}

.event__item:focus-visible .event__item-img {
	scale: 1.03;
}

.event__item:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(16, 16, 16, 0) 38.46%, #101010 100%);
}

.event__item-img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
	transition: all .7s;
}

.event__item-content {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-rows: auto 1fr;
}

.event__item-top {
	display: flex;
	align-items: center;
	gap: 8px;
	justify-content: space-between;
}

.event__item-date {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f90;
	color: #101010;
	font-weight: 600;
}

.event__item-date svg {
	fill: none;
	stroke: #101010;
}

.event__item-labels {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.event__item-label {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background: #f90;
	border-radius: 50%;
}

.event__item-label svg {
	max-width: 50%;
	max-height: 50%;
	fill: #101010;
}

.event__item-bottom {
	display: grid;
	grid-template-columns: 100%;
	align-self: end;
	align-content: end;
	justify-items: start;
}

.event__item-age {
	border: 1px solid #f90;
	font-weight: 600;
	color: #f90;
}

.event__item-title {
	font-weight: 600;
	line-height: 1.3;
}

.event__item-title:after {
	content: "";
	position: absolute;
	inset: 0;
}

.event__item-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 4px;
	width: 100%;
}

.event__item-price {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #f90;
	font-weight: 600;
	white-space: nowrap;
}

.event__item-price svg {
	fill: none;
	stroke: #f90;
}

.single-event__wrapper {
	display: grid;
	grid-template-columns: 39.77% 1fr;
}

.single-event__left {
	position: relative;
	overflow: hidden;
}

.single-event__img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: all .4s;
}

.single-event__img:focus-visible {
	scale: 1.01;
}

.single-event__age {
	position: absolute;
	border: 1px solid #f90;
	font-weight: 600;
	color: #f90;
}

.single-event__age {
	z-index: 1;
}

.single-event__right {
	display: grid;
	align-content: start;
	justify-items: start;
}

.single-event__date {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #f90;
	font-weight: 600;
}

.single-event__date svg {
	width: 20px;
	height: 20px;
	stroke: #f90;
}

.single-event__title {
	font-weight: 600;
	line-height: 1.14;
}

.single-event__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 4px;
	color: #f90;
	border-bottom: 1px solid #f90;
	transition: all .4s;
}

.single-event__link:focus-visible {
	border-bottom-color: transparent;
}

.single-event__link svg {
	stroke: currentColor;
	transition: none;
}

.single-event__blocks {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.single-event__block {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	align-content: start;
	gap: 12px 20px;
	flex-grow: 1;
	border: 1px solid #2a2a2a;
}

.single-event__block-title {
	font-weight: 600;
}

.single-event__block-price {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	color: #f90;
}

.single-event__block-price svg {
	stroke: #f90;
}

.single-event__block-button {
	grid-row: span 2;
	align-self: end;
		background: #f90;
		color: #101010;
}

.single-event__block-button:hover {
		background: #101010 !important;
		color: #f90 !important;
}

.single-event__block-social {
	grid-column: 1/-1;
	gap: 12px;
}

.about__wrapper {
	display: grid;
	grid-template-columns: minmax(450px, 40.91%) 1fr;
	align-items: start;
}

.about__left {
	display: grid;
}

.about__text {
	display: grid;
	font-weight: 500;
}

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

.about__img {
	width: 100%;
	object-fit: cover;
}

.about__logo {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	z-index: 2;
	opacity: .5;
}

.about__item {
	display: flex;
	aspect-ratio: 1;
}

.about__item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width:576px) {

	.container-left,
	.container-right {
		width: calc(520px + (100vw - 520px)/2);
		max-width: none;
	}

	.container-right {
		padding-right: 20px;
		padding-left: 0;
	}

	.container-left {
		padding-right: 0;
		padding-left: 20px;
	}
}

@media (min-width:768px) {
	.header {
		animation: headerFixedBackground forwards;
		animation-timeline: scroll();
		animation-range: 100px 150px;
		transition: opacity .4s;
	}

	@keyframes headerFixedBackground {
		0% {
			background: 0 0;
		}

		to {
			background: #101010;
		}
	}

	.container-left,
	.container-right {
		width: calc(720px + (100vw - 720px)/2);
	}
}

@media (min-width:992px) {
	.text-block img[style*=float] {
		max-width: 50%;
	}

	.text-block img[style*="float: right"] {
		margin-left: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.text-block img[style*="float: left"] {
		margin-right: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.footer__bottom {
		font-size: round(clamp(min(16px, 14px), 11.8620689655px + .2155172414vw, max(16px, 14px)), 1px);
	}

	.container-left,
	.container-right {
		width: calc(940px + (100vw - 940px)/2);
	}
}

@media (min-width:1200px) {
	.menu-link {
		display: none;
	}

	.header__top {
		gap: round(clamp(min(20px, 12px), -1.3333333333px + 1.1111111111vw, max(20px, 12px)), 1px);
	}

	.header__logo img {
		width: round(clamp(min(210px, 147px), 42px + 8.75vw, max(210px, 147px)), 1px);
	}

	.header__logo img {
		height: round(clamp(min(44px, 30.8px), 8.8px + 1.8333333333vw, max(44px, 30.8px)), 1px);
	}

	.header__menu {
		column-gap: round(clamp(min(40px, 12px), -34.6666666667px + 3.8888888889vw, max(40px, 12px)), 1px);
	}

	.header__menu {
		font-size: round(clamp(min(16px, 15px), 13.3333333333px + .1388888889vw, max(16px, 15px)), 1px);
	}
}

@media (min-width:1301px) {
	.checkbox {
		gap: 16px;
	}

	.splide__progress {
		margin-top: 40px;
	}

	.splide__arrow {
		width: 56px;
	}

	.splide__arrow {
		height: 56px;
	}

	.crumbs {
		font-size: 16px;
	}

	.crumbs li:not(:last-child):before {
		right: -12px;
	}

	.text-block h1 {
		margin-bottom: 40px;
	}

	.text-block h1 {
		font-size: 80px;
	}

	.text-block h2 {
		margin-bottom: 40px;
	}

	.text-block h2 {
		font-size: 48px;
	}

	.text-block h3 {
		margin-bottom: 20px;
	}

	.text-block h3 {
		font-size: 32px;
	}

	.text-block h4 {
		font-size: 24px;
	}

	.text-block p:not(:has(+ul, +ol)) {
		margin-bottom: 24px;
	}

	.text-block img {
		border-radius: 20px;
	}

	.text-block .video {
		border-radius: 20px;
	}

	.text-block .video {
		margin-bottom: 20px;
	}

	.text-block .video:after {
		width: 51px;
	}

	.text-block .video:after {
		height: 56px;
	}

	.text-block ul,
	.text-block ol {
		gap: 16px;
	}

	.text-block ul:not(:first-child),
	.text-block ol:not(:first-child) {
		padding-top: 20px;
	}

	.text-block ul:not(:last-child),
	.text-block ol:not(:last-child) {
		padding-bottom: 20px;
	}

	.text-block ul>li {
		padding-left: 34px;
	}

	.text-block ol>li:before {
		width: 24px;
	}

	.text-block ol>li:before {
		height: 24px;
	}

	.text-block blockquote {
		padding: 40px;
	}

	.text-block blockquote {
		font-size: 20px;
	}

	.text-block img {
		border-radius: 20px;
	}

	body {
		font-size: 16px;
	}

	.main {
		padding-bottom: 40px;
	}

	.section {
		padding-block: 40px;
	}

	.section-top {
		padding-top: 40px;
	}

	.section-bottom {
		padding-bottom: 40px;
	}

	.section__top {
		margin-bottom: 40px;
	}

	.title {
		font-size: 48px;
	}

	.title-2 {
		font-size: 40px;
	}

	.title-3 {
		font-size: 20px;
	}

	.title-4 {
		font-size: 24px;
	}

	.subtitle {
		font-size: 20px;
	}

	.button {
		min-height: 48px;
	}

	.button {
		font-size: 16px;
	}

	.call {
		gap: 12px;
	}

	.info {
		font-size: 14px;
	}

	.info_big {
		font-size: 16px;
	}

	.info svg {
		width: 16px;
	}

	.info svg {
		height: 16px;
	}

	.section-404__title {
		font-size: 120px;
	}

	.section-404__subtitle {
		margin-bottom: 40px;
	}

	.ticket {
		padding: 30px;
	}

	.ticket__top {
		margin-bottom: 20px;
	}

	.ticket__top {
		padding-bottom: 20px;
	}

	.ticket__title {
		font-size: 20px;
	}

	.ticket__row {
		gap: 20px;
	}

	.ticket__row {
		margin-bottom: 20px;
	}

	.ticket__items {
		gap: 20px;
	}

	.ticket__item-top:before {
		width: 16px;
	}

	.ticket__item-top:before {
		height: 16px;
	}

	.ticket__item-text {
		font-size: 20px;
	}

	.ticket__footer {
		gap: 20px;
	}

	.ticket__age {
		font-size: 16px;
	}

	.form__row {
		gap: 20px;
	}

	.input-item {
		gap: 12px;
	}

	.input-date input {
		padding-right: 20px;
	}

	.modal__content {
		padding-block: 40px;
	}

	.modal__content {
		padding-inline: 40px;
	}

	.modal__content {
		border-radius: 20px;
	}

	.modal__content-wrapper {
		gap: 20px;
	}

	.modal__title {
		margin-bottom: 40px;
	}

	.modal__form .form__fields {
		column-gap: 20px;
	}

	.modal__form .form__fields {
		row-gap: 12px;
	}

	.modal__form .form__row {
		margin-top: 28px;
	}

	.modal__close {
		right: 40px;
	}

	.modal__close {
		top: 40px;
	}

	.modal__close {
		width: 56px;
	}

	.modal__close {
		height: 56px;
	}

	.modal__close {
		padding: 12px;
	}

	.modal__close {
		border-radius: 12px;
	}

	.modal-thank .modal__content {
		gap: 20px;
	}

	.modal-thank .modal__content {
		min-width: 530px;
	}

	.modal-thank img {
		width: 100px;
	}

	.modal-thank img {
		height: 100px;
	}

	.modal-return__button {
		margin-top: 40px;
	}

	.modal-refund .form__fields {
		gap: 20px;
	}

	.cookies {
		bottom: 40px;
	}

	.cookies-wrapper {
		column-gap: 40px;
	}

	.cookies-wrapper {
		padding-inline: 28px;
	}

	.cookies-wrapper {
		border-radius: 20px;
	}

	.cookies__title {
		gap: 16px;
	}

	.cookies__title {
		font-size: 24px;
	}

	.cookies__title svg {
		width: 24px;
	}

	.cookies__title svg {
		height: 24px;
	}

	.cookies__button {
		font-size: 16px;
	}

	.header__top-wrapper {
		padding-block: 20px;
	}

	.header__address {
		gap: 12px;
	}

	.footer__top {
		gap: 40px;
	}

	.footer__top {
		padding-block: 40px;
	}

	.footer__left {
		gap: 20px;
	}

	.footer__bottom {
		gap: 16px;
	}

	.container {
		padding-inline: 40px;
	}

	.container-left,
	.container-right {
		width: calc(0px + (100vw - 0px)/2);
	}

	.flex {
		gap: 16px;
	}

	.grid {
		gap: 16px;
	}

	.contact__wrapper {
		padding: 40px;
	}

	.contact__block {
		max-width: 457px;
	}

	.contact__block-content {
		gap: 20px;
	}

	.contact__block-content {
		padding-top: 20px;
	}

	.contact__block-content {
		padding-inline: 40px;
	}

	.contact__block-content {
		padding-bottom: 40px;
	}

	.contact__items {
		gap: 12px;
	}

	.contact__item {
		gap: 12px;
	}

	.promo__item-img {
		border-radius: 12px;
	}

	.booking__control {
		width: 40px;
	}

	.booking__control {
		height: 40px;
	}

	.booking__tooltip {
		left: 20px;
	}

	.booking__tooltip {
		top: 20px;
	}

	.booking__tooltip {
		gap: 20px;
	}

	.booking__tooltip {
		padding: 20px;
	}

	.booking__tooltip {
		border-radius: 16px;
	}

	.booking-category__icon {
		width: 48px;
	}

	.booking-category__icon {
		height: 48px;
	}

	.modal-book .modal__close {
		top: 20px;
	}

	.modal-book .modal__close {
		right: 20px;
	}

	.modal-book__top {
		margin-bottom: 40px;
	}

	.modal-book__left {
		padding: 40px;
	}

	.modal-book__categories {
		gap: 20px;
	}

	.modal-book__categories {
		margin-bottom: 20px;
	}

	.modal-book__categories {
		padding-bottom: 20px;
	}

	.modal-book__row {
		gap: 40px;
	}

	.modal-book .places__top {
		margin-bottom: 20px;
	}

	.modal-book .places__items {
		gap: 12px;
	}

	.modal-book .places__item-delete {
		width: 32px;
	}

	.modal-book .places__item-delete {
		height: 32px;
	}

	.modal-book .places__item-delete {
		border-radius: 8px;
	}

	.modal-book .places__text {
		font-size: 16px;
	}

	.modal-book__payment {
		margin-block: 28px;
	}

	.modal-book__payment {
		font-size: 24px;
	}

	.event__subtitle {
		margin-bottom: 28px;
	}

	.event__top {
		gap: 20px;
	}

	.event__top {
		margin-bottom: 40px;
	}

	.event__labels {
		column-gap: 20px;
	}

	.event__label {
		gap: 16px;
	}

	.event__label {
		min-height: 48px;
	}

	.event__label {
		border-radius: 40px;
	}

	.event__label {
		font-size: 16px;
	}

	.event__label svg {
		width: 16px;
	}

	.event__label svg {
		height: 16px;
	}

	.event__item {
		min-height: 480px;
	}

	.event__item {
		border-radius: 16px;
	}

	.event__item-content {
		gap: 20px;
	}

	.event__item-content {
		padding: 20px;
	}

	.event__item-date {
		padding-block: 8px;
	}

	.event__item-date {
		padding-inline: 16px;
	}

	.event__item-date {
		border-radius: 32px;
	}

	.event__item-date {
		font-size: 16px;
	}

	.event__item-date svg {
		width: 18px;
	}

	.event__item-date svg {
		height: 18px;
	}

	.event__item-label {
		width: 40px;
	}

	.event__item-label {
		height: 40px;
	}

	.event__item-bottom {
		gap: 20px;
	}

	.event__item-age {
		padding-block: 8px;
	}

	.event__item-age {
		padding-inline: 16px;
	}

	.event__item-age {
		border-radius: 12px;
	}

	.event__item-title {
		font-size: 24px;
	}

	.event__item-price svg {
		width: 18px;
	}

	.event__item-price svg {
		height: 18px;
	}

	.single-event__wrapper {
		gap: 60px;
	}

	.single-event__img {
		border-radius: 20px;
	}

	.single-event__age {
		top: 20px;
	}

	.single-event__age {
		right: 20px;
	}

	.single-event__age {
		padding-block: 8px;
	}

	.single-event__age {
		padding-inline: 16px;
	}

	.single-event__age {
		border-radius: 12px;
	}

	.single-event__right {
		gap: 20px;
	}

	.single-event__title {
		font-size: 56px;
	}

	.single-event__link {
		margin-block: 20px;
	}

	.single-event__link svg {
		width: 22px;
	}

	.single-event__link svg {
		height: 22px;
	}

	.single-event__block {
		padding-block: 40px;
	}

	.single-event__block {
		padding-inline: 40px;
	}

	.single-event__block {
		border-radius: 16px;
	}

	.single-event__block-title {
		font-size: 24px;
	}

	.single-event__block-price {
		font-size: 24px;
	}

	.single-event__block-price svg {
		width: 24px;
	}

	.single-event__block-price svg {
		height: 24px;
	}

	.single-event__block-social .social__item {
		width: 32px;
	}

	.single-event__block-social .social__item {
		height: 32px;
	}

	.about__wrapper {
		gap: 80px;
	}

	.about__left {
		gap: 40px;
	}

	.about__text {
		gap: 20px;
	}

	.about__text {
		font-size: 20px;
	}

	.about__img {
		height: 490px;
	}

	.about__img {
		border-radius: 16px;
	}

	.about__logo {
		width: 420px;
	}

	.about__logo {
		height: 88px;
	}

	.about__item-img {
		border-radius: 16px;
	}
}

@media (min-width:1921px) {
	.modal-book__payment:not(:has(span)) {
		font-size: 20px;
	}
}

@media (max-width:1920px) {
	.modal-book__payment:not(:has(span)) {
		font-size: calc(18px + 2*((100vw - 320px)/1600));
	}
}

@media (max-width:1300px) {
	.checkbox {
		gap: round(clamp(min(16px, 8px), 6.4px + .5vw, max(16px, 8px)), 1px);
	}

	.splide__progress {
		margin-top: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.splide__arrow {
		width: round(clamp(min(56px, 32px), 27.2px + 1.5vw, max(56px, 32px)), 1px);
	}

	.splide__arrow {
		height: round(clamp(min(56px, 32px), 27.2px + 1.5vw, max(56px, 32px)), 1px);
	}

	.crumbs {
		font-size: round(clamp(min(16px, 14px), 13.6px + .125vw, max(16px, 14px)), 1px);
	}

	.crumbs li:not(:last-child):before {
		right: round(clamp(min(-12px, -8px), -7.2px + -.25vw, max(-12px, -8px)), 1px);
	}

	.text-block h1 {
		margin-bottom: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.text-block h1 {
		font-size: round(clamp(min(80px, 40px), 32px + 2.5vw, max(80px, 40px)), 1px);
	}

	.text-block h2 {
		margin-bottom: round(clamp(min(40px, 16px), 11.2px + 1.5vw, max(40px, 16px)), 1px);
	}

	.text-block h2 {
		font-size: round(clamp(min(48px, 28px), 24px + 1.25vw, max(48px, 28px)), 1px);
	}

	.text-block h3 {
		margin-bottom: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.text-block h3 {
		font-size: round(clamp(min(32px, 24px), 22.4px + .5vw, max(32px, 24px)), 1px);
	}

	.text-block h4 {
		font-size: round(clamp(min(24px, 16px), 14.4px + .5vw, max(24px, 16px)), 1px);
	}

	.text-block p:not(:has(+ul, +ol)) {
		margin-bottom: round(clamp(min(24px, 16px), 14.4px + .5vw, max(24px, 16px)), 1px);
	}

	.text-block img {
		border-radius: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.text-block .video {
		border-radius: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.text-block .video {
		margin-bottom: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.text-block .video:after {
		width: round(clamp(min(51px, 32px), 28.2px + 1.1875vw, max(51px, 32px)), 1px);
	}

	.text-block .video:after {
		height: round(clamp(min(56px, 36px), 32px + 1.25vw, max(56px, 36px)), 1px);
	}

	.text-block ul,
	.text-block ol {
		gap: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.text-block ul:not(:first-child),
	.text-block ol:not(:first-child) {
		padding-top: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.text-block ul:not(:last-child),
	.text-block ol:not(:last-child) {
		padding-bottom: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.text-block ul>li {
		padding-left: round(clamp(min(34px, 26px), 24.4px + .5vw, max(34px, 26px)), 1px);
	}

	.text-block ol>li:before {
		width: round(clamp(min(24px, 16px), 14.4px + .5vw, max(24px, 16px)), 1px);
	}

	.text-block ol>li:before {
		height: round(clamp(min(24px, 16px), 14.4px + .5vw, max(24px, 16px)), 1px);
	}

	.text-block blockquote {
		padding: round(clamp(min(40px, 16px), 11.2px + 1.5vw, max(40px, 16px)), 1px);
	}

	.text-block blockquote {
		font-size: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.text-block img {
		border-radius: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	body {
		font-size: round(clamp(min(16px, 15px), 14.8px + .0625vw, max(16px, 15px)), 1px);
	}

	.main {
		padding-bottom: round(clamp(min(40px, 24px), 20.8px + 1vw, max(40px, 24px)), 1px);
	}

	.section {
		padding-block: round(clamp(min(40px, 24px), 20.8px + 1vw, max(40px, 24px)), 1px);
	}

	.section-top {
		padding-top: round(clamp(min(40px, 24px), 20.8px + 1vw, max(40px, 24px)), 1px);
	}

	.section-bottom {
		padding-bottom: round(clamp(min(40px, 24px), 20.8px + 1vw, max(40px, 24px)), 1px);
	}

	.section__top {
		margin-bottom: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.title {
		font-size: round(clamp(min(48px, 32px), 28.8px + 1vw, max(48px, 32px)), 1px);
	}

	.title-2 {
		font-size: round(clamp(min(40px, 24px), 20.8px + 1vw, max(40px, 24px)), 1px);
	}

	.title-3 {
		font-size: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.title-4 {
		font-size: round(clamp(min(24px, 16px), 14.4px + .5vw, max(24px, 16px)), 1px);
	}

	.subtitle {
		font-size: round(clamp(min(20px, 18px), 17.6px + .125vw, max(20px, 18px)), 1px);
	}

	.button {
		min-height: round(clamp(min(48px, 44px), 43.2px + .25vw, max(48px, 44px)), 1px);
	}

	.button {
		font-size: round(clamp(min(16px, 14px), 13.6px + .125vw, max(16px, 14px)), 1px);
	}

	.call {
		gap: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.info {
		font-size: round(clamp(min(14px, 12px), 11.6px + .125vw, max(14px, 12px)), 1px);
	}

	.info_big {
		font-size: round(clamp(min(16px, 14px), 13.6px + .125vw, max(16px, 14px)), 1px);
	}

	.info svg {
		width: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.info svg {
		height: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.section-404__title {
		font-size: round(clamp(min(120px, 60px), 48px + 3.75vw, max(120px, 60px)), 1px);
	}

	.section-404__subtitle {
		margin-bottom: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.ticket {
		padding: round(clamp(min(30px, 16px), 13.2px + .875vw, max(30px, 16px)), 1px);
	}

	.ticket__top {
		margin-bottom: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.ticket__top {
		padding-bottom: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.ticket__title {
		font-size: round(clamp(min(20px, 18px), 17.6px + .125vw, max(20px, 18px)), 1px);
	}

	.ticket__row {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.ticket__row {
		margin-bottom: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.ticket__items {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.ticket__item-top:before {
		width: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.ticket__item-top:before {
		height: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.ticket__item-text {
		font-size: round(clamp(min(20px, 18px), 17.6px + .125vw, max(20px, 18px)), 1px);
	}

	.ticket__footer {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.ticket__age {
		font-size: round(clamp(min(16px, 14px), 13.6px + .125vw, max(16px, 14px)), 1px);
	}

	.form__row {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.input-item {
		gap: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.input-date input {
		padding-right: round(clamp(min(20px, 10px), 8px + .625vw, max(20px, 10px)), 1px);
	}

	.modal__content {
		padding-block: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.modal__content {
		padding-inline: round(clamp(min(40px, 16px), 11.2px + 1.5vw, max(40px, 16px)), 1px);
	}

	.modal__content {
		border-radius: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.modal__content-wrapper {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.modal__title {
		margin-bottom: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.modal__form .form__fields {
		column-gap: round(clamp(min(20px, 8px), 5.6px + .75vw, max(20px, 8px)), 1px);
	}

	.modal__form .form__fields {
		row-gap: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.modal__form .form__row {
		margin-top: round(clamp(min(28px, 16px), 13.6px + .75vw, max(28px, 16px)), 1px);
	}

	.modal__close {
		right: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.modal__close {
		top: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.modal__close {
		width: round(clamp(min(56px, 32px), 27.2px + 1.5vw, max(56px, 32px)), 1px);
	}

	.modal__close {
		height: round(clamp(min(56px, 32px), 27.2px + 1.5vw, max(56px, 32px)), 1px);
	}

	.modal__close {
		padding: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.modal__close {
		border-radius: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.modal-thank .modal__content {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.modal-thank .modal__content {
		min-width: round(clamp(min(530px, 300px), 254px + 14.375vw, max(530px, 300px)), 1px);
	}

	.modal-thank img {
		width: round(clamp(min(100px, 60px), 52px + 2.5vw, max(100px, 60px)), 1px);
	}

	.modal-thank img {
		height: round(clamp(min(100px, 60px), 52px + 2.5vw, max(100px, 60px)), 1px);
	}

	.modal-return__button {
		margin-top: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.modal-refund .form__fields {
		gap: round(clamp(min(20px, 8px), 5.6px + .75vw, max(20px, 8px)), 1px);
	}

	.cookies {
		bottom: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.cookies-wrapper {
		column-gap: round(clamp(min(40px, 12px), 6.4px + 1.75vw, max(40px, 12px)), 1px);
	}

	.cookies-wrapper {
		padding-inline: round(clamp(min(28px, 16px), 13.6px + .75vw, max(28px, 16px)), 1px);
	}

	.cookies-wrapper {
		border-radius: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.cookies__title {
		gap: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.cookies__title {
		font-size: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.cookies__title svg {
		width: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.cookies__title svg {
		height: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.cookies__button {
		font-size: round(clamp(min(16px, 14px), 13.6px + .125vw, max(16px, 14px)), 1px);
	}

	.header__top-wrapper {
		padding-block: round(clamp(min(20px, 8px), 5.6px + .75vw, max(20px, 8px)), 1px);
	}

	.header__address {
		gap: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.footer__top {
		gap: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.footer__top {
		padding-block: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.footer__left {
		gap: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.footer__bottom {
		gap: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.container {
		padding-inline: round(clamp(min(40px, 12px), 6.4px + 1.75vw, max(40px, 12px)), 1px);
	}

	.flex {
		gap: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.grid {
		gap: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.contact__wrapper {
		padding: round(clamp(min(40px, 16px), 11.2px + 1.5vw, max(40px, 16px)), 1px);
	}

	.contact__block {
		max-width: round(clamp(min(457px, 360px), 340.6px + 6.0625vw, max(457px, 360px)), 1px);
	}

	.contact__block-content {
		gap: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.contact__block-content {
		padding-top: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.contact__block-content {
		padding-inline: round(clamp(min(40px, 16px), 11.2px + 1.5vw, max(40px, 16px)), 1px);
	}

	.contact__block-content {
		padding-bottom: round(clamp(min(40px, 16px), 11.2px + 1.5vw, max(40px, 16px)), 1px);
	}

	.contact__items {
		gap: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.contact__item {
		gap: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.promo__item-img {
		border-radius: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.booking__control {
		width: round(clamp(min(40px, 32px), 30.4px + .5vw, max(40px, 32px)), 1px);
	}

	.booking__control {
		height: round(clamp(min(40px, 32px), 30.4px + .5vw, max(40px, 32px)), 1px);
	}

	.booking__tooltip {
		left: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.booking__tooltip {
		top: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.booking__tooltip {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.booking__tooltip {
		padding: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.booking__tooltip {
		border-radius: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.booking-category__icon {
		width: round(clamp(min(48px, 36px), 33.6px + .75vw, max(48px, 36px)), 1px);
	}

	.booking-category__icon {
		height: round(clamp(min(48px, 36px), 33.6px + .75vw, max(48px, 36px)), 1px);
	}

	.modal-book .modal__close {
		top: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.modal-book .modal__close {
		right: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.modal-book__top {
		margin-bottom: round(clamp(min(40px, 12px), 6.4px + 1.75vw, max(40px, 12px)), 1px);
	}

	.modal-book__left {
		padding: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.modal-book__categories {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.modal-book__categories {
		margin-bottom: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.modal-book__categories {
		padding-bottom: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.modal-book__row {
		gap: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.modal-book .places__top {
		margin-bottom: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.modal-book .places__items {
		gap: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.modal-book .places__item-delete {
		width: round(clamp(min(32px, 28px), 27.2px + .25vw, max(32px, 28px)), 1px);
	}

	.modal-book .places__item-delete {
		height: round(clamp(min(32px, 28px), 27.2px + .25vw, max(32px, 28px)), 1px);
	}

	.modal-book .places__item-delete {
		border-radius: round(clamp(min(8px, 4px), 3.2px + .25vw, max(8px, 4px)), 1px);
	}

	.modal-book .places__text {
		font-size: round(clamp(min(16px, 14px), 13.6px + .125vw, max(16px, 14px)), 1px);
	}

	.modal-book__payment {
		margin-block: round(clamp(min(28px, 12px), 8.8px + 1vw, max(28px, 12px)), 1px);
	}

	.modal-book__payment {
		font-size: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.modal-book__wrapper {
		grid-template-columns: 100%;
	}

	.event__subtitle {
		margin-bottom: round(clamp(min(28px, 20px), 18.4px + .5vw, max(28px, 20px)), 1px);
	}

	.event__top {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.event__top {
		margin-bottom: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.event__labels {
		column-gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.event__label {
		gap: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.event__label {
		min-height: round(clamp(min(48px, 40px), 38.4px + .5vw, max(48px, 40px)), 1px);
	}

	.event__label {
		border-radius: round(clamp(min(40px, 24px), 20.8px + 1vw, max(40px, 24px)), 1px);
	}

	.event__label {
		font-size: round(clamp(min(16px, 14px), 13.6px + .125vw, max(16px, 14px)), 1px);
	}

	.event__label svg {
		width: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.event__label svg {
		height: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.event__item {
		min-height: round(clamp(min(480px, 340px), 312px + 8.75vw, max(480px, 340px)), 1px);
	}

	.event__item {
		border-radius: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.event__item-content {
		gap: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.event__item-content {
		padding: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.event__item-date {
		padding-block: round(clamp(min(8px, 4px), 3.2px + .25vw, max(8px, 4px)), 1px);
	}

	.event__item-date {
		padding-inline: round(clamp(min(16px, 8px), 6.4px + .5vw, max(16px, 8px)), 1px);
	}

	.event__item-date {
		border-radius: round(clamp(min(32px, 16px), 12.8px + 1vw, max(32px, 16px)), 1px);
	}

	.event__item-date {
		font-size: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.event__item-date svg {
		width: round(clamp(min(18px, 12px), 10.8px + .375vw, max(18px, 12px)), 1px);
	}

	.event__item-date svg {
		height: round(clamp(min(18px, 12px), 10.8px + .375vw, max(18px, 12px)), 1px);
	}

	.event__item-label {
		width: round(clamp(min(40px, 32px), 30.4px + .5vw, max(40px, 32px)), 1px);
	}

	.event__item-label {
		height: round(clamp(min(40px, 32px), 30.4px + .5vw, max(40px, 32px)), 1px);
	}

	.event__item-bottom {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.event__item-age {
		padding-block: round(clamp(min(8px, 4px), 3.2px + .25vw, max(8px, 4px)), 1px);
	}

	.event__item-age {
		padding-inline: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.event__item-age {
		border-radius: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.event__item-title {
		font-size: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.event__item-price svg {
		width: round(clamp(min(18px, 14px), 13.2px + .25vw, max(18px, 14px)), 1px);
	}

	.event__item-price svg {
		height: round(clamp(min(18px, 14px), 13.2px + .25vw, max(18px, 14px)), 1px);
	}

	.single-event__wrapper {
		gap: round(clamp(min(60px, 20px), 12px + 2.5vw, max(60px, 20px)), 1px);
	}

	.single-event__img {
		border-radius: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.single-event__age {
		top: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.single-event__age {
		right: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.single-event__age {
		padding-block: round(clamp(min(8px, 4px), 3.2px + .25vw, max(8px, 4px)), 1px);
	}

	.single-event__age {
		padding-inline: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.single-event__age {
		border-radius: round(clamp(min(12px, 8px), 7.2px + .25vw, max(12px, 8px)), 1px);
	}

	.single-event__right {
		gap: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.single-event__title {
		font-size: round(clamp(min(56px, 32px), 27.2px + 1.5vw, max(56px, 32px)), 1px);
	}

	.single-event__link {
		margin-block: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.single-event__link svg {
		width: round(clamp(min(22px, 16px), 14.8px + .375vw, max(22px, 16px)), 1px);
	}

	.single-event__link svg {
		height: round(clamp(min(22px, 16px), 14.8px + .375vw, max(22px, 16px)), 1px);
	}

	.single-event__block {
		padding-block: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.single-event__block {
		padding-inline: round(clamp(min(40px, 16px), 11.2px + 1.5vw, max(40px, 16px)), 1px);
	}

	.single-event__block {
		border-radius: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.single-event__block-title {
		font-size: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.single-event__block-price {
		font-size: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.single-event__block-price svg {
		width: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.single-event__block-price svg {
		height: round(clamp(min(24px, 20px), 19.2px + .25vw, max(24px, 20px)), 1px);
	}

	.single-event__block-social .social__item {
		width: round(clamp(min(32px, 24px), 22.4px + .5vw, max(32px, 24px)), 1px);
	}

	.single-event__block-social .social__item {
		height: round(clamp(min(32px, 24px), 22.4px + .5vw, max(32px, 24px)), 1px);
	}

	.about__wrapper {
		gap: round(clamp(min(80px, 20px), 8px + 3.75vw, max(80px, 20px)), 1px);
	}

	.about__left {
		gap: round(clamp(min(40px, 20px), 16px + 1.25vw, max(40px, 20px)), 1px);
	}

	.about__text {
		gap: round(clamp(min(20px, 12px), 10.4px + .5vw, max(20px, 12px)), 1px);
	}

	.about__text {
		font-size: round(clamp(min(20px, 16px), 15.2px + .25vw, max(20px, 16px)), 1px);
	}

	.about__img {
		height: round(clamp(min(324px, 300px), 295.2px + 1.5vw, max(324px, 300px)), 1px);
	}

	.about__img {
		border-radius: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}

	.about__logo {
		width: round(clamp(min(420px, 294px), 268.8px + 7.875vw, max(420px, 294px)), 1px);
	}

	.about__logo {
		height: round(clamp(min(88px, 61.6px), 56.32px + 1.65vw, max(88px, 61.6px)), 1px);
	}

	.about__item-img {
		border-radius: round(clamp(min(16px, 12px), 11.2px + .25vw, max(16px, 12px)), 1px);
	}
}

@media (max-width:1199px) {
	.header__mobile {
		position: fixed;
		right: -100vw;
		top: var(--headerFixedHeight);
		z-index: 5;
		display: grid;
		grid-template-columns: 100%;
		justify-items: start;
		align-content: start;
		gap: 20px;
		width: min(500px, 101vw);
		padding: 40px 20px 40px;
		background: #101010;
		color: #fff;
		opacity: 0;
		transition: right .3s, opacity .3s;
		max-height: 100vh;
		overflow-y: auto;
		overflow-x: hidden;
		pointer-events: none;
	}

	@supports (-moz-appearance:none) {
		.header__mobile {
			scrollbar-color: #fff #2a2a2a;
			scrollbar-width: thin;
		}
	}

	.header__mobile::-webkit-scrollbar {
		width: 4px;
	}

	.header__mobile::-webkit-scrollbar-track-piece {
		background-color: #2a2a2a;
		border-radius: 4px;
	}

	.header__mobile::-webkit-scrollbar-thumb {
		background-color: #fff;
		border-radius: 4px;
	}

	.header__mobile.active {
		right: 0;
		opacity: 1;
		pointer-events: auto;
	}

	.header__nav {
		width: 100%;
	}

	.header__menu {
		display: grid;
		grid-template-columns: 100%;
		gap: 20px;
		width: 100%;
	}

	.header__top {
		justify-content: flex-end;
		gap: round(clamp(min(24px, 12px), 7.6313993174px + 1.3651877133vw, max(24px, 12px)), 1px);
	}

	.header__logo {
		margin-right: auto;
	}

	.header__logo img {
		width: round(clamp(min(210px, 147px), 124.0648464164px + 7.1672354949vw, max(210px, 147px)), 1px);
		height: round(clamp(min(44px, 30.8px), 25.9945392491px + 1.5017064846vw, max(44px, 30.8px)), 1px);
	}
}

@media (max-width:991px) {
	.splide__prev {
		translate: 0 0;
	}

	.splide__next {
		translate: 0 0;
	}

	.text-block img {
		float: none !important;
	}

	.footer__bottom {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		font-size: 14px;
	}

	.modal-book__row {
		grid-template-columns: 100%;
	}

	.modal-book__map {
		max-width: 500px;
		order: -1;
	}

	.single-event__wrapper {
		grid-template-columns: 100%;
		justify-items: start;
		gap: 20px;
	}

	.single-event__right {
		display: contents;
	}

	.single-event__title {
		order: -2;
	}

	.single-event__date {
		order: -1;
	}

	.single-event__img {
		object-fit: contain;
	}

	.about__wrapper {
		grid-template-columns: 100%;
	}
}

@media (max-width:767px) {
	.header {
		background: #101010;
	}

	.footer__menu {
		grid-template-columns: repeat(2, auto);
	}

	.contact__wrapper {
		padding: 0;
	}

	.contact__map {
		position: relative;
		min-height: 360px;
		border-radius: 16px;
		overflow: hidden;
	}

	.contact__block {
		max-width: 100%;
		margin-bottom: round(clamp(min(40px, 20px), 5.6823266219px + 4.4742729306vw, max(40px, 20px)), 1px);
	}

	.contact__items {
		justify-content: flex-start;
	}

	.event__labels {
		gap: 4px;
	}

	.event__label {
		gap: 8px;
		padding: .375em .75em;
		min-height: auto;
		font-size: 14px;
		border-radius: 24px;
	}

	.event__date {
		padding-left: 28px;
	}

	.event__date input {
		background-size: 18px;
		background-position: 8px;
	}
}

@media (max-width:575px) {
	.ticket {
		zoom: .8;
	}

	.modal__dialog {
		max-width: 100%;
		padding: 0 12px;
		margin-inline: auto;
	}

	.modal__form .form__fields {
		grid-template-columns: 100%;
	}

	.modal__form .textarea {
		order: 2;
	}

	.modal__form .form__row {
		order: 3;
		display: grid;
	}

	.modal__content-wrapper {
		position: relative;
		grid-template-columns: 100%;
		padding: 0;
	}

	.modal__close {
		position: absolute;
		right: 12px;
		top: 12px;
		z-index: 2;
	}

	.modal__title {
		max-width: 85%;
	}

	.cookies-wrapper {
		grid-template-columns: 100%;
		justify-items: center;
		text-align: center;
	}

	.cookies__button {
		order: 2;
	}

	.header__top-wrapper {
		min-height: 55px;
	}

	.header__mobile {
		height: calc(100dvh - var(--headerFixedHeight));
	}

	.footer__top {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.footer__logo img {
		width: 172px;
		height: 36px;
	}

	.footer__menu {
		grid-template-columns: 100%;
		padding-right: 24px;
	}

	.footer__bottom {
		grid-template-columns: 100%;
	}

	.container {
		padding-inline: 12px;
	}

	.modal-book .places__items {
		max-height: 280px;
	}

	.modal-book__categories {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 4px;
	}

	.modal-book__categories .booking-category {
		grid-template-columns: 100%;
		gap: 8px;
		padding: 8px;
	}

	.modal-book__categories .booking-category__icon {
		display: none;
		width: 28px;
		height: 24px;
	}

	.modal-book__categories .booking-category__icon svg {
		width: 100%;
		height: 100%;
	}

	.modal-book__categories .booking-category__title,
	.modal-book__categories .booking-category__price {
		font-size: 14px;
	}

	.event__top {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 6px;
	}

	.event__labels {
		display: contents;
	}

	.single-event__block {
		grid-template-columns: 100%;
	}

	.single-event__block-button {
		order: 1;
	}

	.single-event__link {
		margin-block: 0;
	}

	.about__arrow {
		translate: 0 0;
	}
}

@media (max-width:430px) {
	.ticket {
		zoom: .6;
	}
}

@media (max-width:991px) and (min-width:576px) {
	.footer__bottom>:nth-child(2n) {
		text-align: right;
	}
}

@media (min-width:576px) and (max-width:1199px) {

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		text-wrap: balance;
	}
}

@media (any-hover:hover) {
	.splide__arrow:hover {
		background-color: #f90;
	}

	.splide__arrow:hover:before {
		background: #101010;
	}

	.crumbs li:not(:last-child):hover {
		color: #f90;
	}

	.crumbs li:not(:last-child):hover:before {
		color: rgba(255, 255, 255, .6);
	}

	.button:hover {
		background: color-mix(in srgb, black 12%, #f90);
	}

	.button_border.button_white:hover {
		background: #fff;
	}

	.button_border:hover {
		background: #f90;
		color: #101010;
	}

	.social__item:hover svg,
	.social__item:hover img {
		scale: 1.1;
	}

	.modal__close:hover {
		background: rgba(255, 255, 255, .4);
	}

	.cookies__text a:hover {
		text-decoration-color: transparent;
	}

	.header__menu a:hover {
		color: #f90;
	}

	.footer__menu a:hover,
	.footer__menu button:hover {
		color: #f90;
	}

	.hover-active:hover {
		color: #f90;
	}

	.hover-translate:hover {
		translate: 0 -3px;
	}

	.hover-scale:hover [class*=-img] img {
		scale: 1.02;
	}

	.hover-icon:hover img,
	.hover-icon:hover svg {
		scale: 1.08;
	}

	.underline:hover {
		text-decoration-color: transparent;
	}

	.hover-underline:hover {
		text-decoration-color: currentColor;
	}

	.contact__block-img img:hover {
		scale: 1.01;
	}

	.booking__control:hover {
		background: color-mix(in srgb, black 10%, #6e6e6e);
	}

	.modal-book .modal__close:hover {
		background: rgba(255, 255, 255, .4);
	}

	.modal-book .places__delete:hover {
		color: #f90;
	}

	.modal-book .places__item-delete:hover {
		background: #f90;
	}

	.modal-book .places__item-delete:hover svg {
		stroke: #fff;
	}

	.event__label:hover {
		border-color: #f90;
		color: #f90;
	}

	.event__date:hover {
		background: 0 0;
		color: color-mix(in srgb, black 12%, #f90);
		border-color: color-mix(in srgb, black 12%, #f90);
	}

	.event__item:hover .event__item-img {
		scale: 1.03;
	}

	.single-event__img:hover {
		scale: 1.01;
	}

	.single-event__link:hover {
		border-bottom-color: transparent;
	}
}