/* Banner Ancho Completo */
.banner-fullwidth-section {
	width: 100%;
	position: relative;
	overflow: hidden;
}

.banner-fullwidth-image {
	width: 100%;
	height: auto;
	display: block;
}

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

/* Responsive */
@media (max-width: 768px) {
	.banner-fullwidth-image img {
		min-height: 300px;
		object-fit: cover;
	}
}

