/*Resetando os estilos doos componentes da página*/
body, h1, h2, p, ul, li, a {
	margin: 0px;
	padding: 0px;  
}
/*Setando a fonte padrão e colocando informando a cor de fundo do corpo da página*/
body {
	font-family: "Nunito", Helvetica, Arial, sans-serif;
	color: #111;
	background: #FFF;
}
header{
	height: auto;
	overflow: hidden;
}
/*Resetando os estilos das listas, por exemplo, aquelas bolinhas que ficam à frente dos ítens*/
ul {
	 list-style: none;
}
/*Resetando o sublinhado dos links*/
a {
	text-decoration: none;
	color: #FFF;
}
/*Ajustando as imgs pra que sejam responsivas, sem estourar o container*/
img {
	display: block; 
	max-width: 100%;
}
/*border-box serve pra respeitar o tamanho do conteiner(* = todos os elementos), independente do padding add na configuração do ítem */
* {
	box-sizing: border-box;
}


.fundo-menu {
	font-family: "Nunito", Helvetica, Arial, sans-serif;
	/*background: #222;*/
	background: rgba(28,28,28,0.3);
	color: #FFF; 
	text-align: center;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2010;
}

.fundo-menu p {
	font-family: "Rye", Helvetica, Arial, sans-serif;
	font-size: 1.25em;
	/*background: #222;*/
	color: #FFF; 
	text-align: center;
}

.espaco-menu {
	max-width: 1200px;  /*Informando a largura das "sections",  onde as informações da página são ajustadas*/
	margin: 0 auto;    /*Alianhando o ítem ao centro, sendo "zero" pra cima e pra baixo e "auto" para os lados*/
	display: flex;     /*Os elementos se ajustam lado a lado*/
	justify-content: space-between; /*Ajusta o espaçamento entre os elementos, respeitando o tamanho de cada um deles*/
	flex-wrap: wrap;   /*Quebra os elementos para a próxima linha, de acordo com o tamanho da tela*/
	padding-top: 20px; /*Da um espaçamento (interno) sob a margem superior*/
}

.espaco-menu p, .espaco-menu a{
	margin: 0 10px 10px 10px;  /*Cria uma margem de "zero" acima, "dez" para os lados e "dez" pra baixo*/
}

.espaco-menu a {
	color: #F0F0F0;  /*Define a cor do link dentro do topo*/
}

#funto-topo {
	display: flex;
	position: fixed;
	background: rgba(28, 28, 28, 0.3); 
	transition: all 0.4s;
   -webkit-transition: all 0.4s;
   -moz-transition: all 0.4s;
   -ms-transition: all 0.4s;
   -o-transition: all 0.4s;	
}
.menu-diferente {
	background: rgba(24,10,1,0.5);
	transition: all 0.4s;
   -webkit-transition: all 0.4s;
   -moz-transition: all 0.4s;
   -ms-transition: all 0.4s;
   -o-transition: all 0.4s;	
}
.logoBarra {
	margin-bottom: 20px;
}

.botoesMenu {
	display: none;
	position: fixed;
	/*top: 90px;*/
	top: 90px;
	width: 100%;
	height: 50px;
	justify-content: flex-end;	
	background: transparent;
	z-index: 2222;	
}
#btn_fazerdown a:visited {
	color: #FFF;
}
#btn_fazerdown {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	font-family: "Calibri","Helvetica Neue","Roboto",Helvetica,Arial,sans-serif;
	font-size: 1.0em;	
	width: 175px;
	height: 30px;
    margin-top: 1px;
    margin-right: 2px;
	text-align: center;
	justify-content: center;
	align-content: center;
	background: rgba(35,167,22,0.9);
	transition: box-shadow .5s ease;
	border: solid 1px transparent;
	border-radius: 3px;
	outline: none;
	color: #FFF;
	text-shadow: #000 2px 2px 2px;
	cursor: pointer;
	z-index: 991;
}
#btn_fazerdown a:hover {
	/*background-color: transparent;*/
	color: #8DD503;	
}
#fdwn {
	position: relative;
	left: 5px;
	top: -39px;
	height: 100%;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1933;
}
#btn_supdown a:visited {
	color: #FFF;
}
#btn_supdown {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	font-family: "Calibri","Helvetica Neue","Roboto",Helvetica,Arial,sans-serif;
	font-size: 1.0em;	
	width: 175px;
	height: 30px;
    margin-top: 1px;
	text-align: center;
	justify-content: center;
	align-content: center;
	/*background: #ED9C2E;*/
	background: rgba(252,6,23,0.9);
	transition: box-shadow .5s ease;
	border: solid 1px transparent;
	border-radius: 3px;
	outline: none;
	color: #FFF;
	text-shadow: #000 2px 2px 2px;
	cursor: pointer;
	z-index: 991;
}
#btn_supdown a:hover {
	/*background-color: transparent;*/
	color: yellow;
}
#wdwn {
	position: relative;
	left: 4px;
	top: -39px;
	height: 100%;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1934;
}


