/* Bit tablets to 1200px (widths smaller that the 1140px row) */
@media only screen and (max-width: 1200px) {
    
    
    
}



/* Small tablets to big tablets: from 768 to 1023px */
@media only screen and (max-width: 1023px) {
    
}
    
/*Small phones and small tablets: from 481 to 767px */
@media only screen and (max-width: 767px) {
    
}




/* Small phones: from 0 to 400px */
@media only screen and (max-width: 480px) {
    
}

