
/* General */
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
img{
	display: block;
	width: 100%;
}
body{
	font-family: raleway;
	text-align: center;
}
.container{
	padding: 0 5px;
}
/* Header */
.brand{
	color: #60aee4;
	font-weight: 900;
	margin: 25px 0;
}
.menu{
	display: flex;
	justify-content: space-around;
	margin-bottom: 30px;
}
li{
	list-style: none;
}
li a{
	text-decoration: none;
	color: #b3c1d4;
}
.jumbotron{
	background-image: url('../img/jumbotron.jpg');
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 10px 0;
}
h1{
	font-size: 1.5em;
	color: #747474;
}
.button{
	background-color: #fa5ba5;
	color: #fff;
	text-decoration: none;
	width: 80%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	border-radius: 20px;
}
/*Services */
h2{
	font-size: 1.3em;
	margin: 20px 0;
}
.service{
	display: flex;
	padding: 0 10px;
	align-items: center;
	margin-bottom: 10px;
	color: #747474;
}
.service i{
	margin-right: 10px;
}
/*Blog */
.post img{
	margin-bottom: 10px;
}
h3{
	margin-bottom: 10px;
}
.date{
	color: #747474;
	margin-bottom: 5px;
}
.post p{
	color: #747474;
	margin-bottom: 20px;
}
/* Footer */
footer{
	background-color: #38404b;
	color: #b3c1d4;
	padding: 20px 8px 20px;
}
footer .brand{
	margin: 0 0 20px;
	color: inherit;
}
.copyright{
	color: #fff;
	font-size: .7em;
}
/*Media*/
@media(min-width: 500px){
	img{
		width: 60%;
		margin: 0 auto 10px;
	}
}
@media(min-width: 768px){
	.container{
		padding: 0 20px;
	}
	header .container{
		display: flex;
		justify-content: space-around;
		align-items: baseline;
	}
	li a{
		margin: 0 10px;
	}
	h1{
	font-size: 1.7em;
	margin: 0 0 1em;
	}
	.button{
		width: 240px;
		height: 60px;
		border-radius: 30px;
	}
	.jumbotron{
		padding: 20px 0;
	}
	h2{
		margin: 30px 0;
	}
	.wrap__services{
		display: flex;
		justify-content: space-between;
		margin-bottom: 40px;
	}
	.service{
		display: block;
		padding: 0;
		margin: 0 10px;
	}
	.service i{
		margin: 0 0 10px 0;
	}
	.post img{
		width: 50%;
		float: left;
	}
	.desc{
		clear: both;
	}
	h3{
		padding: 20% 10px 0;
	}
	footer .menu{
		justify-content: space-evenly;
	}
}
@media(min-width: 1024px){
	.container{
		max-width: 980px;
		padding: 0 10px;
		margin: 0 auto;
	}
	.brand{
		margin: 35px 0;
		font-size: 1.5em;
	}
	.menu a{
		font-size: 1em;
	}
	.menu a:hover{
		color: #fa5ba5;
	}
	.jumbotron{
		min-height: 411px;
		padding: 115px 0;
	}
	h1{
		font-size: 2em;
		margin-bottom: 66px;
	}
	.button:hover{
		background-color: #747474;
	}
	h2{
		font-size: 22px;
		margin: 77px 0 60px;
	}
	.service i{
		margin-bottom: 35px;
	}
	.post img{
		width: 280px;
	}
	.post{
		display: flex;
		margin: 30px;
	}
	h3{
		padding: 20px 0 0;
	}
	.desc{
		margin: 0;
	}
	footer{
		min-height: 245px;
		padding: 55px 0;
	}
	footer .menu{
		justify-content: center;
		padding: 35px;
		margin: 0;
	}
	footer .brand{
		margin: 0;
	}
}
