/**
 * @copyright Camacho & Asociados
 * @author MarLab (edoardo@marlab.mx)
 * @version 1.0.0 (Noviembre 2021)
 * @since 1.0.0
 */

.banner2{
    background-color: #283B4C;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5vh 8%;
    padding-bottom: 2vh;
    width: 84%;

    display: -webkit-flex;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
}

.banner2 img{
    width: 30%;
    height: auto;
    object-fit: contain;
}

.banner2 div{
    width: 65%;
}

.banner2 p{
    margin-bottom: 3vh;
    color:  #CED1CC;
}

.banner2 a{
    color: #4A84B7;
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
    .banner2{
        padding: 5vh 5%;
        padding-bottom: 2vh;
        width: 90%;
    }
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
    .banner2{
        flex-direction: column;
        align-items: center;
        padding: 5vh 3%;
        padding-bottom: 2vh;
        width: 94%;

        -webkit-flex-direction: column;
        -webkit-align-items: center;
    }

    .banner2 img{
        margin-bottom: 3vh;
        width: 50%;
    }

    .banner2 div{
        width: 100%;
    }
}