html, body{
    margin: 0; padding: 0;
    box-sizing: border-box;
}

#header_space{
    display: block;
    width: 100%;
    height: 80px;
    background: transparent;
}

/* Styles pour la barre supérieure (barre d'infos) */

header{
    width: 100%;
    position: fixed;
    text-align: center;
    top: 0;
    z-index: 9;
}

header > div{
    position: relative;
    width: 86%;
    margin: 0 auto;
    background-color: transparent;
}

.container_infos_bar {
    position: fixed;
    display: none;
    max-width: 400px;
    height: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Ubuntu;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1.2px;
    background-color: #3C992E;
    z-index: 10;
}

.container_infos_bar .infos_bar {
    color: #FFF;
    padding: 0;
    padding-top: 10px;
    text-align: center;
}


/* Style logo ----------------------------------------------*/
    .menu_bar #logo_header {
        position: absolute;
        display: block;
        line-height: normal;
        top: 0;
        left: -6px;
        cursor: pointer;
        margin-top: 22px;
        z-index: 6;
    }

    .menu_bar #logo_header img {
        width: 140px;
    }

    /*#logo_header::after{
        content: "SECRETARIAT";
        display: block;
        position: absolute;
        font-family: sans-serif;
        color: #00AAE0;
        font-size: 9px;
        font-weight: 500;
        letter-spacing: 1px;
        width: 73px;
        height: 9px;
        background: #FFF;
        background-position: right;
        right: 12px;
        bottom: 10.8px;
        cursor: pointer;
    }*/

    /* Fond GECLIMED */
    .logo_header {
        display: none;
        position: fixe;
        opacity: .3;
        top: 0; left: 0;
        bottom: 0; right: 0;
    }

    /* Styles pour le menu ---------------------------------- */
    .container_menu_bar {
        height: 80px;
        line-height: 80px;
        background-color: #FFF;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Ombre très mince */
    }

    .menu_bar nav {
        display: flex;
        justify-content: right;
        flex-wrap: wrap;
        background-color: transparent;
        margin-right: 45px;
        transition: all 0.6s ease-in-out;
        z-index: 2;
    }

    .menu_bar .nav-links {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu_bar .nav-links li {
        margin: 0 15px;
    }

    .menu_bar .nav-links a {
        position: relative;
        font-family: Saira;
        font-size: 13px;
        letter-spacing: 1.2px;
        text-decoration: none;
        color: #074575;
        font-weight: 400;
        transition: color 0.28s;
        cursor: pointer;
    }

    .menu_bar .nav-links li a:hover {
        color: #90C404;
    }

    .menu_bar .nav-links li:last-child:hover .nom_medecin {
        color: #90C404;
    }

    .menu_bar .nav-links li .dropdown-content a:hover{
        color: #074575;
    }

    .menu_bar .dropdown {
        position: relative;
        display: inline-block;
        padding: 0px;
    }

    .menu_bar .dropdown-content {
        min-width: 160px;
        display: none;
        position: absolute;
        text-align: left;
        background-color: rgba(256, 256, 256, 0.8);
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        padding: 6px 0;
        margin: 0;
        margin-top: 2.5px;
        z-index: 1;
    }

    .menu_bar .dropdown-content a {
        display: block;
        line-height: normal;
        font-weight: 500;
        padding: 4px 0;
        margin: 0;
        color: #074575;
    }

    .menu_bar .dropdown-content span{
        display: block;
        margin-left: 12px;
    }

    .menu_bar .contenair_dropdown:hover .dropdown .dropdown-content {
        display: block;
    }

    .menu_bar .dropdown-content a:hover {
        color: #074575;
        background-color: #C8E6C9;
    }

/* Choix langue ---------------------------------------------- */
    #language_toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 50%;
        transform: translateY(-40%);
        right: 0px;
        z-index: 20;
        cursor: pointer;
    }

    .menu_bar .nom_medecin,
    #list_lang {
        position: relative;
        font-size: 10px;
        padding-right: 12px;
        line-height: normal;
    }
    
    #list_lang {
        padding-right: 14px;
    }

    /* Ajout du triangle ▼ à côté du drapeau */
    .menu_bar .nom_medecin:after,
    #list_lang:after {
        position: absolute;
        height: 12px;
        content: "◤";
        font-size: 9px;
        margin-left: 4.5px;
        transform: rotate(-145deg);
        bottom: 4px;
        right: 0px;
        cursor: pointer;
    }
    
    .menu_bar .nom_medecin:after{
        transform: rotate(-135deg);
    }

    #list_lang:after{
        right: -2px;
        bottom: 0px;
    }

    #list_lang img {
        width: 13px;
    }

    #lang-dropdown {
        visibility: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 138px;
        max-height: 50px;
        width: 138px;
        height: 60px;
        line-height: 1px;
        align-items: center;
        position: absolute;
        top: 22px;
        right: 0;
        padding: 3px 0 6px;
        background-color: #D9EFD2;
        border: none;
        border-radius: 5px;
        opacity: 0;
        transform: translateY(-30px);
        transition: opacity .8s ease, transform .8s ease;
        overflow: hidden;
        cursor: default;
    }

    #lang-dropdown.visible {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .lang-option {
        max-height: 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: Saira;
        font-size: 12px;
        padding: 0;
        margin: 5px 10px 0;
        cursor: pointer;
    }
    
    .lang_es {
        margin-bottom: 0px;
    }

    .lag_ht, .lag_en, .lag_es{
/*        cursor: not-allowed;*/
    }

    .lang-option img {
        width: 13px; 
        height: 8px;
        padding: 0;
        margin: 0;
        margin-right: 1.2px;
    }

    .lang-option:hover {
        background-color: #f5f5f5;
    }

    .overlay {
        /* Style de l'overlay (fond transparent) */
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 18;
        display: none;
        transition: opacity 0.3s ease-in-out;
    }

    .overlay_2 {
        background: rgba(0, 0, 0, 0.7);
        z-index: 28;
        transition: opacity 1s ease-in-out;
    }

