/* .parallax-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 700px;
}

.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 1200px) {
    .parallax-section {
        height: 300px;
    }
    .parallax-image {
        height: 300px;
    }
    
} */