.sectionHeaderHome section{
	z-index:5;
}
.sectionHeaderHome::before{
	content:"";
	position:absolute;
	width:100%;
	height:100%;
	left:0;
	top:0;
	background:rgb(245 245 245 / 50%);
}
.sectionHeaderHome > div{
	padding-top:20em;
}
.sectionHeaderHome{
	background-position-y:0;
}
.sectionHeaderHome div img{
	width:100vw;
	position:absolute;
	left:0;
	bottom:0;
	max-height:55%;
	min-height:35%;
}
.sectionHeaderHome section{
	animation-name:appearSection;
	animation-duration:1s;
	transform:translateX(-5em);
	opacity:0;
	animation-delay:0.5s;
	animation-fill-mode:forwards;
}
@keyframes appearSection{
	from{
		transform:translateX(-5em);
		opacity:0
	}
	to{
		transform:translateX(0);
		opacity:1;
	}
}
.sectionHeaderHome section a{
	background:var(--basicColor1);
	padding:0.8em 2em;
	color:white;
	transition:0.3s all ease;
	outline-color:var(--basicColor1);
}
.sectionHeaderHome section a:hover{
	background:transparent;
	outline:1px solid var(--basicColor1);
	color:var(--basicColor1);
}
@media screen and (max-width:900px){
	.sectionHeaderHome section{
		width:100%;
	}
	.sectionHeaderHome img{
		display:none;
	}
}