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

.quienes{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10vh 8%;
    width: 84%;

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

.quienes img{
    width: 45%;
    height: auto;
    object-fit: contain;
}

.quienes div{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 50%;

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

.quienes h1{
    width: 40%;
    color: #1A4EA2;
}

.quienes h1 span{
    font-weight: 400;
    font-style: italic;
}

.quienes p{
    width: 60%;
}

/*Estilo para media pantalla
______________________________*/
@media only screen and (max-width: 1024px){
    .quienes{
        flex-direction: column;
        padding: 5vh 5%;
        width: 90%;

        -webkit-flex-direction: column;
    }

    .quienes img{
        margin-bottom: 5vh;
        width: 50%;
    }

    .quienes div{
        width: 100%;
    }

    .quienes h1{
        width: 30%;
    }

    .quienes p{
        width: 70%;
    }
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 465px) and (max-aspect-ratio: 13/9){
    .quienes{
        padding: 5vh 3%;
        width: 94%;
    }

    .quienes img{
        margin-bottom: 3vh;
    }

    .quienes div{
        flex-direction: column;

        -webkit-flex-direction: column;
    }

    .quienes h1{
        margin-bottom: 3vh;
        width: 100%;
    }

    .quienes p{
        width: 100%;
    }
}