
/* CSS Reset*/
html { margin:0;padding:0;border:0; }
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline; list-style: none; }


/* Body setup*/
body {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: left    ;
    color: #111;
    -webkit-font-smoothing:antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.animate {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

b,
strong { font-weight: 900; }

i,
em { font-style: italic; }

:focus { outline: none; }

img { display: block; max-width: 100%; height: auto; }

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1260px;
    padding-left: 30px !important;
    padding-right: 30px !important;
    margin: 0 auto;
    position: relative;
    height: 100%;
}

.cf:before,
.cf:after { content: " "; display: table; }
.cf:after { clear: both; }
.cf { *zoom: 1; /* IE 6/7 only */ }


.left   { float: left; }
.right  { float: right; }
.half   { width: 49.00%; }
.third  { width: 33.32%; }
.fourth { width: 24.99%; }
.sixth  { width: 16.65%; }
.two-thirds {
    width: 66.65%;
}

.retina {
    zoom: 0.5;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex.invert {
    flex-direction: row-reverse;
}

.alignright {
    float: right;
}

h1, h2, h3 {
    line-height: 1.2em;
    padding-bottom: 15px;
    color: #121212;
    font-family: "Oswald", Impact, sans-serif;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 48px;
    margin-top: 30px;
    margin-bottom: 10px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: #85b200;
    display: inline-block;
    padding: 2px 15px;
    color: white;
}

.footer {
    background: #2e2e2e;
    padding: 30px 0;
    color: #ddd;
    font-size: 14px;
}

.footer a {
    font-weight: bold;
    color: #85b200;
}

.footer img {
    display: inline-block;
    position: relative;
    bottom: -3px;
}

.right {
    text-align: right;
}

ol li {
    margin: 10px 0 10px 36px;
}

ol {
    list-style: none;
    counter-reset: my-awesome-counter;
}

ol li {
    counter-increment: my-awesome-counter;
}
ol li::before {
    content: counter(my-awesome-counter) ". ";
    font-family: "Source Sans Pro", sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 0px #e8b720;
    font-size: 26px;
    margin-left: -36px;
}

.logo img {
    height: 40px;
    width: auto;
    margin: 20px auto;
}

.article-head {
    margin: 0 auto;
    height: 80vh;
}

.article-head p {
    font-size: 24px;
    color: #151515;
    line-height: 1.4em;
    padding-bottom: 20px;
}

.article-head .title span {
    display: inline-block;
    background: white;
    padding: 7px 20px;
}

.article-head .article-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.sponsor {
    margin: -15px auto 35px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.sponsor img {
    height: 60px;
    width: auto;
}

.seperator {
    width: 3px;
    height: 60px;
    background: #85b200;
    position: absolute;
    left: 50%;
    bottom: -45px;
    margin-left: -1.5px;
}

.seperator .circle {
    content: "";
    display: block;
    background: #85b200;
    width: 15px;
    height: 15px;
    border-radius: 100px;

    position: absolute;
    bottom: -6px;
    left: -6px;
}

.article-body {
    max-width: 990px;
    margin: 0 auto;
    padding: 95px 0 50px;
    font-size: 22px;
}

.article-body h2 {
    font-size: 36px;
    color: #85b200;
    margin-top: 30px;
}


.article-body p {
    padding: 0 0 20px;
    line-height: 1.6em;
}

.article-body p.lead {
    font-size: 26px;
}

.article-body ol,
.article-body ul {
    margin-top: 25px;
}

.article-body video {
    width: 100%;
    height: auto;
    margin: 10px 0 35px;
}

.article-body .seperator {
    height: 80px;
}

.listicle-item {
    margin: 80px 0 60px;
}

.block-text {
    font-size: 24px;
    line-height: 1.4em;
    max-width: 720px;
    margin: 50px auto 70px;
}

.read-more .third {
    padding: 20px;
}

.read-more .flex {
    margin: 0 -20px;
}

.read-more h1 {
    font-size:26px;
    margin-top: 0;
    transition: color 0.3s;
    -webkit-transition: color 0.3s;
}

.read-more h1:hover {
    color: darkred;
}

.read-more .third h3 {
    text-shadow: none;
    margin-top: 20px;
    font-size: 16px;
    font-family: "Source Sans Pro", Arial, sans-serif;
    font-weight: bold;
}

.read-more {
    margin-top: 100px;
    background: antiquewhite;
    padding: 40px 0;
}

@media only screen and (max-width: 450px) {

    h1 {
        font-size: 34px;
    }

    .article-body img,
    .article-body video {
        width: 100vw;
        margin: 10px 0 35px -30px;
        max-width: none;
    }

    .half,
    .third {
        width: 100%;
    }

    .footer img {
        display: block;
        position: relative;
        bottom: -8px;
        margin: 0 auto;
    }

}
