* {
	font-family: 'Rubik', sans-serif;
}

body {
	border-top: 10px solid #000;
}

.container {
	padding: 0px 40px;
}

.title {
	font-weight: 400;
	margin-top: 50px;
}

.subtitle {
	font-weight: 300;
}

.button {
	font-size: 20px;
	height: auto;
	border-radius: 0px;
	background: #000;
	color: #fff;
	padding: 15px 35px;	
	margin-top: 20px;
	border: none;
}

.button:hover {
	color: #ccc;
}


/* Hero */
.hero {
	background: url('../img/hero.png') no-repeat center;
	background-size: cover;
}

.hero .title {
	font-size: 88px !important;
	font-weight: 700;
	text-align: center;
}

.hero .subtitle {
	background: #000;
	display: inline;
	padding: 5px 0 !important;
	text-align: center;
}

.hero .button {
	max-width: 220px;
	margin: 20px auto;
	display: block;
}

/* Form */
#form .title,
#form .subtitle {
	text-align: center;
}

#form .subtitle {
	padding: 60px 0px;
}

#form .select select {
	border-color: #91dc5a !important;
	position: relative;
}

#form .select:before {
  content: '';
  width: 16px;
  height: 16px;
  background: url('../img/check.png') no-repeat center;
  left: auto; 
  right: -25px;
  top: 0px;
  position: absolute;
  opacity: 0;
}

#form .active:before {
  opacity: 1;
  top: 10px;
  transition: 0.2s all linear;
}

#form .disabled {
	opacity: 0.3;
	background: #dbdbdb !important;
 	border: none;
}


.field {
	margin-bottom: 1.25rem !important;
}

.select:not(.is-multiple):not(.is-loading)::after {
	border-color: #000;
}

.label {
	font-weight: 400;
}


/* Resultado */
#resultado {
	width: 100%;
	min-height: 700px;
	background: #E7ECEF;	
	padding: 100px 0px;
	margin-top: 100px;
}

#resultado .title {
	text-align: left;
	margin-top: 150px;
}

#resultado .button {
	margin-bottom: 60px;
}

#resultado .espelho {
	width: 100%;
	height: 486px;
	background: url('../img/espelho.png') no-repeat top center;
	display: block;
	position: relative;
}

#resultado .pula {
	animation: pula 1s infinite;
}

@keyframes pula {
  0% {
  	margin-top: -10px;
  }
  50% {
  	margin-top: 10px;
  }
  100% {
  	margin-top: -10px;
  }
}

#resultado .moldura {
	width: 100%;
	height: 486px;
	background: url('../img/moldura.png') no-repeat center;
	display: block;
	position: absolute;
	top: 0px;
	z-index: 2;
}

.perfil {
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.masculino-branca {
	width: 123px;
	height: 209px;
	background: url('../img/masculino-branca.png') no-repeat center;	
	top: 50px;
	display: none;
}

.masculino-indigena {
	width: 123px;
	height: 209px;
	background: url('../img/masculino-indigena.png') no-repeat center;	
	top: 50px;
	display: none;
}

.masculino-parda {
	width: 123px;
	height: 209px;
	background: url('../img/masculino-parda.png') no-repeat center;	
	top: 65px;
	display: none;
}

.masculino-preta {
	width: 123px;
	height: 209px;
	background: url('../img/masculino-preta.png') no-repeat center;	
	top: 65px;
	display: none;
}

.feminino-branca {
	width: 123px;
	height: 209px;
	background: url('../img/feminino-branca.png') no-repeat center;	
	top: 50px;
	display: none;
}

.feminino-indigena {
	width: 123px;
	height: 209px;
	background: url('../img/feminino-indigena.png') no-repeat center;	
	top: 50px;
	display: none;
}

.feminino-parda {
	width: 123px;
	height: 209px;
	background: url('../img/feminino-parda.png') no-repeat center;	
	top: 60px;
	display: none;
}

.feminino-preta {
	width: 123px;
	height: 209px;
	background: url('../img/feminino-preta.png') no-repeat center;	
	top: 60px;
	display: none;
}

/* Sobre */
#sobre {
	padding: 100px 0px;
}

#sobre p {
	font-size: 14px;
}

#sobre .parceiros li {
	display: inline-block;
	float: left;	
  align-self: flex-end;
  margin-left: 30px;
}

#sobre .parceiros li span {
	display: block;	
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 15px;
}

#sobre .parceiros li .logos {
	display: flex;
  justify-content: center;
  align-items: center;
}

#sobre .parceiros li .logos a {
	margin-right: 20px;	
}

/* Footer */
footer {
	width: 100%;
	padding: 20px 0px;
	background: #000;
}

footer p {
	color: #fff;
	font-size: 14px;
	font-weight: 300;	
	text-align: center;
}

/* Modal */
.modal .modal-content {
	background: #fff;
	padding: 20px 40px 60px 40px;
}

@media only screen and (max-width: 640px){
	.hero .title {
		font-size: 58px !important;
	}

	#sobre .parceiros li {
		display: block;
		float: none;
		margin-left: 0px;
		margin-top: 30px;
		text-align: center;
	}

	#sobre .parceiros li {
		padding-top: 20px;
		border-top: 1px solid #ccc;
	}	

	#resultado {
		min-height: 200px;
	}

	#resultado .button {
		width: 220px;
		margin-bottom: 10px;
	}

	#resultado .title {
		margin-top: 50px;
	}

	.espelho {
		display: none !important;
	}

}