/* 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;
}


/* CSS */

body {
    font-family: 'Open Sans';
    font-size: 18px;
    background: #fafafa;
}

a {
    color: #e74c3c;
}

.container {
    position: relative;
}

.wrapper {
    position: relative;
    width: 1020px;
    margin: 0px auto;
}

header {
    height: 120px;
    padding: 30px 0px;
    box-sizing: border-box;
    border-bottom: none;
    background: #fff;
}

header .logo {
    line-height: 60px;
    font-size: 40px;
    font-weight: 400;
}

header .logo strong {
    font-weight: 700;
    color: #29357f;
}

header .contact {
    position: absolute;
    top: 20px;
    right: 0px;
}

header .contact .btn {
    padding: 10px;
    border: 2px solid #29357F;
    color: #29357F;
    font-weight: 700;
    border-radius: 5px;
    text-decoration: none;
}

.hero {
    display: block;
    height: 400px;
    width: 100%;
    background: #29357F;
    color: #fff;
}

.hero h1 {
    font-size: 20px;
    text-align: center;
    line-height: 50px;
}

.hero h2 {
    font-size: 34px;
    text-align: center;
    line-height: 70px;
}

h2 {
    color: #29357f;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content {
    padding: 40px 0px;
    line-height: 24px;
}

.content p {
    margin-bottom: 1em;
}

.contactBalk .wrapper {
    background: #e74c3c;
    padding: 40px;
    color: #fff;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 26px;
}

.contactBalk .wrapper strong {
    font-weight: 700;
}

.contactBalk .wrapper a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

.contactBalk .wrapper a:hover {
    border-bottom: 1px dotted #fff;
}

.extraInfo .wrapper {
    background: #ecf0f1;
    padding: 40px;
    color: #000;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 26px;
    margin-top: 20px;
}

.extraInfo .wrapper strong {
    font-weight: 700;
}

.extraInfo .wrapper a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.extraInfo .wrapper a:hover {
    border-bottom: 1px dotted #000;
}

.label {
    display: inline-block;
    width: 80px;
}

@media only screen and (max-width: 1020px) {
    .wrapper {
        width: 100%;
        padding: 0px 20px;
        box-sizing: border-box;
    }

    header .contact {
        right: 20px;
    }
}

div .item {
    display: inline-block;
}

ul {
    margin-left: 16px;
}

ul, li {
    display: inline-list-item;
}


li {
    list-style: initial;
}
li::marker {
    vertical-align: top;
}