.page-header-caption {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.page-header {
    padding: 100px 0px;
    background-image: linear-gradient(180deg, transparent,var(--site-color-100));
}

.page-header-slide {
    display: flex;
    align-items: center;
}

.page-header-image {
    max-width: 40%;
}

.page-header-image > img {
    max-width: 100%;
    max-height: 100%;
}

.page-header-caption > h3 {
    font-size: 50px;
    font-weight: bold;
    color: var(--site-color-700);
    text-transform: uppercase;
    width: 100%;
}

.page-header-caption > p {
    font-size: 20px;
    color: var(--site-color-1001);
    font-weight: bold;
    margin: 0px;
}

@media only screen and (max-width : 600px) {
    .page-header-slide {
        flex-direction: column-reverse;
    }

    .page-header-image {
        max-width: 100%;
        height: 200px;
    }

    .page-header-caption > h3 {
        font-size: 30px;
        text-align: center;
    }

    .page-header-caption > p {
        font-size: 16px;
        text-align: center;
    }
}
