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

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

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

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

@media (max-width: 768px) {
    
    .hero-image .hero-text-container {
        width: calc(100% - 16vw);
    }
    
}
