.hero__banner {
	position: relative;
	min-height: 300px;
	overflow: hidden;
}
.hero__banner .container-fluid {
	position: relative;
	z-index: 3;
	background: var(--bs-brand-light);
}
.hero__banner .hero__banner-content {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-right: 5rem;
}
.hero__banner img {
	max-height: 250px;
}
.hero__banner .hero__banner-text h1 {
	text-transform: uppercase;
}
.hero__banner .hero__banner-text * {
	color: var(--bs-white);
}
@media all and (min-width: 767.9px) {
	.hero__banner {
		padding: 0 5%;
	}
	.hero__banner .container-fluid {
		border-bottom-left-radius: 1rem;
  	border-bottom-right-radius: 1rem;
	}
	.hero__banner img {
		max-height: 320px;
	}
}