:root {
}

[data-bs-theme="contrast"] {
    .simpleParallax::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.45);
        content: '';
        height: 100%;
    }
}

.parallax-wrapper {
    overflow: hidden;
    position: relative;
}

.parallax-wrapper img {
    min-height: 450px;
    object-fit: cover;
    transform: scale(1.2);
}

.parallax-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    color: var(--bs-white);
}

.parallax-content strong {
    font-weight: 700;
}

.parallax-content .display-1 {
    line-height: 1.2;
}

@media (min-width: 768px) {
    .parallax-wrapper img {
        min-height: inherit;
        object-fit: inherit;
        transform: inherit;
    }
}

@media (min-width: 1200px) {
    .parallax-content {
        bottom: 150px;
    }
}
