/* Basic Elements */
html{
	margin: 0px;
	padding: 0px;
	height: 100%;
	font-size: 55%;
}

body{
	width: 100%;
	height: 100%;
	margin: 0px;
	overflow-x: hidden;
	background: none;

}

section{
	height: 100vh;
}

/* Typography */

h1,h2,h3,h4,h5,p,ul,a{
	color:white;
  	font-family: "Merriweather",serif;
	font-weight:400;
}

h1{
	font-size:3.4rem;
	line-height:100%;
	margin-bottom:100px;
}

h2{
	font-size:2.4rem;
	line-height:160%;
	margin-bottom:20px;
}

h3{
	font-size:2.2rem;
	margin-bottom:30px;
}

h4{
	font-size:1.8rem;
}

p{
	font-size:1.8rem;
	line-height:160%;
}

.btn{
  padding: 15px 45px;
  border-radius: 0px;
  font-size: 1.6rem;
  line-height: 160%;
}

em {
	font-weight: 200;
}
/* Nav */

.navbar-logo {
	left: 18px;
	position: absolute;
}
.navbar-logo a {
	margin: 0 auto;
	padding: 10px;
	width: 45px;
	height: auto;
	display: block;
}

#home-link.active>a{
	background:#32b99a;
	color: white !important;
}

#daugherty-link.active>a{
	background-color: #548c3f;
	color: white;
}

#maritz-link.active>a{
	background-color: #01224c;
	color: white;
}

#coolfire-link.active>a{
	background-color: #010101;
	color: white;
}

#aspect-link.active>a{
	background-color: #95c93c;
	color: white;
}

#behaviorInsights-link.active>a{
	background-color: #00aeed;
	color: white;
}

#camp-link.active>a{
	background-color: #242424;
	color: white;
}

#tacticalCamp-link.active>a{
	background-color: rgb(240, 181, 24);
	color: white;
}

#pkaufmann-link.active>a{
	background-color: #CCC;
}

#winchester-link.active>a{
	background-color: #f26445;
}

#monsanto-link.active>a{
	background-color: #f0eddf;
}

#eveready-link.active>a{
	background-color: #dfdfdb;
}

/* Home */
@keyframes animatedBg {
	from { background-position: 0 0; }
	to { background-position: 0 100%; }
}

section#home {
	height: 100vh;
	color: #FFF;
	z-index: 10;
	/*background: #32b99a;
	background: url(/images/bg-repeat.png) #000 left bottom;*/
	background: #000;
	width: 100%;
	overflow-x: hidden;
}
section#home:before{
	content: ' ';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
	opacity: 0.6;
	background: url(/images/bg-repeat.png) transparent left bottom;
	animation: animatedBg 40s linear infinite;
	background-position: 0;
	animation: animatedBg 40s linear infinite;
	-ms-animation: animatedBg 40s linear infinite;
	-moz-animation: animatedBg 40s linear infinite;
	-webkit-animation: animatedBg 40s linear infinite;
}

section#home #blurb{
	margin-top: 25%;
}

section#home h1{
	margin: 15px auto 15px auto;
	text-align: left;
	font-size: 3.5em;
	font-size: 4.8rem;
	line-height: 115%;
	padding: 0;
	color: white;
	font-weight: 400;
}

section#home .btn{
	color: white;
	border: 2px solid white;
	background: #32b99a;
    -webkit-transition: all .5s; 
    transition: all .5s;
    margin-bottom: 5px;
}

section#home .btn:hover{
	border: 2px solid white;
	background: white;
	color: #32b99a;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

section#home .container{
	padding-left: 30px;
	padding-right: 30px;
}

#square{
	position: absolute;
	top: 0;
	left: 0;
}

#bottom_square{
	position: absolute;
	bottom: 0;
	right: 0;
}

section.example {
	height: 100vh;
	background: #FFF;
	z-index: 9999;
	position: relative;
}

.example .images{
	margin: 0px;
	background: white;
	padding: 45px;
	border-bottom: 1px solid #f5f5f5;
}

.example .images .inner{
	width: auto;
  	box-shadow: 0 -2px 5px 0 rgba(0,0,0,.26);
  	height: 100%;
}

.example .copy{

}

.example .copy, .example .images {
	height: 100%;

}

.example .description{
	padding: 50px 30px;
}

.description, h4{
	color: #aaa;
	font-size: 1.5rem;
}

.description h1{
  font-size: 2.8rem;
  margin: 0 0 20px;
  padding: 0;
  line-height: 150%;
}

.description a{
	text-decoration: underline;
	color: inherit;
}

.description a{
	-webkit-transition: all;
}

.description a:hover{
	-webkit-transition: all;
}

.description .cool{
	padding: 0px 0px 10px 0px;
}

