.parallax {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow:hidden;
	min-height:100vh;
	position:relative;
}
.parallax .innerContent {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.parallax.contentRight.dark .innerContent {
	background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.7) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 25%,rgba(255,255,255,0.7) 50%,rgba(255,255,255,0.7) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 25%,rgba(255,255,255,0.7) 50%,rgba(255,255,255,0.7) 100%);
}
.parallax.contentLeft.dark .innerContent {
	background: -moz-linear-gradient(left, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 75%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.7) 0%,rgba(255,255,255,0.7) 50%,rgba(255,255,255,0) 75%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.7) 0%,rgba(255,255,255,0.7) 50%,rgba(255,255,255,0) 75%,rgba(255,255,255,0) 100%);
}
.parallax.contentFull.dark .innerContent {
	background:rgba(255,255,255,.7);
}

.parallax.dark {
	color:#676767;
}

.parallax.contentRight.light .innerContent {
	background: -moz-linear-gradient(left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.7) 100%);
	background: -webkit-linear-gradient(left, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0.7) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 25%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0.7) 100%);
}
.parallax.contentLeft.light .innerContent {
	background: -moz-linear-gradient(left, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0) 75%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to right, rgba(0,0,0,0.7) 0%,rgba(0,0,0,0.7) 50%,rgba(0,0,0,0) 75%,rgba(0,0,0,0) 100%);
}
.parallax.contentFull.light .innerContent {
	background:rgba(0,0,0,.7);
}
.parallax.light {
	color:#dedede;
}

.parallax .innerContent .copy {
	overflow: hidden;
}
.parallax.contentRight .innerContent .copy {
	width: 50%;
	margin-left: 50%;
	margin-top: 150px;
	margin-bottom: 100px;
}
.parallax.contentLeft .innerContent .copy {
	width: 50%;
	margin-top: 150px;
	margin-bottom: 100px;
}
.parallax.contentFull .innerContent .copy {
	width: 80%;
	margin-left:10%;
	margin-top: 150px;
	margin-bottom: 100px;
}
.parallax.content .innerContent .copy {
	margin:150px 10px 100px;
}


.parallax .forgroundImage {
	position: absolute;
    background-color: transparent;
    background: none;
    padding: 0;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    border: none;
}
.parallax .forgroundImage img {
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
}
.parallax .forgroundImage.top {
    top: 0;
    width:100%;
    text-align:center;
}
.parallax .forgroundImage.right {
    right: 0;
}
.parallax .forgroundImage.bottom {
    bottom: 0;
    width:100%;
    text-align:center;
}
.parallax .forgroundImage.left {
    left: 0;
}
.parallax .forgroundImage.centerImg {
    text-align:center;
}
.parallax .forgroundImage.leftImg {
    text-align:left;
}
.parallax .forgroundImage.rightImg {
    text-align:right;
}



@media only screen and (max-device-width: 1024px) {
    .parallax {
        background-attachment: scroll;
    }
}

.parallax .innerContent {
	width: 1080px;
	margin: auto;
}

@media screen and (max-width: 1100px) {
	.parallax .innerContent{
		width:960px;
	}
}

@media screen and (max-width: 980px) {
	.parallax .innerContent {
		width:748px;
	}
}
@media screen and (max-width: 768px) {
	.parallax .innerContent {
		width:583px;
	}
}
@media screen and (max-width: 603px) {
	.parallax .innerContent {
		width:460px;
	}
	.parallax.content .innerContent .copy {
		margin:40px 10px 0;
	}
}
@media screen and (max-width: 480px) {
	.parallax .innerContent {
		width:300px;
	}
}
@media screen and (max-width: 320px) {
	.parallax .innerContent {
		width:280px;
	}
}