@media only screen and (min-width: 1023px) {
    .section {
        min-height: 80px;
        position: relative;
        top: 150px;
    }
    .image-container {
        position: relative;
    }
    .image {
        position: fixed;
        top: 50px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        mix-blend-mode: multiply;
        filter: blur(10px);
        opacity: 0;
        transition: filter 0.5s ease, opacity 0.5s ease;
    }
    .section.active .image {
        opacity: 1;
        filter: blur(0);
    }
}