.container {
    width: 100%;
}



h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
}

h1 {
    font-size: 40px;
    font-size: 2.5rem;
}

@media (min-width: 1000px) {
    h1 {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

h2 {
    font-size: 22px;
    font-size: 1.375rem;
}

@media (min-width: 1000px) {
    h2 {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

h3 {
    font-size: 18px;
    font-size: 1.125rem;
}

@media (min-width: 1000px) {
    h3 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

h4 {
    font-size: 17px;
    font-size: 1.0625rem;
}

@media (min-width: 1000px) {
    h4 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

h5 {
    font-size: 16px;
    font-size: 1rem;
}

h6 {
    font-size: 16px;
    font-size: 1rem;
}


.load-more {
    margin: 40px 20px 20px;
    text-align: center;
}

@media (min-width: 900px) {
    .load-more {
        margin: 20px 30px;
    }
}

.load-more .btn {
    width: 100%;
    font-size: 18px;
    font-size: 1.125rem;
}

@media (min-width: 800px) {
    .load-more .btn {
        width: auto;
    }
}

.eyebrow {
    margin-bottom: 15px;
    color: #9b9b9b;
    font-size: 11px;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.category-row {
    margin: 0 5px 20px;
}

@media (min-width: 800px) {
    .category-row {
        margin: 0 15px 50px;
    }
}

@media (min-width: 900px) {
    .category-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.category-row .category-feature {
    margin: 0 15px;
}

@media (min-width: 900px) {
    .category-row .category-feature {
        width: calc(50% - 30px);
    }
}

@media (min-width: 1200px) {
    .category-row .category-feature {
        margin: 0 25px;
        width: calc(50% - 50px);
    }
}

.category-row .category-teasers {
    margin: 0 15px;
}

@media (min-width: 900px) {
    .category-row .category-teasers {
        width: calc(50% - 30px);
    }
}

@media (min-width: 1200px) {
    .category-row .category-teasers {
        margin: 0 25px;
        width: calc(50% - 50px);
    }
}

@media (min-width: 900px) {
    .category-row .category-teasers .teaser:last-of-type {
        margin-bottom: 0;
    }
}

.category-row .category-teasers.-no-feature {
    width: calc(100% - 30px);
}

@media (min-width: 900px) {
    .category-row .category-teasers.-no-feature {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 900px) {
    .category-row .category-teasers.-no-feature .teaser {
        width: calc(50% - 15px);
    }
}

@media (min-width: 1200px) {
    .category-row .category-teasers.-no-feature .teaser {
        width: calc(50% - 25px);
    }
}

@media (min-width: 900px) {
    .category-row .category-teasers.-no-feature .teaser:nth-child(odd) {
        margin-right: 15px;
    }
}

@media (min-width: 1200px) {
    .category-row .category-teasers.-no-feature .teaser:nth-child(odd) {
        margin-right: 25px;
    }
}

@media (min-width: 900px) {
    .category-row .category-teasers.-no-feature .teaser:nth-child(even) {
        margin-left: 15px;
    }
}

@media (min-width: 1200px) {
    .category-row .category-teasers.-no-feature .teaser:nth-child(even) {
        margin-left: 25px;
    }
}

@media (min-width: 900px) {
    .category-row .category-teasers.-no-feature .teaser:last-of-type {
        margin-bottom: 50px;
    }
}


button,
.btn {
    background: #fff;
    border: 2px solid #cbdedf;
    border-radius: 3px;
    color: #3b777c;
    cursor: pointer;
    font-size: 14px;
    font-size: 0.875rem;
    display: inline-block;
    padding: 6px 20px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

button:active,
button:focus,
button:hover,
.btn:active,
.btn:focus,
.btn:hover {
    background: #3b777c;
    border-color: #3b777c;
    color: #fff;
}

button:disabled,
.btn:disabled {
    opacity: .5;
    pointer-events: none;
}

.category-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 30px 20px;
    text-align: center;
    background-repeat: repeat;
    background-size: 450px 450px;
    background-position: top left;
    -webkit-box-shadow: inset 0 5px 10px -6px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 5px 10px -6px rgba(0, 0, 0, 0.25);
}

@media (min-width: 800px) {
    .category-header {
        margin-bottom: 30px;
    }
}

@media (min-width: 1000px) {
    .category-header {
        padding: 50px 20px;
    }
}

@media (min-width: 1200px) {
    .category-header {
        margin-bottom: 50px;
        padding: 65px 40px;
    }
}

.category-header h1 {
    width: 100%;
    margin-bottom: 10px;
}

.-pattern-health, .-pattern-physical-world, .-pattern-society {
    background-size: 450px 450px;
}

.-pattern-technology {
    background-size: 450px 405px;
}

.-pattern-food-environment {
    background-size: 450px 495px;
}

.-pattern-living-world {
    background-size: 480px 480px;
}

.-pattern-mind {
    background-size: 600px 600px;
}

.teaser {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

@media (min-width: 1300px) {
    .teaser {
        margin-bottom: 50px;
    }
}

.teaser .teaser-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 110px;
    margin-right: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.teaser .teaser-img img {
    -webkit-transition: -webkit-transform 0.35s ease-in-out;
    transition: -webkit-transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

.teaser .teaser-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

@media (min-width: 500px) {
    .teaser .teaser-img {
        width: 150px;
        margin-right: 20px;
        margin-bottom: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

@media (min-width: 700px) {
    .teaser .teaser-img {
        width: 200px;
        margin-right: 25px;
    }
}

@media (min-width: 800px) {
    .teaser .teaser-img {
        width: 150px;
        margin-right: 20px;
    }
}

@media (min-width: 1200px) {
    .teaser .teaser-img {
        width: 260px;
        margin-right: 30px;
    }
}

.teaser .teaser-img a {
    display: block;
}

.teaser .teaser-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: calc(100% - 125px);
}

@media (min-width: 700px) {
    .teaser .teaser-text {
        width: calc(100% - 275px);
    }
}

@media (min-width: 800px) {
    .teaser .teaser-text {
        width: calc(100% - 170px);
    }
}

@media (min-width: 1200px) {
    .teaser .teaser-text {
        width: calc(100% - 290px);
    }
}

.teaser .teaser-text p {
    display: none;
}

@media (min-width: 600px) {
    .teaser .teaser-text p {
        display: block;
    }
}

.teaser .eyebrow {
    margin-bottom: 5px;
}

.teaser .eyebrow a {
    color: #9b9b9b;
}

.teaser .eyebrow a:hover,
.teaser .eyebrow a:focus {
    color: #3b777c;
}

.teaser h2 {
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400;
}

@media (min-width: 600px) {
    .teaser h2 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

@media (min-width: 800px) {
    .teaser h2 {
        margin-bottom: 10px;
        font-size: 26px;
        font-size: 1.625rem;
    }
}

@media (min-width: 900px) {
    .teaser h2 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

@media (min-width: 1300px) {
    .teaser h2 {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

.teaser h2 a {
    color: #000;
}

.teaser h2 a:hover,
.teaser h2 a:focus {
    color: #3b777c;
}

.teaser p {
    color: #000;
}

@media (min-width: 900px) {
    .teaser p {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

@media (min-width: 1300px) {
    .teaser p {
        font-size: 16px;
        font-size: 1rem;
    }
}

.teaser-feature {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    padding: 30px;
}

.teaser-feature::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.teaser-feature:hover .teaser-feature-bg-img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.teaser-feature-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transition: -webkit-transform 0.35s ease-in-out;
    transition: -webkit-transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}

.teaser-feature-text {
    position: relative;
    z-index: 2;
}

@media (min-width: 1200px) {
    .teaser-feature-text {
        width: 70%;
    }
}

.teaser-feature .eyebrow {
    color: #fff;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.teaser-feature h2 {
    font-size: 40px;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

@media (min-width: 1000px) {
    .teaser-feature h2 {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

.teaser-feature p,
.teaser-feature span {
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.teaser-feature .byline span {
    margin-bottom: 0;
    font-size: 13px;
    font-size: 0.8125rem;
}

/*! CSS Used from: Embedded */
.more {
    display: none;
    margin: auto;
}

/*! CSS Used fontfaces */
@font-face {
    font-family: capitolium-2;
    src: url(https://use.typekit.net/af/e0a6cb/00000000000000003b9af94d/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("woff2"), url(https://use.typekit.net/af/e0a6cb/00000000000000003b9af94d/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("woff"), url(https://use.typekit.net/af/e0a6cb/00000000000000003b9af94d/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3) format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: capitolium-2;
    src: url(https://use.typekit.net/af/581d72/00000000000000003b9af950/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3) format("woff2"), url(https://use.typekit.net/af/581d72/00000000000000003b9af950/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3) format("woff"), url(https://use.typekit.net/af/581d72/00000000000000003b9af950/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3) format("opentype");
    font-weight: 700;
    font-style: normal;
}

.teaser-feature-bg-img {
    object-fit: cover;
}
