/** Itens Comuns **/
*{
	font-family: arial;
}
body{
	margin: 0;
	padding: 0;
	background: #256298;
}
.conteiner{
	display: flex;
	justify-content: space-between;
	width : 1200px;

}
/** Cabecalho da pagina **/
header{
	display: flex;
	justify-content: center;
	background: white;
	height: 120px;
	border-bottom: 5px solid #fdc201;
}


.logo{
	display: flex;
	align-items: center;

}
.menu{
	display: flex;
	align-items: center;

}
nav ul{
	display: flex;
}
nav ul, nav li{
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu nav a{
	display: block;
	padding: 15px;
	text-decoration: none;
	text-transform: uppercase;
	color:#363435;
	transition: color 1s, background 2s; 
}
.menu nav a:hover,nav .ativo a{
	background: #256298;
	color: #fdc201;
}
/** Area do Banner **/
#banner{
	display: flex;
	justify-content: center;
	background-image: url('../img/banner.png');
	background-position: center;
	background-size: cover;
	height: 950px;
	border-bottom: 5px solid #fdc201;
}
.column{
	flex-direction: column;
}
.banner_headline{
	flex:1;
	
	display: flex;
	flex-direction: column;
	justify-content: center;


}

.banner_headline h1{
	color:#fdc201;
	font-size: 70px;
	text-shadow: 0px 1px 0px #555;
	margin: 0;
	padding: 0;
	
	max-width: 350px;


}
.banner_headline h2{
	color:#fdc201;
	font-size: 20px;
	text-shadow: 0px 1px 0px #555;
	margin: 0;
	padding: 0;
	max-width: 350px;


}

.banner_sub{
	height: 300px;
	display: flex;
	margin-bottom: 10px;

}
.mini_banner{
	flex:1;
	text-align: center;
	color:#fdc201; 
	padding: 20px;
	display: flex;
	flex-direction: column;

}
.mb1{
	background-color: rgba(37, 98, 152, 0.6);
}
.mb2{
	background-color: rgba(37, 98, 152, 0.9);
	border-left : 2px solid #fdc201;
	border-right: 2px solid #fdc201;
}
.mb3{
	background-color: rgba(37, 98, 152, 0.6);
}
.mini_banner_title{
	text-transform: uppercase;
	font-size: 21px;
	margin-bottom: 15px;
}
.mini_banner_ico{
	margin-bottom: 5px;
}