/* For Desktop View */

@media screen and (min-width: 1024px) {
	
	
	
	.branding{
	margin: 0 auto;
	padding: 0;
	width: 80%;
	height: 100vh;
	font-family: "OPTIMA", sans-serif;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	
}
	
}
 
/* For Tablet View */

@media screen and (min-device-width: 768px) 

and (max-device-width: 1024px) {

.branding{
	margin: 0 auto;
	padding: 0;
	width: 80%;
	height: 100vh;
	font-family: "OPTIMA", sans-serif;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	
}

}
 
/* For Mobile Portrait View */

@media screen and (max-device-width: 480px) 

and (orientation: portrait) {

 .branding{
	flex-direction: column;
  }
	
	.get-registered {
    width: 340px;
    right: 10px;
}
	
	.section-title p {
		
		font-size: 28px;
		
	}
	
	.about{
		padding: 45px 0;
	}
	
	.about .content h3 {
  font-size: 24px;
}
	
}
/* For Mobile Landscape View */

@media screen and (max-device-width: 640px) 

and (orientation: landscape) {

   .branding{
	flex-direction: column;
  }
}
 
/* For Mobile Phones Portrait or Landscape View */

@media screen and (max-device-width: 640px) {

   .branding{
	flex-direction: column;
  }
}
 
/* For iPhone 4 Portrait or Landscape View */

@media screen and (min-device-width: 320px) 

and (-webkit-min-device-pixel-ratio: 2) {

     .branding{
	flex-direction: column
  }
	
	.get-registered {
    width: 350px;
    right: 10px;
	top:90px;	
}
	
}
 
/* For iPhone 5 Portrait or Landscape View */

@media (device-height: 568px) and (device-width: 320px)

and (-webkit-min-device-pixel-ratio: 2) {

   .branding{
	flex-direction: column
  }
}
 
/* For iPhone 6 and 6 plus Portrait or Landscape View */

@media (min-device-height: 667px) and (min-device-width: 375px)

and (-webkit-min-device-pixel-ratio: 3) {

   .branding{
	flex-direction: column
  }
}