body {
    margin: 0;
    font-family: 'Varela', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.header {
    background-color: white;
    position: fixed;
    display: flex;
    width: 100%;
    height: 106px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.logo img {
    max-height: 91px;
}
.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 80vw;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    /*justify-content: center;*/justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
/* .left {
    float: left;
    list-style: none;
} */
.menu ul {
    margin-top: 1.5em;
    /*padding-bottom: 1em;*/
    list-style: none;
}
/* .right {
    float: right;
    list-style: none;
    margin-right: 2em;
} */
.menu li {
    font-family: 'B612', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: inline-block;
    padding: 1em;
    padding-bottom: 1.5em;
    /* font-size: 1.1em; */
    font-size: 1.1em;
    font-weight: 550;
    color: #40403b;
}
.menu a {
    text-decoration: none;
    color: #40403b;
}

.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.hero {
    padding-top: 6em;
    height: 65vh;
    max-height: 720px;
    overflow: hidden;
}

.fond {
    width: 100%;
    height: 100%;
    background: url(../img/hero_riviere.JPG);
    background-size: cover;
    background-position: bottom;
}

.achievement {
    margin-top: -6em;
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
}

.achievement .card {
    margin: 1em;
    padding: 2em;
    /*border: solid 1px gray;*/

    /*background: cadetblue;*/
    display: grid;
    /*grid-template-columns: auto auto;*/
    text-align: center;

    /*Essaie taty aoriana*/
    padding-bottom: 1em;
    margin-bottom: 0;
}

.achievement .card-img {
    background-color: cadetblue;
    padding: 2.3em 0;
    border-radius: 100px;
    width: 8em;
    margin: 0 auto;
}

.achievement .card img {
    width: 3em;
}

.achievement .card span {
    font-size: 1em;
    /*color: white;*/
}

.achievement .card .number {
    font-size: 3em;
    /*font-weight: 600;*/
    margin: 0;
}

.achievement .card .number .fa {
    padding: .25em;
    font-size: .75em;
}

.achievement .card .desc {
    padding: 1em;
}

.main h1 {
    text-align: center;
    margin: 1em;
}

.projects {
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    /*grid-template-rows: 20em 20em;*/
}
.projects .p-item {
    padding: 2em;
    text-align: center;
}
.projects .p-item img {
    width: 10em;
}
.projects .p-item p {
    margin: 0;
    font-size: 1em;
}

.partners {
    display: grid;
    grid-template-columns: 33% 33% 33%;
}
.partners .p-item {
    padding: 2em;
    text-align: center;
}
.partners .p-item img {
    width: 10em;
}
.footer {
    background-color: #71655a;
}
.footer .container {
    display: grid;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    grid-template-columns: 75% 25%;
}
.footer .container .social-media {
    font-size: 1.5em;
    margin: 0;
    padding: .8em;
}
.footer ul {
    list-style: none;
    padding: 1em;
    margin-bottom: 0;
}
.footer li {
    font-family: 'B612', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    display: inline-block;
    padding: 1em;
    border-right: 1px solid #40403b;
    color: rgba(0, 0, 0, 0.623);
}
.footer li a {
    color: rgba(0, 0, 0, 0.623);
    text-decoration: none;
}


@media screen and (Max-width: 1870px) {
    .header {
        width: 100%;
        height: unset;
        justify-content: end;
    }
    .logo {
        padding: 1em 2em;
    }
    .logo img {
        max-height: 45px;
        margin-top: .5em;
    }
    .menu {
        /*max-width: 90vw;*/
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: flex-end;
    }
    
    .menu li {
        font-size: .75em;
        font-weight: 600;
    }
}