
/*-----------------------------------------------------------------------------------*/
/* - General Responsiveness
/*-----------------------------------------------------------------------------------*/

/*visibility*/
.hidden-desktop,
.visible-phone,
.visible-tablet { display: none }



/*-----------------------------------------------------------------------------------*/
/* - Tablet & Small Desktop Widths - 960px - 1224px
/*-----------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1280px) {
	
}
/*-----------------------------------------------------------------------------------*/
/* - All devices under 960px wide
/*-----------------------------------------------------------------------------------*/
@media only screen and (max-width: 959px) {
   
}

/*-----------------------------------------------------------------------------------*/
/* - All devices under 800px wide
/*-----------------------------------------------------------------------------------*/
@media only screen and (max-width: 800px) {
  
}

/*-----------------------------------------------------------------------------------*/
/* - All devices under 450px wide
/*-----------------------------------------------------------------------------------*/
@media only screen and (max-width: 770px) {
     
}

/*-----------------------------------------------------------------------------------*/
/* - All devices under 450px wide
/*-----------------------------------------------------------------------------------*/
@media only screen and (max-width: 670px) {

}
/*-----------------------------------------------------------------------------------*/
/* - Tablet (Portrait)
/*-----------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	

}
/*-----------------------------------------------------------------------------------*/
/* - In-Between Phone Mobile and Landscape
/*-----------------------------------------------------------------------------------*/
@media only screen and (max-width: 500px) { 

}
/*-----------------------------------------------------------------------------------*/
/* - Phone Portrait + Landscape
/*-----------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
	
}
/*-----------------------------------------------------------------------------------*/
/* - Phone Landscape
/*-----------------------------------------------------------------------------------*/
@media only screen and (min-width: 480px) and (max-width: 767px) { 
	
}