/*############################
FONTES
##########
*/
@font-face {
	font-family: 'avenir_light';
	font-weight: normal;
	src: url('fontes/AVENIRLT-LIGHT.ttf') format('truetype');
}
@font-face {
	font-family: 'avenir_heavy';
	font-weight: normal;
	src: url('fontes/AVENIRLT-HEAVY.ttf') format('truetype');
}
@font-face {
	font-family: 'avenir_black';
	font-weight: normal;
	src: url('fontes/avenir_black.ttf') format('truetype');
}
/*############################
ESTILO
##########
*/
.direita {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: url('fundo_direita.png') right center no-repeat;
	background-size: cover;
}
.esquerda {
	display: flex;
	justify-content: center;
	align-items: center;	
	flex-direction: column;
	background: url('fundo_esquerda.png') left center no-repeat;
	background-size: cover;
}
.direita h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-indent: -9797979px;
	background: url('logo_direita.png') center no-repeat;
	width: 284px;
	height: 166px;
	margin-top: -20px;
}
.esquerda h1 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-indent: -9797979px;
	background: url('logo_esquerda.png') center no-repeat;
	width: 284px;
	height: 166px;
	margin-top: -20px;
}
html {
	height: 100vh;
}
body {
	position: relative;
	margin: 0px;
	height: 100vh;
	display: grid;
	grid-gap: 0;
	grid-template-columns: 1fr 1fr;
}
.text_direita {
	text-align: left;
	margin-left: 18px;
	grid-column: 1/2;
	grid-row: 4;
	margin-top: -75px;
}
.text_esquerda {
	text-align: right;
	margin-right: 18px;
	grid-column: 4;
	grid-row: 4;
	margin-top: -75px;
}
.img_direita {
	grid-column: 2/3;
	grid-row: 2/3;
}
.img_esquerda {
	grid-column: 3/4;
	grid-row: 2/3;
}
div.center {
	position: absolute;
	top: 50%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
}
a.acc {
	font-family: 'avenir_black';
	font-size: 13px;
	line-height: 14px;
	letter-spacing: 0.45px;
	text-transform: uppercase;
	text-decoration: none;
	width: 101px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #4f4f4f;
	background-color: #fff;
	height: 27px;
	border-radius: 10px;
	margin-top: 60px;
}

/*############################
RESPONSIVO
##########
*/
/*###################
#### 1600px
################### */
@media (max-width: 1600px) {

}
/*###################
#### 900px
################### */
@media (max-width: 1000px) {
	body {
		grid-template-columns: 1fr;
		height: 100vh;
	}
	a.acc {
		margin-top: 30px;
	}
}