/*****************************************************************
                 		  	RESET
******************************************************************/

/* General */
p, h1, h2 {
	font-family: "futura-pt", sans-serif;
}

img {
	height: auto !important;
	width: auto !important;
	max-width: auto !important;
}

h1 {
	font-size: 2.9em;
	color: #fff;
	text-shadow: 2px 2px 3px #242424;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, .7);
}

h2 {
	font-size: 1.9em;
	margin-top: 0;
	font-weight: bold;
}

/* General Media Queries */
@media all and (max-width: 1100px) {	
	h1, h2 {
		font-size: 2.1em;
		line-height: 1.2em;
	}
}

/* Buttons */
.btn {
	display: block;
	font-size: 1.3em;
	font-family: "futura-pt", sans-serif;
	min-width: 280px;
	max-width: 280px;
	padding: 0.4em 1.5em;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 5px;
	text-decoration: none;
	text-align: center;
	-webkit-transition: background-color 0.2s ease-in;
	-moz-transition: background-color 0.2s ease-in;
	-ms-transition: background-color 0.2s ease-in;
	-o-transition: background-color 0.2s ease-in;
	transition: background-color 0.2s ease-in;
}

@media all and (max-width: 480px) and (min-width: 360px) {
	.btn {
		min-width: 240px !important;
		max-width: 240px !important;
	}
}

@media all and (max-width: 359px) {
	.btn {
		min-width: 170px !important;
		max-width: 170px !important;
	}
}
 
.btnBlue {
	background-color: rgba(40, 125, 125, 1);
	margin: 0 auto;
	box-shadow: 7px 7px 7px rgba(0, 0, 0, .15);
	text-transform: uppercase;
}

.btnBlue:hover {
	background-color: #1f6666;
}

.btnGreen {
	background-color: #91c46c;
	margin: 0 auto;
	box-shadow: 7px 7px 7px rgba(0, 0, 0, .15);
	text-transform: uppercase;
}

.btnGreen:hover {
	background-color: #7eaa5c;
}

.btnClear {
	display: block;
	font-size: 1.3em;
	background-color: rgba(40, 125, 125, .5);
	font-weight: normal;
}

.btnClear:hover {
	background-color: rgba(40, 125, 125, 1);
}

/* Other */
.seperator {
	position: relative;
	top: 2px;
	display: inline-block;
	width: 2px;
	height: 20px;
	background-color: #fff;
	padding: 0;
	margin: 0 0.5em;
}

.remove {
	display: none !important;
}