
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',sans-serif;
}

body{
	background: #eaeaea;
}

.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 8px;
	background: #0B6238;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
}

.logo{
	padding-left: 10px;
	font-size: 35px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	opacity: 0;
	animation: slideRight 1s ease forwards;
}

.navbar a{
	font-size: 18px;
	color: #222;
	text-decoration: none;
	font-weight: 500;
	margin: 0 20px;
	transition: .3s;
	opacity: 0;
	animation: slideTop .5s ease forwards;
	animation-delay: calc(.2s * var(--i));
}

.navbar a:hover, .navbar a.active{
	color: #A22A3F;
}

.social-media{
	padding-right: 60px;
	display: flex;
	justify-content: space-between;
	width: 200px;
	height: 40px;
}

.social-media a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 2px solid transparent;
	text-decoration: none;
	transform: rotate(45deg);
	transition: .5s;
	opacity: 0;
	animation: slideSci .5s ease forwards;
	animation-delay: calc(.2s * var(--i));
}
.social-media a:hover{
	border-color: white;
}

.social-media a i{
	font-size: 30px;
	color: white;
	transform: rotate(-45deg);
}


.home {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 50px 8% 0;
	overflow: hidden;
	padding-top: 160PX;
	padding-bottom: 100PX;
}

.home-content {
	/*position: absolute;*/
	max-width: 700px;
	height: auto;
}

.home-content h1{
	font-size: 50px;
	line-height: 1.2;
	opacity: 0;
	animation: slideBottom 1s ease forwards;
	animation-delay: 1s;
}

.home-content h3{
	font-size: 40px;
	color: #0B6238;
	opacity: 0;
	animation: slideRight 1s ease forwards;
	animation-delay: 1.3s;
}

.home-content p{
	font-size: 16px;
	margin: 15px 0 30px;
	opacity: 0;
	animation: slideLeft 1s ease forwards;
	animation-delay: 1.3s;
}

.btn{
	display: inline-block;
	padding: 10px 28px;
	background: #0B6238;
	border: 7px solid #0B6238;
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 1);
	font-size: 16px;
	color: white;
	letter-spacing: 1px;
	text-decoration: none;
	font-weight: 600;
	transition: .5s;
	opacity: 0;
	animation: slideTop 1s ease forwards;
	animation-delay: 2s;
}

.btn:hover{
	background: transparent;
	color: #0B6238;
}

.home-img{
	position: relative;
	right: -7%;
	width: 450px;
	height: 450px;
	transform: rotate(45deg);
}

.home-img .rombo{
	position: absolute;
	width: 100%;
	height: 100%;
	background: #eaeaea;
	border: 25px solid #0B6238;
	box-shadow: -15px 15px 15px rgba(0, 0, 0, .2);
	opacity: 0;
	animation: zoomOut 1s ease forwards;
	animation-delay: 1.6s;
}

.home-img .rombo img{
	/*position: absolute;*/
	top: 110px;
	/*left: -100px;*/
	max-width: 750px;
	transform: rotate(-45deg);
	opacity: 0;
	animation: car 1s ease forwards;
	animation-delay: 1.5s;
}

.home .rombo2{
	position: absolute;
	top: -25%;
	right: -25%;
	width: 700px;
	height: 700px;
	background: #0B6238;
	transform: rotate(45deg);
	z-index: -1;
}

/*KEYFRAMES ANIMADOS*/
@keyframes slideRight{
	0%{
		transform: translateX(-100px);
		opacity: 0;
	}
	100%{
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideLeft{
	0%{
		transform: translateX(100px);
		opacity: 0;
	}
	100%{
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideTop{
	0%{
		transform: translateY(100px);
		opacity: 0;
	}
	100%{
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes slideBottom{
	0%{
		transform: translateY(-100px);
		opacity: 0;
	}
	100%{
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideSci{
	0%{
		transform: translateX(100px) rotate(45deg);
		opacity: 0;
	}
	100%{
		transform: translateX(0) rotate(45deg);
		opacity: 1;
	}
}

@keyframes zoomOut{
	0%{
		transform: scale(1.1);
		opacity: 0;
	}
	100%{
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes car{
	0%{
		transform: translate(300px, -300px)scale(0) rotate(-45deg);
		opacity: 0;
	}
	100%{
		transform: translate(0, 0)scale(1) rotate(-45deg);
		opacity: 1;
	}
}