@import url('//fonts.googleapis.com/css?family=Anton');

/**
    MAIN STYLES
 */
body {
    background-color: black;
    font-size: 1.75em;
    color: #fff;
}

section {
    margin: 80px 0;
}

h1 {
    font-size: 5em;
    font-family: 'Anton', sans-serif;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 60px;
}
h2 {
    font-size: 5em;
    font-family: 'Anton', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Source Sans Pro', sans-serif;
    color: #dfdfdf;
    font-weight: normal;
    line-height: 1.6em;
}

@media screen and (max-width: 485px) {
    h1 {
        font-size: 4em;
    }
    h2 {
        font-size: 3.5em;
    }
}

/**
    BUTTON
 */
.btn-secondary {
    color: #333;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 30px;
    background-color: #efefef;
}

/**
    NAVBAR
 */
.navbar-default {
    background-color: #fff;
    border-color: transparent;
    margin-top: 30px;
}
.navbar-default .navbar-nav > li > a {
    color: #000;
    font-family: 'Anton', sans-serif;
    font-size: 40px;
}
.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: #000;
}

.navbar-default .navbar-toggle {
    border-color: #333;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #666;
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 0;
    }
}
@media screen and (max-width: 485px) {
    .navbar-default .navbar-nav > li > a {
        font-size: 32px;
    }
}


/**
    BIO SECTION
 */
.bio-pic {
    width: 25%;
}

@media screen and (max-width: 485px) {
    .bio-pic {
        width: 50%;
    }
}

/**
    VIDEO
 */
.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
.callout-upload {
    border: 1px solid #4a4a4a;
    margin: 30px 0 0;
    padding: 17px 0 40px;
    background-color: #2f2f2f;
}

/**
    FIRST SUBMISSION POPUP
 */
.email-submitted {
    background-color: #9eefac;
    padding: 12px;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #333;
    border: 3px solid #fff;
}

.first_sub_popup_overlay {
    visibility: hidden;
    background-color: rgba(10, 10, 10, 0.72);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    z-index: 20;
}
.first_sub_popup_overlay.is_visible {
    visibility: visible;
    opacity: 1;
}

.first_sub_popup_overlay .first_sub_popup {
    position: relative;
    max-width: 480px;
    height: auto;
    margin: 20% auto 0;
    background-color: #efefef;
    color: #333;
    padding: 15px;
    border: 1px solid #4a4a4a;
    border-radius: 10px;
}
.first_sub_popup_overlay .first_sub_popup p {
    color: #333;
}
.first_sub_popup_overlay .first_sub_popup #firstSubCloseButton {
    position: absolute;
    top: -11px;
    right: -9px;
    color: #333;
    text-align: center;
    background-color: #fff;
    padding: 7px 12px;
    border-radius: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 8px #b5b5b5;
}

@media screen and (max-width: 485px) {
    .first_sub_popup_overlay .first_sub_popup {
        margin: 20% 15px 0;
    }
}

/**
    OTHER
 */
.highlight-testimonial-text {
    color: #bdbcbc;
    font-style: italic;
    font-size: 17px;
}

.larger-plain-text {
    font-size: 1.4em;
    font-weight: bold;
}

light a {
    display: inline-block;
    padding: 5px;
}

light a:hover {
    background-color: #D3D3D3;
}

blockquote {
    font-weight: 500;
    font-style: normal;
    font-size: 0.75em;
    line-height: 25px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #808080;
    border-left: 3px solid #4d4d4d;
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
    color: #737373;
    font-size: 2em;
    line-height: 0.5em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}
blockquote p {
    display: inline;
}


@media screen and (max-width: 485px) {
    .testimonials {
        display: none;
    }
}