html, body {
    height: 100%;
}

body {
    margin: 0px;
    font-family: "Montserrat", sans-serif;
}

header {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 92px;
    background-color: #ffffff;
}

header div.header_inner {
    height: 100%;
    width: 70%;
    margin: 0 auto;
}

header div.header_inner .left {
    width: 120px;
    height: 100%;
    float: left;
}

header div.header_inner .left a.logo_holder {
    display: block;
    height: 52px;
    margin: 20px 20px 20px 0px;
}

header div.header_inner .left a.logo_holder img {
    width: 84px;
}

header div.header_inner .right {
    width: calc(100% - 120px);
    height: 100%;
    float: left;
}

header div.header_inner .right ul {
    display: block;
    list-style-type: none;
    display: block;
    float: right;
    margin: 37px 0px;
}

header div.header_inner .right ul li {
    display: block;
    float: left;
    margin-right: 20px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(0,0,0,0.65);
    transition: color 0.3s ease-in-out;
}

header div.header_inner .right ul li a:link, header div.header_inner .right ul li a:visited {
    color: rgba(0,0,0,0.65);
    text-decoration: none;
}

header div.header_inner .right ul li a:hover {
    color: rgba(0,0,0,1);
}

.clearfix {
    clear: both;
    overflow: hidden;
}

section.content {
    width: 100%;
    margin: 92px 0px 0px 0px;
    padding: 0px;
}

section.content div.hero {
    width: 100%;
}

section.content div.hero.grey-bg {
    background-color: #f2f2f2;
}

section.content div.hero div.hero_inner {
    width: 70%;
    margin: 0 auto;
}

.main_content_padding {
    padding: 120px 0px;
}

section.content div.hero div.hero_inner div.left {
    width: 50%;
    float: left;
}

section.content div.hero div.hero_inner div.right {
    width: 50%;
    float: left;
    height: 100%;
}

section.content div.hero div.hero_inner div.right.white-bg {
    background-color: #ffffff;
}

section.content div.separator {
    width: 100%;
    height: 5px;
    background-color: #f2f2f2;
}

section.content div.hero div.hero_inner * h2 {
    font-size: 28px;
    margin: 20px 20px 20px 20px;
}

section.content div.hero div.hero_inner * p {
    font-size: 16px;
    margin: 20px;
    display: block;
    width: 70%;
}

a.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0px 20px 20px 20px;
    border: 2px solid #222222;
    font-weight: 400;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

a.btn:visited {
    color: #222222;
}

.gfm-embed {
    padding: 20px;
    margin: 0 auto;
    width: 90%;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0px 3px 10px 3px #2222221f;
}

a.btn:link {
    color: #222222;
    text-decoration: none;
}

a.btn:hover {
    background-color: #222222;
    color: #ffffff;
}

img.feature-img {
    width: 90%;
    margin-top: 70px;
    border-radius: 15px;
}

a.social_link {
    font-size: 50px;
    color: #222222;
    margin-right: 20px;
}

footer {
    width: 100%;
    height: 42px;
    background-color: #222222;
    line-height: 42px;
    text-align: center;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
}

footer a {
    color: #ffffff;
}

@media screen and (max-width: 1200px){
    section.content div.hero div.hero_inner {
        width: 90%;
    }
}

@media screen and (max-width: 880px){
    section.content div.hero div.hero_inner div.left {
        width: 100%;
    }

    section.content div.hero div.hero_inner div.right {
        width: 100%;
    }

    img.feature-img {
        margin-top: 20px;
        width: 100%;
    }

    section.content div.hero div.hero_inner * p {
        width: calc(100% - 40px);
    }

    .main_content_padding {
        padding: 20px 0px;
    }

    header div.header_inner .right {
        display: none;
    }

    header div.header_inner .left {
        width: 100%;
    }

    header div.header_inner .left a.logo_holder {
        margin: 20px auto;
        text-align: center;
    }

    section.content {
        padding-bottom: 40px;
    }
}