.my-navbar-header { 
    padding:12px;
    width: 100%;
    position: fixed;
    top:0;
    left:0%;
    /*background-color: #FFFFFF;*/
    background:url('/assets/img/top-background.jpg') no-repeat 50% 50%;
    background-size: cover;
    z-index: 1100;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.my-navbar { 
}
.my-navbar-menu  {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    margin: 0;
    list-style: none;
    transition: all .33s ease;
}
a.nav-link,
a.dropdown-item  { 
    font-weight: 400;
    color:black;
    font-size:22px; /*20px*/
}
a.nav-link:active, a.nav-link:hover,
a.dropdown-item:active, a.dropdown-item:hover{
    color: #ffc107;
}
a.dropdown-item:hover {
    /*background-color: white;*/
}
.dropdown-menu {
    background-color: #FFFFFF;
    border: none;
    padding: 20px;
}

.boutons-rapide {
    background-color: #37483e;
}
.boutons-rapide button {
    margin-right: 8px;
    border-radius: 0;
    border-color: #d5a87a;
    color: #d5a87a;
}
.bouton-open-menu {
    display: none;
}
.bouton-close-menu {
    display: none;
    position: absolute;
    top:12px;
    right:12px;
}
@media only screen and (max-width:1100px) {
    .dropdown-menu {
        position: static!important;
        transform: none!important;
        background-color: transparent;
        padding: 5px;
    }
    .boutons-rapide {
        padding: 8px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: stretch;
    }
    .boutons-rapide button{
        flex: 1;
        border:none;
        border-left:1px solid #55645c;
        border-radius: 0;
    }
    .boutons-rapide button:nth-of-type(1) {
        border:none;
    }
    .boutons-rapide button:nth-of-type(3) {
        flex: 2;
    }
    a.nav-link,
    a.dropdown-item  { 
        color:#333;
    }
    .header-logo {
        position: fixed;
        left:12px;
        top:18px;
    }
    .header-logo a {
        color: #333!important;
    }
    .bouton-open-menu, .bouton-close-menu{ 
        display: block;
    }

}
