.parallax-next {
    position: relative;
}

.parallax-next::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 0;
}

.parallax-next .parallax-heading {
    position: relative;
    z-index: 2;
}

.parallax-next .parallax-heading .parallax-btn {
    transform: scale(0.95);
    transform-origin: center;
    color: #000;
    transition: all ease-in-out 0.7s;
}
.parallax-next .parallax-heading .parallax-btn:hover {
    color: #fff;
    transition: all ease-in-out 0.7s;
}
.parallax-next::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/parallax-image.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    z-index: -1;
}
@media only screen and (min-width: 768px) {
    .parallax-next .parallax-heading .btn {
        width: fit-content;
        padding-left: 24px;
        padding-right: 24px;
    }
}