@import url('https://fonts.googleapis.com/css?family=Arvo:400,700');

body {
	font-family: 'Arvo', serif;
}

.uppercase {
	text-transform:uppercase;
}


.content-area {
	background:url(../images/bg.jpg) no-repeat center center;
	background-size:cover;
	height:100vh;
	position:relative;
	color:#fff;
	z-index:;
}

.content-area:after {
	position:absolute;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:#000;
	content:"";
	z-index:-1;
	opacity:.6;
}

.content-area .container {
	height:100%;
}
.content-area .row {
	height:100%;
}


.content-item-table {
	height:80%;
	display: table;
    width: 100%;
    text-align: center;
    padding: 50px;
}

.content-item-tablecell {
	height:100%;
	display: table-cell;
    vertical-align: middle;
}

.content-item-tablecell h2 {
	font-size:35px;
	text-transform:uppercase;
	margin-bottom:10px;
}
.content-item-tablecell p {
	font-size:14px;
	margin-bottom:30px;
}
.content-item-tablecell form {
	margin-bottom:20px;
}
.content-item-tablecell input,button {
	width:35%;
	height:45px;
	border-radius:2px;
}
.content-item-tablecell input {
	color:#000;
	font-size:14px;
	border:0px;
	text-indent:10px;
	margin-bottom:15px;
}
.content-item-tablecell input:focus {
	border:0px;
}
.content-item-tablecell button {
	border:0px;
	background:#2C2C2C;
	color:#fff;
	font-size:16px;
	font-weight:700;
	text-transform:uppercase;
}

.thanks-link {
	color:#fff;
	font-size:22px;
	border-bottom:2px solid #fff;
}

.thanks-link:hover {
	color:#fff;
	text-decoration:none;
}

.social2 {
	color:#fff;
		
}

.social2:hover {
	color:#fff;
}


.social {
	margin-top:50px;
}

.social a {
	margin:0 10px;
}

.close-btn {
	font-size:38px;
	font-weight:700;
	color:#fff;
}

.close-btn:hover {
	color:#fff;
	text-decoration:none;
}







/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) { 
 .content-item-tablecell input,button {
	 width:50%;
 }
    
}
/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) { 
 .content-item-tablecell input,button{
	 width:70%;
 }
    
}
/* Wide Mobile Layout: 480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) { 
.content-item-tablecell input,button{
	width:70%;
}
}