/*
*Clean CSS
*By: Christian Wood
*Last Update: November 5 2013
*/





/**********************************

	Needs serious cleanup. But it's a step towards a really clean layout framework.

**********************************/


/*Google font import*/
@import url(http://fonts.googleapis.com/css?family=Lato:400,900,300);



/**********************************
$Components
**********************************/

#video-holder {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#bg-video {
    position: relative;
    top: 0px;
    left: 0px;
    min-height: 100%;
    width: auto;
    min-width: 100%;
    -webkit-animation: videoEase 1.2s ease-in-out;
}

#overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #37324A;
    background-image: url('../blue.png');
    opacity: 0.9;
    -webkit-animation: myfirst .5s ease-in-out;
    
}

.transparent {
	background: transparent;
}


/**********************************
$Elements
**********************************/

* {
    box-sizing: border-box;
    line-height: 1.5;
	font-size: 1em;
}

html, body {
	color: #414141;
}

img {
    border: 0;
}

section, header, footer {
	position: relative;
	margin: 0 auto;
	width: 100%;
	padding: 1em;
}


.nav {
	padding: 1em;
	text-align: center;
}


.nav a {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 105%;
	margin-right: 1em;
	color: #333;
}

.nav a:hover {
	color: #ff5000;
}


.no-pad {
	padding: 0em 1em 0em 1em;
}


footer {
	border-top: 1px dotted rgba(255, 80, 0, 0.25);
	margin-bottom: 0em;
	color: #fff;
}


h1, h2, h3 {
    margin: 0;
    padding: 0;
	font-weight: 900;
	font-family: 'Lato', sans-serif;
	margin-bottom: 1.5rem;
}

h1 {
    font-size: 300%;
}

h2 {
    font-size: 175%;
    color: inherit;
}

h3 {
	font-weight: 400;
	font-size: 125%;
}

p {
    margin: 0 auto;
    font-family: 'Libre Baskerville', 'Georgia', serif;
    font-size: 105%;
    line-height: 1.6;
    color: inherit;
    margin-bottom: 1.5em;
	text-align: left;
}

a {
	text-decoration: none;
	color: #ff5000;
}

/* start da css for da buttons */
.btn {
  border-radius: 5px;
  padding: 15px 25px;
	font-size: 1.1rem;
	font-weight: 300;
  text-decoration: none;
  
  color: #fff;
  position: relative;
  display: inline-block;
	transition: all .1s ease;
}

.btn:active {
  transform: translate(0px, 5px);
  -webkit-transform: translate(0px, 5px);
  box-shadow: 0px 1px 0px 0px;
}

.orange {
  background-color: #FF5000;
  box-shadow: 0px 5px 0px 0px #cb4100;
}

.orange:hover {
  background-color: #FF7B3D;
}

.centered {
    text-align: center;
}

.inset {
	box-shadow: 0px 0px 4px #d0d0d0;
}


img.medium {
	width: 60%;
}

img {
	width: 100%;
	max-width: 100%;
}

.grow { 
	transition: all .2s ease-in-out; 
}

.grow:hover { 
	transform: scale(1.05); 
}


/**********************************
$Grid
**********************************/

.wrapper {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

[class*='col-'] {
	float: left;
	width: 100%;
}


.grid:after {
  content: "";
  display: table;
  clear: both;
}

.grid {
	/*border: 1px solid #f2f2f2;*/
}

.grid.project {
	/*border-bottom: 1px solid #e6e6e6;*/
}


.bg {
	background: url('../img/collage.png') no-repeat center center fixed; 
	  -webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
}

.paint {
	background: url('https://lostandtaken.com/wp-content/uploads/edd/2016/02/colorful-watercolor-paint-texture-1-1560x1798.jpg');
	background-size: cover;
}

.dark {
	background: #2c2c2c;
	color: #fff;
}

.purple {
	background: #271f2a;
	color: #fff;
}

.gray {
	background: #fafafa;
}

.hero {
	position: relative;
	display: table;
	height: 12em;
	vertical-align: middle;
	z-index: 1;
}

.hero-first {
	height: 20em;
	color: #fff;
}

.hero-first h1 {
	color: #fff;
	text-shadow: 1px 1px 3px #333;
}



.hero h1 {
	display: table-cell;
    vertical-align: middle;
}


*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


[class*='col-'] {
	padding: 1em;
}


[class*='col-']:last-of-type {
	padding-right: 0;
}

.col-1-1 {
	padding: 1em 0em 1em 0em;
}


.circle {
	border-radius: 100%;
}


.logo {
	text-align: center;
	padding: 1.5em 0em 0em 0em;
}


.rollin {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-animation-name: rollin;
            animation-name: rollin;
    position: relative;
}


@-webkit-keyframes rollin {
  from {
	  transform: scale(0.1);
      opacity: 0;
      filter: alpha(opacity=0);
  }

  to {
	  transform: scale(1);
      opacity: 1;
      filter: alpha(opacity=100);
  }
}

@keyframes rollin {
  from {
	  transform: scale(0.1);
      opacity: 0;
      filter: alpha(opacity=0);
  }

  to {
	  transform: scale(1);
      opacity: 1;
      filter: alpha(opacity=100);
  }
}


/**********************************
$Media Queries
**********************************/

/* Use ems for media queries to not break browser zooming */

@media screen and (min-width: 40em)
{
	
	* {
		font-size: 1em;
	}
	
	.logo {
		text-align: left;
		padding: 1em;
	}
	
	.hero-first {
		height: 25em;
		color: #fff;
	}
	
	
	.nav {
		padding: 1em;
		text-align: right;
	}

	.nav a {
		margin-left: 1em;
	}
	
	
	.col-1-1 {
		width: 100%;	
	}
	
	.col-1-4 {
	  width: 25%;
	}
	
	.col-1-5 {
		width: 20%;	
	}
	
	.col-2-5 {
		width: 40%;
	}
	
	.col-3-5 {
		width: 60%;
	}
	
	.col-4-5 {
		width: 80%;
	}

	.col-3-4 {
	  width: 75%;
	}

	.col-1-2 {
	  width: 50%;
	}

	.col-2-3 {
	  width: 66.66%;
	}

	.col-1-3 {
	  width: 33.33%;
	}
	

	

}
