.school__slider .school__slide:after {
	background: none;
}

.barbecue {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-bottom: 10vmax;
	padding: 0 !important;
}

@media only screen and (max-width: 768px) {
	.barbecue {
		margin-bottom: 0;
	}
}

.barbecue .barbecue__slider {
	margin-top: 60px;
}

.barbecue .barbecue__slider .barbecue__slider-navigation {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
	.barbecue .barbecue__slider .swiper-button-next, .swiper-button-prev {
		display: none;
	}
}

.barbecue .barbecue__slider .barbecue__slide {
	display: grid;
	position: relative;
	transition: transform 0.4s, opacity 0.4s;
}

@media only screen and (max-width: 768px) {
	.barbecue .barbecue__slider .barbecue__slide > * {
		grid-area: auto;
	}
}

.barbecue .barbecue__slider .barbecue__slide .barbecue__slide-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 1480/800;
}

@media only screen and (max-width: 768px) {
	.barbecue .barbecue__slider .barbecue__slide .barbecue__slide-image {
		aspect-ratio: 306/341;
	}
}

.barbecue .barbecue__slider .barbecue__slide .barbecue__slide-bottom {
	align-self: flex-end;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	z-index: 2;
	padding: 2rem;
	gap: 16px;
	transition: transform 0.4s, opacity 0.4s, filter 0.4s;
}

@media only screen and (max-width: 768px) {
	.barbecue .barbecue__slider .barbecue__slide .barbecue__slide-bottom {
		grid-template-columns: 1fr;
		padding: 0;
		margin-top: 20px;
	}
}

.barbecue .barbecue__slider .barbecue__slide .barbecue__slide-bottom .barbecue__slide-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.barbecue .barbecue__slider .barbecue__slide .barbecue__slide-bottom .barbecue__slide-content .barbecue__slide-text {
	font-size: max(0.7rem, 14px);
	line-height: 1.6;
	letter-spacing: 0;
	max-width: 90%;
}

@media only screen and (max-width: 768px) {
	.barbecue .barbecue__slider .barbecue__slide .barbecue__slide-bottom .barbecue__slide-content .barbecue__slide-text {
		max-width: 30ch;
		color: rgba(255, 255, 255, 0.5019607843);
		font-size: 16px;
		line-height: 1.5;
	}
}

.barbecue .barbecue__slider .barbecue__slide .barbecue__slide-bottom .barbecue__slide-content .barbecue__slide-title {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.2;
}

.text-justify {
	text-align: justify;
	hyphens: auto;
}

.hero__subtext.full {
	max-width: unset;
}

.section__content-img {
	width: 100%;
	padding-top: 30px;
}

.section__content .section__title-image {
	padding-top: 20px;
}

.section__content .section__title-image img {
	width: 35vw;
	height: auto;
	object-fit: cover;
}

@media (max-width: 768px) {
	.section__content .section__title-image img {
		width: 70vw;
	}
	.section__content .section__title-image {
		text-align: center;
	}
}

.video__block-container {
	position: relative;
	min-height: 85vh;
	display: grid;
	align-items: end;
	overflow: hidden;
}

.video__block-play {
	position: absolute;
	place-self: center;
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	background-color: #ffffff14;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	display: grid;
	place-content: center;
	transition: background-color .3s, -webkit-backdrop-filter .3s, backdrop-filter .3s, transform .3s;
	z-index: 10;
}

.video__block-play svg {
	width: .7rem;
	height: .9rem;
	transition: transform .3s;
}

.video__block-pause {
	position: absolute;
	place-self: center;
	-webkit-backdrop-filter: blur(24px);
	backdrop-filter: blur(24px);
	background-color: #ffffff14;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	place-content: center;
	transition: background-color .3s, -webkit-backdrop-filter .3s, backdrop-filter .3s, transform .3s;
	z-index: 10;
	display: none;
}

