.banner-container {
	height: 560px;
	position: relative;
}
.banner__wrapper {
	max-width: var(--max-width);
	margin-inline: auto;
	padding: 170px 0 0 0;
	position: relative;
}
.banner__label {
	background: #FFF;
	padding: 6px 20px 6px 14px;
	border-radius: 0.25rem;
	display: flex;
	gap: 0.375rem;
	font-family: var(--main-font);
	font-weight: 500;
	font-size: 1.25rem;
	color: var(--e-global-color-primary);
	align-items: center;
	width: fit-content;
}
.banner__title {
	font-family: var(--alt-font);
	font-weight: 600;
	font-size: 4.3125rem;
	color: #FFF;
}
.banner__slogan {
	font-family: var(--main-font);
	font-weight: 400;
	font-size: 1.25rem;
	color: #FFF;
}
.banner-footer {
	background: #4B584280;
	padding: 25px 0;
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.banner-footer__wrapper {
	display: flex;
	max-width: var(--max-width);
	margin-inline: auto;
	gap: 80px;
}
.banner-footer__item {
	display: flex;
	gap: 10px;
}
.banner-footer__item img {
	aspect-ratio: 1;
	height: 60px;
	width: 60px;
	object-fit: contain;
}
.banner-footer__item span {
	font-family: var(--main-font);
	font-weight: 400;
	font-size: 16px;
	color: #FFF;
}
.banner-footer__item p {
	font-family: var(--alt-font);
	font-weight: 700;
	font-size: 50px;
	color: #FFF;
	margin: 0;
	line-height: 40px;
}
.banner-aside {
	display: flex;
	flex-direction: column;
}
.banner-container video {
	height: 100%;
	width: 100%;
	object-fit: cover;
	position: absolute;
}
#sliderGallery {
	position: absolute;
}
#sliderGallery .gallery-slide {
	width: 100%;
	height: 560px;
	object-fit: cover;
}
#sliderGallery:after,
.banner-container video:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 560px;
    background: #2A2B2A4D;
    top: 0;
}
@media(max-width: 768px) {
	.banner__wrapper {
		padding-inline: 20px;
	}
	.banner__title {
		font-size: 59px;
		margin: 16px 0 14px 0;
        line-height: 59px;
	}
	.banner-footer__wrapper {
		gap: 37px;
	}
	.banner-footer__item img {
		height: 40px !important;
		width: 40px;
	}
	.banner-footer__item {
		flex-direction: column;
	}
	.banner-footer__item p {
		font-size: 38px;
	}
	.banner-footer {
		padding: 19px 10px 12px;
	}
}