*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Roboto', sans-serif;
}
header {
    height: 100vh;
    width: 100%;
    background-color: orange;
    background-size: cover;
    text-align: center;
}
.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: rgb(68, 75, 84);
}

/* //////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
//////////////Section business CERCLE SOLVAY////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////
*/
.section-descriptive{
    width: 100vw;
    height: auto;
}

.alumni-ph {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 25px;
}
.alumni-ph img{
    width: 200px;
}
.alumni-ph-1{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 15px;
}
.h1-1 {
    color: orange;
}
.h1-2 {
    color: rgb(68, 75, 84);
}

h5{
    color: orange;
}
p{
    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;
}