
#newsletter_wrapper {
	width: 100%;
	min-height: 600px;
	position: relative;
	
	background: url(../Images/newsletter_background.jpg); 
	background-repeat: no-repeat;
	background-position: center center;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#newsletter_background_cover {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	
	background: rgba(19, 19, 19, 0.3);
}

#newsletter_inner_wrapper {
	max-width: 1280px;
	height: 100%;
	margin: 0 auto;
	position: relative;
	
	opacity: 0;
	
	-webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -o-transition: all 1s linear;
    -ms-transition: all 1s linear;
    transition: all 1s linear;
}

#newsletter_inner_wrapper div {
	min-width: 640px;
	height: 100%;
	display: table;
	float: left;
	
	text-align: center;
}

#newsletter_inner_wrapper div span {
	width: auto;
	height: auto;
	display: table-cell;
    vertical-align: middle;
	
	text-align: center;
}

#newsletter_inner_wrapper div span span {
	width: auto;
	height: auto;
	display: inline-block;
}

#newsletter_inner_wrapper h1 {
	color: #FAFAFA;
	font-weight: normal;
	text-shadow: 1px 1px #1e1915;
	font-size: calc(28px + 0.5vw);
}

#newsletter_inner_wrapper p {
	margin-top: 15px;
	
	text-align: left;
	color: #FAFAFA;
	font-weight: normal;
	font-size: calc(16px + 0.5vw);
	text-shadow: 1px 1px #1e1915;
}

#newsletter_inner_wrapper input {
	width: 60%;
	height: 40px;
	padding: 10px 15px;
	
	background: transparent;
	color: #FAFAFA;
	font-size: calc(18px + 0.5vw);
	text-shadow: 1px 1px #333333;
	
	border: none;
	border-bottom: 3px solid #16b4e9;
	
	-moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
	box-sizing: border-box;
	
	-webkit-box-shadow: 0px 1px 0px #262626;
	-moz-box-shadow: 0px 1px 0px #262626;
	box-shadow: 0px 1px 0px #262626;
}

#newsletter_inner_wrapper input:hover {
	border-bottom-color: #1290ba;

	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	-o-transition: all 100ms ease-in;
	-ms-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
}

#newsletter_inner_wrapper input:focus {
	border-bottom-color: #1290ba;
}

#newsletter_inner_wrapper button {
	width: 60%;
	height: 45px;
	margin-top: 15px;
	
	background: #16b4e9;
	color: #FAFAFA;
	font-size: calc(14px + 0.5vw);
	text-shadow: 1px 1px #1290ba;
	
	border: 1px solid #1290ba;
	
	-webkit-box-shadow: 1px 1px 1px #262626;
	-moz-box-shadow: 1px 1px 1px #262626;
	box-shadow: 1px 1px 1px #262626;
}

#newsletter_inner_wrapper button:hover {
	cursor: pointer;
	background: #1290ba;
	text-shadow: 1px 1px #107ea2;

	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	-o-transition: all 100ms ease-in;
	-ms-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
}

@media only screen and (max-width: 1296px) {
	#newsletter_inner_wrapper div {
		width: 100%;
		min-width: 0px;
		height: 300px;
		display: block;
		float: left;
	}
	
	#newsletter_inner_wrapper div span {
		width: 100%;
		height: auto;
		display: block;
		margin-top: 50px;
	}
	
	#newsletter_inner_wrapper div #newsletter_info {
		width: 80%;
		margin: 50px auto 0px auto;
		
		text-align: left;
	}
	
	#newsletter_inner_wrapper h1 {
		font-size: calc(24px + 0.5vw);
		
		text-align: left;
	}
	
	#newsletter_inner_wrapper input {
		width: 80%;
	}
	
	#newsletter_inner_wrapper button {
		width: 80%;
	}
}
