/* FONTS */
@font-face {
    font-family: 'museo_slab500';
    src: url('../fonts/Museo_Slab_500-webfont.eot');
    src: url('../fonts/Museo_Slab_500-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Museo_Slab_500-webfont.woff2') format('woff2'),
        url('../fonts/Museo_Slab_500-webfont.woff') format('woff'),
        url('../fonts/Museo_Slab_500-webfont.ttf') format('truetype'),
        url('../fonts/Museo_Slab_500-webfont.svg#museo_slab500') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* GENERAL */
*,
*:after,
*:before {
    box-sizing: border-box;
}
html { 
    height: 100%;
    background: url(../img/bg.jpg) no-repeat top center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
html, body {
    height: 100%;
    margin: 0;
}
body {
    font-family: 'museo_slab500', sans-serif;
    color: #FFF;
}
.wrapper {
    width: 100%;
    min-height: 100%;
    margin-bottom: -190px;
}
.footer,
.push {
    height: 190px;
}
h1 {
    font-size: 44px;
    font-weight: normal;
}
/* UTILITIES */
.title {
    position: relative;
    z-index: 0;
}
.title span {
    background: #fff;
    z-index: 1;
    padding-right: 20px;
}
.title:before,
.title:after {  
    content: "";
    height: 1px;
    width: 100%;
    display: inline-block;
    background: #e7e6e6;
    position: absolute;
    right: 0px;
    z-index: -1;
}
.title:after {
    top: 12px;
}
.title:before {
    top: 7px;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.clearfix {
    content: "";
    display: table;
    clear: both;
}
/* HOME */
.content-home {
    display: block;
    width: 100%;
}
.content-left {
    display: block;
    padding: 100px 0 45px 40px;
    float: left;
}
.content-right {
    display: block;
    padding: 40px 45px 45px 0;
    float: right;
}
.content-home p {
    font-size: 26px;
}
/* FOOTER */
.footer {
    display: block;
    width: 100%;
    padding: 5px 40px 26px;
    background-color: #fff;
    color: #343333;
}
.footer .footer-content {
    padding: 15px 30px;
    border-left: 3px solid #312783;
    background-color: #f2efef;
}
.footer .footer-content-left,
.footer .footer-content-right {
    display: inline-block;
    vertical-align: middle;
}
.footer .footer-content-left {
    width: 80%;
}
.footer .footer-content-right {
    width: 19%;
    text-align: right;
}
.footer p {
    font-size: 18px;
}
@media (max-width: 1024px) {
    h1 {
        font-size: 30px;
        font-weight: normal;
    }
    .content-home p {
        font-size: 20px;
    }
    .content-left,
    .content-right {
        float: none;
        text-align: center;
    }
    .content-left {
        padding: 50px 0 0;
    }
    .content-right {
        padding: 20px 30px 25px;
    }
    .content-right img {
        margin: 0 auto;
    }
    .wrapper {
        margin-bottom: 0;
    }
    .push,
    .footer {
        height: auto;
    }
    .footer .footer-content {
        padding: 15px;
    }
    .footer .footer-content-left,
    .footer .footer-content-right {
        display: block;
        width: 100%;
        text-align: center;
    }
}