/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  } 

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .navbar-mobile {
        display: none;
    }

    .aside-desktop {
        display: block !important;
    }
    
 }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {  }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    .list-links a {
        padding: 10px 20px;
        border-radius: 2px;
    }

    .list-links a:hover {
        color: #E9E9E9;
        background-color: #191919;
    }

    .projeto-link:hover {
        text-decoration: none;
        color: #E9E9E9;
        background: #191919;
    }
 }