/* IMAGE OVERLAY */
.se-section-image-overlay .editContent,
.se-section-image-overlay .content-block-column {
 position: relative;
}

.se-section-image-overlay .content-block-column::before {
 content: '';
 background-color: rgba(0,0,0,0.30);
 width: 100%;
 position: absolute;
 left: 0;
 top: 0;
 bottom: 0;
}
.banner-container {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%; /* Ocupar todo el ancho del viewport */
 margin: 0 auto; /* Centrar el contenedor */
 overflow: hidden; /* Ocultar cualquier desbordamiento */
}

.banner-image {
 width: auto; /* Mantener el tamaño original de la imagen */
 height: auto; /* Proporciones originales */
 max-width: 100%; /* Ajustarse al ancho del contenedor sin excederlo */
 max-height: 100%; /* Ajustarse a la altura del contenedor */
}
