footer{
    margin-top: 20vh;
    display: flex;
    flex-direction: column;
}

.trapeze{
	background-color: var(--jaune);
    width: 100%;
    min-height: 5vh;
    clip-path: polygon(0% 0%, 100% 75%, 100% 100%, 0% 100%)
}
.pied{
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
    width: 100%;
    background-color: var(--gris1);
}
.pied a{
    color: var(--bleu);
}
.pied_item{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 20%;
}
.logo_campus_pied{
    width: 66%;
}
.logo_campus_pied img{
    width: 100%;
}
.adresse{
    width: 100%;
    font-family: var(--typo2);
    color: var(--gris3);
    line-height: 1.5;
}
address{
font-style: normal;
}
.coordonnees{
    font-family: var(--typo2);
    color: var(--gris3);
    line-height: 1.5;
    width: 100%;
}
.social{
    font-family: var(--typo2);
    color: var(--gris3);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo_facebook{
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
.logo_facebook a{
    display: contents;
}
.social img{
    width: 20%;
}
.pied_logo{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.item_logo{
    width: 12%;
    display: flex;
    align-items: center;
    margin: 20px;
}
.item_logo img{
    width: 100%;
}

@media only screen and (max-width: 830px){
    .pied{
        flex-direction: column;
    }
    .pied_item{
        width: 100%;
        padding-top: 20px;
        text-align: center;
    }
    .adresse{
        padding-top: 20px;
    }
    .item_logo{
        width: 20%;
        margin: 0;
    }
}