@charset "UTF-8";
/* snippet-row-parallax-half START */
#snippet-row-parallax-half {
    .half-parallax {
        background-attachment: scroll !important;
    }
    .half-parallax::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.6);
    }
    @media screen and (min-width: 768px) {
        .left-25 {
            left: 25px;
            z-index: -1;
        }
    }
    @media screen and (max-width: 768px) {
        .bg-white {
            border-radius: 0.5rem;
        }
    }
}
/* snippet-row-parallax-half END */