.description .date{
  font-size: 1.3rem;
  line-height: 160%;
  margin: 0 0 9px;
  padding: 0;
  color: white;
}

.description p {
  font-size: 1.6rem;
  line-height: 185%;
  margin: 0 0 36px;
  padding: 0;
  color: white;
}

.description.multiple-btn .btn {
    margin-bottom: 4px;
}

.description .btn{
	border: 2px solid white;
	color: white;
}

.description a.btn{
	text-decoration: none;
}

.description .btn:hover{
	border: 2px solid white;
	color: #111;
	background: white;
	-webkit-transition: all;
}

/* Daugherty Job */

#daugherty {
	background: #548c3f;
}

#daugherty .images{
}

#daugherty .images > .inner{
	background-image: url('../images/projects/daugherty.jpg');
	background-size: cover;
	background-position-x: 0;
}


#daugherty .description h1{
	color: white;
}
#daugherty .description h4{
	color: #CCC;
}

#daugherty .description .btn{
	border: 2px solid transparent;
	background: #FFF;
	color: #548c3f;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

#daugherty .description .btn:hover{
	border: 2px solid #FFF;
	background: #548c3f;
	color: #FFF;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

/* Maritz Job */

#maritz {
	background: #01224c;
}

#maritz .images{
}

#maritz .images > .inner{
	background-image: url('../images/projects/maritz.png');
	background-size: cover;
	background-position-x: 50%;
}


#maritz .description h1{
	color: white;
}
#maritz .description h4{
	color: #CCC;
}

#maritz .description .btn{
	border: 2px solid transparent;
	background: #FFF;
	color: #01224c;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

#maritz .description .btn:hover{
	border: 2px solid #FFF;
	background: #01224c;
	color: #FFF;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

/* Coolfire Solutions Job */

#coolfire {
	background: #010101;
}

#coolfire .images{
}

#coolfire .images > .inner{
	background-image: url('../images/projects/coolfire-ronin.png');
	background-size: cover;
}


#coolfire .description h1{
	color: white;
}
#coolfire .description h4{
	color: #CCC;
}

#coolfire .description .btn{
	border: 2px solid transparent;
	background: #FFF;
	color: #010101;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}


#coolfire .description .btn:hover{
	border: 2px solid #FFF;
	background: #010101;
	color: #FFF;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

/* Aspect Software Job */

#aspect {
	background: #95c93c;
}

#aspect .images{
}

#aspect .images > .inner{
	background-image: url('../images/projects/aspect-overview.jpg');
	background-size: cover;
}


#aspect .description h1{
	color: white;
}
#aspect .description h4{
	color: #3c763d;
}

#aspect .description .btn{
	border: 2px solid transparent;
	background: #FFF;
	color: #95c93c;
	-webkit-transition: all .5s;
	transition: all .5s;
}


#aspect .description .btn:hover{
	border: 2px solid #FFF;
	background: #95c93c;
	color: #FFF;
	-webkit-transition: all .5s;
	transition: all .5s;
}

/* BehaviorInsights project */

#behaviorInsights {
	background: #00aeed;
}

#behaviorInsights .images{
}

#behaviorInsights .images > .inner{
	background-image: url('../images/projects/maritz.png');
	background-size: cover;
	background-position-x: 50%;
}


#behaviorInsights .description h1{
	color: white;
}
#behaviorInsights .description h4{
	color: #99CCFF;
}

#behaviorInsights .description .btn{
	border: 2px solid transparent;
	background: #FFF;
	color: #00aeed;
	-webkit-transition: all .5s;
	transition: all .5s;
}


#behaviorInsights .description .btn:hover{
	border: 2px solid #FFF;
	background: #00aeed;
	color: #FFF;
	-webkit-transition: all .5s;
	transition: all .5s;
}

/* Camp project */

#camp {
	background: #242424;
}

#camp .images{
}

#camp .images > .inner{
	background-image: url('../images/projects/camp-website-abstract-1.png');
	background-size: cover;
}

#camp .description h1{
	color: white;
}

/* Tactical camp project */

#tacticalCamp {
	background: rgb(240, 181, 24);
}

#tacticalCamp .images{
}

#tacticalCamp .images > .inner{
	background-image: url('../images/projects/camp-website-abstract-2.png');
	background-size: cover;
}

#tacticalCamp .description h1{
	color: white;
}
#tacticalCamp .description h4{
	color: #FFFF00;
}
/* PKaufmann */

#pkaufmann{
	background-color: #CCC;
	color: white;
}

#pkaufmann h4{
	color: white;
}

#pkaufmann .images > .inner{
	background-image: url('../images/projects/pkaufmann-website-abstract-1.png');
	background-size: cover;
}

#pkaufmann .description p, #pkaufmann .description h1{
	color: #FFF;
}

#pkaufmann .description .btn{
	border: 2px solid transparent;
	background: #424242;
	color: #CCC;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

