.bgImageWrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
}

.page-type-basic-page section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* color: var(--light); */
    text-align: center;
    /* padding-top: 3rem;
    padding-bottom: 3rem; */
    position: relative;
    overflow: hidden;
    display: flex;
}

.page-type-basic-page img.bg-image,
.page-type-basic-page video.bg-video {
    opacity: 1;
    /* position: absolute; */

    object-fit: cover;

    left: 0;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    max-width: unset;
    transition: all 1.5s ease-out;
}

.page-type-basic-page .lazy img.bg-image,
.page-type-basic-page .lazy video.bg-video {
    opacity: 0;
}

.page-type-basic-page section .container {
    z-index: 3;
}

.page-type-basic-page section.lazy {
    background-image: none !important;
    background-color: transparent !important;
}

.ccm-edit-mode .page-type-basic-page section {
    display: block;
    z-index: unset;
}

@media (max-width: 991px){
    .kt-pair img {
        margin-bottom: 1rem;
    }
}