*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}
.navbar {
    position: absolute; /* le menu passe au dessus de l'header */
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    background-color: rgb(102, 170, 142);
}
.navbar .logo {
    width: 100px;
    padding: 5px;
    margin: 10px;
}
.navbar a {     /* dans la navbar tout les éléments en a sont en blanc */
    color: white;
    text-decoration: none;
}
.navbar .nav-links { /* aligne mon logo et ma liste à puce */
    display: flex;
    align-items: center;
} 
.navbar .nav-links ul {
    display: flex;
    list-style: none;

} 
.navbar .nav-links ul li {
    margin: 0 25px;
} 
.navbar .menu-hamburger {
    display: none;
    position: absolute;
    top: 50px;
    right: 15px;
    width: 50px;
}
.btn {
    border: 0;
    background: rgb(248, 147, 31);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}
.btn.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: #fff;
}
@media screen and (max-width: 900px) {
    .navbar {
        padding: 0;
    }
    .navbar .menu-hamburger {
        display: block;
        color: white;
    }
    .nav-links {
        top: 0;
        left: 0;
        position: absolute;
        background: rgb(102, 170, 142);;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: -100%;
        transition: all 0.5s;
    }
    .nav-links.mobile-menu{
        margin-left: 0;
    }
    
    .nav-links ul{
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
    }
    .navbar .nav-links ul li {
        margin: 25px 0;
        font-size: 1.2em;
    } 
    .navbar .logo {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 80px;
    }
    .navbar a{
        color: white;
    }
}

/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section D'arrivée CERCLE SOLVAY////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/

.section-arrive{
    height: 100vh;
    width: 100%;
    background: url(../img/cqtn.jpg);
    background-size: cover;
    text-align: center;
}
.txt-prst-arrive {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    color: white;
}

/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section présentation CERCLE SOLVAY////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/
.section-présentation {
    background : rgb(102, 170, 142);
}
.section-présentation1 {
    padding-top : 25px;
    padding-bottom: 25px;
}
.ph-txt-prest {
    text-align : center;
    color : white;
}
/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section image CERCLE SOLVAY////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/

.section-image {
    height: 70vh;
    width : 100%;
    background : url('../img/véloest2.jpg');
    background-size: cover;
}

/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section faq CERCLE SOLVAY////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/

.txt-faq {
    text-align: center;
}
.txt-faq h1 {
    color: rgb(102, 170, 142);
    padding-top: 20px;
}
.txt-faq h4 {
    color: black;
    padding-top: 10px;
}
.txt-faq ul {
    padding-top: 20px;
}
.txt-faq li {
    padding-top: 15px;
}
.btn-custom {
    color: #fff;
    background-color:rgb(102, 170, 142);
}
.txt-faq img {
    padding-top: 30px;
}

/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section rejoindre CERCLE SOLVAY////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/


.section-rejoindre h1 {
    text-align: center;
    padding-top: 50px;
}

.cl-rej {
    background-color: rgb(102, 170, 142);
}
.cl-rej h4{
    text-align: center;
    padding-top: 20px;
    size: 35px;
}
.cl-rej p{
    text-align: center;
    padding-top: 20px;
}
.cl-rej img{
    height: 40vh;
    width: 100%;
    padding-top: 10px;
}

.section-espace{
    height: 100px;
}
/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section bas CERCLE SOLVAY////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/

.section-bas-de-page {
    /*border: 5px solid green;*/
    display: table;
    height: 30vh;
    background: rgb(102, 170, 142);
    width: 100%;
    background-size: cover;
    color: #252422;
}
.section-bas-de-page1 {
    /*border: 5px solid red;*/
    padding: 10px;

}
.autres-rub {
    /*border: 5px solid blue;*/
    display: flex;
    align-items: center;
    flex-direction: column;
}
.autres-mentions {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-bas-de-page a {
    color: black;
    text-decoration: none;
}