#pkaufmann .description .btn:hover{
	border: 2px solid #424242;
	background: #CCC;
	color: #424242;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

/* Winchester */

#winchester{
	background-color: #f26445;
	color: white;
}

#winchester h4{
	color: white;
}

#winchester .images > .inner{
	background-image: url('../images/projects/winchester_blog.png');
	background-size: cover;
}

#winchester .images > .inner-2{
	background-image: url('../images/projects/Winchestercom_site.png');
	background-size: cover;
}

#winchester .description p, #winchester .description h1{
	color: #424242;
}

#winchester .description .btn{
	border: 2px solid transparent;
	background: #424242;
	color: #f26445;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

#winchester .description .btn:hover{
	border: 2px solid #424242;
	background: #f26445;
	color: #424242;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

/* Monsanto */

#monsanto{
	background-color: #f0eddf;
	color: white;
}

#monsanto .images > .inner{
	background-image: url('../images/projects/channel.png');
	background-size: cover;
}

#monsanto .description p, #monsanto .description h1{
	color: #424242;
}

#monsanto .description .btn{
	border: 2px solid transparent;
	background: #424242;
	color: #f0eddf;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

#monsanto .description .btn:hover{
	border: 2px solid #424242;
	background: #f0eddf;
	color: #424242;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

/* Eveready */

#eveready{
	background-color: #dfdfdb;
}

#eveready .images > .inner{
	background-image: url('../images/projects/Eveready_responsive2.png');
	background-size: cover;
}

#eveready .description p, #eveready .description h1{
	color: #424242;
}

#eveready .description .btn{
	border: 2px solid transparent;
	background: #424242;
	color: #dfdfdb;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

#eveready .description .btn:hover{
	border: 2px solid #424242;
	background: #dfdfdb;
	color: #424242;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

/* Cleanup section */
/*#cleanup {
    height: 0;
    color: #000;
    z-index: 1000000000;
    position: relative;
}
}
#cleanup .btn {
	border: 2px solid transparent;
	background: #424242;
	color: #dfdfdb;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

#cleanup .btn:hover{
	border: 2px solid #424242;
	background: #dfdfdb;
	color: #424242;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}*/
.calculated {
	bottom: 2em;
	position: absolute;
}

.slide-nav-button {
    background-color: transparent;
    background-image: url(/images/down-arrow-2x.png);
    background-repeat: no-repeat;
    width: 80px;
    height: 58px;
    background-size: contain;
    background-position-y: -100%;
    font-size: 2em;
    z-index: 100;
    border: 0;
    outline: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 93.125%;
    margin: auto;
    padding: 1em 0;
    -webkit-filter: drop-shadow(0px 0px 2px grey);
    filter: drop-shadow(0px 0px 2px grey);
    -moz-transition: background-position-y 800ms ease-in-out;
    -o-transition: background-position-y 800ms ease-in-out;
    -webkit-transition: background-position-y 800ms ease-in-out;
    transition: background-position-y 800ms ease-in-out;
}

.slide-nav-button:hover {
    background-position-y: 100%;
}

.start-again {
	position: absolute;
    bottom: -75px;
    text-align: center;
}
.start-again.visible-xs {
    width: 100%;
}
.start-again .btn{
	border: 2px solid transparent;
	background: #000;
	color: #FFF;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}

.start-again .btn:hover{
	border: 2px solid #000;
	background: #FFF;
	color: #000;	
    -webkit-transition: all .5s; 
    transition: all .5s;
}
#coolfire .images > .inner {
	background-position: center;
}
.example.small-image .images {
	padding: 0;
}
.example.small-image .images > .inner {
	background-position: center; background-repeat: no-repeat; background-size: 75% !important; box-shadow: none;
}
.portfolio-slider {
	height: 100%; width: 100%; display: block;
}
.description .logo img {
	float: right; margin: 0 0 7px 5px; max-width: 50px;
}
footer {
	background-color: #000;
	bottom: 0;
    display: inline-block;
	left: 0;
	position: fixed;
    text-align: center;
    width: 100%;
    z-index: 1000000;
    -webkit-transition: all .5s; 
    transition: all .5s;
}
footer ul.list-inline {
	background: #000;
    line-height: 50px;
    position: static;
    display: inline-block;
    height: 50px;
    margin-bottom: 0;
    width: 100%;
}
footer ul.list-inline a {
	color: #FFF;
    -webkit-transition: all .5s; 
    transition: all .5s;
}
footer ul.list-inline a:hover {
	opacity: .75;
	text-decoration: none;
}
.browserupgrade {
	color: #000;
}
.browserupgrade a {
	color: #337ab7;
}
.lt-ie9 section.example, .lt-ie9 section#home {
	height: 800px;
}
.lt-ie9 .wow {
	visibility: visible !important;
}