html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
    font-family: 'Source Sans Pro', sans-serif;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*margin: 0 !important;*/
}

body {
	margin: 0;
    color: #4A4A4A;
    font-size: 18px;
    line-height: 27px;
}

.container {
    width: 100%;
    position: relative;
}

.banner {
    width: 100%;
    position: relative;
    height: 23vh;
    background-image: url(../img/homepage.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.content-holder {
    width: 100%;
    max-width: 690px;
    padding: 0;
    margin: 10vh auto;
    position: relative;
    overflow: auto;
}

.content-holder:after {
    display: none;
}

.logo {
    max-width: 230px;
    display: block;
    margin: 0 auto 20px;
}

h1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.right p:first-of-type {
    margin-top: 0;
}

.right p.smaller {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}

a, a:visited {
    color: #2D9CDC;
    font-weight: 600;
    opacity: 1;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.left,
.right {
    width: calc(100% - 40px);
    display: block;
    padding: 0 20px;
    text-align: center;
}

.left {
    float: left;
    position: relative;
    top: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-bottom: 30px;
}

.right {
    float: left;
}



/*--------------------------------------------------------------
## MEDIA QUERIES
--------------------------------------------------------------*/
@media (min-width: 768px) {
    .left,
    .right {
        width: calc(50% - 40px);
        display: inline-block;
        padding: 0 20px;
        text-align: left;
    }

    .left {
        float: left;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-bottom: 0;
    }

    .right {
        float: right;
    }
    
    .content-holder:after {
        background-color: #9B9B9B;
        width: 1px;
        height: 100%;
        position: absolute;
        left: 47%;
        top: 0;
        content: '';
        display: block;
    }
    
    .logo {
        max-width: 230px;
        display: block;
        margin: 0 0 20px 0;
    }
    
    .content-holder {
        margin: 20vh auto;
    }
}