/**************************************************\ 
(XL) Large Monitor Only
\**************************************************/
@media screen and (min-width: 1200px){

}

/**************************************************\ 
(LG) Small Monitor Only
\**************************************************/
@media screen and (min-width:992px) and (max-width: 1199px){

}
 
/**************************************************\ 
(MD) Tablet Only
\**************************************************/
@media screen and (min-width:768px) and (max-width: 991px){

}

/**************************************************\ 
(SM) Phablet
\**************************************************/
@media screen and (min-width: 576px) and (max-width:767px){

}

/**************************************************\ 
(XS) Phone
\**************************************************/
@media screen and (min-width: 391px) and (max-width:575px){  
	.sectionInquire{
		text-align: left;
	}
	.sectionInquire label.title{ 
    	font-size: 28px;
   		margin-bottom: 10px;
	}
	.sectionInquire p.desc{
		font-size: 14px;
	}
}

/**************************************************\ 
(XXS) Smaller Phone
\**************************************************/
@media screen and (max-width:390px){  
	.sectionInquire{
		text-align: left;
	}
	.sectionInquire label.title{ 
    	font-size: 25px;
   		margin-bottom: 10px;
	}
	.sectionInquire p.desc{
		font-size: 14px;
	}
}