/* -----------------------------------------------------------------------------
    Mobile Devices (Portrait)
    Up to 480px width
----------------------------------------------------------------------------- */




/* -----------------------------------------------------------------------------
    Mobile Devices (Landscape)
    From 481px to 767px width
----------------------------------------------------------------------------- */

@media only screen and (min-width: 481px) and (max-width: 767px) {
    /* Add your mobile landscape and small tablet styles here */
    
}


/* -----------------------------------------------------------------------------
    Tablet Devices
    From 768px to 1024px width
----------------------------------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Add your tablet styles here */
    
}


/* -----------------------------------------------------------------------------
    Desktop Devices
    From 1025px and up
----------------------------------------------------------------------------- */

@media only screen and (min-width: 1025px) {
    /* Add your desktop styles here */
    
}
