header {
	height:80vh;
	background-size:cover;
	background-position:center;
	background-color:#f5f2eb;
}
h5 {
	text-transform:uppercase;
	color:#58513e;
	margin-top:20vh;
	margin-bottom:10vh;
	font-size:34px;
}
h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:#58513e;
  font-size:90px;
}
h2 {
	color:#cab57d;
	line-height:45px;
	margin-top:10vh;
	font-size: 35px;
}
.casa {
	position: relative;
  	text-align: center;
}
.casa img {
	max-width:40vw;
	animation: dissolvenza 6s;
}

p {
	font-size:22px;
	line-height:40px;
	color:#58513e;
}
#welcome p {
	padding:40px 0px; 
	margin:0px;
	text-align:justify;
}
.head {
	height:100vh;
	display: flex;
  	justify-content: center;
  	align-items: end;
}

#contactssuccess, #contactserror, #loader-c, #contactform {
	padding: 40px 0px;
} 

i {
	font-size:35px;
	color:#58513e;
}

section {
	padding:0px;
}
@keyframes dissolvenza {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
	h5 {
		font-size:28px;
	}
	.casa img {
		max-width:80vw;
	}
	
}