.parallax_container {
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}
.container-full, .container-75, .container-50, .container-25, .container-custom {
	overflow:hidden;
	height:auto;
}
.container-full {
	min-height: 100vh;
}
.container-75 {
	min-height: 75vh;
}
.container-50 {
	min-height: 50vh;
}
.container-25 {
	min-height: 25vh;
}
.container-custom {
	height: 75vh;
}
.parallax_container .content {
	background: rgba(0, 0, 0, .75);
	border-radius: 8px;
	color: #fff;
	margin: 0 auto;
	padding: 30px 35px;
	text-align: center;
}
.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}
.parallax__container .parallax {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
   /* --------------------------- */
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
}
.show-on-mobile--inline {
	display: none;
}
.arrow {
	-webkit-animation: bounce 3s infinite;
	animation: bounce 3s infinite;
	bottom: -64px;
	bottom: -4rem;
	left: calc(50% - 19px);
	position: absolute;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: opacity 250ms ease-in-out;
	width: 38px;
}
.arrow--hide {
	opacity: 0;
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
   }
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
   }
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
   }
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
   }
	40% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
   }
	60% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
   }
}
@media screen and (max-width: 480px) {
	.hide-on-mobile {
		display: none;
   }
	.show-on-mobile--inline {
		display: inline;
   }
}
@media (min-width: 1280px){
}
@media (max-width: 575.98px) {
}
@media (max-width: 992px) {
	.container-custom {
		height: 70vh;
   }
}
@media (min-width: 768px) and (max-width: 991.98px) {
}
@media (min-width: 992px) and (max-width: 1199.98px) {
}
