body, html{
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	margin: 0;
	padding: 0;
}

section{
	width: 100%;
	min-height: 100vh;
	display: table;
}

section#main{
	background-image: url(../images/sea_holland.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #FFF;
}

section#main:before{
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0, 0.75);
	z-index: 1;
	position: absolute;
}

div.cell{
	z-index: 2;
	position: relative;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 2em;
}

section.readmore{
	color: #333;
}

section#main button{
	background: #3498db;
	padding: 1em 3em;
	border: 0;
	border-radius: 50px;
	margin-top: 4em;
	transition: all 0.3s;
}

section#main button:hover{
	background: #2980b9;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

section#main button:focus{
	outline:none;
}

section#main button i{
	margin-right: 5px;
}

section#main h1{
	font-weight: 600;
}

section#main h3{
	font-weight: 500;
}

section#main h1,
section#main h3{
	margin-top: 0;
	margin-bottom: 1em;
}

section#main img.logo{
	width: 200px;
	margin-bottom: 25px;
}

.content{
	width: 40%;
	display: inline-block;
}

section#readmore{
	background: #ecf0f1;
	color: #34495e;
}

section#readmore h3{
	margin: 1.5em 0;
	font-weight: 600;
	color: #34495e;
}

footer{
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	left: 0;
	padding: 0.8em;
	font-size: 11px;
	color: #b9b9b9;
}

@media (max-width: 1200px) {
	.content{
		width: 50%;
	}
}

@media (max-width: 992px) {
	.content{
		width: 60%;
	}
}

@media (max-width: 500px) {
	.content{
		width: 90%;
	}
}