/*RESPONSIVE PC*/

@media screen
    and (min-device-width: 1600px)
    and (max-device-width: 4000px){
    
    .striscia-menu{
        display: block;
        position: absolute;
        height: 5.25rem;
        top:0;
        left: 0rem;
        transition: 0.3s , height 0.2s;
    }

    .menu-scroll .striscia-menu {
        transition: 0.3s;
        height: 4.7rem;
        left: -26rem;
    }

    .striscia-menu-2 {
        left: 11.89em;
    }


}



/*RESPONSIVE PHONE*/
@media only screen 
and (min-device-width: 320px) 
and (max-device-width: 568px) 
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) { 


}

/*RESPONSIVE TABLET AIR LANDSCAPE*/
@media only screen 
and (min-device-width: 1100px) 
and (max-device-width: 1200px) 
and (orientation: landscape) 
and (-webkit-min-device-pixel-ratio: 2) {

    .striscia-menu {
        display: block;
        position: absolute;
        height: 3.5rem;
        top: 0;
        left: 0rem;
        transition: 0.3s, height 0.2s;
    }

    .menu-scroll .striscia-menu {
        height: 3.5rem;
        left: -20rem;
    }
}


/*RESPONSIVE TABLET PRO LANDSCAPE*/

@media only screen 
and (min-device-width: 1366px) 
and (max-device-width: 1366px) 
and (orientation: landscape) 
and (-webkit-min-device-pixel-ratio: 2) {

    .striscia-menu {
        display: block;
        position: absolute;
        height: 3.5rem;
        top: 0;
        left: 0rem;
        transition: 0.3s, height 0.2s;
    }

    .menu-scroll .striscia-menu {
        height: 3.5rem;
        left: -20rem;
    }

}