/* убираем противную рамку вокруг ссылок */
img, a img{outline:none !important;}
a:focus{outline:none !important;}
/* скрываем каптчу гугла */
.grecaptcha-badge {visibility: hidden;}

html, body {
/* Убирает прокрутку по горизонтале, для мобильной версии */
	overflow-x: hidden;
}
@font-face {
	font-family: 'Academy';
	src: url('/assets/fonts/academy.kz-.ttf') format('truetype supports variations'),
		url('/assets/fonts/academy.kz-.ttf') format('truetype-variations');
	font-weight: 400 900;
	font-stretch: 25% 151%;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('/assets/fonts/inter-variablefont.ttf') format('truetype supports variations'),
		url('/assets/fonts/inter-variablefont.ttf') format('truetype-variations');
	font-weight: 400 900;
	font-stretch: 25% 151%;
	font-display: swap;
}

:root {
	--color-red: #98203B;
	--color-gold: #D4CEA7;
	--color-white: #fff;
}

body {
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
	color: var(--color-white);
	font-size: 1rem;
	background: linear-gradient(270deg, #202022 4.81%, #514948 29.81%, #636361 63.46%, #3c3330 80.29%, #301a1a 100%);
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 700;
}

p b {
	color: var(--color-black);
	font-weight: 700;
}
p strong {
	color: var(--color-primary);
	font-weight: 700;
}
.hyphens p, .hyphens li {
	text-align: justify;
	hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
}

.hyphens p:last-child, .hyphens li:last-child {
	margin-bottom: 0px;
}

/*

a:link, a:visited, a:active {
	color: #000000;
	text-decoration: underline;
}

a:hover {
	color: #000000;
	text-decoration: none;
	transition-duration: .3s;
}

*/

/* таблица в плитке */
.my-card-table td:first-child {
	padding-left: 0;
}
.my-card-table td:last-child {
	padding-right: 0;
	text-align: right;
}

/* таблица с ценами на главной */
.my-price-table {
	
}

/* ссылки в футере */
a.my-footer-link:link, a.my-footer-link:visited, a.my-footer-link:active {
	color: #ffffff;
	text-decoration: none;
}
a.my-footer-link:hover {
	color: #ffffff;
	text-decoration: underline;
	transition-duration: .15s;
}

small, .small {
	line-height: 1;
}
.bg-banner {
	/*background-image: url(/assets/img/bg-banner.webp);*/
	background-image: url(https://fakeimg.pl/1920x500/);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.logo-header {
	height: 45px;
}
.logo-footer {
	height: 45px;
}

/* Стили предупреждения о cookie
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 !important;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 500ms ease-out;
}
.cookiealert.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
	transition-delay: 500ms;
}
/* кнопка наверх */
.tostart {
	width: 3rem;
	height: 3rem;
	background-color: var(--color-gold);
	border-radius: 50%;
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 1002;
	display: none;
	opacity: 1;
}
.tostart:hover {
	cursor: pointer;
	opacity: .75;
	transition-duration: .15s;
}
.img-to-top {
	width:2rem;
	margin:0 auto;
	display:block;
	position:absolute;
	left: 8px;
	top: -3px;
}

/* аккордеон */
/* удираем нижний марджинг последнего абзаца */
.accordion-body p:last-child {
	margin-bottom: 0;
}

/* стили кнопок в слайдере */
.my-prev, .my-next {
	position: absolute;
	top: calc(50% - 1.25rem);
	color: var(--color-warning);
	background-color: #fff;
	height: 2.5rem;
	width: 2.5rem;
	border-radius: 50%;
	text-align: center;
	line-height: 2.5;
	z-index: 1000;
	cursor: pointer;
	box-shadow: 0px 8px 16px rgba(78, 80, 85, 0.12);
}
.my-next {
	right: 0px;
}
.my-next >svg {
	height: 1.5rem;
	padding-left: 3px;
}
.my-prev > svg {
	height: 1.5rem;
	padding-right: 3px;
}

/* стили верхнего меню*/
.top-menu { /* общее оформление меню */
	font-size: 1rem;
	z-index: 1000;
	position: relative;
}

.top-menu a:link, .top-menu a:visited, .top-menu a:active {
	color: var(--color-balck);
	text-decoration: none;
}

.top-menu a:hover {
	color: var(--color-black);
	text-decoration: underline;
}

.top-menu ul{
	display: none;
	background-color: white;
	position: absolute;
	top: 100%;
	opacity: 0;
}
.top-menu li:hover ul {
	display: block;
	opacity: 1;
	-webkit-animation: display-none-transition 0.15s both;
	animation: display-none-transition 0.15s both;
}
@-webkit-keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
@keyframes display-none-transition {
	0% {
		opacity: 0;
	}
}
.top-menu, .top-menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.top-menu li {
	float: left;
	position: relative;
	height: 100%;
	padding: 0 .5rem;
}
.top-menu li a {
	display: block;
	padding: 0px;
	color: #fff;
	text-decoration: none;
	text-align: left;
}
.top-menu ul {
	border: 1px solid var(--color-black);
}
.top-menu ul li {
	float: none;
	white-space: nowrap;
}

/* стили mmenu */
.mm-spn--light {
	/* background: #fff; */
}
.mm-spn {
	color: var(--color-primary);
}
.mm-spn a {
	color: var(--color-primary);
}
.mm-spn a:active, .mm-spn a:focus {
	/* color: var(--color-danger);*/
}

/*votes*/
.votes {
	padding: 60px 40px;
	background-color: rgba(21, 81, 229, 0.08);
}
.votes .title {
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
	text-align: center;
}
.votes .block-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}
.votes .block-result {
	text-align: center;
}
.vote-btn {
	border: 0;
	outline: none;
}
.vote-btn:active {
	border: 0;
	background-color: unset;
	border-color: unset;
}
.vote-btn:hover {
	opacity: .5;
}
.vote-btn:disabled {
	color: unset;
	background-color: unset;
	border-color: unset;
	border: 0;
}
/*global*/
.container-fluid {
	max-width: 1920px;
}
.section {
	padding-top: 60px;
	padding-bottom: 60px;
}
.title {
	margin-bottom: 32px;
	font-size: 32px;
	font-weight: 600;
	color: var(--color-white);
}
.swiper-button-prev::after,
.swiper-button-next::after {
	content: unset !important;
} 
.swiper-button-prev,
.swiper-button-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px !important;
	height: 24px !important;
	margin-top: unset !important;
	border-radius: 50%;
	background-color: var(--color-red);
}
.cookie-notification-description {
	color: #000;
}
.form-check-input {
	margin-top: unset;
}
/*header*/
.header-top {
	position: relative;
	padding-top: 21px;
	padding-bottom: 21px;
	background-image: 
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(67.16889190673828px);
}
.header-top .site-name {
	max-width: 115px;
	font-size: 17px;
	line-height: 116%;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: linear-gradient(341deg, #fbe368 0%, #aa893c 52.88%, #f5e273 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header-top-desc {
	max-width: 150px;
	margin-left: 40px;
	font-weight: 300;
	line-height: 1.2;
}
.header-top .block-address {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 63%;
}
.header-top .hotel-address {
	display: flex;
	flex-direction: column;
	font-weight: 300;
	font-size: 14px;
}
.header-top .hotel-address .hotel-address-fon span {
	padding-left: 19px;
	font-weight: 500;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(/assets/img/top-loc.svg);
}
.header-top .hotel-address .hotel-phone {
	margin-top: 3px;
	padding-left: 19px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	text-decoration: none;
	background: linear-gradient(341deg, #fbe368 0%, #aa893c 52.88%, #f5e273 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.header-top .langswich {
	position: absolute;
	top: calc(50% - 13px);
	right: 30px;
	display: flex;
	align-items: center;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: #ccc5a9;
	outline: none;
}
.header-top .langswich svg {
	margin-left: 6px;
}
.header-bottom {
	border-bottom: 5px solid #97203b;
	background-image: 
	linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%),
	linear-gradient(rgba(34, 34, 34, 1), rgba(34, 34, 34, 1));
}
.top-menu {
	align-items: center;
}
.top-menu .submenu1 a,
.top-menu .submenu1 span {
	display: flex;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
	line-height: 1;
	color: #d4cea7;
}
.header .second-menu {
	min-width: 100%;
	background-color: rgba(34,34,34, .8);
}
/*banner*/
.banner {
	position: relative;
}
.banner .swiper-banner {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	max-width: 1920px;
}
.banner .swiper-slide {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
}
.swiper-banner .slide-1 {
	background-image: url(/assets/img/banner-1.png);
}
.swiper-banner .slide-2 {
	background-image: url(/assets/img/banner-2.png);
}
.swiper-banner .slide-3 {
	background-image: url(/assets/img/banner-3.png);
}
.banner .swiper-banner .banner-prev::after,
.banner .swiper-banner .banner-next::after {
	content: '' !important;
	width: 100%;
	height: 100%;
}
.banner .swiper-banner .banner-prev::after {
	background-image: url(/assets/img/btn-def-prev.svg);
}
.banner .swiper-banner .banner-next::after {
	background-image: url(/assets/img/btn-def-next.svg);
}
.banner .swiper-banner .banner-prev,
.banner .swiper-banner .banner-next {
	width: 16px !important;
	height: 30px !important;
	border-radius: 0;
	background-color: transparent;
}
.banner-container {
	position: relative;
	z-index: 1;
	padding-top: 233px;
	padding-bottom: 48px;
}
.banner .banner-logo {
	margin-bottom: 35px;
}
.banner .site-name {
	margin-bottom: 5px;
	font-weight: 400;
	font-size: 64px;
	font-family: 'Academy';
	line-height: 116%;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
	background: linear-gradient(341deg, #fbe368 0%, #aa893c 52.88%, #f5e273 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.banner .banner-title {
	margin-bottom: 149px;
	font-weight: 300;
	font-size: 21px;
	line-height: 206%;
	letter-spacing: 0.03em;
}
.banner .banner-list ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 0;
	padding: 0;
	list-style: none;
}
.banner .banner-list ul li {
	padding-left: 30px;
	font-size: 18px;
	color: #f5e273;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(/assets/img/crown.svg);
}
.banner .swiper-pagination-bullet-active {
	background: linear-gradient(0deg, #ac8b3d 0%, #e8d56e 100%);
}
/*advantages*/
.advantages {
	padding-top: 16px;
	padding-bottom: 16px;
}
.advantages .card {
	flex-direction: row;
	align-items: center;
	border: 0;
	background-color: transparent;
}
.advantages .card img {
	max-width: 72px;
	margin-right: 18px;
}
/*products*/
.products .card {
	border-radius: 6px;
	border: 0;
	background-color: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}
.products .card-body {
	padding: 16px;
}
.products .card-title {
	margin-bottom: 8px;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.2
}
.products .card-address {
	margin-bottom: 16px;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.2;
	text-decoration: underline;
	text-decoration-skip-ink: none;
}
.products .card-text p {
	font-weight: 300;
}
.products .card-footer {
	padding: 16px 16px 24px;
	border: 0;
	background-color: transparent;
}
.products .btn-danger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 54px;
	font-size: 18px;
	font-weight: 500;
}
/*about-us*/
.about-us {
	background-repeat: no-repeat;
	background-position: center top 60px;
	background-image: url(/assets/img/crown-bg.svg);
}
.about-us .title {
	margin-bottom: 26px;
}
.about-us .subtitle {
	margin-bottom: 26px;
	padding-left: 30px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(/assets/img/crown.svg);
}
.about-us .subtitle span {
	font-weight: 700;
}
.about-us .text {
	font-size: 18px;
}
/*actions*/
.actions .card {
	padding: 24px;
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.1);
}
.actions .card-title {
	margin-bottom: 23px;
	font-weight: 600;
	font-size: 26px;
	line-height: 1.2;
}
.actions .card-text p {
	margin-bottom: 19px;
	font-weight: 500;
	letter-spacing: -.03;
}
.actions .card .btn-danger {
	width: 100%;
	height: 50px;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 500;
}
.actions .card-desc {
	font-size: 15px;
	line-height: 120%;
}
.actions .swiper-block {
	position: relative;
}
.actions-prev {
	left: -3% !important;
}
.actions-next {
	right: -3% !important;
}
/*review*/
.review {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(/assets/img/rev.png);
}
.review .card {
	border-radius: 6px;
	border: 0;
	padding: 16px;
	background-color: rgba(255, 255, 255, 0.3);
}
.review .card .card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.review .card .card-title {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.1;
}
.review .card .card-body {
	padding: 32px 0 24px;
}
.review .card .card-body .tile__text {
	max-height: 144px;
	margin-bottom: 32px;
	overflow: hidden;
}
.review .card .card-body .tile.is-expanded .tile__text {
	max-height: none;
}
.review .card .card-body .tile__more {
	padding: 0;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #fff;
}
.review .card .card-footer {
	padding: 0;
	border: 0;
	background-color: transparent;
	color: #fe8d02;
}
.review .btn-danger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 241px;
	height: 50px;
	border-radius: 6px;
	font-size: 18px;
	font-weight: 500;
}
.review .container:last-child {
	margin-top: 32px;
	padding: 24px 48px;
	border-radius: 6px;
	background-color: rgba(255, 255, 255, 0.3);
}
.review .block-content .title {
	max-width: 308px;
	line-height: 1;
}
.review .block-content .text {
	max-width: 739px;
	line-height: 1.4;
}
.review .swiper-yandex {
	max-width: 413px;
	padding-bottom: 34px;
}
.review .swiper-yandex .yandex-prev,
.review .swiper-yandex .yandex-next {
	margin: 0 !important;
	top: unset !important;
	bottom: 0 !important;
}
.review .swiper-yandex .yandex-prev {
	left: calc(50% - 29px) !important;
}
.review .swiper-yandex .yandex-next {
	right: calc(50% - 29px) !important;
}
.review .swiper-block {
	position: relative;
}
.review-prev {
	left: -3% !important;
}
.review-next {
	right: -3% !important;
}
/*footer*/
.footer {
	padding-top: 32px;
	padding-bottom: 32px;
	background-color: #1c1d1f;
}
.footer .site-name {
	max-width: 115px;
	font-size: 17px;
	line-height: 116%;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: linear-gradient(341deg, #fbe368 0%, #aa893c 52.88%, #f5e273 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.footer-desc {
	max-width: 150px;
	margin-left: 12px;
	font-weight: 300;
	line-height: 1;
	opacity: .9;
}
.footer .block-address .hotel-address {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
	font-size: 12px;
	font-weight: 300;
}
.footer .hotel-address:not(:last-child) {
	margin-bottom: 16px;
}
.footer .hotel-address-fon span {
	padding-left: 19px;
	font-weight: 500;
	font-size: 15px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(/assets/img/top-loc.svg);
}
.footer .hotel-address .hotel-phone {
	padding-left: 19px;
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	text-decoration: none;
	background: linear-gradient(341deg, #fbe368 0%, #aa893c 52.88%, #f5e273 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.footer-title-list {
	margin-bottom: 6px;
	font-size: 18px;
	font-weight: 700;
	color: #d4cea7;
}
.footer-list li,
.footer-list li a,
.footer-list li button {
	font-size: 18px;
	text-decoration: none;
	color: #d4cea7;
}
.footer-list li:not(:last-child) {
	margin-bottom: 6px;
}
/*widget*/
#widgetCalendar .GXqgYg {
	margin: 0 auto;
}
/*menu-page*/
.menu-page .menu-container {
	padding-top: 213px;
}
.menu-page-content {
	max-width: 856px;
	margin: 0 auto;
}
.menu-page .menu-title {
	margin-bottom: 60px;
	font-size: 48px;
	font-weight: 500;
	text-align: center;
}
.menu-page .block-dish {
	margin-bottom: 60px;
}
.menu-page .block-dish .menu-subtitle {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	text-align: center;
	color: #F6F1E6;
}
.menu-page .block-dish .menu-time {
	margin-bottom: 38px;
	font-size: 24px;
	text-align: center;
	color: #F6F1E6;
}
.menu-page .block-dish ol li:not(:last-child) {
	margin-bottom: 24px;
}
.menu-page .block-dish .card-title {
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #f6f1e6;
}
.menu-page .block-dish .card-text {
	display: block;
	margin-bottom: 6px;
	line-height: 1.4;
}
.menu-page .block-dish .card-price {
	display: block;
	font-weight: 700;
}
.menu-page .block-dish .card-weight {
	display: block;
	margin-bottom: 16px;
}
/*section-block-social*/
.section-block-social .block-social {
	margin-bottom: 60px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	padding: 32px 24px;
	box-shadow: 0 18px 40px 0 rgba(0, 0, 0, 0.94);
	backdrop-filter: blur(20px);
	background: -webkit-linear-gradient(146deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 38%);
	background: -moz-linear-gradient(146deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 38%);
	background: -o-linear-gradient(146deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 38%);
	background: radial-gradient(147.9% 171.08% at 100% 120%, rgba(200, 43, 59, 0.38) 0%, rgba(6, 6, 12, 0.98) 68%), radial-gradient(132.19% 152.9% at -4950% -4950%, rgba(245, 192, 90, 0.3) 0%, rgba(245, 192, 90, 0) 55%), linear-gradient(146deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 38%);
	overflow: hidden;
}
.section-block-social .block-social-title {
	margin-bottom: 16px;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	color: rgba(231, 226, 218, 0.95);
}
.section-block-social .block-social-desc {
	font-size: 12px;
	color: rgba(231, 226, 218, 0.95);
}
.section-block-social .block-social-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 80px;
	padding: 9px 13px;
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(245, 240, 232, 0.96);
}
.section-block-social .block-social-link span:first-child {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	box-shadow: 0 0 16px 0 rgba(245, 192, 90, 0.85);
	background: radial-gradient(122.07% 122.07% at 30% -4950%, #fff 0%, #f5c05a 100%);
}
.section-block-social .block-social-link:first-child {
	margin-right: 10px;
	border: 1px solid rgba(245, 192, 90, 0.9);
}
.section-block-social .block-social-link:last-child {
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(16px);
	background: rgba(7, 7, 16, 0.98);
}
/*contacts-page*/
.contacts-page .contacts-container {
	padding-top: 213px;
}
.contacts-page .row-header {
	margin-bottom: 60px;
}
.contacts-page-title {
	margin-bottom: 24px;
	font-weight: 500;
	font-size: 48px;
	line-height: 120%;
}
.contacts-page-title span {
	color: #fbe368;
}
.contacts-page-subtitle {
	margin-bottom: 32px;
	font-size: 18px;
}
.contacts-page-subtitle p:last-child {
	margin-bottom: 0;
}
.contacts-page-location {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
}
.contacts-page-location span:first-child {
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border-radius: 50%;
	box-shadow: 0 0 16px 0 rgba(245, 192, 90, 0.85);
	background: radial-gradient(122.07% 122.07% at 30% -4950%, #fff 0%, #f5c05a 100%);
}
.contacts-page-location span:last-child {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.contacts-page-desc-line {
	height: 1px;
	max-width: 460px;
	background: linear-gradient(90deg, rgba(245, 192, 90, 0.8) 0%, rgba(200, 43, 59, 0.8) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}
.contacts-page-desc {
	max-width: 460px;
	padding-top: 17px;
	font-size: 14px;
}
.contacts-page-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	padding: 32px 24px;
	backdrop-filter: blur(20px);
	background: -webkit-linear-gradient(130deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 40%);
	background: -moz-linear-gradient(130deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 40%);
	background: -o-linear-gradient(130deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 40%);
	background: radial-gradient(131.02% 154.77% at 100% 100%, rgba(6, 6, 12, 0.96) 36%, rgba(200, 43, 59, 0.35) 100%), radial-gradient(131.02% 154.77% at -4950% -4950%, rgba(245, 192, 90, 0.3) 0%, rgba(245, 192, 90, 0) 55%), linear-gradient(130deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 40%), rgba(9, 9, 18, 0.92);
}
.contacts-page-card .card-header-content span:first-child {
	font-size: 14px;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: rgba(250, 245, 234, 0.9);
}
.contacts-page-card .card-header-content span:last-child {
	width: max-content;
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid rgba(245, 192, 90, 0.7);
	font-size: 10px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.94);
}
.contacts-page-card .card-title {
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	color: #f6f1e6;
}
.contacts-page-card .card-body {
	padding: 0;
}
.contacts-page-card .card-body-content {
	display: flex;
	justify-content: space-between;
	max-width: 375px;
}
.contacts-page-card .block-phone span:first-child {
	margin-bottom: 8px;
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(220, 215, 206, 0.85);
}
.contacts-page-card .block-phone span:last-child {
	font-weight: 500;
	font-size: 13px;
	color: rgba(250, 245, 234, 0.92);
}
.contacts-page-card .block-mail span:first-child {
	margin-bottom: 8px;
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(220, 215, 206, 0.85);
}
.contacts-page-card .block-mail span:nth-child(2) {
	margin-bottom: 4px;
	font-weight: 500;
	font-size: 14px;
	color: rgba(250, 245, 234, 0.92);
}
.contacts-page-card .block-mail span:last-child {
	font-size: 9px;
	color: rgba(250, 245, 234, 0.92);
}
.contacts-page-card .card-footer-link {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 12px;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(242, 238, 229, 0.9);
	backdrop-filter: blur(18px);
	background: rgba(7, 7, 16, 0.7);
}
.contacts-page-card .card-footer-link:first-child {
	margin-right: 10px;
}
.contacts-page .row-middle {
	margin-bottom: 60px;
}
.contacts-page .row-middle .card {
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	padding: 24px 16px;
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 48px 0 rgba(0, 0, 0, 0.92);
	background: rgba(255, 255, 255, 0.1);
}
.contacts-page .row-middle .card-header {
	display: flex;
	align-items: start;
	justify-content: space-between;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.contacts-page .row-middle .card-star {
	margin-bottom: 8px;
	line-height: 1;
}
.contacts-page .row-middle .card-title {
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 24px;
	text-transform: uppercase;
	color: #f6f1e6;
}
.contacts-page .row-middle .card-address {
	font-size: 12px;
	text-transform: uppercase;
	color: rgba(230, 225, 218, 0.9);
}
.contacts-page .row-middle .card-header-link {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
	padding: 8px 24px;
	font-size: 11px;
	text-decoration: none;
	text-transform: uppercase;
	color: rgba(240, 235, 226, 0.9);
	backdrop-filter: blur(16px);
	background: rgba(6, 6, 14, 0.95);
}
.contacts-page .row-middle .card-body {
	padding: 16px 0 32px;
}
.contacts-page .row-middle .card-body-address {
	margin-bottom: 16px;
	font-size: 13px;
	color: rgba(238, 233, 224, 0.96);
}
.contacts-page .row-middle .card-body .block-phone {
	display: flex;
	flex-direction: column;
}
.contacts-page .row-middle .card-body .block-phone span {
	font-weight: 500;
	font-size: 12px;
	color: #f6f1e6;
}
.contacts-page .row-middle .card-body .block-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 50%;
}
.contacts-page .row-middle .card-body .block-right div span:first-child {
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(210, 204, 195, 0.78);
}
.contacts-page .row-middle .card-body .block-right div span:last-child {
	font-size: 12px;
	color: rgba(227, 222, 214, 0.9);
}
.contacts-page .row-middle .card-body .block-email {
	display: flex;
	flex-direction: column;
}
.contacts-page .row-middle .card-body .block-email span:first-child {
	margin-bottom: 8px;
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(215, 210, 202, 0.85);
}
.contacts-page .row-middle .card-body .block-email span:last-child {
	font-weight: 500;
	font-size: 12px;
	color: #f6f1e6;
}
.contacts-page .row-middle .card-body .block-phone span:first-child {
	margin-bottom: 8px;
	font-size: 11px;
	text-transform: uppercase;
	color: rgba(215, 210, 202, 0.85);
}
.contacts-page .row-middle .card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.contacts-page .row-middle .card-footer .card-price {
	font-size: 13px;
	line-height: 100%;
	color: rgba(245, 241, 232, 0.95);
}
.contacts-page .row-middle .card-footer .card-price span {
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	color: rgba(245, 241, 232, 0.95);
}
.contacts-page .row-middle .card-footer-link {
	border-radius: 6px;
	padding: 10px 9px;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(0deg, #ac8b3d 0%, #e8d56e 100%);
}
.contacts-page .row-bottom {
	margin-bottom: 60px;
}
.contacts-page .row-bottom .card {
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	padding: 32px 24px;
	background: radial-gradient(156.77% 129.85% at 100% 100%, rgba(200, 43, 59, 0.4) 0%, rgba(4, 4, 10, 0.98) 70%), radial-gradient(156.77% 129.85% at -4950% -4950%, rgba(245, 192, 90, 0.25) 0%, rgba(245, 192, 90, 0) 55%), rgba(4, 4, 10, 0.96);
}
.contacts-page .row-bottom .card-header {
	display: flex;
	justify-content: space-between;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.contacts-page .row-bottom .card-header .card-title {
	margin-bottom: 16px;
	font-size: 24px;
	text-transform: uppercase;
	color: rgba(248, 244, 235, 0.9);
}
.contacts-page .row-bottom .card-header .card-text {
	max-width: 253px;
	font-size: 14px;
	line-height: 100%;
	color: #9a96a7;
}
.contacts-page .nav-link {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
	color: rgba(240, 236, 228, 0.9);
	background-color: rgba(6, 6, 12, 0.94);
}
.contacts-page .nav-link.active {
	border: 1px solid rgba(245, 192, 90, 0.9);
	background-color: transparent;
}
.contacts-page .card-form .card-title {
	margin-bottom: 16px;
	font-size: 24px;
	text-transform: uppercase;
	color: rgba(248, 244, 235, 0.9);
}
.contacts-page .card-form .card-text {
	max-width: 450px;
	font-size: 14px;
	color: #9a96a7;
}
.contacts-page .card-form .form-control {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	padding: 5px 12px;
}
.contacts-page .card-form .form-control::placeholder {
	font-size: 13px;
	color: rgba(154, 150, 167, 0.7);
}
.contacts-page .card-form select.form-control option {
	font-size: 13px;
	color: rgba(154, 150, 167, 0.7);
}
.contacts-page .card-form .form-check-label span {
	display: block;
	max-width: 350px;
	font-size: 11px;
	line-height: 1;
}
.contacts-page .card-form .form-check-label span a {
	font-size: 11px;
	text-decoration: none;
	color: #f5c05a;
}
.contacts-page .card-form .form-btn {
	border-radius: 6px;
	padding: 10px 16px;
	margin: 16px 0;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	color: #fff;
	background: linear-gradient(0deg, #ac8b3d 0%, #e8d56e 100%);
}
.contacts-page .card-form .card-desc {
	max-width: 450px;
	font-size: 11px;
	color: rgba(187, 183, 176, 0.9);
}
/*cafe-page*/
.cafe-page {
	margin-bottom: 60px;
}
.cafe-container {
	padding-top: 213px;
}
.cafe-page-title {
	max-width: 550px;
	margin-bottom: 24px;
	font-weight: 500;
	font-size: 48px;
	line-height: 120%;
}
.cafe-page-title span {
	color: #fbe368;
}
.cafe-page-subtitle {
	margin-bottom: 32px;
	font-size: 18px;
}
.cafe-page-subtitle p:last-child {
	margin-bottom: 0;
}
.cafe-page-location {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
}
.cafe-page-location span:first-child {
	width: 7px;
	height: 7px;
	margin-right: 10px;
	border-radius: 50%;
	box-shadow: 0 0 16px 0 rgba(245, 192, 90, 0.85);
	background: radial-gradient(122.07% 122.07% at 30% -4950%, #fff 0%, #f5c05a 100%);
}
.cafe-page-location span:last-child {
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.cafe-page-desc-line {
	height: 1px;
	max-width: 460px;
	background: linear-gradient(90deg, rgba(245, 192, 90, 0.8) 0%, rgba(200, 43, 59, 0.8) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}
.cafe-page-desc {
	max-width: 460px;
	padding-top: 17px;
	font-size: 14px;
}
.cafe-page .cafe-prev,
.cafe-page .cafe-next {
	position: unset;
	left: unset;
	right: unset;
	margin: 0;
}
.cafe-page .cafe-prev {
	margin-right: 8px;
}
.cafe-page .block-btn {
	display: flex;
	align-items: center;
}
.cafe-page .swiper-pagination {
	position: unset;
	left: unset;
	right: unset;
	bottom: unset;
	width: max-content;
}
.cafe-page .swiper-cafe,
.cafe-page .swiper-cafe .swiper-slide,
.cafe-page .swiper-cafe .swiper-slide img {
	border-radius: 6px;
	overflow: hidden;
}
.cafe-page .swiper-pagination-bullet {
	background: #98203b;
}
/*reviews-page*/
.reviews-page {
	margin-bottom: 60px;
}
.reviews-container {
	padding-top: 213px;
}
.reviews-page-title {
	margin-bottom: 16px;
	font-weight: 500;
	font-size: 48px;
	line-height: 120%;
}
.reviews-page-title span {
	color: #fbe368;
}
.reviews-page-subtitle {
	margin-bottom: 32px;
	font-size: 18px;
}
.reviews-page-desc-line {
	height: 1px;
	max-width: 460px;
	background: linear-gradient(90deg, rgba(245, 192, 90, 0.8) 0%, rgba(200, 43, 59, 0.8) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}
.reviews-page-desc {
	max-width: 460px;
	padding-top: 17px;
	font-size: 14px;
}
.reviews-page-desc p:last-child {
	margin-bottom: 0;
}
.reviews-page .row-top {
	margin-bottom: 60px;
}
.reviews-page .row-middle {
	margin-bottom: 60px;
}
.reviews-page .row-middle .card {
	border-radius: 6px;
	border: 0;
	padding: 16px;
	background-color: rgba(255, 255, 255, 0.3);
}
.reviews-page .row-middle .card .card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	border: 0;
	background-color: transparent;
}
.reviews-page .row-middle .card .card-title {
	margin-bottom: 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.1;
}
.reviews-page .row-middle .card .card-body {
	padding: 32px 0 24px;
}
.reviews-page .row-middle .card .card-body .tile__text {
	max-height: 144px;
	margin-bottom: 32px;
	overflow: hidden;
}
.reviews-page .row-middle .card .card-body .tile.is-expanded .tile__text {
	max-height: none;
}
.reviews-page .row-middle .card .card-body .tile__more {
	padding: 0;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #fff;
}
.reviews-page .row-middle .card .card-footer {
	padding: 0;
	border: 0;
	background-color: transparent;
	color: #fe8d02;
}
.reviews-page .row-bottom form {
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 6px;
	padding: 32px 24px;
	background: radial-gradient(156.77% 129.85% at 100% 100%, rgba(200, 43, 59, 0.4) 0%, rgba(4, 4, 10, 0.98) 70%), radial-gradient(156.77% 129.85% at -4950% -4950%, rgba(245, 192, 90, 0.25) 0%, rgba(245, 192, 90, 0) 55%), rgba(4, 4, 10, 0.96);
}
.reviews-page .row-bottom .form-title {
	margin-bottom: 8px;
	font-size: 24px;
	text-transform: uppercase;
	text-align: center;
	color: rgba(248, 244, 235, 0.9);
}
.reviews-page .row-bottom .form-subtitle {
	margin-bottom: 16px;
	font-size: 14px;
	text-align: center;
	color: #9a96a7;
}
.reviews-page .row-bottom .form-control {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
}
.reviews-page .row-bottom .form-control::placeholder {
	font-size: 13px;
	color: rgba(154, 150, 167, 0.7);
}
.reviews-page .row-bottom .form-check .form-check-input {
	min-width: 14px;
	width: 14px;
	min-height: 14px;
	height: 14px;
	margin-left: unset;
}
.reviews-page .row-bottom .form-check .form-check-label span {
	display: block;
	line-height: 1;
	font-size: 11px;
	color: rgba(220, 215, 206, 0.9);
}
.reviews-page .row-bottom .form-check .form-check-label span a {
	text-decoration: none;
	color: #f5c05a;
}
.reviews-page .row-bottom .form-btn {
	border-radius: 6px;
	padding: 10px 16px;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;
	color: #fff;
	background: linear-gradient(0deg, #ac8b3d 0%, #e8d56e 100%);
}
/*block-video-vk*/
.block-video-vk {
	margin-bottom: 60px;
}
.block-video-vk iframe {
	height: 612px;
}
/*static-page*/
.static-page {
	padding-top: 213px;
}
/* Устройства X-Small (портретные телефоны, менее 576 пикселей) */
@media (max-width: 575.98px) {
	.hyphens p, .hyphens li {
		text-align: left;
		hyphens: none;
		-moz-hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}
	/* мобильная млоденная версия таблицы */
	.my-price-table {
		border: 0;
	}
	.my-price-table thead {
		display: none;
	}

	.my-price-table tr {
		margin-bottom: 1rem;
		display: block;
		border-bottom: 1px solid var(--color-black);
	}

	.my-price-table td {
		display: block;
		text-align: right;
		border-bottom: 1px dotted var(--color-black);
		border-right: 1px solid transparent;
	}
	.my-price-table td:last-child {
		border-bottom: 0;
	}

	.my-price-table td:before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
	}
	.section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.title {
		margin-bottom: 16px;
		font-size: 24px;
	}
	.header-top .langswich {
		position: unset;
	}
	.banner-container {
		padding-top: 95px;
	}
	.banner .banner-logo {
		max-width: 150px;
		margin-bottom: 0;
	}
	.banner .site-name {
		font-size: 26px;
	}
	.banner .banner-title {
		margin-bottom: 30px;
		font-size: 12px;
	}
	.banner .banner-list ul {
		display: block;
		columns: 1;
		font-size: 12px;
	}
	.banner .banner-list ul li:nth-child(odd) {
		margin-bottom: 0;
	}
	.banner .banner-list ul li:not(:last-child) {
		margin-bottom: 8px;
	}
	.advantages .card-text {
		font-size: 12px;
	}
	.advantages .card img {
		max-width: 60px;
		margin-right: 12px;
	}
	.products .card-title {
		font-size: 20px;
	}
	.products .card-address {
		font-size: 12px;
	}
	.products .card-text p {
		font-size: 14px;
	}
	.products .btn-danger {
		font-size: 14px;
	}
	.about-us .title {
		font-size: 20px;
	}
	.about-us .subtitle {
		font-size: 12px;
	}
	.about-us .text p {
		font-size: 14px;
	}
	.review .card .card-title {
		font-size: 16px;
	}
	.review .card .card-body .tile__text {
		font-size: 14px;
	}
	.review .container:last-child {
		padding: 16px 12px;
	}
	.review .block-content {
		margin-bottom: 16px;
	}
	.review .block-content .title {
		max-width: unset;
	}
	.review .block-content .text {
		font-size: 14px;
	}
	.review .swiper-yandex {
		max-width: 100%;
	}
	.actions .card {
		padding: 12px;
	}
	.actions .card-title {
		margin-bottom: 16px;
		font-size: 18px;
	}
	.actions .card-text p {
		font-size: 14px;
	}
	.actions .card .btn-danger {
		font-size: 16px;
	}
	.actions .card-desc {
		font-size: 10px;
	}
	.menu-page .menu-container {
		padding-top: 105px;
	}
	.menu-page .menu-title {
		font-size: 30px;
	}
	.menu-page .block-dish {
		margin-bottom: 30px;
	}
	.menu-page .block-dish .card-title {
		font-size: 12px;
	}
	.menu-page .block-dish .card-text {
		font-size: 12px;
	}
	.menu-page .block-dish .card-weight {
		font-size: 12px;
	}
	.menu-page .block-dish .card-price {
		font-size: 12px;
	}
	.section-block-social .block-social {
		padding: 12px;
	}
	.section-block-social .block-social-title {
		margin-bottom: 8px;
		font-size: 20px;
	}
	.reviews-page {
		margin-bottom: 30px;
	}
	.reviews-container {
		padding-top: 105px;
	}
	.reviews-page .row-top {
		margin-bottom: 30px;
	}
	.reviews-page-title {
		font-size: 30px;
	}
	.reviews-page-subtitle {
		font-size: 16px;
		margin-bottom: 16px;
	}
	.reviews-page .row-middle {
		margin-bottom: 30px;
	}
	.reviews-page .row-middle .card .card-title {
		font-size: 16px;
	}
	.reviews-page .row-middle .card .card-body .tile__text {
		font-size: 14px;
	}
	.reviews-page .row-bottom form {
		padding: 16px 12px;
	}
	.contacts-page .contacts-container {
		padding-top: 105px;
	}
	.contacts-page-card {
		min-height: 350px;
		padding: 16px 12px;
	}
	.contacts-page-title {
		margin-bottom: 12px;
		font-size: 28px;
	}
	.contacts-page-subtitle {
		margin-bottom: 16px;
		font-size: 14px;
	}
	.contacts-page-location {
		margin-bottom: 16px;
	}
	.contacts-page-location span:last-child {
		font-size: 10px;
	}
	.contacts-page-desc {
		font-size: 12px;
	}
	.contacts-page-card .card-header-content span:first-child {
		margin-bottom: 8px;
		font-size: 12px;
	}
	.contacts-page-card .card-body-content {
		flex-direction: column;
	}
	.contacts-page-card .card-body-content .block-phone {
		margin-bottom: 8px;
	}
	.contacts-page .row-middle .card-header {
		flex-direction: column;
	}
	.contacts-page .row-middle .card-body .block-right {
		width: 100%;
	}
	.contacts-page .row-middle .card-footer {
		flex-direction: column;
		align-items: start;
	}
	.contacts-page .row-middle .card-footer .card-price {
		margin-bottom: 8px;
	}
	.contacts-page .row-middle .card-footer-link {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.contacts-page .row-header {
		margin-bottom: 30px;
	}
	.contacts-page .row-middle {
		margin-bottom: 30px;
	}
	.contacts-page .row-bottom {
		margin-bottom: 30px;
	}
	.contacts-page .row-bottom .card {
		padding: 16px 12px;
	}
	.contacts-page .row-bottom .card-header {
		flex-direction: column;
	}
	.contacts-page .row-bottom .card-header .card-title {
		margin-bottom: 8px;
	}
	.contacts-page .card-form .card-title {
		font-size: 18px;
	}
	.contacts-page .card-form .card-text {
		font-size: 12px;
	}
	.menu-page .block-dish .menu-subtitle {
		font-size: 22px;
	}
	.menu-page .block-dish .menu-time {
		margin-bottom: 19px;
		font-size: 18px;
	}
	.block-video-vk iframe {
		height: 588px;
	}
	.static-page {
		padding-top: 105px;
	}
}

/* Устройства Small (телефоны с горизонтальной ориентацией, менее 768 пикселей) */
@media (min-width: 576px) and (max-width: 767.98px) {
	.hyphens p, .hyphens li {
		text-align: left;
		hyphens: none;
		-moz-hyphens: none;
		-webkit-hyphens: none;
		-ms-hyphens: none;
	}
	.tostart {
		width: 2rem;
		height: 2rem;
		right: 1.25rem;
		bottom: 1.25rem;
	}
	.img-to-top {
		width: 1.25rem;
		left: .4rem;
		top: -1px;
	}
	.header-top .langswich {
		position: unset;
	}
	.banner-container {
		padding-top: 95px;
	}
	.banner .banner-logo {
		max-width: 200px;
		margin-bottom: 0;
	}
	.banner .site-name {
		font-size: 50px;
	}
	.banner .banner-title {
		margin-bottom: 30px;
		font-size: 18px;
	}
	.banner .banner-list ul {
		display: block;
		columns: 1;
		font-size: 14px;
	}
	.banner .banner-list ul li:nth-child(odd) {
		margin-bottom: 0;
	}
	.banner .banner-list ul li:not(:last-child) {
		margin-bottom: 8px;
	}
	.products .card-title {
		font-size: 20px;
	}
	.products .card-address {
		font-size: 12px;
	}
	.products .card-text p {
		font-size: 14px;
	}
	.products .btn-danger {
		font-size: 14px;
	}
	.review .card .card-title {
		font-size: 16px;
	}
	.review .card .card-body .tile__text {
		font-size: 14px;
	}
	.review .block-content {
		margin-bottom: 16px;
	}
	.review .swiper-yandex {
		max-width: 100%;
	}
	.actions .card {
		padding: 12px;
	}
	.actions .card-title {
		margin-bottom: 16px;
		font-size: 18px;
	}
	.actions .card-text p {
		font-size: 14px;
	}
	.actions .card .btn-danger {
		font-size: 16px;
	}
	.actions .card-desc {
		font-size: 10px;
	}
	.menu-page .menu-container {
		padding-top: 105px;
	}
	.reviews-container {
		padding-top: 105px;
	}
	.reviews-page .row-middle .card .card-title {
		font-size: 16px;
	}
	.reviews-page .row-middle .card .card-body .tile__text {
		font-size: 14px;
	}
	.contacts-page .contacts-container {
		padding-top: 105px;
	}
	.contacts-page-card {
		min-height: 350px;
	}
	.contacts-page .row-middle .card-header {
		flex-direction: column;
	}
	.contacts-page .row-middle .card-body .block-right {
		width: 100%;
	}
	.contacts-page .row-middle .card-footer {
		flex-direction: column;
		align-items: start;
	}
	.contacts-page .row-middle .card-footer .card-price {
		margin-bottom: 8px;
	}
	.contacts-page .row-middle .card-footer-link {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.block-video-vk iframe {
		height: 505px;
	}
}
/* Устройства Medium (планшеты, менее 992 пикселей) */
@media  (min-width: 768px) and (max-width: 991.98px) {
	.header-top .langswich {
		position: unset;
	}
	.banner-container {
		padding-top: 95px;
	}
	.banner .banner-logo {
		margin-bottom: 0;
	}
	.banner .banner-title {
		margin-bottom: 30px;
	}
	.banner .banner-list ul {
		display: block;
		columns: 2;
		font-size: 14px;
	}
	.banner .banner-list ul li:nth-child(odd) {
		margin-bottom: 8px;
	}
	.review .block-content {
		margin-bottom: 16px;
	}
	.review .swiper-yandex {
		max-width: 100%;
	}
	.menu-page .menu-container {
		padding-top: 105px;
	}
	.reviews-container {
		padding-top: 105px;
	}
	.contacts-page .contacts-container {
		padding-top: 105px;
	}
	.contacts-page-card {
		min-height: 350px;
	}
	.contacts-page .row-middle .card-header {
		flex-direction: column;
	}
	.contacts-page .row-middle .card-body .block-right {
		width: 100%;
	}
	.contacts-page .row-middle .card-footer {
		flex-direction: column;
		align-items: start;
	}
	.contacts-page .row-middle .card-footer .card-price {
		margin-bottom: 8px;
	}
	.contacts-page .row-middle .card-footer-link {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.block-video-vk iframe {
		height: 665px;
	}
}


/* Устройства Large (настольные компьютеры, менее 1200 пикселей) */
@media  (min-width: 992px) and (max-width: 1199.98px) { 
	.header-top .block-address {
		width: 75%;
	}
	.banner-container {
		padding-top: 200px;
	}
	.banner .banner-logo {
		margin-bottom: 0;
	}
	.banner .banner-title {
		margin-bottom: 30px;
	}
	.banner .banner-list ul {
		display: block;
		columns: 2;
	}
	.contacts-page .row-middle .card-header {
		flex-direction: column;
	}
	.contacts-page .row-middle .card-body .block-right {
		width: 100%;
	}
	.contacts-page .row-middle .card-footer {
		flex-direction: column;
		align-items: start;
	}
	.contacts-page .row-middle .card-footer .card-price {
		margin-bottom: 8px;
	}
	.contacts-page .row-middle .card-footer-link {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	.block-video-vk iframe {
		height: 452px;
	}
}

/* Устройства X-Large (большие настольные компьютеры, менее 1400 пикселей) */
@media  (min-width: 1200px) and (max-width: 1399.98px) {
	.contacts-page .row-middle .card-header {
		flex-direction: column;
	}
	.contacts-page .row-middle .card-body .block-right {
		width: 55%;
	}
	.block-video-vk iframe {
		height: 532px;
	}
}

/* Typography readability adjustments, 2026-05-27 */
p,
.cookie-notification-description,
.cookie-notification-description p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.55;
}

.products .card-address,
.footer .block-address .hotel-address,
.footer .hotel-address-fon span,
.footer .hotel-address .hotel-phone {
	font-weight: 400;
	font-size: 15px;
	line-height: 1.45;
}

.products .card-text p {
	font-weight: 400;
	line-height: 1.55;
}

.advantages .card-text,
.actions .card-desc,
.contacts-page-desc,
.contacts-page .card-form .card-text,
.contacts-page .row-bottom .card-header .card-text,
.contacts-page .card-form .card-desc,
.reviews-page-desc,
.reviews-page .row-bottom .form-subtitle,
.section-block-social .block-social-desc {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
}

.footer-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
}

.menu-page .block-dish .card-title {
	font-size: 16px;
	line-height: 1.35;
}

.menu-page .block-dish .card-text {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
}

.menu-page .block-dish .card-weight,
.menu-page .block-dish .card-price {
	font-size: 15px;
	line-height: 1.4;
}

.contacts-page-location span:last-child,
.contacts-page-card .card-header-content span:first-child,
.contacts-page-card .card-header-content span:last-child,
.contacts-page-card .block-phone span:first-child,
.contacts-page-card .block-mail span:first-child,
.contacts-page-card .block-phone span:last-child,
.contacts-page-card .block-mail span:nth-child(2),
.contacts-page-card .block-mail span:last-child,
.contacts-page-card .card-footer-link,
.contacts-page .row-middle .card-footer .card-price,
.contacts-page .card-form .form-control,
.contacts-page .card-form .form-control::placeholder,
.contacts-page .card-form select.form-control option,
.contacts-page .card-form .form-check-label span,
.contacts-page .card-form .form-check-label span a,
.reviews-page .row-bottom .form-check .form-check-label span,
.reviews-page .row-bottom .form-check .form-check-label span a {
	font-size: 13px;
	line-height: 1.4;
}

.contacts-page .nav-link {
	font-weight: 500;
	font-size: 12px;
	line-height: 1.25;
}

@media (max-width: 575.98px) {
	p,
	.cookie-notification-description,
	.cookie-notification-description p {
		font-size: 15px;
		line-height: 1.55;
	}

	.banner .banner-title {
		font-size: 16px;
		line-height: 1.5;
	}

	.banner .banner-list ul,
	.banner .banner-list ul li {
		font-size: 15px;
		line-height: 1.45;
	}

	.advantages .card-text,
	.products .card-text p,
	.about-us .subtitle,
	.about-us .text p,
	.review .card .card-body .tile__text,
	.review .block-content .text,
	.actions .card-text p,
	.contacts-page-desc,
	.contacts-page .card-form .card-text,
	.contacts-page .row-bottom .card-header .card-text {
		font-size: 15px;
		line-height: 1.5;
	}

	.products .card-address,
	.footer .block-address .hotel-address,
	.footer .hotel-address-fon span,
	.footer .hotel-address .hotel-phone {
		font-weight: 400;
		font-size: 14px;
		line-height: 1.45;
	}

	.products .btn-danger,
	.actions .card .btn-danger {
		font-size: 16px;
		line-height: 1.35;
	}

	.actions .card-desc {
		font-size: 13px;
		line-height: 1.4;
	}

	.menu-page .block-dish .card-title {
		font-size: 15px;
		line-height: 1.35;
	}

	.menu-page .block-dish .card-text,
	.menu-page .block-dish .card-weight,
	.menu-page .block-dish .card-price {
		font-size: 14px;
		line-height: 1.45;
	}

	.contacts-page-location span:last-child,
	.contacts-page-card .card-header-content span:first-child,
	.contacts-page-card .card-header-content span:last-child,
	.contacts-page-card .block-phone span:first-child,
	.contacts-page-card .block-mail span:first-child,
	.contacts-page-card .block-phone span:last-child,
	.contacts-page-card .block-mail span:nth-child(2),
	.contacts-page-card .block-mail span:last-child,
	.contacts-page-card .card-footer-link,
	.contacts-page .row-middle .card-footer .card-price,
	.contacts-page .card-form .form-check-label span,
	.contacts-page .card-form .form-check-label span a,
	.contacts-page .card-form .card-desc,
	.reviews-page .row-bottom .form-check .form-check-label span,
	.reviews-page .row-bottom .form-check .form-check-label span a {
		font-size: 13px;
		line-height: 1.4;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
	p,
	.cookie-notification-description,
	.cookie-notification-description p,
	.products .card-text p,
	.review .card .card-body .tile__text,
	.actions .card-text p {
		font-size: 16px;
		line-height: 1.55;
	}

	.products .card-address,
	.footer .block-address .hotel-address,
	.footer .hotel-address-fon span,
	.footer .hotel-address .hotel-phone {
		font-weight: 400;
		font-size: 15px;
		line-height: 1.45;
	}

	.actions .card-desc {
		font-size: 14px;
		line-height: 1.4;
	}
}
