.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.paraoff{
  background-attachment: scroll;
}

.parallax .textoverlay {padding: 120px 20%;}
.parallax .textoverlay {text-align:center; color: #fff;}
.parallax .textoverlay h2 {color: #fff;margin-bottom: 20px; font-size: 36pt;font-weight: 600;text-shadow: 3px 3px 2px rgba(0,0,0,0.6);}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
    .parallax  {background-attachment: scroll;}
	.parallax .textoverlay {padding: 120px 30px;}
}
@media only screen and (max-width: 468px) {
	.parallax .textoverlay {padding: 80px 30px;}
	.parallax .textoverlay h2 {font-size: 17pt;}
}

