.bannerHome {
    min-height: 345px;
    // display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    
    .img-box {
        min-height: 345px;
        min-width: 935px;
        position: absolute;
        top: 0;
        left: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .info-banner {
        width: 100%;
        position: absolute;
        right: 0;
        top: 0;
        max-width: 315px;
        box-sizing: border-box;

        .box-banner {
            min-height: 345px;
            flex-direction: column;
            padding: 0px 20px;
            .wysiwyg {

                p {
                    color: rgba(255,255,255,.8);
                }
            }
            .leer-mas {
                margin-top: 15px;
                font-size: 12px;
                font-weight: 600;
                letter-spacing: 1.64px;
                text-transform: uppercase;

                i {
                    color: $color-3;
                    transition: all .5s;
                }
                &.txt-white {
                    color: #fff;
                }

                &:hover {

                    i {
                        margin-left: 10px;
                    }
                }
            }
        }
    }
}
@media(max-width:900px) {

    .bannerHome {
        .info-banner {
            position: static;
            padding: 25px $padd-mob;
        }
        .img-box {
            display: none;
        }
    }
}