/*
==========================================================================

	Color summary

	White:			#fff;
	Black:			#000;
	Grey:			#999;
	Grey (dark):	#343434;
	Red:			#e73029;

==========================================================================
	Algemene styles
==========================================================================
*/

* {
	font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}

*:focus {
	outline: none !important;
}

html {
    height: 100%;
}

body {
	height: 100%;
	padding: 0px;
	margin: 0px;
	font-size: 16px;
	position: relative;
	background-color: #fff;
	background: -webkit-linear-gradient(#fff, #eee);
	background: -o-linear-gradient(#fff, #eee);
	background: -moz-linear-gradient(#fff, #eee);
	background: linear-gradient(#fff, #eee);
	background-position: fixed;
}

a,
img,
a img {
	border: none;
}

a {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	color: #e73029;
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: #006ab1;
}

p {
	color: #343434;
	font-size: 1em;
	line-height: 1.4em;
}

.clear {
	display: block;
	width: 100%;
	clear: both;
	height: 0px;
}

.container {
	
}

.text-justify {
	text-align: justify;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

p.intro {
	
}

.btn {
	display: inline-block;
	height: 50px;
	padding: 12px 20px;
	background: none;
	border: none;
	border: 1px solid #eee;
	border-radius: 50px;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	box-shadow: 0px 2px 5px rgba(0,0,0,.1);
}

.btn:hover,
.btn:focus,
.btn:active {
	
}

.btn-primary {
	color: #fff;
	background-color: #e73029;
	border-color: #e73029;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
	color: #343434;
	background-color: #fff;
}

.btn-secundary {
	
}

.btn-secundary:hover,
.btn-secundary:focus,
.btn-secundary:active {
	
}

.btn i {
	margin-right: 10px;
}

.nomargin {
	margin: 0px !important;
}

.nopadding {
	padding: 0px !important;
}

.imgresponsive {
	max-width: 100%;
	height: auto;
}

/* 
==========================================================================
	Concrete styles: header
==========================================================================
*/

#header {
	padding: 100px 0 0;
}

#brand {
	display: block;
	text-align: center;
	margin-bottom: 30px;
}

#brand img {
	width: 400px;
}

/* 
==========================================================================
	Concrete styles: main section (form)
==========================================================================
*/

#form_wrapper {
	position: relative;
	padding: 10px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	border-color: rgba(0,0,0,.1);
	margin-bottom: 30px;
}

#form_wrapper h1 {
	font-weight: 300;
	font-size: 1.5em;
	text-align: center;
}

#form_wrapper form {
	margin: 20px;
	position: relative;
	z-index: 1;
}

#form_wrapper form input {
	display: inline-block;
	height: 50px;
	width: 100%;
	padding: 12px 20px;
	background: none;
	border: none;
	border: 1px solid #eee;
	border-color: rgba(0,0,0,.1);
	border-radius: 50px;
	color: #343434;
	background-color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	box-shadow: 0px 2px 5px rgba(0,0,0,.05);
}

#form_wrapper form input:focus {
	border-color: #e73029;
}

#form_wrapper form button {
	width: 100%;
}

/* 
==========================================================================
	Concrete styles: footer
==========================================================================
*/

#footer {
	padding: 20px 0 30px;
}

#footer p {
	margin: 0;
	padding: 0;
	font-size: 0.875em;
	color: #999;
}

/* 
==========================================================================
	Media queries
==========================================================================
*/

/* == Large Devices, Wide Screens == */
@media only screen and (max-width : 1200px) {

}

/* == Medium Devices, Desktops == */
@media only screen and (max-width : 991px) {

	#header {
		padding: 60px 0 0;
	}

	#form_wrapper form {
		margin: 10px 20px;
	}

	#form_wrapper form input,
	#form_wrapper form button {
		margin: 10px 0;
	}

}

/* == Small Devices, Tablets == */
@media only screen and (max-width : 767px) {

	#header {
		padding: 30px 0 0;
	}

	#form_wrapper h1 {
		font-size: 1.25em;
	}

	#footer {
		padding: 0px 0 20px;
	}

	#footer p {
		padding: 0px 30px;
	}

}

/* == Custom size == */
@media only screen and (max-width : 580px) {

}

/* == Extra Small Devices, Phones == */ 
@media only screen and (max-width : 480px) {

}

/* == Custom, iPhone Retina == */ 
@media only screen and (max-width : 320px) {

}