/* menu sandwich ------------------------------------------- */
.header_navbar-toggle{ 
    width: 30px;
    height: 28px;
    display: none;
    align-items: center;
    background: transparent;
    margin: 0; padding: 0;
    margin-top: 25px;
    float: right;
    cursor: pointer;
}
.header_navbar-toggle-icons,
span.header_navbar-toggle-icons:before,
span.header_navbar-toggle-icons:after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background: rgb(0, 148, 50);
    position: relative;
    transition: all 0.6s ease-in-out;
}
span.header_navbar-toggle-icons:before{top: 10px;}
span.header_navbar-toggle-icons:after{top: -14px;}
.header_navbar-menu{
    transform: translateX(0);
}

/*La crois du sandwich au menu*****************************/
.menu_bar nav{ 
    transform: translateY(0);
}
.is-open .menu_bar nav{ 
    transform: translateY(0);
}

.is-open #logo_header {
    display: none;
}

.is-open .logo_header {
    display: block;
    z-index: 12;
    pointer-events: none;
}

.header_navbar-toggle.is-open span.header_navbar-toggle-icons{
    background: transparent; 
}
.header_navbar-toggle.is-open span.header_navbar-toggle-icons:before, 
.header_navbar-toggle.is-open span.header_navbar-toggle-icons:after{
    background: #FFF;
    transform-origin: center;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);  
    -webkit-transform: rotate(45deg); 
    top: 0;
}
.header_navbar-toggle.is-open span.header_navbar-toggle-icons:after{
    background: #FFF;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);  
    -webkit-transform: rotate(-45deg); 
}
/*.header.is-open .menu_deroulant .cacher{
    width: 300px;
    right: auto;
    left: 5;
}
.header.is-open .menu_deroulant .cacher{
    width: 300px;
    right: auto;
    left: 5;
}*/

.container_menu_bar.is-open .fixed{
    position: fixed;
}

/* Debut des sections body ------------------------------------ */
.sections {
    width: 100%;
    position: relative;
    padding: 100px 0;
    background-color: #FFF;
    z-index: 4;
}

