.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;
}

.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;
}
