section.hero span{font-family:inherit;font-size:inherit;}
section.hero .fullbackground{min-height:610px;}
section.hero .fullbackground .wrap{position: relative;height:610px;}
section.hero .columns .column{animation-name:ShiftUp; animation-duration: 1s; animation-fill-mode: forwards; animation-delay: .3s;opacity:0; transform: translateY(80px);}
section.hero .columns .column.-left{position: absolute;bottom: 0;}
section.hero .columns .column.-right { width: 50%; position: absolute; right: 0; display: flex; justify-content: center;   align-items: center;  top: 0; bottom: 0; flex-direction: column;}
section.hero .wrap .columns .column.-middle{display: flex;justify-content:center;flex-direction: column;align-items: center;min-height: 610px;}
section.hero h1{font-family: 'Gelasio', serif;}

@media screen and (max-width:767px){
		section.hero .fullbackground .wrap{height:400px;}
		section.hero .fullbackground{min-height:500px;}
		section.hero .columns .column p{display: none;}
		section.hero .columns .column.-right{width:100%;}
		section.hero .columns .column.-middle{min-height:340px;}
}

@keyframes ShiftUp {
	0%{ opacity:0; transform: translateY(80px); }
	50%{opacity: 1;}
	100%{opacity: 1; transform: translateY(0);}
}