
section.content_parallax {
    z-index: 1 !important;
}

.parallax-wrap {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    justify-content: center;
}

.parallax-image {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: -100px !important;
    z-index: -1 !important;
    width: 100% !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--gray-color);
}

.content_parallax .content {
    display: flex;
    align-items: center;
    color: #fff;
    background-color: transparent;
    text-align: start;
    position: relative;
    z-index: 11;
}

.content_parallax .content h1 {
    font-weight: 300;
    font-size: 3rem;
    margin-bottom: 50px;
}

.content_parallax .content .content-text {
    font-size: 1rem;
    line-height: 30px;
}

@media (max-width: 991px) { /* LG */
    .content_parallax .content {
        text-align: center;
    }
}