/* Sample CSS to apply background graphic to header. */

@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);


body.style3 header.bg-photo {
	background: 
		linear-gradient(
		  rgba(0, 0, 0, 0.5), 
		  rgba(0, 0, 0, 0.5)
		),
		url("http://signforgood.com/VRA/img/13946340517_8a72fe9a75_o.jpg") no-repeat;
	background-size: cover;
	background-position: center center;
	color: white;
}


body.style2 h1 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 40pt;
	margin-bottom: 0.25em;
}

 
body.style1.page-home #headline {
	margin-left: -104px;
	padding-left: 160px;
	text-align: right;
	width: 500px;
	
}
body.style1.page-home #headline::after {
  content: "";
  background: url("") no-repeat scroll left top transparent;
  opacity: 0.5;
  top: 8px;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;   
}
body.style1.page-home h1 {
	padding-top: 35px;
	width: 100%;
	line-height: 1em;
	font-size: 48px;
}
@media only screen
and (min-width : 768px)
and (max-width : 1119px) {
 
	body.style1.page-home #headline {
		padding-left: 100px;
		width: auto;
	}
 
	body.style1.page-home #headline h1 {
		padding-top: 35px;
		font-size: 40px;
	}
}
 
@media screen and (max-width: 767px) {
 
	body.style1.page-home #headline {
		margin: 0;
		padding: 0;
		width: auto;
	}
	body.style1.page-home #headline::after {
		background: none;
	}
	body.style1.page-home #headline h1 {
		font-size: 32px;
		line-height: 1em;
	}	
}