.mostraScroll {
	display: flex;
}

/**************************************************************************************************************************************/

.menu ul {
	display: flex;   /*Alinha os ítens lado a lado*/
	flex-wrap: wrap; /*Quebra os textos do menu para a próxima linha, de acordo com o tamanho do container*/
	align-items: center;
}

.menu a {
	font-size: 0.70em; /*Define o tamanho da fonte da logo. Calcula-se o tamanho em pixel(20) dividido por 16 (base do browser)*/
	display: block;    /*Mantém os ítens do menu inline*/
	padding: 10px;     /*Cria um distanciamento entre os ítens em todas as bordas*/
}

.menu a:hover {
	color: yellow;       /*Define a cor dos textos do Menu ao passar o mouse*/
}

.menu ul li:hover {
	/*background: #555;*/ 
}

.menu ul ul{
	position: absolute;
	display: list-item;
	visibility: hidden;
}

.menu ul li:hover ul{
	visibility: visible;
}

.menu ul ul li{
	/*border-bottom: solid 1px #CCC;*/
	top: 0; left: 0; bottom: 0; right: 0;
	background: rgba(237,156,46,0.7);
}


.menu ul ul li a{
	/*background-color: #999;*/
	font-size: 0.65em;
	/*background: rgba(28,28,28,0.7);*/
}

label[for="bt_menu"] {
	position: fixed;
	padding: 5px;
	/*color: white;*/
	color: #F37213;
	font-family: "Arial";
	text-align: center;
	font-size: 40px;
	cursor: pointer;
	width: 50px;
	height: 50px;	
	z-index: 2230;
}



/*********************************************************HEADER DA PÁGINA***************************************************************/
.ImagemTopo {
	position: relative;
	width: 100%;
	height: 650px;
	overflow: hidden;
	z-index: -2000;
}
.fndTop {
	width: 100%;
	height: 500px;
	overflow: none;
	background: #FFF url("../img/bkeco.jpg") no-repeat; /*Setando a imagem de fundo da div*/
	background-size: cover; 	
	z-index: 2000;
}


/****************LOGOMARCA***************************************/
#LogoRolagem {
	width: 100px;
	height: 50px;
}


/******PERGUNTA PORQUE EU DEVO ESCOLHER OS SISTEMAS PHD******/
.informa {
	position: absolute;
	padding: 10px 70px;
	width: 100%;
	top: 100px;
	color: #061D73;
	font-size: 1.5em;   
	text-align: center; 
	align-items: center;
	background: transparent; 
	z-index: 1000;	
}
.informa-conteiner {
	display: flex;
	flex-wrap: wrap;
	width: 50%;
	height: 100px;
	left: 10px;
	background: transparent;
}
.informa-conteiner h2 {
	font-family: "Nanum Gothic";
	font-size: 4.25em;
	text-shadow: #FFF 1px 1px 1px;
	text-align: left;
	/*color: #ED9215;*/
	color: #331705;
}
.informa p {
	font-family: "Arial","Calibri",Helvetica Neue,Roboto,Helvetica,sans-serif;
	font-size: 1.25em;
	text-shadow: #000 1px 1px 1px;
	margin-top: 30px;
	color: #FFF;
}
.informa {
	text-align: justify;  
	font-family: "Calibri",Helvetica Neue,Roboto,Helvetica,Arial,sans-serif;
	font-size: 0.85em;
	color: #684328;	
}
.bt_econo {
	position: absolute;
	top: 210px;
	right: 70px;	
}



