
body {
    width: 100%;
    height: 100%;
    font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #fff;
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

h1 {
    font-family: 'Lora', serif;
    font-weight: 400;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}

@media(min-width:767px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}

a {
    color: #219ab3;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #11505d;
}

.light {
    font-weight: 400;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #000;
}

.navbar-custom .navbar-brand {
    font-weight: 400;
    font-size: 1.1em;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 3px 3px;
    font-size: 16px;
    color: #000;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.navbar-custom a {
    color: #898989;
}

.navbar-custom .nav li.active {
    outline: none;
    background-color: rgba(255,255,255,.3);
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a.active {
    outline: 0;
    background-color: rgba(255,255,255,.3);
}

@media(min-width:767px) {
    .navbar {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
        background-color: #000;
    }

    .navbar-custom.top-nav-collapse {
        border-bottom: 1px solid rgba(255,255,255,.3);
    }
}

.intro {
    display: table;
    width: 100%;
    height: auto;

    padding: 100px 0 0 0;
    text-align: center;
    color: #898989;
    background-color: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
    text-align: center;
    margin-bottom: 0px;

}

.intro .intro-body .intro-text {
    font-size: 18px;
}

@media(min-width:767px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 90px;
    }

    .intro .intro-body .intro-text {
        font-size: 25px;
    }
}

.btn-main {
    width: 200px;
    height: 40px;
    margin: 40px 35px 0px 35px;
    border-top: 1px solid #898989;
    border-radius: 3px;
    font-size: 40px;
    color: #898989;
    background: 0 0;
    text-align: center;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

#vossgold li {
    display: inline-block;
    text-align: center;
    margin-left: -40px;
}

ul {
    list-style-type: disc;
}

.btn-main:hover,
.btn-main:focus {
    outline: 0;
    color: #000;
    /* background: rgba(255,255,255,.1); */
}

.btn-main i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-main:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding-top: 0;
}

.download-section {
    width: 100%;
    padding: 50px 0;
    color: #fff;
    background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 100px;
}

@media(min-width:767px) {
    .content-section {
        padding-top: 250px;
    }

    .download-section {
        padding: 100px 0;
    }

    #map {
        height: 400px;
        margin-top: 250px;
    }
}

.btn {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #219ab3;
    color: #219ab3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #219ab3;
    outline: 0;
    color: #000;
    background-color: #219ab3;
}

ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}

footer {
    padding: 10px 0;
    background: #fff;
    margin-top: 0;
    vertical-align: middle;
}

footer p {
    margin: 0;
    font-size: 0.95em;
    color: #898989;

}

footer li {
    margin: 50px;
}

footer a {
    color: #898989;
}


::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: #C0C0C0;
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: #C0C0C0;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #C0C0C0;
}

#gold_about {
    text-align: left;
    color: #000;
    padding-top: 75px;
}

#goldinfo {
    width: 150px;
    height: 350px;
    background: #fff;
    float: left;
}

#goldbio {
    margin-left: 200px;
    background: #fff;
    clear; left;
    margin-top: 10px;
}

#goldinfo p {
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 0.9em;
}

#goldbio p {
    line-height: 1.3em;
    font-size: 1.1em;
    margin-bottom: 1em;
}

#goldbio h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

#voss_about {
    text-align: left;
    color: #000;
    padding-top: 75px;
}

#vossinfo {
    width: 200px;
    height: 350px;
    background: #fff;
    float: left;
}

#vossbio {
    margin-left: 200px;
    background: #fff;
    clear; left;
    margin-top: 10px;
    min-height: 550px;
}

#vossinfo p {
    margin-top: 15px;
    margin-bottom: 10px;
    line-height: 1.25;
    font-size: 0.9em;
}

#vossbio p {
    line-height: 1.3em;
    font-size: 1.1em;
    margin-bottom: 1em;
}

#vossbio h2 {
    margin-bottom: 30px;
    font-size: 1.5em;
}

#wrapper {
    height: 100%;
    min-height: 100%;
    position: relative;
}

#vosslinks {
    font-size: 1.1em;
}

#vosslinks a {
    color: #219ab3;
    margin-bottom: 5px;
}

#vossbio h5{
    margin-top: 25px;
    margin-bottom: 20px;
}

#otherlinks p {
    line-height: .75em;
}

#otherlinks h5 {
    margin-bottom: 10px;
}

.essay p {
    font-size: 1.1em;
    line-height: 1.3em;
    margin: 15px;
}
span {
    font-weight: bold;
}

#essay_outer {
    text-align: left;
    color: #000;
    padding-top: 75px;
}

.essay h4 {
    margin: 5px;
}

#preamble {
    margin: 0px;
}

#calories_list p {
    margin: 15px;
}

#easycron_head h3 {
    margin-bottom: 15px;
}

#easycron_head {
    margin-bottom: 35px;
}

#vossbio ul {
    list-style-type: disc;
}

#smartactionlogo {
    height: 55px;
    margin-top: 35px;
}

.email {
    font-size: 1.1em;
}

#agi3logo {
    margin-top: 70px;
    height: 75px;
    width: 75px;
}



/*!
 * Grayscale Bootstrap Theme (http://startbootstrap.com) - with changes
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */
