@media screen and (min-width: 1080px) {

	

    /* Logo */
    .menuLogo {
        position: relative;
        width: 100%;
        height: 100%;
        cursor: not-allowed;
    }
    .menuLogo {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .menuLogo {
        padding-left: 30px;
    }
    .menuLogo img {
        height: 40px;
    }

    /* Address */
    #menuLocation {
        position: absolute;
        top: 1.5em;
        left: 14em;
        cursor: pointer;
    }
    #menuLocation {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    #menuLocation {
        background: #00000025;
        border-radius: 50px;
        border: none;
        padding: 8px 10px;
    }
    #menuLocation span {
        font-family: 'Roboto','Arial';
        font-size: 16px;
        color: #fff;
    }
    #menuLocation:hover {
        background: #651419;
        transition: .3s ease;
    }
    #menuLocation svg {
        width: 18px;
        margin-top: -2px;
        color: #fff;
    }

    /* Items du menu */
    #menuButtons {
        position: absolute;
        right: 3em;
        top: 1.5em;
    }
    #menuButtons {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    #menuButtons {
        text-transform: uppercase;
        text-align: center;
    }
      

}