@charset "utf-8";
/* Custom responsive CSS document */ 
/* -----------------------------------------
   * Filename: custom-responsive.css
   * Author: Welcom Digital
----------------------------------------- */

/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575px) {
	 
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px){ 
	 
}
/*Medium devices (tablets, 667px and less)*/
@media (max-width: 667px){ 
	 
}

/*Medium devices (tablets, 768px and up)*/
@media (max-width: 768px){
	 
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px){
	
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px){
	
}

/* CLOSE WIDE DESKTOP LAYOUT MEDIA QUERY */
@media only screen and (min-width: 320px) and (max-width:1100px) { 
	
}

/* TABLET LAYOUT 
----------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	
}

/* MOBILE/TABLET LAYOUT (PORTRAIT/320PX) 
----------------------------------------------- */
@media only screen and (max-width:991px) { 
	
}

/* WIDE MOBILE LAYOUT (LANDSCAPE/320PX) 
----------------------------------------------- */
@media only screen and (min-width: 320px) and (max-width: 767px) {
	
}

/* WIDE MOBILE LAYOUT (LANDSCAPE/420PX) 
----------------------------------------------- */
@media only screen and (min-width: 420px) and (max-width: 766px) {
	
}

/* CLOSE WIDE MOBILE MEDIA QUERY */
@media only screen and (min-width: 360px) {
	
}
 