
.parallax {
    width: 100%;
    height: max(15vh, 250px);
    position: relative;
}

.parallax .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.parallax .parallax-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax .parallax-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    z-index: 5;
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parallax .parallax-content-container .parallax-content {
    width: 80%;
}


.parallax .parallax-content-container .parallax-content .parallax-header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



@media only screen and (max-width: 800px) {
    
    
    .parallax .parallax-content-container .parallax-content {
        width: 95%;
    }
    
}








