header {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: white;
    z-index: 1000;
}

/* hide mobile header */
#header_mobile {
    display: none;
}

#header_desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 80px;
    width: 100%;
    max-width: 1400px;
    background-color: white;
    z-index: 1000;
    position: fixed;
    top: 0;
}

#header_desktop * {
    color: #254E70;
    text-decoration: none;
}

#header_desktop div {
    font-weight: bold;
}

/* MONOGRAM */
#header_desktop span {
    color: #C13874;
}

#header_desktop ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    padding: 0;
}

#header_desktop li {
    font-weight: 500;
    padding: 0px 10px;
}

/* RDV BUTTON */
#header_desktop li:last-child a {
    background-color: rgba(193, 56, 115, 1);
    color: #F9F9F9;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 400;
}




/* MOBILE + TABLETS */
@media screen and (max-width: 760px) {
    header {
        height: 70px;
    }

    /* hide desktop header */
    #header_desktop {
        display: none;
    }

    #header_mobile {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        height: 70px;
        width: 100%;
        background-color: white;
        z-index: 1000;
        position: fixed;
        top: 0;
    }

    #header_mobile nav {
        width: 100%;
    }

    #header_mobile ul {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        list-style: none;
        padding: 0;
        font-size: 15px;
    }

    /* FONTS */
    #header_mobile a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #254E70;
        font-weight: 400;
    }

    /* ICONS */
    #header_mobile i {
        font-size: 25px;
        padding: 5px;
    }

    /* RESERVATION BUTTON */
    #header_mobile ul>li:last-child {
        background-color: rgba(193, 56, 115, 1);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        padding: 12px;
    }

    #header_mobile ul>li:last-child a {
        transform: translate(0px, -8px);
        color: #F9F9F9;
    }
}