@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

html, body{
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
a{
	text-decoration: none;
}
.banner{
	width: 100%;
	height: 95vh;
	border-top: 3px solid #db822d;
	float: left;
	background-image: url("../images/banner.jpg");
	background-repeat:  no-repeat;
	background-size: cover;
}
.content{
	width: 100%;
	float: left;
}
.center{
	width: 1100px;
	margin: 0 auto;
}
.center_portfolio{
	width: 700px;
	margin: 0 auto;
}

.logo{
	height: 62px;
	margin-top: 40px;
	float: left;
}

.blocks{
	display: grid;
	margin-top: -115px;
	grid-template-columns: repeat(5, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}
.block{
	background: #ffffff;
	min-height: 170px;
	text-align: center;
	padding: 24px 24px;
	cursor: pointer;
}
.block:hover{
	background: #d4ae37;
}
.block:hover h3,.block:hover p{
	color: #ffffff;
}
h3{
	font-family: 'Georgia', serif;
	font-weight: 250;
	color: #333333;
}
h4{
	font-family: 'Georgia', serif;
	text-align: center;
	color: #ffffff;
	font-size: 18px;
	margin-top: 40px;
}
.block p{
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	color: #979797;
}

.bg_orange{
	background: #db822d;
	padding-bottom: 8px;
}

.portfolio{
	width: 100%;
	float: left;
	padding: 50px 0px;
	background: rgb(193,193,193);
	background: linear-gradient(90deg, rgba(193,193,193,1) 0%, rgba(255,255,255,1) 67%);;
}

.portfolio p{
	float: left;
	margin-top: 110px;
	margin-right: 85px;
	font-family: 'Georgia', serif;
	width: 204px;
	color: #000000;
	font-size: 18px;
	padding-right: 44px;
	background: url("../images/icon.png") right no-repeat;
}

footer{
	background: #2b2b2b;
	float: left;
	width: 100%;
}

footer p{
	font-family: 'Georgia', serif;
	text-align: center;
	color: #979797;
}

iframe{
	width: 100%;
	height: 300px;
}

.missao{
	width: 100%;
	float: left;
	padding: 45px 0px;
	background: #efeeee;
	line-height: 23px;
}
.missao h3{
	text-align: center;
}
.missao p{
	text-align: center;
	font-family: 'Georgia', serif;
	color: #979797;
}

@media only screen and (max-width: 1100px) {
	.center{
		width: 768px;
	}
	.blocks{
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 768px) {
	.center{
		width: 350px;
	}
	.blocks{
		grid-template-columns: repeat(1, 1fr);
	}
	.center_portfolio{
		width: 350px;
		margin: 0 auto;
	}
	.portfolio{
		padding: 0px 0px 75px 0px;
	}
}
