*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, a, ul, ol, li{
	font-family: Ariel Rounded MT, Arial, sans-serif;
}

.container{
	width: 70%;
	height: auto;
	margin: auto;
}

/*HEADER*/
header{
	width: 100%;
	height: 70px;
	background: #000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
}
.logo{
	width: 30%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo img{
	width: auto;
	height: 50px;
}
.nav{
	width: 69%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;

}
.menu{
	width: 60%;
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;

}
.nav li{
	flex: 1;
}
.nav a{
	color: #f6be27;
	text-decoration: none;
}
.nav a:hover{
	color: #fff;
}

/*Esconder o checkbox*/
.menu-toggle{
	display: none;
}
.menu-icon{
	font-size: 24px;
	cursor: pointer;
	padding: 10px;
	color: #fff;
	display: none;
}
/*SLIDE*/
#slide{
	width: 100%;
	height: 700px;
	background: grey;
	overflow: hidden;
	position: relative;
}
.corrossel{
	display: flex;
	width: 800%;
	animation: slideAnim 50s infinite;
}
.corrossel img{
	width: 10%;
	flex-shrink: 0;
}
@keyframes slideAnim{
	0%{
		transform: translateX(0%);
	}
	10%{
		transform: translateX(-10%);
	}
	20%{
		transform: translateX(-20%);
	}
	30%{
		transform: translateX(-30%);
	}
	40%{
		transform: translateX(-40%);
	}
	50%{
		transform: translateX(-50%);
	}
	60%{
		transform: translateX(-60%);
	}
	70%{
		transform: translateX(-70%);
	}
	80%{
		transform: translateX(-80%);
	}
	90%{
		transform: translateX(-90%);
	}
	100%{
		transform: translateX(0%);
	}
}

.slider_content{
	width: 30%;
	height: 100%;
	background: rgba(245, 190, 36, 0.9);
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
.slide_text{
	width: 100%;
	margin-bottom: 20px;
}
.slide_text h2{
	font-size: 64px;
	color: #fff;
}
.slide_text h4{
	font-size: 22px;
	color: #fff;
}
.slider_content_btn{
	text-align: center;
	margin-top: 50px;
}
.slide_text a{
	padding: 15px;
	border: 3px solid #fff;
	text-decoration: none;
	color: #fff;
}
.slide_text a:hover{
	background: #fff;
	border: 3px solid #fff;
	text-decoration: none;
	color: #000;
}

/*DESTAQUE*/
#destaque{
	width: 70%;
	height: 300px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
}
#destaque .dest{
	width: 30%;
	height: 100%;
	padding: 2%;
	box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.2);
}
.dest_content{
	width: 100%;
	height: 70%;
}

.dest_content h3{
	text-align: center;
	padding: 20px 0;
	font-size: 32px;
}
.dest_btn{
	width: 100%;
	height: 30%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.dest_btn a{
	text-decoration: none;
	background: #f6be27;
	color: #fff;
	padding: 15px 50px;
	cursor: pointer;
}
.dest_btn a:hover{
	background:#ffab00;
}

/*LINE*/
.line{
	width: 100px;
	height: 5px;
	background: green;
	display: flex;
}
.line_orange{
	flex: 1;
	background: #f6be27;
}
.line_black{
	flex: 1;
	background: #000;
}
.line_white{
	flex: 1;
	background: #fff;
}

/*SOBRE*/
#sobre{
	width:70%;
	height: 550px;
	margin: auto;
	margin-top: 50px;
}
.sobre_title{
	width: 100%;
	height: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.sobre_title h2{
	margin-bottom: 20px;
}
.sobre_content{
	width: 100%;
	height: 70%;
	display: flex;
	justify-content: space-between;
}
.sobre_content_img, .sobre_content_text{
	width: 49%;
	height: 100%;
	overflow: hidden;
}
.sobre_content_img img{
	width: 100%;
	height: auto;
}
.sobre_content_text p{
	text-align: justify;
}
.sobre_content_text ul{
	margin-top: 10px;
	padding-left: 20px;
}
/*ESTATISTIC*/
#estatistic{
	width: 100%;
	height: 300px;
	margin-top: 50px;
	background-image: url('../img/estatistic.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.estatistic_background{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.estatistic_content{
	width: 70%;
	height: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.estatistic_content_text{
	width: 22%;
	height: 50%;
	border: 1px solid #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.estatistic_content_text h3{
	color: #fff;
	margin-bottom: 20px;
	font-weight: bold;
	font-size: 42px;
}
.line_estatistic{
	width: 50px;
	height: 2px;
	background: #fff;
	margin-bottom: 20px;
}
.estatistic_content_text h5{
	color: #fff;
}

/*SERVIÇOS*/
#servicos{
	width: 100%;
	height: 460px;
	background: #f6be27;
	padding: 50px 0;
}
.servicos_title{
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.servicos_title h2{
	margin-bottom: 20px;
}
.servicos_content{
	width: 100%;
	height: 290px;
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}
.servicos_content_text{
	width: 28%;
	height: 100%;
	background: #fff;
	padding: 20px;
}
.servicos_content_text img{
	width: 60px;
}
.servicos_content_text h3{
	font-size: 26px;
	height: 100px;
}

/*PORTFÓLIO*/
#portfolio{
	width: 100%;
	height: auto;
	margin-top: 20px;
	padding: 50px 0;
}

.portfolio_title{
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.portfolio_title h2{
	text-align: center;
	margin-bottom: 20px;
}

.portfolio_img{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.portfolio_img img{
	width: 23%;
	height:auto;
	margin-bottom: 10px;
}

#feed{
	width: 100%;
	height: 300px;
	background: #f6be27;
}
.feed_content{
	width: 70%;
	height: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.feed_content_text{
	width: 70%;
	height: 100px;
}
.feed_content_btn{
	width: 25%;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.feed_content_btn a{
	padding: 15px;
	border: 3px solid #000;
	text-decoration: none;
	color: #000;
}

.feed_content_btn a:hover{
	background: #000;
	color: #fff;
}
/*RODAPÉ*/
footer{
	width: 100%;
	height: 700px;
	background: #f5f5f5;
	margin-top: 100px;
}
.contact{
	width: 100%;
	height: 630px;
	padding: 50px 0;
}
.contact_title{
	width: 100%;
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.contact_title h2{
	margin-bottom: 20px;
}
.contact_title p{
	margin-bottom: 20px;
}

.contact_form{
	width: 60%;
	height: 450px;
	margin: auto;
	padding-top: 50px;
}
.contact_form form{
	box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.2);
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 4%;
}
.contact_form .nome_email{
	width: 47.5%;
	height: 35px;
	margin-bottom: 10px;
	border: none;
	padding: 1.5%;
}
.contact_form .assunto{
	width: 97%;
	height: 35px;
	margin-bottom: 10px;
	padding: 1.5%;
	border: none;
}
.contact_form textarea{
	width: 97%;
	height: 200px;
	padding: 1.5%;
	border: none;
}
.copirigth{
	width: 100%;
	height: 70px;
	background: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 5px solid #f6be27;
}
.copirigth h5{
	color: #fff;
}
.btn_form{
	width: 97%;
	height: auto;
	padding: 1.5% 0;
	display: flex;
	justify-content: flex-end;
}

.btn_form button{
	width: 200px;
	height: 35px;
	background: #000;
	color: #fff;
	border: none;
	cursor: pointer;
}
.btn_form button:hover{
	background: #263238;
}