.sections .container_section {
    position: relative;
    width: 86%;
    margin: 0 auto;
}

/* Section 0 ----------------------------------------------- */
#section_0_new_page {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    z-index: 3;
}

/* Appliquer un filtre sur l'image de fond */
#section_0_new_page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 1;
    pointer-events: none;
}

#section_0_new_page .container_section{
    z-index: 2;
}

#section_0_new_page .content_infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    height: 100%;
    color: #FFF;
    text-align: center;
    height: 200px;
    color: #FFF;
    font-family: Saira;
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin: 0;
    z-index: 3;
}

#section_0_new_page .content_infos div:nth-child(2){
    font-family: Ubuntu;
    font-size: 15px;
    font-weight: 400;
    margin-top: 4px;
}

#section_0_new_page .content_infos a:nth-child(1) {
    position: relative;
    cursor: pointer;
    color: #D3D3D3;
    transition: color .28;
}

#section_0_new_page .content_infos a:nth-child(1):hover {
    color: #FFF;
}

#section_0_new_page .content_infos #retour_au_nom_utilisateur {
    cursor: text;
}

#section_0_new_page .content_infos a + span {
    position: relative;
    color: transparent;
    padding: 0 10px;
    cursor: text;
}

#section_0_new_page .content_infos a + span::after{ 
    position: absolute;
    content: "\276F";
    font-size: 12px;
    color: #FFF;
    left: 0px;
    bottom: 0;
    padding: 0 10px;
}

/*Fleche vers le bas ----------------------------------------------------- */
#section_0_new_page #fleche_bas {
    display: inline-block;
    position: absolute;
    width: 36px;
    height: 18px;
    font-size: 36px;
    background: transparent;
    cursor: pointer;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #C0C0C0;
    transition: color .28s;
    z-index: 4;
}

#section_0_new_page #fleche_bas:after{ 
    position: absolute;
    content: "\276F";
    transform: rotate(90deg);
    left: 11px;
    bottom: -12px;
}

#section_0_new_page #fleche_bas:hover{
    color: #FFF;
}

#section_1_new_page {
    position: relative;
    display: block;
    width: 100%;
    background-color: #EBEDEF;
    overflow: hidden;
    margin: 0;
    padding: 0;
    padding-top: 100px;
    z-index: 4;
}

#section_1_new_page::before,
#section_1_new_page::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}

#section_1_new_page::before {
    background: linear-gradient(to bottom left, transparent 35%, #FFF 35%);
    transition: all 1s ease;
}

#section_1_new_page::after {
    background: linear-gradient(to top bottom, transparent 75%, #FFF 75%);
    transition: all 1s ease;
}
 
#section_1_new_page .container_section {
    width: 86%;
    position: relative;
    display: flex;
    margin: 0 auto;
}

#section_1_new_page .titre_section {
    display: block;
    width: 100%;
    position: relative;
    display: block;
    font-family: raleway;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #47894B;  /*rgb(10, 126, 133);*/
    text-align: left;
    margin: 0;
    margin-bottom: 100px;
    z-index: 2;
}

#section_1_new_page .titre_section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    border: none;
    background-color: rgb(220, 220, 220);
    bottom: -12px;
    left: 0;
    z-index: -1;
}


/* Derniere ligne ----------------------------------------------------- */
#fin_separateur{
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    background: RGBA(256, 256, 256, 1);
    padding: 0;
    box-sizing: border-box;
}
/* La div vide apres la derniere ligne */
#vide_footer{
    position: relative;
    display: block;
    width: 100vh;
    height: 100vh;
    background: transparent;
    pointer-events: none;
}

/* ------------------------------------------------------ */
@media only screen and (max-width: 1230px){

}

@media only screen and (max-width: 1230px){

}

@media only screen and (max-width: 1175px){

}

@media only screen and (max-width: 1110px){

}

@media only screen and (max-width: 1055px){
    
}

@media only screen and (max-width: 1003px){

}

@media only screen and (max-width: 885px){

}

@media only screen and (max-width: 560px){

}