/* 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-weight: 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;
}
/* end reset */


body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #333;
    font-weight: 300;
    line-height: 1.5em;
}
.bold {
    font-weight: 600;
}

.header {
    background-image: url(./images/bgr/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
    color: #fff;
    position: relative;
}
.header:before {
    content: ' ';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0005;
    top: 0;
    left: 0;
}

h1 {
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    line-height: 1.5em;
}

h2 {
    font-weight: 300;
    font-size: 24px;
    text-align: center;
    position: relative;
    line-height: 1.5em;
}

h3 {
    font-size: 46px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.5em;
}
h4 {
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
    color: #999;
    line-height: 1.5em;
}

.section-wrapper {
    background-image: linear-gradient(to bottom,  rgba(255,255,255,1) 25%,rgba(231,231,231,1) 100%);
    padding: 70px 20px;
    border-bottom: 1px solid #ddd;
}

.section {
    padding: 0 20px;
    max-width: 700px;
    margin: 0 auto;
}

ul.services li {
    margin: 20px 0;
}


.project {
    margin: 80px 0; 
}
.project img {
    max-width: 100%;
    width: 160px;
    margin-right: 50px;
    border-radius: 6px;
    display: inline-block;
    vertical-align: top;
}
.project.odd img {
    margin: 0px 0 0 50px;
}
.project .name {
    font-weight: 600;
    margin-bottom: 20px;
}
.project p {
    margin: 0 0 20px;
    display: inline-block;
    width: calc(100% - 215px);
    min-width: 300px;
}
.project a {
    color: #ff9500;
    text-decoration: none;
}
.project a:hover {
    text-decoration: underline;
}

.desktop-only {
    display: none !important;
}
@media only screen and (min-width: 601px) {
    .desktop-only {
        display: inline-block !important;
    }
    .mobile-only {
        display: none !important;
    }
}

@media only screen and (max-width: 600px) {
    .header {
        padding: 100px 0;
    }
    .project .name {
        text-align: center;
    }
    .project img, .project.odd img {
        margin: 20px auto;
        position: relative;
        display: block;
    }
    .project p {
        width: 100%;
    }
}