.banner {
	width: 100%;
	margin-top: 0;
	position: relative;
	overflow: hidden;
	margin-bottom: var(--py-section-small);
}

.banner-image {
	position: relative;
	height: 500px;
}

.banner-image:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1025px;
	transform: translateX(-50%);
	height: 60px;
	background-image: url('../../assets/images/banner-overlay.svg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.banner-image picture,
.banner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.banner-inner {
	max-width: 656px;
	margin: 0 auto 10px;
	text-align: center;
	color: var(--color-white);
	background: var(--color-blue);
	padding: 25px 15px;
	border-radius: 4px;
	margin-top: -80px;
	position: relative;
	z-index: 2;
}

.banner-inner h1 {
	color: var(--color-white);
}

.banner + .offers {
	margin-top: 0;
}

.banner-logos {
	max-width: 476px;
	margin: 0 auto;
}

.banner-buttons {
	display: flex;
	row-gap: 15px;
	column-gap: 5px;
	flex-wrap: wrap;
	justify-content: center;
}

.banner .breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	font-size: 16px;
	justify-content: center;
}

.banner .breadcrumbs a {
	text-decoration: none;
}

.banner .breadcrumbs i {
	font-size: 15px;
	color: var(--color-primary);
}

@media screen and (min-width: 1025px) {
	.banner-inner {
		padding: 38px;
		margin-top: -150px;
	}

	.banner-image:after {
		height: 80px;
		width: 100%;
		left: 0;
		transform: none;
	}
}

@media screen and (min-width: 1280px) {
	.banner-image:after {
		height: 119px;
	}
}