#btn_wpp a:visited {
	color: #FFF;
}
#btn_wpp a{
	color: #FFF;
}
#btn_wpp {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	font-family: "Calibri","Helvetica Neue","Roboto",Helvetica,Arial,sans-serif;
	font-size: 1.25em;	
	width: 200px;
	height: 50px;
    margin-top: 1px;
    margin-left: 3px;
    top: 120px;
	text-align: center;
	justify-content: center;
	align-content: center;
	/*background: #ED9C2E;*/
	/*background: rgba(237,156,46,0.9);*/
	background: rgba(252,6,23,0.9);
	transition: box-shadow .5s ease;
	border: solid 1px transparent;
	border-radius: 20px;
	outline: none;
	color: #FFF;
	text-shadow: #000 2px 2px 2px;
	cursor: pointer;
	z-index: 991;
}
#btn_wpp a:hover {
	/*background-color: transparent;*/
	color: yellow;
}
#zpp {
	position: relative;
	left: 15px;
	top: 86px;
	height: 100%;
	width: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1933;
}

.Abordagem {
	position: relative;
	top: -150px;
	padding: 0px 70px;
	padding-top: 35px;
	width: 100%;
	color: #061D73;
	font-size: 1.5em;   
	text-align: left; 
	align-items: center;
	background: transparent; 
	z-index: 992;	
}
.Abordagem h2 {
	font-family: "Calibri","Helvetica Neue","Roboto",Helvetica,Arial,sans-serif;
	font-size: 1.35em;
	top: 50;
	/*color: #061D73;*/
	color: #331705;
}
.Abordagem p {
	font-family: "Calibri",Helvetica Neue,Roboto,Helvetica,Arial,sans-serif;
	font-size: 0.85em;
	top: 50;
	/*color: #061D73;*/
	color: #684328;
}
.Abordagem .txtAbordagem {
	text-align: justify;  
	font-family: "Calibri",Helvetica Neue,Roboto,Helvetica,Arial,sans-serif;
	font-size: 0.85em;

	/*color: #061D73;*/
	color: #684328;	
}
.Abordagem .txtAbordagem p {
	font-family: "Calibri",Helvetica Neue,Roboto,Helvetica,Arial,sans-serif;
	font-size: 0.85em;
	top: 50;
	/*color: #061D73;*/
	color: #684328;
}
.space {
	height: 30px;
	background: red;
	z-index: 5000;
}

.composicao {
	position: relative;
	margin: 0 auto;
	top: -130px;
	padding: 0px 20px;
	width: 100%;
	font-family: "Calibri", Helvetica, Arial, sans-serif;
	color: #061D73;
	font-size: 1em;   
	text-align: center; 
	align-items: center;

	/*height: 600px;*/
	background: #FFF url("../img/fnd2.png") no-repeat; /*Setando a imagem de fundo da div*/
	background-size: cover;
	background: transparent;
}
.composicao-conteiner {
	display: flex;
	flex-wrap: wrap;
	padding-left: 40px;
	padding-right: 40px;
}
.titcomp {
	width: 100%;
	font-family: "Arial","Helvetica Neue","Roboto",Helvetica,Calibri,sans-serif;
	font-size: 1.25em;
	color: #331705;
	padding: 8px 10px;
	margin-bottom: -35px; 
	text-align: left;	
}
.titcomp h2 {
	font-size: 1.4em;
}
.composicao-itens {
	flex: 1 1 420px;
	margin: 60px;
	margin-top: 40px;
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-radius: 10px;
	background: rgba(213,209,206,0.1);
	box-shadow:  #CCCCCC 2px 2px 2px;	
}
.txtComp {
	font-size: 1em;
	/*color: #061D73;*/
	color: #776354;
	padding: 0 5px;
	text-align: justify-all;	
}
.composicao-itens img {
	width: 100px;
	margin: 0 auto;
	text-align: center;
	align-items: center;
}
.composicao-itens h2 {
	font-size: 1.25em;
	color: #331705;
	/*color: #ED9C2E;*/
	padding: 8px 10px;
	text-align: center;	
}
.titItens {
	width: 100%;
	background: rgba(213,209,206,0.6);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	margin-bottom: 5px;
}
.composicao-conteiner span {
	position: absolute;
	bottom: -20px;
	right: 125px;
	font-size: .85em;
	/*color: #E59416;*/
	color: #ED9C2E;
	padding: 8px 10px;
}
.composicao-itens span {
	position: relative;
	left: 0px;
	top: -1px;
	font-size: 1.0em;
	color: red;
}




