.acs-parallax {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
	background-color: transparent;
	padding: 0;
	margin: 0;
}

.acs-parallax .-mask {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.acs-parallax .container {
	z-index: 2;
}

.acs-parallax .container .-content {
	padding: 96px 0;
}

.acs-parallax .-slide {
	transition: all .3s ease;
	position: absolute;
	background-color: #eee;
	min-width: 100%;
	min-height: 100%;
	background-repeat: no-repeat;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);

	/* Parallax */
	/*background-attachment: fixed;*/

	background-position: 50% 50%;
	background-size: cover;
}

.acs-parallax .-slide.-shown {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.acs-parallax .theme-light * {
	color: #fff;
}

.acs-parallax .theme-dark * {
	color: #333;
}