.parallax {
	height: 100%;
	position: relative;
	background-attachment: fixed;
	background-position: center 0;
	background-repeat: no-repeat;
	background-size: cover;
}
.caption-gallery { 
	width: 100%;
	height: 100%;
	color: var(--white-color);
	background: linear-gradient(rgba(108,86,123,0.35), rgba(108,86,123,0.75));
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.caption-gallery h1 {
	margin-top: 40px;
	color: var(--green00-color);
	text-align: center;
	font-size: clamp(28px, 14vw, 74px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 0 0 2px var(--purple04-color) ;
	letter-spacing: 3px;
	display: inline-block;
}
.caption-gallery p {
	width: 25%; 
	padding: 0 20px;
	color: var(--green01-color);
}
.caption-footer { 
	width: 100%;
	height: 100%;
	color: var(--white-color);
	background: linear-gradient(rgba(40,68,60,0.35), rgba(40,68,60,0.75));
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.caption-footer h1 {
	margin-top: 61px;
	font-size: clamp(28px, 14vw, 80px);
	color: var(--green00-color);
	font-weight: 900; 
}
.caption-footer p {
	width: 30%; 
	padding: 0 20px;
}

 /*Turn off parallax scrolling for tablets and phones*/
@media only screen and (max-width: 768px) {
  .parallax {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center !important;
  }
}
