/* 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;
}

html,
body {
    height: 100%;
    min-height: 100%;
}

body {
    background: url(i/bg.jpg) repeat left top;
    color: #fff;
    font-family: 'Open Sans', Arial;
}

.body-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

.content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 30px 0;

}

.logo {
    margin-bottom: 90px;
}

h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 45px;
}

h2 {
    font: 600 25px/30px 'Open Sans', Arial;
    text-transform: uppercase;
}

.company-info {
    margin-bottom: 60px;
}

.company-details {
    font-weight: 300;
    font-size: 20px;
}

.company-details a {
    color: #fff;
    text-decoration: none;
}

.company-detail {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 15px;
}

.bullet {
    font-weight: 800;
    font-size: 30px;
    color: #00a69c;
    display: inline-block;
    vertical-align: middle;
    line-height: 20px;
    padding: 0 4px;
    position: relative;
    top: -1px;
}


@media screen and (max-width: 600px) {
    .logo {
        max-width: 65%;
        margin-bottom: 45px;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    h2 {
        font-size: 15px;
        line-height: 19px;
    }

    .company-info {
        margin-bottom: 40px;
    }

    .company-details {
        font-size: 16px;
    }

    .company-detail {
        display: block;
        margin-bottom: 3px;
    }

    .bullet {
        display: none;
    }
}