/************************************************************RODAPÉ DA PÁGINA*************************************************************/
.rodape {
	position: relative;
	width: 100%;
	margin: 60px auto;
	/*background: #111;*/
	display: flex;		/*Alinha lado a lado os ítems da div produtos-container*/
	flex-wrap: wrap;	/*Quebra os elementos para a próxima linha, de acordo com o tamanho do container*/	
}

.rod-container {
	width: 1150px;
	display: flex;		/*Alinha lado a lado os ítems da div produtos-container*/
	flex-wrap: wrap;	/*Quebra os elementos para a próxima linha, de acordo com o tamanho do container*/
	margin: 0 auto;
}

.rod-coluna {
	flex: 1 1 175px;
	margin: 10px;	
}

.rod-coluna h2 {
	font-family: "Nunito", Helvetica, Arial, sans-serif;
	font-size: 0.85em;
	color: #999;
	background: #F7F7F7
	padding: 60px 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: justify-content;
}

.rod-coluna p {
	font-family: "Nunito", Helvetica, Arial, sans-serif;
	font-size: 0.75em;
	color: #666;
	text-align: justify-content	
}

.rod-coluna a {
	color: #666;
	padding: 10px 10px;
}

.rod-coluna a:hover {
	color: #FFF;
}

.c1 {
	border-top: 1px solid #333;
}
.c1 p {
	color: white;
}
.c2 {
	border-top: 1px solid #333;
}
.c3 {
	border-top: 1px solid #333;
}
.c4 {
	border-top: 1px solid #333;
}



/************************************************************FIM DA PÁGINA***************************************************************/
.footer {
	position: relative;
 	display: flex;		/*Alinha lado a lado os ítems do footer*/
 	background: #180A01;
 	height: 50px;
 	align-items: center;
 	justify-content: space-between;
 	color: #cccccc;;
 } 

.footer p {
	flex: 1;
	text-align: center; 
	font-size: 0.75em;
	margin:0 auto;
}
.footer spam {
	flex: 1;
	text-align: center; 
	font-size: 0.75em;
	margin:0 auto;
}






/*BOTÃO PARA ABRIR O MENU EM TELA DE TABLET OU CELULAR*/
/*Pra esconder o checkbox na tela grande*/
#bt_menu {
	display: none;
}
/*Pra esconder o botão na tela grande*/
label[for="bt_menu"] {
	display: none;
}

@media (max-width: 800px) {
	/*Pra aparecer o botão na tela de tablets ou smatphone*/
	label[for="bt_menu"] {
		display: block;
	}

	#bt_menu:checked ~ .fundo-menu {
		margin-left: 0px;
	}
