*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}

body{
	background-color: black;
}

/*Classes auxiliares*/
.container{
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2%;
}

.clear{
	clear: both;
}

.w100{
	width: 100%;
	float: left;
}

.w50{
	width: 50%;
	float: left;
}

.w33{
	width: 33.33%;
	float: left;
}

.center{
	text-align: center;
}

.y-center{
	transform: translateY(-50%);
}

/*Classes do site*/

.logo{
	float: left;
}

.logo img{
	height: 75px;
}

header{
	background-color: black;
}

.menu-desktop{
	
}

nav.menu-desktop{
	float: right;
}

nav.menu-desktop ul{
	position: relative;
	top: 25px;
}

nav.menu-desktop li{
	display: inline-block;
	padding: 0 15px;
	font-weight: lighter;
}

nav.menu-desktop a{
	color: #45a52c;
	text-decoration: none;
}

nav.menu-desktop a:hover{
	text-decoration: underline;
}

nav.menu-desktop li.selected{
	font-weight: 600;
	text-decoration: underline;
}
/*
nav.menu-desktop li a.selected:hover{
	text-decoration: none;
}
*/
/*Menu Mobile*/
nav.menu-mobile{
	display: none;
	color: #45a52c;
	float: right;
}
nav.menu-mobile ul{
	display: none;
	width: 100%;
	background: black;
	position: absolute;
	left: 0;
	top: 75px;
	z-index: 999;
	text-align: center;
}
nav.menu-mobile li{
	padding: 10px 0;
	border-bottom: 1px solid #45a52c;
	border-top: 1px solid #45a52c;
}
nav.menu-mobile h2{
	padding-top: 50%;
	cursor: pointer;
	font-size: 30px;
}
nav.menu-mobile a{
	display: block;
	color: #45a52c;
	text-decoration: none;
	font-weight: lighter;
}
nav.menu-mobile a:hover{
	font-weight: bold;
}
nav.menu-mobile li.selected{
	font-weight: 600;
	background: rgb(225,225,225);
	color: black;	
}
nav.menu-mobile li.selected a{
	color: black;
	font-weight: bold;
}
/*Sessão Main*/
section.main-bg{
	position: relative;
	background-image: url("../img/main-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 500px;
	text-align: center;
	text-shadow: 0px 0px 5px black;
	color: white;/*#45a52c;*/
}

section.main-bg h2{
	font-size: 30px;
	font-weight: 700;
	padding: 150px 0 100px;
}

section.main-bg p{
	font-size: 25px;
	font-weight: 600;
}

section.main-bg .overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.60);
	left: 0;
	top: 0;
	z-index: 1;
}

section.main-bg > .container{
	position: relative;
	z-index: 2;
}

section.diferenciais{
	color: #45a52c;
	padding: 30px 0;
	text-align: center;
}

.line-text{
	position: relative;
	display: inline-block;
	color: #45a52c;
}
.line-text > div{
	position: absolute;
	left: 0;
	top: 0;
	width: 200px;
	height: 3px;
	background-color: #45a52c;
}

.line-text h2{
	font-size: 25px;
	font-weight: normal;
	margin-bottom: 30px;
}

.icones-diferenciais{
	margin-top: 30px;
}

.box-icone-single{
	color: white;
	float: left;
	width: 33.3%;
	padding: 0 10px;
	margin-bottom: 20px
;}

.box-icone-single > h2{
	color: #45a52c;
	font-size: 32px;
}

/* Sobre -- Equipe */
section.sobre-equipe{
	background-color: rgb(225,225,225);
	padding: 30px 0;
}

section.sobre-equipe > .container{
	display: flex;
	flex-wrap: wrap;
}

.equipe-container{
	width: 50%;
}

.avatar-box{
	margin-top: 15px;
}

