.content-page {
    background-color: #F8F8F8;
}
.content-page__top-container {
    height: calc(100vh - var(--header-height));
    position: relative;
    overflow: hidden;
}
.content-page__top-inner {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 105%;
    height: 105%;
    transform: translate3d(var(--start-x), var(--start-y), 0);
    transition: transform 400ms linear;
}
.content-page__top-inner::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}
.content-page__header-image {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.content-page__title {
    font-size: var(--font-size-xxl);
    line-height: 1.2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0px);
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.content-page__subtitle {
    font-size: var(--font-size-xl);
    line-height: 1.2;
    margin-bottom: 2rem;
}
.content-page__text {
    width: 100%;
    top: 0;
    /*min-height: 100vh;*/
    background-color: #F8F8F8;
    z-index: 1;
    height: 100%;
}
@media screen and (min-height: 1000px) {
    .content-page__text {
        top: var(--header-height);
        /*min-height: calc(100vh - var(--header-height));*/
    }
}
.content-page__text-inner {
    /*min-height: 100vh;*/
    opacity: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--page-padding);
    transform: translate3d(-100px, 0, 0);
    transition: opacity 400ms ease, transform 400ms ease;
}
@media screen and (min-height: 1000px) {
    .content-page__text-inner {
        /*min-height: calc(100vh - var(--header-height));*/
    }
}
.did-appear .content-page__text-inner {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 400ms ease 400ms, transform 400ms ease 400ms;
}
.content-page__image-container {
    width: 100%;
}
.content-page__picture {
    display: block;
    overflow: hidden;
    padding: 10px;
    transition: padding 400ms ease 200ms;
}
.content-page__picture.did-appear {
    padding: 0;
}
.content-page__picture img {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
    transition: transform 400ms ease 200ms, opacity 400ms ease 200ms;
}
.content-page__picture.did-appear img {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.content-page__content-image {
    display: block;
    max-width: 100%;
}
.content-page__links {
    margin-top: 2rem;
}
.content-page__links .button {
    margin-right: 1rem;
    margin-bottom: 1rem;
}
.content-page__links .button:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
.content-page__bottom-image {
    height: 65vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}
.content-page__bottom-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}
.content-page__bottom-container {
    z-index: 1;
    text-align: center;
}
.content-page__bottom-title {
    color: #fff;
    font-size: var(--font-size-xxl);
    margin-bottom: 3rem;
    text-transform: uppercase;
}
.content-page__bottom-link {
    color: #fff;
    border: 1px solid #fff;
    font-size: var(--font-size-m);
    padding: 1rem 2rem;
    z-index: 1;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 200ms ease;
}
.content-page__bottom-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 768px) {
    .content-page__content {
        display: flex;
        align-items: flex-start;
    }
    .content-page__text {
        width: 50%;
        position: -webkit-sticky;
        position: sticky;
        /*min-height: 100vh;*/
    }
    @media screen and (min-height: 1000px) {
        .content-page__text {
            /*min-height: calc(100vh - var(--header-height));*/
        }
    }
    .content-page__text-inner {
        min-height: none;
    }
    .content-page__image-container {
        width: 50%;
    }
    .content-page__links .button {
        margin-bottom: 0;
    }
}
.hidemobile {
    display: none;
}
@media screen and (max-width: 768px) {
    .hidemobile {
        display: block;
    }
    .hidedesktop {
        display: none;
    }
    .content-page__content.revmob {
        display: flex;
        align-items: flex-start;
        flex-direction: column-reverse !important;
    }
}