@charset "utf-8";

/* CSS Document */

@import url(font.css);

* {
	margin: 0;
	padding: 0;
}
ul, ol {
	list-style: none;
	margin: 0;
}
a:hover, a:focus {
	outline: none;
	border: none;
	text-decoration: none;
}
p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
}
a,div, ul, img {
	transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
}
body {
	background: #fff;
	font-family: 'Dense-Regular';
	font-weight: normal;
}
.landing-inner {
	width: 560px;
	margin: 50px auto;
	text-align: center;
	overflow: hidden;
}
.landing-inner h1 {
	font-family: 'Montserrat-SemiBold';
	font-weight: normal;
	font-size: 56px;
	text-transform: uppercase;
	padding: 60px 0;
	color: #1c2432;
}
.subscribe-form {
	width: 100%;
	float: left;
	padding: 0 80px 15px;
}
.subscribe-form h2 {
	width: 100%;
	float: left;
	background: #ec5631;
	font-size: 50px;
	color: #fff;
	padding: 6px 0;
	text-transform: uppercase;
}
.subscribe-form form {
	width: 100%;
	float: left;
	min-height: 150px;
	background: #fff;
	padding: 15px 20px;
	box-shadow: 0 3px 4px #dcdcdc;
}
.subscribe-form form input[type="text"] {
	width: 100%;
	float: left;
	color: #cecece;
	font-size: 46px;
	border: solid 1px #dddddd;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 12px;
	background: url(../images/name-bg.png) 10px center no-repeat;
}
.subscribe-form form input[type="email"] {
	width: 100%;
	float: left;
	color: #cecece;
	font-size: 46px;
	border: solid 1px #dddddd;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 12px;
	background: url(../images/mail.png) 10px center no-repeat;
}
.subscribe-form form input[type="submit"] {
	width: 100%;
	float: left;
	color: #fff;
	font-size: 42px;
	border: none;
	text-transform: uppercase;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 12px;
	background: #ec5631;
}
.header, .thankyou-text {
	text-align: center;
	width: 100%;
	float: left;
	padding: 20px 0;
}
.thankyou-text h1 {
 padding: 30px 0 50px;
 font-size: 40px;
}
.thankyou-text p {
 font-size: 30px;
}



@media only screen and (max-width: 599px) {
.landing-inner {
  width: 100%;
}	
.logo {
	width: 100%;
}
.logo img {
	width: 100%;
}
.landing-inner h1 {
  font-size: 40px;
}
.subscribe-form {
  padding: 0 20px 15px;
}
}

@media only screen and (max-width: 479px) {
.landing-inner h1 {
  font-size: 30px;
  padding: 40px 0;
}
.subscribe-form {
  padding: 0 5px 15px;
}
}










