/* Normal desktop :992px. LG Device */
@media (min-width: 992px) and (max-width: 1200px) {




}



/* small mobile layout :320px. */
@media only screen and (max-width: 767px) {
.section-demo h1 {
    font-size: 30px;
}

	
	
	
	
}

/* Large Mobile layout:550px. */
@media only screen and (min-width: 576px) and (max-width: 767px) {
.section-demo h1 {
    font-size: 32px;
}



  
}

