﻿.menuMobileVisible {
    display:none;
}

.menuDeskVisible {
    display:block;
}

@media (max-width:600px) {
    .menuMobileVisible {
        display:block;
    }
    .menuDeskVisible {
        display:none;
    }
}

@media (min-width:600px) {
    .vociMenuMobileVisible {
        display: none !important;
    }
}

@media (max-width:600px) { /*finestra più piccola di 600*/
        .imgLogo {
            max-width: 100%;
            max-height: 100%;
            width: 225px;
            height: auto;
            margin-left: 65px;
            margin-right: auto;
            margin-bottom: auto;
            margin-top: 15px;
            top: 0;
            bottom: 0;
            left: 65px;
            right: 0;
        }
}

@media (min-width:600px) {
        .imgLogo {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            margin: auto;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
        }
}