/* MEDIA SCREEN QUERIES */
@media screen and (max-width: 1366px){
    .wrapper{
        max-width: 1280px;
    }
}
@media screen and (max-width: 1280px){
    .wrapper{
        max-width: 1024px;
    }
    .logo{
        font-size: 32px;
    }
    .links{
        font-size: 18px;
        gap: 15px;
    }
    /* featured */
    .title{
        font-size: 72px;
    }
    /* popular categories */
    .category{
        width: 20% !important;
    }
}
@media screen and (max-width: 1024px){
    .wrapper{
        max-width: 768px;
        padding-left: 40px;
        padding-right: 40px;
    }
    .social{
        display: none;
    }
    .logo{
        text-align: left;
    }

    /* featured */
    .title{
        font-size: 64px;
    }
    /* popular categories */
    .imgContainer{
        display: none;
    }
    .category{
        width: 20% !important;
    }
}
@media screen and (max-width: 768px){
    .wrapper{
        max-width: 640px;
    }
    .logo{
        font-size: 24px;
    }
    /* featured */
    .title{
        font-size: 48px;
    }
    /* popular categories */
    .category{
        width: 25% !important;
    }
}
@media screen and (max-width: 640px){
    .wrapper{
        max-width: 475px;
    }
    .link{
        display: none;
    }
    /* featured */
    
    .title{
        font-size: 36px;
    }

    /* popular categories */
    .category{
        width: 75% !important;
    }
    
    
}