
.banner-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.cont-product {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Ajusta según tus necesidades */
}

.left, .right {
    flex-basis: 30%;
    /* Estilos adicionales para los lados si lo deseas */
}

.center {
    flex-basis: 40%;   
    padding: 20px; 
    text-align: center;
}

.product-image {
    max-width: 100%;
    height: auto;
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Alineación a la derecha */
    height: 100%; /* Opcional: asegura que ocupe todo el alto del contenedor padre */
}

.top-content, .bottom-content {
    display: flex;
    align-items: flex-end; /* Alineación de la imagen a la derecha */
    /* Estilos adicionales para los subcontenedores si lo deseas */
}

.top-content span,
.bottom-content span {
    color: #9A1A31;
    font-family: "Knockout", Montserrat;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 0px;
}

.top-content small,
.bottom-content small {
    display: block;
}
.top-content span,
.bottom-content span,
.top-content small,
.bottom-content small {
    display: block;
    text-align: right; /* Alineación a la derecha */
}

.right .top-content span, 
.right .bottom-content span,
.right .top-content small,
.right .bottom-content small{
    display: block;
    text-align: left; /* Alineación a la derecha */
}

.left .top-content img,
.left .bottom-content img {
    margin-left: 20px; /* Espacio entre el ícono y el texto */
    margin-bottom:65px
}

.right .top-content img,
.right .bottom-content img {
    margin-right:  20px; /* Espacio entre el ícono y el texto */
    margin-bottom:65px
}

@media screen and (max-width: 768px) {
  .banner-container {
    height: 520px;  
}

    
    .cont-product {
        flex-direction: column; /* Apila las columnas verticalmente */
        align-items: center; /* Centra los elementos verticalmente */
    }

    .left, .right, .center {
        flex-basis: 100%; /* Ocupa todo el ancho en pantallas pequeñas */
        text-align: center; /* Centra el texto horizontalmente */
    }

    .left .top-content img,
    .left .bottom-content img,
    .right .top-content img,
    .right .bottom-content img {
        margin: 0; /* Elimina los márgenes entre el ícono y el texto */
    }

    .left, .right {
        display: none; /* Oculta los contenedores "left" y "right" */
    }

    .cont-product {
        height: auto; /* Ajusta el alto automáticamente según el contenido */
    }
    .banner-container h1{
        font-size: 22px
    }
}
