/* General Demo Style */
@import url(http://fonts.googleapis.com/css?family=Lato:200,300,400,700);

html { height: 100%; }

*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

body {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    background: #f9f9f9;
    font-weight: 300;
    font-size: 15px;
    color: #333;
    overflow: scroll;
    overflow-x: hidden;
}

a {
	color: #555;
	text-decoration: none;
}

.container {
	width: 100%;
	position: relative;
}

.container > header {
	width: 80%;
	max-width: 1240px;
	min-width: 300px;
	margin: 0 auto;
	position: relative;
	padding: 0 30px 50px 30px;
}

.container > header {
	padding: 60px 30px 50px;
	text-align: center;
}

.container > header h1 {
	font-size: 34px;
	line-height: 38px;
	margin: 0 auto;
	font-weight: 700;
	color: #de1189;
	width:100%;
}


.container > header h1 span {
	display: block;
	font-size: 17px;
	line-height:19px;
	font-weight: 300;
}

.main > p {
	text-align: center;
	padding: 50px 20px;
}

.footer {
	width: 100%;
	text-align:center;
	font-size:11px;
	bottom: 0px;
	position:fixed;
	margin-bottom:5px;
}


@media screen and (max-width: 480px) {
	.container > header img{
		min-width:40%;
		max-width: 80%;
	}
	.container > header h1 span{
		font-size: 14px;
		line-height: 18px;
		font-weight: 300;
	}
	
	.container > header {
		padding: 30px 30px 0px;
		text-align: center;
	}
	
	.footer {
		position:absolute;
	}
	
	
}