/*Pra esconder o menu na tela de tablets ou smatphone*/
	.fundo-menu {
		background: rgba(54,54,54,1.0);
		font-size: 1.25em;
		margin-left: -100%;
		transition: all .4s;
	}

	.menu ul li {
		width: 100%;
		float: none;
	}
	.menu ul ul {
		position: static;
		overflow: hidden;
		max-height: 0;
		transition: all .4s;
	} 
	.menu ul li:hover ul{
		height: auto;
		max-height: 200px;
	}
	.espaco-menu p {
		padding-left: 60px;  /*Cria uma margem de "zero" acima, "dez" para os lados e "dez" pra baixo*/
	}	


	.menu ul ul {
		background: rgba(28,28,28,1.0); 
	}
	.menu ul ul li {
		background: rgba(28,28,28,1.0); 
		border-bottom: solid 1px #555;
	}
	.menu a:hover {
		color: #ED9C2E; 
		font-size: 0.80em;      /*Define a cor dos textos do Menu ao passar o mouse*/
		font-weight: bold;
	}
	/*.espaco-menu a {*/
	.menu ul ul a {
		/*color: #3CBE0F;  /*Define a cor do link dentro do topo*/
		color: #FFFFFF;
	}

	/**********************************************************************************************************************************/	
	.fndTop {
	width: 100%;
	height: 430px;
	overflow: none;
	background: #FFF url("../img/bkeco0.jpg") no-repeat; /*Setando a imagem de fundo da div*/
	background-size: cover; 
	}
	#logoPHDBarra{
		display: none;
	}
	.topLogo {
		margin-top: 20px;
		display: block;
	}
	#logoPHD {
		width: 150px;
		height: 75px;
	}
	.informa {
		position: absolute;
		padding: 5px 10px;
		top: 45px;
	}
	.informa-conteiner {
		width: 70%;
		height: 100px;
		left: 10px;
	}
	.informa-conteiner h2 {
		font-family: "Nanum Gothic";
		font-size: 2.15em;
	}
	.informa-conteiner span {
		padding-right: 10px;
		text-align: justify;
	}
	.informa p {
		font-size: 0.85em;
		margin-top: 20px;
	}
	
	#btn_down {
		font-size: 0.95em;	
		width: 175px;
		height: 30px;
	    margin-top: 1px;
	    top: 90px;
	}
	#dwn {
		left: 25px;
		top: 52px;
		height: 100%;
		width: 25px;
	}
.bt_econo {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	top: 210px;	
	width: 100%;
	right: 0px;
	justify-content: center;
}
	#btn_wpp {
		position: relative;
		font-size: 0.95em;	
		width: 175px;
		height: 40px;
		top: 21px;
	}
	#zpp {
		left: 7px;
		top: -30px;
		height: 100%;
		width: 20px;
	}
.botoesMenu {
	flex-wrap: wrap;	
	width: 70px;
	height: 70px;
	right: 5px;
	bottom: 70px;
}
#btn_fazerdown {
	font-size: 0.70em;
	width: 70px;
	height: 70px;
	border-radius: 100%;
}
#btn_supdown {
	position: absolute;
	font-size: 0.70em;
	bottom: -385px;
	right: 10px;
	width: 70px;
	height: 70px;
	border-radius: 100%;	
}
#fdwn {
	left: 25px;
	top: -55px;
	width: 20px;
}
#wdwn {
	left: -63px;
	top: 365px;
	width: 20px;
}

.Abordagem {
	position: relative;
	top: -200px;
	padding: 0px 20px;
}
.Abordagem h2 {
	font-size: 1.0em;
}
.Abordagem .txtAbordagem p {
	font-family: "Calibri",Helvetica Neue,Roboto,Helvetica,Arial,sans-serif;
	font-size: 0.75em;
}
.composicao {
	top: -200px;
	padding: 0px 20px;
}
.composicao-conteiner {
	padding-left: 0px;
	padding-right: 0px;
}
.titcomp {
	font-size: 1.0em;
	padding: 8px 0px;
}
.composicao-itens {
	margin: 0px;
	margin-top: 40px;
	margin-bottom: 20px;
}
.composicao-itens h2 {
	font-size: 1.0em;
}
.composicao-conteiner span {
	position: absolute;
	bottom: -25px;
	right: 30px; 
	font-size: .75em;
	/*color: #E59416;*/
	color: #ED9C2E;
	padding: 8px 5px;
}
.composicao-itens span {
	position: relative;
	left: 0px;
	top: -1px;
	font-size: 1.0em;
	color: red;
}


}


@media (max-width: 380px) {
	.newsletter-form button {
		font-size: 1.5em;
	}	
	.menu ul ul a {
		/*color: #3CBE0F;  /*Define a cor do link dentro do topo*/
		color: #FFFFFF;
	}	
 }