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

.alianzas{
    padding: 0 8%;
    width: 84%;
}

.alianzas__contenedor{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10vh 0;
    width: 100%;
    border-bottom: 0.1vh solid #CED1CC;

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

.alianzas__contenedor h1{
    margin-bottom: 5vh;
    color: #00919e;
}

.alianzas__contenedor p{
    width: 100%;
}

.alianzas__contenedor div{
    width: 70%;
}

.alianzas__imagen{
    display: flex;
    justify-content: center;
    padding: 10vh 0;
    width: 100%;

    display: -webkit-flex;
    -webkit-justify-content: center;
}

.alianzas__imagen a{
    width: 25%;
}

.alianzas__imagen img{
    width: 100%;
    height: auto;
    object-fit: contain;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.alianzas__imagen img:hover{
    transform: scale(1.1,1.1);
    -webkit-transform: scale(1.1,1.1);
}

.alianzas__banner{
    background-color: #21384A;
    position: relative;
    padding: 10vh 0;
    width: 100%;
}

.alianzas__banner:before{
    display: block;
    position: absolute;
    top: 0;
    left: 48vw;
    width: 0;
    height: 0;
    border-left: 2vw solid transparent;
    border-right: 2vw solid transparent;
    border-top: 2vw solid white;
    content: "";
}

.alianzas__banner h3{
    text-align: center;
}

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

    .alianzas__contenedor{
        padding: 5vh 0;
    }

    .alianzas__contenedor h1{
        margin-bottom: 3vh;
    }

    .alianzas__imagen{
        padding: 5vh 0;
    }

    .alianzas__imagen a{
        width: 50%;
    }

    .alianzas__banner{
        padding: 5vh 0;
    }

    .alianzas__banner:before{
        left: 46vw;
        border-left: 4vw solid transparent;
        border-right: 4vw solid transparent;
        border-top: 4vw solid white;
    }
}

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

    .alianzas__contenedor{
        flex-direction: column;
        padding: 5vh 0;

        -webkit-flex-direction: column;
    }

    .alianzas__contenedor h2{
        margin-bottom: 3vh;
    }

    .alianzas__contenedor div{
        width: 100%;
    }

    .alianzas__imagen a{
        width: 75%;
    }
}