/* Parallax Section */
#parallax.section-parallax {
    position: relative;
    min-height: 358px;
    overflow: hidden;
}

.section-parallax .parallax_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-parallax .parallax_wrap_desktop {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed, scroll;
}

.section-parallax .parallax_wrap_mobile {
    display: none;
}

/*
 * N.B.
 * There is custom CSS in WordPress that affects these declarations.
 * Not willing to refactor this spaghetti right now.
  */
@media (max-width: 990px) {
    #parallax.section-parallax {
        min-height: 338px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .section-parallax .parallax_wrap_desktop {
        display: none;
    }
    .section-parallax .parallax_wrap_mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
}
@media (min-width: 1200px) {
    #parallax.section-parallax {
        min-height: 448px;
    }
}