.parallax-box {
    position: relative;
    overflow: hidden;
    background-color: #ccc;
}




.ds-parallax-hero.alignfull {
    padding-left: 0;
    padding-right: 0;
}

.parallax-box__item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
}

.parallax-box__item.parallax-box__background {
    position: static;
}

.parallax-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.parallax-box__slide-in-right {
    opacity: 0;
    transform: translateX(3%);
    transition: opacity 1s ease-out;
    will-change: transform;
}

.parallax-box__slide-in-left {
    opacity: 0;
    transform: translateX(-3%);
    transition: opacity 1s ease-out;
    will-change: transform;
}

.parallax-box__fade-in {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.parallax-box__text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
}

.parallax-box__text__container {
    padding: 3rem;
}

.parallax-box__text__container h2 {}

.parallax-box__text__container h4 {}