body {
    width: 100%;
    height: 100%;
    font-family: Lato,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #bebebe;
}

/* Fix for content overlapping Nav Bar */
body { padding-top: 60px; }
@media screen and (max-width: 768px) {
    body { padding-top: 40px; }
}

html {
    width: 100%;
    height: 100%;
}

h1 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p.lead {
	color: #FFF;
}

.light {
    font-weight: 400;
}

.navbar {
    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-brand {
    font-weight: 700;
}

.navbar-brand:focus {
    outline: 0;
}

.navbar-custom a {
    color: #fff;
}

.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.active {
    outline: 0;
    background-color: rgba(0, 195, 230, 0.4);
}

.navbar-toggle {
    /* padding: 4px 6px; */
    /* font-size: 16px; */
    color: #fff;
    background-color: rgba(0, 195, 230, 0.4);
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
}

@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, 0.3);
    }
}

.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    background: url(../img/cover.png) no-repeat bottom center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    
    -webkit-animation: fadein 0.5s; /* Safari and Chrome */
           -moz-animation: fadein 0.5s; /* Firefox */
            -ms-animation: fadein 0.5s; /* Internet Explorer */
             -o-animation: fadein 0.5s; /* Opera */
                animation: fadein 0.5s;
}

.intro-body {
    display: table-cell;
    vertical-align: middle;
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
    padding-bottom: 20px;
    
    -webkit-animation: fadein 0.5s; /* Safari and Chrome */
           -moz-animation: fadein 0.5s; /* Firefox */
            -ms-animation: fadein 0.5s; /* Internet Explorer */
             -o-animation: fadein 0.5s; /* Opera */
                animation: fadein 0.5s;
}

@media(min-width:767px) {
    .intro {
        height: 100%;
        padding: 0;
    }

    .brand-heading {
        font-size: 100px;
    }

    .intro-text {
        font-size: 25px;
    }
}

hr { 
	display: block; 
	height: 1px;
	border: 0; 
	border-top: 1px solid #FFF;
	margin: 1em 0; 
	padding: 0;
}

.intro-blurb {
    font-size: 18px;
    padding-top: 20px;
    font-weight: 300;
    
	-webkit-animation: fadein 2s; /* Safari and Chrome */
	-moz-animation: fadein 2s; /* Firefox */
	-ms-animation: fadein 2s; /* Internet Explorer */
	-o-animation: fadein 2s; /* Opera */
	animation: fadein 2s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari and Chrome */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}​

/* Opera */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}​

.protection {
	background-color: rgba(0, 0, 0, 0.4);
	padding: 40px;
}

a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{
	border-color:rgba(0, 195, 230, 0.5);
}

.text-primary, .text-primary:hover {
	color:rgba(0, 195, 230, 0.8);
}

.panel-primary {
	border-color: rgba(0, 195, 230, 0.4);
}
.panel-primary > .panel-heading {
	background-color:rgba(0, 195, 230, 0.4);
  	background-repeat: repeat-x;
  	border-color: rgba(0, 195, 230, 0.4);
}

a {
	color:rgba(0, 195, 230, 0.8);
}

.page-header {
	padding-bottom:9px;
	margin:40px 0 20px;
	border-bottom: 1px solid rgba(0, 195, 230, 0.6);
}