html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, input, textarea, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin:0; padding:0; border:0; font-size:100%; font:inherit; vertical-align:baseline; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block;}
*{margin: 0; padding: 0; border: none; box-shadow: none; outline: none; border-radius: 0; font-style: normal; font-weight: normal; box-sizing: border-box; cursor: default}
a{text-decoration: none;color: #000;}

.content{
	background-image: url('fundo.jpg');
	background-size: cover;
	font-family: 'Montserrat', sans-serif;
	position: relative;
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #000;
	font-size: 14px;
}
.content .marca svg{
	height: 320px;
	width: 400px;
}
.infos{
	display: flex;
	justify-content: center;
	width: 100%;

}
.infos-mobile{
	display: none;
}

.item{
	display: flex;
	flex-direction: column;
	margin: 30px;
	font-size: 1em;
}

.item a{
	line-height: 2em;
	position: relative;
	transition: 0.3s;
	padding: 4px 0;
	cursor: pointer;

}
.item a.mail{
	line-height: 1.5em;
}
.item a svg{
	width: 1.3em;
	height: 1.3em;
	fill: #9e6c5d;
	position: absolute;
	left: -30px;
	top: 4px;
	transition: 0.3s;
	top: 9px;
}

.item a:hover{
	color: #FFF;
}
.item a:hover svg{
	fill: #FFF;
}

@media(max-width: 768px){
	
	.content{
		font-size: 13px;
		height: 100vh;
		width: 100%;
	}

	.content .marca svg{
		height: 200px;
		width: 250px;
	}
	.item{
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.infos{
		display: none;
	}
	.infos-mobile{
		display: flex;
		justify-content: center;
		width: 100%;
		flex-direction: column;
		align-items: center;
	}

}