/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    background: #2f2f31;
    font-family: 'Poppins', sans-serif;
    color: #bbb;
    font-weight: 300;
    line-height: 150%;
    font-size: 16px;
}

.header {
    padding: 80px 0 80px 0;
    background-image: url('background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    background-attachment: fixed;
}

.header * {
    position: relative;
}

.header:before {
    background: #333;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .998;
}

.content {
    padding: 5px 0 20px 0;
}

p {
    padding-bottom: 15px;
}

p b {
    color: #ccc;
    font-weight: 400;
}

.headline {
    text-align: center;
    color: #08981f;
    font-size: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 75px 0 35px;
    font-weight: 400;
}

ol {
    list-style: decimal;
}

li {
    padding-bottom: 15px;
}

.section-inner {
    max-width: 890px;
    margin: 0 auto;
}

.text-box {
    background: #343436;
    padding: 35px;
}

.header__inner {
    display: flex;
}

.header_col {
    width: 50%;
}

.header-info {
    color: #ddd;
    font-size: 24px;
}

.header-info span:first-child {
    display: block;
}

.header-info span:last-child {
    display: block;
}

.header__image-mob {
    display: none;
}

p.header-info__sub {
    font-weight: 300;
    font-size: 16px;
    display: block;
    color: #999;
    margin: 0;
    padding: 0;
    margin-bottom: 35px;
}

.personal {
    background: #2f2f31;
    padding: 30px 20px;
    margin-top: 20px;
    background-image: url('note.png');
    background-repeat: no-repeat;
    background-position: right 14px bottom 32px;
}

.personal__headline {
    font-size: 18px;
    color: #ddd;
    font-weight: 600;
    margin-bottom: 15px;
}

.personal__row {
    color: #ddd;
    font-weight: 400;
    display: inline-block;
}

.personal__row span {
    color: #bbb;
    padding-left: 7px;
    display: inline-block;
}

.header__image {
    position: relative;
    height: 400px;
    width: 400px;
}

.header__image:before {
    background-image: url('dot.png');
    background-repeat: repeat;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 135px;
    width: 135px;
}

.header__image:after {
    background-image: url('dot2.png');
    background-repeat: repeat;
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 135px;
    width: 135px;
}

.header__image img {
    position: absolute;
    left: 50px;
    top: 25px;
    z-index: 10;
    height: 300px;
    width: 300px;
    box-shadow: 2px 2px 8px 3px rgba(0,0,0,0.2);
}

.header__image-bg {
    background: #08981f;
    position: absolute;
    top: 75px;
    left: 25px;
    height: 300px;
    width: 300px;
    z-index: 5;
}

.footer {
    padding: 80px 0 40px 0;
    color: #999;
    font-size: 12px;
    text-align: center;
}

.footer a, .footer a:hover {
    color: #999;
    font-style: normal;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all 255ms ease-in-out;
    -moz-transition: all 255ms ease-in-out;
    -ms-transition: all 255ms ease-in-out;
    -o-transition: all 255ms ease-in-out;
    transition: all 255ms ease-in-out;
    padding: 5px 7px;
    line-height: 100%;
    display: inline-block;
}

.footer a:hover {
    color: #ccc;
}

@media (max-width: 930px) {
    .section-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header__image {
        width: 300px;
        height: 300px;
    }

    .header__image:before {
        height: 105px;
        width: 105px;
    }

    .header__image:after {
        height: 105px;
        width: 105px;
    }

    .header__image img {
        width: 255px;
        height: 255px;
        left: 25px;
    }

    .header__image-bg {
        width: 255px;
        height: 255px;
        top: 35px;
        left: 10px;
    }

    .header_col p {
        font-size: 14px;
    }

    .header-info {
        margin-top: -30px;
    }

    .headline {
        font-size: 27px;
    }
}

@media (max-width: 700px) {

    body {
        font-size: 14px;
    }

    .header__inner {
        display: block;
    }

    .header_col {
        width: 100%;
    }

    .header__image-desktop {
        display: none;
    }

    .header__image-mob {
        display: block;
    }
    .header-info, .header-info__sub {
        text-align: center;
    }
    .header__image {
        margin: 0 auto 30px auto;
    }
    .headline {
        padding: 35px 0 15px;
        font-size: 22px;
    }
}