h1{
    position: unset;
    background-color: unset;
    color: var(--gris3);
    width: 100%;
    padding: 25vmin 0 0 2vmin;
}
section{
    margin-top: 10vh;
}
.container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    border: var(--cadrejaune);
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
}
.item{
    box-shadow: var(--ombre2);
   
    width: 48%;
    padding: 2vmin;
    margin-left: 2vmin;
    margin-bottom: 4vmin;
    background-color: var(--gris1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.item_nom{
    font-family: var(--typo2);
    font-size: calc(19*var(--res));
    margin-bottom: 1vmin;
    font-weight: bold;
    margin-top: 1vmin;
    text-transform: uppercase;
}
.item_info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1vmin 0;
    font-size: calc(13*var(--res));
}
.item_info div{
    margin: 1vmin 0;
}
.item_info a{
    color: var(--bleu);
}
.item_pratique{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-family: var(--typo2);
    width: 45%;
    
}
.item_contact{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-family: var(--typo2);
    text-align: end;
}
.lien_guide{
    display: flex;
    justify-content: center;
}
.lien_guide a{
    color: var(--jaune);
    font-weight: bolder;
}
@media screen and (max-width: 900px){
.item{
    width: 100%;
}
.item_info{
    font-size: calc(20*var(--res));
    flex-direction: column;
}
.item_nom{
    font-size: calc(28*var(--res));
}
}