/* :root {
    --main_color_blue: #085D85;
    --second_color_darkblue: #08425d;
    --main_color_yelow:#feb700;
    --second_color_lightyelow: #fff0bd;
    --font_family_main: Langar-Regular; 
    --font_family_seconder: Confortaa; 
} */
main {

    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: start; */
}

.section1_equipe>h2,
.section3_equipe>h2 {
    display: none;
    font-family: var(--font_family_main);
}

.section1_equipe {
    width: 85%;
    /* background: var(--main_color_blue); */
    font-family: var(--font_family_main);
    color: var(--second_color_lightyelow);
    /* border-radius: 20px; */
    margin-bottom: 20px;
    /* padding:5%; */

}

.section1_equipe>div {

    background: var(--main_color_blue);
    border-radius: 20px;
    padding: 5%;

}

.text_equipe {
    font-family: var(--font_family_seconder);
    font-size: calc(10px + 1vw);
    line-height: calc(18px + 1.5vw);
    padding-left: 1em;
    padding-right: 1em;
}

.section1_equipe span {
    font-size: calc(20px + 1vw);

}



.section1_equipe>h2,
.section3_equipe>h2 {
    /* display: block; */
    background: var(--main_color_blue);
    border-radius: 20px;
    padding: 5%;
    margin-bottom: 20px;
    text-align: center;
    font-size: calc(20px + 1vw);
    font-weight: 400;
}

.section2_equipe {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 85%;
    background: var(--main_color_blue);
    font-family: var(--font_family_seconder);
    font-size: calc(14px + 1vw);
    color: var(--second_color_lightyelow);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 1%;
}

.section2_equipe>img {
    width: 90%;
    height: 85%;
}

.section3_equipe {
    display: flex;
    /* align-items: center; */

    justify-content: space-between;
    width: 85%;
    font-family: var(--font_family_main);
    color: var(--second_color_lightyelow);
    /* margin-bottom: 20px; */
}

.createur {

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 45%;
    background: var(--main_color_blue);
    text-align: center;
    color: var(--second_color_lightyelow);
    border-radius: 20px;

    padding: 2%;
}

.createur>h3 {
    font-size: calc(16px + 1vw);
}

.createur h3,
.createur p,
.createur img {
    margin-bottom: 5%;
}

.createur>img {
    width: 33%;

}

@media screen and (max-width: 760px) {
    .section2_equipe {
        display: none;
    }

    .section1_equipe>h2,
    .section3_equipe>h2 {
        display: block;
    }

    .section3_equipe {
        flex-direction: column;
    }


    .createur {
        width: 100%;
        padding: 5%;
        margin-bottom: 20px;
    }

    .section3_equipe :last-child {
        margin-bottom: 0;

    }
}