
body > div.md-container > main > div {
    width: 100%;
    max-width: 100%;
}

body > div.md-container > main > div > div.md-content > article {
    margin: 0;
}

.header {
    font-size: 1rem;
    max-width: 61rem;
    margin: 0rem auto 3em auto;
    padding: 0 0.8rem;
    text-align: center;
    color: #fff;
}

.header h1 {
    text-align: center;
    margin: 2em 0 0.5em 0;
    font-size: 2.7em;
    pointer-events: none;
    color: #fff;
}
.header h1 a.headerlink {
    display: none;
}

.header p {
    max-width: 900px;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6)
}

.feature:nth-child(2n) {
    background-color: rgba(173, 206, 224, 0.52);
}

.feature:nth-child(2n + 1) .image {
    order: 1;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 61rem;
    margin: 0 auto;
    padding: 7rem 1rem;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

@media screen and (max-width: 1219px) {
    .content-wrapper {
        flex-direction: column;
    }
}

.feature:first-child .content-wrapper {
    padding-top: 0;
}

@media screen and (max-width: 1219px) {
    .feature:first-child .content-wrapper {
        padding-top: 7em;
    }
}

.content-wrapper .image {
    display: block;
    flex-basis: 60%;
    background-size: contain;
    min-height: 400px;
    width: 60%;
    background-repeat: no-repeat;
    background-position: 50%;
    opacity: 0.8;
    transition: 0.3s;
    padding: 0 1.5rem;
}

@media screen and (max-width: 1219px) {
    .content-wrapper .image {
        flex-basis: 100%;
        width: 100%;
        min-width: 100%;
        order: 1;
    }
}

@media screen and (max-width: 700px) {
    .content-wrapper .image {
        min-height: 200px;
    }
}

.content-wrapper .image:hover {
    opacity: 1;
}

.content-wrapper .text-wrapper {
    flex-basis: 40%;
    padding: 4rem 1.5rem;
    font-size: 1rem;
}

@media screen and (max-width: 1219px) {
    .content-wrapper .text-wrapper {
        flex-basis: 100%;
        text-align: center;
        max-width: 600px;
        padding: 0 0 2rem 0;
    }
}

.content-wrapper .text-wrapper h2 {
    margin-top: 0;
    font-weight: 500;
    font-size: 1.7rem;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}