/*GLOBAL*/

html {
    scroll-behavior: smooth;
}

.heading-site {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.COLORED {
    height: 400px;
    width: 100%;
    background-color: #3498db;
    padding: 30px;
    text-align: center;
}

/*HEADER*/

.header {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    height: 70px;
    line-height: 70px;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    z-index: 999;
}

.header .header-logo {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    float: left;
    margin-left: 30px;
}

.header .header-menu {
    float: right;
    margin-right: 30px;
}

.header .header-menu a {
    margin-right: 15px;
    color: #000000;
}

.header .header-menu a:hover {
    color: #3498db;
}

/*BANNIERE*/
.banner {
    margin-top: -23px;
}

.banner .banner-image {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: -1px;
}

.banner .banner-content {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 40%;
}

.banner .banner-content h1, .banner .banner-content h2 {
    color: #FFFFFF;
}

/*ABOUT*/

.about .about-single-element .icon {
    font-size: 30px;
    text-align: center;
}

.about .about-single-element {
    text-align: center;
}

.about .about-single-element p {
    text-align: left;
    margin-top: 20px;
}

/*FOOTER*/

.footer .footer-informations {
    text-align: center;
    margin-top: 30px;
}

.footer .footer-informations ul {
    padding: 0;
}

.footer .footer-informations ul li {
    display: inline-block;
    list-style-type: none;
}

@media screen and (max-width: 600px) {
    .header .header-logo {
        text-align: center;
        font-size: 15px;
        margin-left: 15px;
    }

    .header .header-menu {
        margin-left: -30px;
        margin-right: 5px;
    }

    .header .header-menu a{
        margin-right: 8px;
        font-size: 6px;
    }
}

@media screen and (min-width: 601px) and (max-width: 799px) {
    .header .header-logo {
        text-align: center;
    }

    .header .header-menu a{
        margin-right: 8px;
        font-size: 7px;
    }
}

@media screen and (min-width: 800px) and (max-width: 999px) {
    .header .header-logo {
        text-align: center;
    }

    .header .header-menu {

    }

    .header .header-menu a{
        margin-right: 8px;
        font-size: 15px;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1050px) {
    .header .header-logo {
        text-align: center;
    }

    .header .header-menu a{
        margin-right: 20px;
        font-size: 15px;
    }
}

/* Modal */

.bonsoirPPE { /*modal-bg*/
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}

.beaugosse-actif {
    visibility: visible;
    opacity: 1;
}

.bonjourPPE { /*modal*/
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    width: 30%;
    height: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.coucouPPE {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
}

.bonsoirPerso {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}

.bonjourPerso {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    width: 30%;
    height: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.coucouPerso {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    cursor: pointer;
}