/*********************************************************************************************

Project : rwdgrid - responsive grid system for your next project
URI: http://rwdgrid.com/
Version: 1.0
Author: Vineeth G S 
Author URI: http://www.gsvineeth.com
Github URI: https://github.com/gsvineeth/rwdgrid/

**********************************************************************************************

1.  Default / for Grid 1200px             
2.  960px 
3.  720px
4.  lt 720px 


**********************************************************************************************/


/********************************************************************************************* 

1.  960px 

*********************************************************************************************/  

@media only screen and (min-width: 960px) and (max-width: 1199px) {

 
}
	

/********************************************************************************************* 

2.  720px 

*********************************************************************************************/ 

@media only screen and (min-width: 720px) and (max-width: 959px) {
 
 	h2.hpost-title{
	padding:5px;
	font-size:14px;
}
 
 
}
 
 

/********************************************************************************************* 

3.  lt 720px 

*********************************************************************************************/ 

@media only screen and (max-width: 719px) {

.logo{
	padding:10px 0px;
	text-align: center;
}

}




@media only screen and  (max-width: 479px) {
	
	h2.hpost-title{
	padding:5px;
	font-size:14px;
}

}