/**
 * EMB - Header
 * author: Alfonso Cavalieri
 * last_update: 17/09/2019
*/
.header-mobile{
    display: none;
}
.header-desktop{
    display: block;
}

@media only screen and (max-width: 991px) {
    .header-mobile{
        display: block;
    }
    .header-desktop{
        display: none;
    }
}
