/* Montserrat from google fonts */
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);

/* general styles */
html, body{
	overflow: hidden;
	font-family: 'Montserrat', sans-serif;
}

.borders{
	width:100%;
	height:100%;
	position: absolute;
	top:0;
	left:0;
	z-index: 2;
	border:10px solid #fff;
	background:rgba(0,0,0,0.4);
}

/* kenburns wrapper */

.wrapper {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	z-index: 1;
}

/* main content */

.content{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	z-index: 3;
	color:#fff;
	text-align: center;
}


.logo{
	max-width:150px;
	margin-top:45px;
}


h2{
	text-transform: uppercase;
	margin-top:30px;
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
	padding:0 20px;
}


.input-email{
	font-size:15px;
	font-family: 'Montserrat', sans-serif;
	border:3px solid #fff;
	background:none;
	padding:10px;
	outline: none;
	max-width:150px;
}

::-webkit-input-placeholder {
   color: #fff;
}

:-moz-placeholder { /* Firefox 18- */
   color: #fff;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #fff;  
}

:-ms-input-placeholder {  
   color: #fff;  
}

.input-submit{
	border:0;
	padding:13px;
	background:#fff;
	color:#000;
	font-size:15px;
}

.signup input[type=submit]:hover{
	background:#eee;
}

.engage{
	position: absolute;
	bottom:40px;
	left:0;
	text-align: center;
	width:100%;
}
.social{
	margin-top:40px;
}

.social a:first-child{
	margin-right: 10px;
}

.social a{
	opacity: 0.8;
	 -webkit-transition: all 0.1s ease-out;
     -moz-transition: all 0.1s ease-out;
      -ms-transition: all 0.1s ease-out;
       -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
}

.social a:hover{
	opacity:1;
}

.social img{
	width:40px;
}


/* desktop styles */

@media only screen and (min-width: 768px) {
	.borders{
    	border:30px solid #fff;
  	}
	.logo{
		max-width: 237px;
		margin-top:100px;
	}
  	h2{
  		margin-top:80px;
		font-size:50px;
		line-height: 60px;
		margin-bottom: 60px;
  	}
  	.input-email{
		font-size:20px;
		font-family: 'Montserrat', sans-serif;
		border:3px solid #fff;
		background:none;
		padding:15px;
		outline: none;
		max-width:400px;
		display: inline-block;
		margin:0 auto;
	}
	.input-submit{
		border:0;
		padding:18px;
		color:#000;
		font-size:20px;
		display: inline-block;
		margin:0 0 0 15px;
	}
	.engage{
		position: absolute;
		bottom:90px;
		text-align: center;
		width:100%;
	}
	.social{
		margin-top:40px;
	}

	.social a:first-child{
		margin-right: 10px;
	}

	.social a{
		opacity: 0.8;
		 -webkit-transition: all 0.1s ease-out;
	     -moz-transition: all 0.1s ease-out;
	      -ms-transition: all 0.1s ease-out;
	       -o-transition: all 0.1s ease-out;
	          transition: all 0.1s ease-out;
	}

	.social a:hover{
		opacity:1;
	}
	
	.social img{
		width:50px;
	}


}