.avatar-img{
	display: inline-block;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.avatar-desc{
	display: inline-block;
	padding: 0 10px;
	width: calc(100% - 85px);
	transform: translateY(-50%);
}

.avatar-desc h3{
	font-size: 17px;
	font-weight: bold;
	font-style: italic;
}

.avatar-desc p{
	font-size: 14px;
	font-weight: lighter;
	font-style: normal;
}

.sobre-container{
	width: 50%;
}

.sobre-container p{
	color: black;
	font-size: 15px;
	text-align: justify;
	margin-top: 10px;
}

/*Inscrição*/
section.inscricao{
	background-color: #45a52c;
	padding: 20px 0;
	color: white;
}

h2.inscricao-texto{
	font-weight: normal;
	height: 40px;
}

.inscricao-texto i{
	padding-right: 10px;
}

.inscricao-form{
	
}

.inscricao-form input[type=email]{
	width: calc(100% - 120px);
	height: 40px;
	background-color: white;
	border: 1px solid #ccc;
}

.inscricao-form input[type=submit]{
	width: 120px;
	height: 40px;
	background-color: black;
	border: 0;
	color: #45a52c;
	cursor: pointer;
	font-weight: bold;
}

/*Cards*/
section.cards{
	padding: 30px 0;
	color: #45a52c;
}

.card-single{
	width: 33.3%;
	float: left;
	padding: 40px 5%;
}

.card-single-img{
	width: 275px;
	height: 275px;
	border: 1px groove #c0bfbf; 
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.card-single img{
	width: 275px;
	height: 275px;
	border: 1px groove #c0bfbf;
	object-fit: cover;
	object-position: center;
}

.card-single h3{
	margin-top: 5px;
	font-weight: normal;
	font-size: 17px;
}

.card-single p{
	margin: 5px 0 10px 0;
	font-weight: lighter;
	font-size: 14px;
	/*padding-bottom: 20px;*/
}

/*Rodapé*/
footer.rodape-1{
	background: rgba(69,165,2,1.00);
	color: white;
	padding: 20px 0;
}

footer.rodape-1 h3{
	font-size: 19px;
	font-weight: bold;
	padding-bottom: 10px;
}

footer.rodape-1 p{
	font-size: 14px;
	font-weight: lighter;
}

footer.rodape-1 i{
	margin-right: 5px;
}

footer.rodape-1 a{
	color: white;
	text-decoration: none;
	margin-right: 20px;
}

footer.rodape-1 a:hover{
	color: white;
	text-decoration: underline;
	font-weight: bold;
}

footer.rodape-2{
	color: #45a52c;/*rgba(69,165,2,1.00);*/
	padding: 30px 0;
}
/*Pagina Sobre*/
/*Title Page*/
section.title-page{
	position: relative;
	background-image: url("../img/sobre-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	text-shadow: 0px 0px 5px black;
	color: white;/*#45a52c;*/
	z-index: 0;
}
section.title-page .overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.60);
	left: 0;
	top: 0;
	z-index: 1;
}
section.title-page > .container{
	position: relative;
	z-index: 2;
	padding: 20px;
}
section.title-page h2{
	text-align: center;
	padding: 20px 0;
	color: #45a52c;
	font-size: 30px;
	font-weight: 600;
}
section.title-page p{
	text-align: justify;
	padding: 10px 30px;
}
/*Sobre - Seção das Noticias*/
section.sobre__noticias{
	color: #45a52c;
	padding: 30px 0;
}
section.sobre__noticias .sobre__single-noticia{
	
}
.sobre__single-noticia img{
	max-width: 100%;
	float: left;
	width: calc(100% - calc(100% - 300px));
	height: 300px;
	object-fit: cover;
	object-position: center;
	padding-right: 20px;
}
.sobre__single-noticia p{
	width: calc(100% - 300px);
	float: left;
	padding: 10px 20px 10px 0;
	text-align: justify;
}
.sobre__single-noticia p.nw100{
	width: 100%;
	float: left;
	text-align: justify;
	font-size: 17px;
	font-weight: 400;
	padding-left: 0px;
}
.sobre__single-noticia h3{
	width: calc(100% - 300px);
	float: left;
	padding: 10px 20px 10px 0;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}
.sobre__single-noticia a{
	text-decoration: none;
	color: white
}
.sobre__single-noticia a:hover{
	text-decoration: none;
	font-weight: bold;
}
/*Efeito Paralax*/
section.paralax{
	position: relative;
	padding: 30px 0;
	width: 100%;
	min-height: 200px;
	background-image: url("../img/ea-sobre.jpg");
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
	text-align: center;
}
section.paralax h2.chamada-paralax{
	color: #45a52c;
	border: 1px solid rgba(0,0,0,0.5);
	padding: 5px 50px;
	background-color: rgba(0,0,0,0.4);
	border-radius: 10px;
	text-shadow: 0px 0px 5px black;
	display: inline-block;
}
section.paralax h2.chamada-paralax:hover{
	color: #45a52c;
	border: 1px solid rgba(0,0,0,0.8);
	padding: 5px 50px;
	background-color: rgba(0,0,0,0.7);
	border-radius: 10px;
	text-shadow: 0px 0px 5px black;
	display: inline-block;
}
section.paralax p{
	color: white;
	text-shadow: 0px 0px 5px black;
	padding: 30px;
	font-size: 20px;
	font-weight: 700;
}
section.paralax h6{
	color: white;
	/*text-shadow: 0px 0px 1px white;*/
	font-size: 9px;
	font-weight: 600;
}
section.paralax .overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.60);
	left: 0;
	top: 0;
	z-index: 1;
}

section.paralax > .container{
	position: relative;
	z-index: 2;
}
/*Fim Pagina Sobre*/
@media screen and (max-width: 768px){
	section.main-bg h2{
		padding: 80px 20px;
	}
	.w33{
		width: 50%;
		padding-bottom: 20px;
	}
	.w50{
		width: 100%;
		margin-bottom: 20px;
	}
	.box-icone-single{
		width: 50%;
	}
	.equipe-container{
		width: 100%;
	}
	.sobre-container{
		width: 100%;
		margin-top: 60px;
	}
	.sobre__single-noticia img{
		width: 100%;
		padding-right: 0px;
	}
	.sobre__single-noticia p{
		width: 100%;
		padding: 0px 10px 10px 10px;
	}
	.sobre__single-noticia p.nw100{
		padding: 0px 10px 10px 10px;
	}
	.sobre__single-noticia h3{
		width: 100%;
		padding: 15px 10px;
	}
}

@media screen and (max-width: 900px){
	.card-single{
		width: 50%;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 600px){
	.card-single{
		width: 100%;
		margin-bottom: 20px;
		padding: 10px 20%;
	}
	nav.menu-mobile{
		display: block;
	}
	nav.menu-desktop{
		display: none;
	}
}