.video__block-pause::after {
	content: '';
	width: .7rem;
	height: .9rem;
	transition: transform .3s;
	border-right: 4px solid;
	border-left: 4px solid;
	opacity: 0.7;
}

.video__block-video {
	animation: slide-blur-from-150px-0-0-0 .5s;
	animation-fill-mode: backwards;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* gallery-page */

.gallery {}

.gallery__header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 60px 0;
}
@media (max-width: 576px) {
    .gallery__header {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        margin: 30px 0;
    }
}

.gallery__tag {}
@media (max-width: 576px) {
    .gallery__tag {
        margin-bottom: 50px;
    }
}

.gallery__header h1 {
    margin-bottom: 25px;
}

.gallery__content {}

.gallery__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (min-width: 3441px){
    .gallery__list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (max-width: 3440px){
    .gallery__list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1300px) {
    .gallery__list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
@media (max-width: 991px) {
    .gallery__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 576px) {
    .gallery__list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}


.gallery__list li {
	display: none;
}

@media (min-width: 1921px){
	.gallery__list li:nth-child(-n+15) {
		display: inline-flex;
	}
}

@media (max-width: 1920px) {
	.gallery__list li:nth-child(-n+15) {
		display: inline-flex;
	}
}

@media (max-width: 1300px) {
	.gallery__list li:nth-child(-n+16) {
		display: inline-flex;
	}
}


.gallery__list li a {}

.gallery__list li a img {}

.image-cropper {
    display: inline-flex;
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}
@media (min-width: 1921px){
	.image-cropper {
		height: 420px;
	}
}

@media (max-width: 991px) {
    .image-cropper {
        width: 100%;
    }
}

.image-cropper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-cropper:hover img {
    transform: scale(1.1);
}

.gallery__btn {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}
.gallery__btn .button {
    min-width: 355px;
}

.fancybox__nav .carousel__button.is-prev, .fancybox__nav .carousel__button.is-next {
    background: linear-gradient(93.25deg, var(--start-color) 0%, var(--middle-color) 33.71%, var(--middle-end-color) 66.75%, var(--end-color) 98.84%) !important;
}

@media (max-width: 991px) {
    .fancybox__nav .carousel__button.is-prev {
        top: 81% !important;
        left: 40% !important;
    }
}
@media (max-width: 991px) {
    .fancybox__nav .carousel__button.is-next {
        top: 81% !important;
        right: 40% !important;
    }
}

@media (max-width: 576px) {
    .fancybox__nav .carousel__button.is-prev {
        top: 77% !important;
        left: 35% !important;
    }
}
@media (max-width: 576px) {
    .fancybox__nav .carousel__button.is-next {
        top: 77% !important;
        right: 35% !important;
    }
}

.carousel__button {
    border-radius: 0 !important;
}

.gallery__btn_close {
    background: linear-gradient(93.25deg, var(--start-color) 0%, var(--middle-color) 33.71%, var(--middle-end-color) 66.75%, var(--end-color) 98.84%) !important;
}

.carousel__button svg {
    stroke: #000 !important;
    stroke-width: 1px !important;
}

.carousel__track, .fancybox__toolbar {
  display: none !important;
}

/* gallery-page end */

.header__gift-button img {
	width: 42%;
}

.menu__link {
	font-size: clamp(26px, 2.5vmax, 30px);
}

.menu {
	height: auto;
	position: relative;
	min-height: 100vh;
}

.social {
	z-index: 1;
}
.price__item-second{
	padding-right: 16px;
}

.modal-content--welcome {
	background-color: #2b2b2b;
	border-radius: 20px;
	border: 3px solid #FFE79B;
	padding: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal-content .btn-close {
	position: absolute;
	right: 30px;
	top: 30px;
	z-index: 1;
}

.welcome-modal__logo {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.welcome-modal__logo img {
	width: 265px;
	max-width: 265px;
}

.modal-content--welcome .modal-body p {
	font-size: 1.05rem;
}
