.front-hero-image {
    background-color: var(--color-primary-black);
    height: 100vh;
    overflow: hidden;
    min-height: 600px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.front-hero-image .parallax-hero {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 120%;
    left: 0;
    position: absolute;
    width: 100%;
}

.front-hero-image .hero-text-container {
    position: absolute;
    z-index: 1;
    left: 50%;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.front-hero-image .hero-text-container img {
    height: auto;
    max-width: 350px;
    width: 100%;
}

.home-section-two {
    color: var(--color-black);
    margin-top: -14rem;
    z-index: 2;
    position: relative;
}

.home-section-two img {
    display: block;
    height: auto;
    width: 100%;
}

.home-section-two .section-wrapper {
    background-color: var(--color-white);
    padding: 6rem 8vw;
    text-align: center;
    
}

.home-section-two .section-region {
    margin: 0 auto;
    max-width: 760px;
}

@media (max-width: 768px) {
    
    .front-hero-image .hero-text-container img {
        max-width: 250px;
    }
    
}



