header img{
    width: 100%;
}
section{
    margin-top: calc(0.5*var(--margesectiontop));
}
.container_intro{
    display: flex;
    flex-direction: row;
}
.texte_intro{
    display: flex;
    justify-content: center;
}
.texte_intro p{
    padding: 3vw;
    width: 80%;
    background-color: var(--gris1);
    color: var(--gris3);
    font-family: var(--typo2);
    line-height: var(--hauteurligne);
    box-shadow: var(--ombre2);
}
.texte_intro a{
    color: var(--bleu);
}

.sample_sport{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
.lien_club{
    display: flex;
    width: 400px;
}
.card_sport{
   
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 3vw;
   
}
.visuel_sport{
    overflow: hidden;
    display: flex;
    width: 400px;
    height: 300px;
    align-items: center;
}
.card_sport img{
    width: 100%;
}
.card_sport:hover>.visuel_sport img{
    transform: scale(1.1);
    transition: 1s ease;
}
.nom_sport{
    position: absolute;
    top: 60%;
    font-family: var(--typo1);
    color: white;
    font-size: calc(35*var(--res));
    text-align: center;
}
@media screen and (max-width: 840px){
    .texte_intro p{
        width: 100%;
    }
}