.parallax-hero {
    position: relative;
    height: 850px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	margin-top: -100px;
    margin-bottom: -100px;
}

.jarallax-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
	background-size: cover;
    background-position: center;
    z-index: 0;
}

.parallax-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.parallax-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.parallax-hero-title {
    margin: 0;
    color: white;
}

