.proveedor {
    width: 100%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portal{
    background-color: rgb(165, 245, 245);
}
.portal h1{
    font-size: 26px;

}
.portal p{
    font-size: 20px;
}

#portal img{
    width: 75%;
    height: 60%;
}

.portal .porta{
    background-color: rgb(9, 146, 68);
    padding: 20px 30px;
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    border-radius: 20px;
    color: aliceblue;
    box-shadow: 0px 10px 10px rgba(0,0,0,.5);
}

.portal .porta:hover{
    background-color: rgb(79, 226, 111);
}

.proveedor img {
    width: 100%;
    height: 100%;
    box-shadow: 0px 20px 20px rgba(0,0,0,.5);
}

img.cover {
    object-fit: cover;
}

.proveedor .tituloproveedor {
    height: 10vh;
    display: flex;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    font-weight: 2;
}

.proveedor .contieneapoyo {
    display: flex;
    width: 100%;
    min-height: 100vh;
    flex-direction: column;
}

.proveedor .apoyo1:nth-child(2n) {
    width: 100%;
    height: 90vh;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    padding: 0px 2.5%;
    overflow: hidden;
}

.proveedor .apoyo1:nth-child(odd) {
    width: 100%;
    height: 90vh;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    padding: 0px 2.5%;
    overflow: hidden;
}

.proveedor .parte1 {
    width: 95%;
    height: 80vh;
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.7s ease-out;
    transition-delay: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.proveedor .parte1.animacion {
    opacity: 1;
    transform: translateX(0);
}

.proveedor .parte2 {
    width: 95%;
    height: 80vh;
    opacity: 0;
    transform: translateX(200px);
    transition: all 0.7s ease-out;
    transition-delay: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.proveedor .parte2 .descri{
    text-align: justify;
    margin-top: 20px;
}

.proveedor .parte1 .descri{
    text-align: justify;
    margin-top: 20px;
}



.proveedor .parte2.animacion {
    opacity: 1;
    transform: translateX(0);
}

.novedades{
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 40px 60px;
    column-gap: 20px;
    justify-content: center;
}

.novedades .capas{
    height: 88%;
    width: 28%;
    border: dashed 1px rgba(119, 114, 114, .5);
    padding: 5px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    border-radius: 20px 0px 20px 0px;
}

.novedades .capas .fotoimg{
    width: 100%;
    height: 70%;
}

.novedades .capas .texto{
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    height: 30%;
    gap: 10px;
}

.novedades .capas img{
    max-width: 100%;
    border-radius: 20px 0px 20px 0px;
    transition: 1s;
}

.novedades .capas img:hover{
    transform: scale(1.1);
}

@media (max-width:858px) {

    .proveedor .tituloproveedor {
        font-size: 16px;
    }

    .proveedor .apoyo1:nth-child(2n) {
        min-height: 50vh;
        display: grid;
        grid-template-columns: 100%;
    }

    .proveedor .apoyo1:nth-child(odd) {
        min-height: 50vh;
        display: grid;
        grid-template-columns: 100%;
    }

    .proveedor .parte1 {
        width: 90%;
        height: 40vh;
    }

    .proveedor .parte2 {
        width: 90%;
        height: 40vh;
    }

    #portal{
        height: 60vh;
        display: flex;
        flex-direction: column;
        column-gap: 0px;
        justify-content: center;
        align-items: center;
    }

    #portal .parte1, #portal .parte2 {
        padding: 1px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #portal .ingresoportal{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .novedades{
        height: 160vh;
        padding: 0px;
        flex-direction: column;
        padding:0px;
        column-gap: 0px;
        align-items: center;
        justify-content: center;
    }

    .novedades .capas{
        max-height: 30%;
        width: 70%;
    }

}