/* Extra large devices (large laptops and desktops, 1400px to 1600px) */
@media screen and (max-width: 1600px) {

}
/* Large devices (laptops/desktops, 1200px to 1399px) */
@media only screen and (max-width: 1399px) {
	
}

/* Medium devices (landscape tablets, 992px to 1199px) */
@media only screen and (max-width: 1199px) {
	
}

/* Small devices (portrait tablets and large phones,769px to 991px) */
@media only screen and (max-width: 991px){
	
}

/* Extra small devices (phones,576px to 768px) */
@media only screen and (max-width: 768px) {
	
}


/* Extra small devices (phones, 575px and down) */
@media only screen and (max-width: 575px) {
	
}