#header {
	padding: 8px 0;
}

#header a {
	font-size: 25px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	display: block;
	padding: 20px 0;
}

.tf {
	float: left;
	width: 150px;
}

.support {
	float: right;
	padding: 20px 0;
}

#header .support a{
	font-size: 12px;
	padding: 0;
	margin: 0 5px;
	display: inline-block;
}

#hero {
	background-color: blue;
	background-image: url(images/hero_bk.png);
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	padding: 100px 0;
	text-align: center;
}

#hero h1 {
	color: white;
	margin-top: 30px;
}

#intro {
	padding: 50px 0;
	text-align: center;
}

.scroll {
	cursor: pointer;
	display: inline-block;
	height: 42px;
	width: 42px;
}

.theme {
	padding: 50px 0;
}

.theme:nth-child(odd) {
	background-color: #f3fffd;
}

.theme img {
	height: auto;
	width: 100%;
	box-shadow: 0 0 0 3px #292936; 
	transition: 0.3s;
}

.theme img:hover{
	box-shadow: 0 0 0 3px #1fbda5; 
}

small {
	color: #1fbda5;
}

/*----------------
BUTTONS
----------------*/

a.button {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	display: inline-block;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 500;
	margin-right: 8px;
	margin-top: 5px;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 0.8;
	transition: 0.3s;
}

a.button:hover{
	opacity: 1;
}

a.blue {
	background-color: #1fbda5;
	color: white;
}

a.white {
	background-color: white;
	color: black;
}
a.grey{
	background-color: #292936;
	color: white;
}


/*---------------
FOOTER
---------------*/

#footer {
	background-image: url(images/footer_bk.png);
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	padding: 100px 0;
	margin-top: 50px;
	text-align: center;
}

#footer h3 {
	color: white;
}

#copyright {
	background-color: black;
	padding: 10px 0;
}

#copyright p {
	margin-bottom: 0;
	padding-top: 15px;
	color: #aaa;
}

#social_links {
	float: right;
	height: 50px;
	margin-bottom: 0;
}

#social_links li {
	display: inline-block;
	margin: 10px 2px;
	max-width: 35px;
}


@media only screen and (max-width: 767px){
	#header{
		text-align: center;
	}
	#header .tf,
	#header .support{
		float: none;
		width: auto;
	}
	.theme img{
		display: block;
		margin-bottom: 20px;
	}
	#copyright{
		text-align: center;
	}
	#social_links{
		float: none;
		margin: 10px 0;
	}
}