body{
	margin: 0;
	padding: 0;
	background-color: #fffffe;
	font-family: 'Rubik', sans-serif;
	font-size: 16px;
}
ul{
	list-style: none;
	padding-left: 0px;
}
a{
	text-decoration: none;
}
h1{
	font-weight: bold;
}
p{
	font-weight: lighter;
}

#info{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	max-height: 100vh;
}
#info .col{
	border: 1px solid black;
	height: 420px;
	max-height: 420px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}


.titulo{
	margin: 0px;
	padding: 30px;
	padding-bottom: 0px;
	border-bottom: 1px solid;
}
.titulo h1{
	text-transform: capitalize;
	color: #3ce2a5;
	font-size: 70px;
	margin: 0;
}
.titulo h5{
	font-weight: lighter;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 0px;
	padding-left: 5px;
}

#datas{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#datas .data{
	flex-basis: 50%;
	padding: 0px 40px;
}
.data h4{
	text-transform: capitalize;
	margin-top: 30px;
}
.data ul li{
	margin: 5px 0px;
}

.col{
	overflow: hidden;
}
.col a:hover > img{
	opacity: .8;
	transition: .5s ease-in-out;
}

footer{
	padding: 15px;
	background-color: #3ce2a5;
}
footer .info{
	margin: 0 auto;
	text-align: center;
	color: white;
}


nav{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background-color: #3ce2a5;
}
nav ul{
	display: flex;
	list-style-type: none;
	padding-left: 0px;
}
nav ul li{
	padding: 0px 20px;
	font-size: 18px;
}
nav ul li a{
	color: white;
	text-decoration: none;
}
nav ul li a:hover{
	color: white;
	text-decoration: none;
}


@media screen and (max-width: 1024px){
	#info, #datas, .col{
		flex-direction: column;
		align-items: normal;
	}
	img{
		max-width: 100%;
	}
	.col{
		justify-content: flex-start!important;
		height: 100vh!important;
		max-height: 100vh!important;
		overflow: auto;
	}
}