header img{
    width: 100%;
    height: 60vh;
    object-fit: cover;
}
.container_presentation{
    display: flex;
    flex-direction: row;
}
.texte_presentation{
    display: flex;
    justify-content: center;
}
.texte_presentation p{
    background-color: var(--gris1);
    box-shadow: var(--ombre2);
    padding: 3vw;
    width: 70%;
}

.visuel_cafet{
    margin-top: calc(0.5*var(--margesectiontop));
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.clip_visuel{
    width: 30%;
    overflow: hidden;

}
.clip_visuel img{
    width: 100%;
    max-height: 40vh;
    object-fit: cover;
}
.info_cafet{
    display: flex;
    flex-direction: row;
    background-color: var(--gris1);
}
.visuel_info{
    width: 33%;
    background-color: var(--gris1);
}
.visuel_info img{
    width: 50%;
    clip-path: polygon(0 0, 56% 0, 56% 31%, 84% 76%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.texte_info{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.texte_info ul{
    color: var(--gris3);
    font-family: var(--typo2);
    font-weight: bolder;
    font-size: 20px;
    line-height: var(--hauteurligne);
}
p a{
    color: var(--bleu);
}
@media screen and (max-width: 840px){
    .texte_presentation p{
        width: 100%;
    }
    .info_cafet{
        flex-direction: column;
        margin: 0 2%;
    }
    .visuel_info{
        width: 100%;
    }
    .visuel_info img{
        width: 100%;
        max-height: 40vh;
        object-fit: cover;
    }
    .texte_info{
        width: 100%;
        margin: 2vw 0;
        padding: 0 1vw;
    }
    .texte_info ul{
        margin: 2vw 0;
        align-self: center;
    }
    header img{
        max-height: 30vh;
    }
    
}