
/* 
	mobile 
*/
@media (max-width: 767px) {
    .desktop-right-mobile-left {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .desktop-left-mobile-right {
        margin-left: 10px;
        margin-right: 10px;
        text-align: right;   
    }

    .desktop-mobile-center {
        text-align: center;
    }
    .logo-jj {
        right: 0vw;
        width: 100%;
        height: 45px;
        padding-top: 5px;
        transition: top 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
        z-index: 100;

    }
    .logo-jj.scrolled {}


}

/* 
	desktop
*/
@media (min-width: 768px) {
    .desktop-right-mobile-left {
        margin-left: 50%;
        margin-right: 2%;
    }
    
    .desktop-left-mobile-right {
        margin-left: 2%;
        margin-right: 2%;   
    }

    .desktop-mobile-center {
        text-align: center;
    }

    /* BLOG */
    .logo-jj {
        padding-top: 20px;
        left: 50%;
        transform: translateX(-300px);
        z-index: 100;
        transition: padding 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
        width: 600px;
        height: 50px;
        max-width: 96vw;
    }
    .logo-jj.scrolled {
        padding-top: 5px;
    }

}

