*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Roboto', sans-serif;
}
header {
    height: 100vh;
    width: 100%;
    background-size: cover;
    text-align: center;
    background-color: white;
}
.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(68, 75, 84);
}
.navbar .logo {
    width: 100px;
    padding: 5px;
    margin: 10px;
}
.navbar a {     /* dans la navbar tout les éléments en a sont en blanc */
    color: orange;
    text-decoration: none;
}
.navbar .nav-links { /* aligne mon logo et ma liste à puce */
    display: flex;
    align-items: center;
} 
.navbar .nav-links ul {
    display: flex;

} 
.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: rgb(68, 75, 84);
    }
    .nav-links {
        top: 0;
        left: 0;
        position: absolute;
        background: rgb(68, 75, 84);
        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;
    }
    .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: orange;
    }
}




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

.txt-prst {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    color: orange;
    background: url(../img/Comite.jpg);
}

/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section comité CERCLE SOLVAY////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/
.section-comité {
    display: table;
    height: 50vh;
    width: 100%;
    background: white;
    padding-top: 35px;
}
.section-comité1 {
    height: 100%;
}
.section-comité a {
    text-decoration: none;
    color: orange;
}
.comités-s {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.comités-s  img {
    width: 200px;
}
.comités-s-lien a{
    text-decoration: none;
    color: #252422;
}
.comités-s-lien{
    border: 2px solid white;
    height: 100%;
    /*border: 5px solid red;*/
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}
.bureau {
    text-align: center;
}

h4{
    color: rgb(68, 75, 84);
}
h5{
    color: orange;
}

h3{
    padding-top: 50px;
    padding-bottom: 25px;
    text-align: center;
    text-decoration: underline rgb(248, 147, 31);
    color: rgb(68, 75, 84);
}
/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section Bas de page CERCLE SOLVAY//////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/
.section-bas-de-page {
    /*border: 5px solid green;*/
    display: table;
    height: 30vh;
    background: rgb(68, 75, 84);
    width: 100%;
    background-size: cover;
    color: orange;
    padding-top: 35px;

}
.section-bas-de-page1 {
    /*border: 5px solid red;*/
    padding: 10px;

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

.section-bas-de-page a {
    text-decoration: none;
    color: orange;
}
/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Menu défilant barre de navigation CERCLE SOLVAY////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/

.nav-links {
    position: relative;
}

.menu {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(68, 75, 84);
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    overflow: visible;
}

.dropdown-content a {
    color: orange;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.menu:hover .dropdown-content {
    display: block;
}
