#header{
	width:80%; 
	margin:auto;
	overflow: hidden;
}

#setbody{
	width: 100%;
	margin: 0px;
}

.caixa{
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 25px;
}
.pequeno{
	font-size: 14px;
}

#imagem1{
	background-image: url("fundo.svg");
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: 20px;
	height: 500px;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.imagem2{
	background-image: url("fundo2.svg");
	background-repeat: no-repeat;
	background-color:#929ba7;
	background-position: center center;
}

.novotexto{
	color: black;
	font-family: urbanist;
	letter-spacing: 3px;
	line-height: 30px;
	padding-top: 5%;
	margin:auto;
	font-weight: bold;
	font-size: 18px;
}

.titulo{
	color: #001532;
	font-family: pacifico;
	text-align: center;
	letter-spacing: 3px;
	line-height: 30px;
	padding-top: 30%;
	margin:auto;
	font-weight: 300;
	font-size: 40px;
	font-style: italic;
}

.titulopequeno{
	font-size: 25px;
}

.smWhite{
	color: #001532;
}

.smGrey{
	COLOR:#c28109;
	FONT-SIZE: 26px;
 	font-weight: bold;
 	font-style: italic;
	font-family: pacifico;
}

.rodape{
	background-color: #000611;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: auto;
	text-align: center;
}

button{
	display: block; 
	background: #001532; 
	color: white; 
	font-family: urbanist;
	cursor: pointer; 
	width: auto;
	height: auto;
	border-radius: 20px;
	padding: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

button:hover{
	background: #F5A91B;
	color: black; 
}

a:link, a:visited, a:hover, a:active{
	text-decoration: none;
	color: rgb(255, 255, 255);
}
a:hover{
	color:#000000;
}
.novamargem{
	width: 80%;
	border-radius: 25px;
	height: auto;
	margin: auto;
	margin-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	overflow: hidden;
}

.margemcurva{
	width: 65%;
	border-radius: 30px;
	height: auto;
	margin: auto;
	margin-top: 20px;
	
	text-align: center;
	overflow: hidden;
}

.novaesquerda{
	width: 46%; 
	height: auto;
	padding-bottom: 2%;
	float: left;
	text-align: left;
	overflow: hidden;
	margin: 1%;
}

#direita{
	width: 46%; 
	float: right;
	text-align: left;
	overflow: hidden;
	margin: auto;
	margin: 1%;
}

.esquerdadireita{
	width: 46%; 
	padding-left: 2%;
	padding-right: 2%;
	float: left;
	text-align: right;
	overflow:auto;
	height: 450px;
}

.direitaesquerda{
	width: 46%; 
	padding-left: 2%;
	padding-right: 2%; 
	float: right;
	text-align: left;
	overflow: auto;
	height: 450px;
}

select{
	width: auto;
	margin-left: 5%;
	border-radius: 5px;
	font-family: urbanist;
	font-size: 18px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

input{
	border-radius: 5px;
	font-family: urbanist;
	font-size: 18px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

textarea{
	border-radius: 5px;
	font-family: urbanist;
	font-size: 18px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
}

@keyframes down {
	from {
		opacity: 0;
		transform: translate3d(0, -10px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

.flipbox {
	background-color: transparent;
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 4%;
	float: left;
	width: 150px;
	height: 150px;
	perspective: 1000px;
}

.flipboxinner {
position: relative;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}

.flipbox:hover .flipboxinner {
transform: rotateY(180deg);
}

.flipboxfront, .flipboxback {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}

.flipboxback {
transform: rotateY(180deg);
}