.hero {
    background-color: #e3e3e3;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
}
.parallax {
    overflow: hidden;
    z-index: 0;
    transition: opacity 0.2s ease-in-out;
}
.parallax ~ * {
    position: relative;
}
.parallax::before {
    top: calc(-1 * var(--parallax));
    -webkit-transform: translateY(calc(var(--scroll) * var(--parallax)));
    transform: translateY(calc(var(--scroll) * var(--parallax)));
    will-change: transform;
    content: '';
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
 }

.hero__content {
    position: relative;
}
.hero__content .width {
    max-width: 1000px;
width: calc(100% - 6vw);
margin: 0 auto;
} 
.index-info-shift {
    position: relative;
    margin-top: -70px;
}
.bg\:reset, .hover__bg\:reset:hover {
    background-color: #fff;
}
@media (min-width: 861px) {
    .lg__fd\:column {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}
.section--alt a {
    color:#394553;
}
.section--alt .width {
    max-width: 1000px;
    width: calc(100% - 6vw);
    margin: 0 auto;
}
.thumbnail__name {
    position: absolute;
    background: #394553;
    color: #fff;
    bottom: 10px;
    right: 0;
    width: 100%;
    max-width: 200px;
    padding-left: .7em;
    line-height: 36px;
    font-weight: bold;
    text-transform: uppercase;
    display: -webkit-flex;
    display: flex;
    }