#sub-page-container {
    width: 100%;
    overflow: hidden;
}

.sub-page-section {
    width: 100%;
}

.sub-img-wrap {
    width: 100%;
    line-height: 0;
    display: block;
}

.sub-img-wrap img,
.sub-img-wrap picture {
    width: 100%;
    height: auto;
    display: block;
}

.sub-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sub-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}