#pageHeader h1, #pageHeader h2, .titles-page h1, .titles-page h2 { -webkit-animation: titles_anim 1.7s cubic-bezier(0.250, 0.460, 0.450, 0.920) both !important; animation: titles_anim 1.7s cubic-bezier(0.250, 0.460, 0.450, 0.920) both !important; -webkit-animation-delay: 1s;   animation-delay: 1s;  -webkit-animation-fill-mode: both;   animation-fill-mode: both; }
@keyframes titles_anim { 
	0%{ opacity:0; transform: scale(0.95); -webkit-transform: scale(0.95); } 
	65%{ opacity:0; transform: scale(0.95); -webkit-transform: scale(0.95); } 
	100%{opacity:1; transform: scale(1) translateY(0px); -webkit-transform: scale(1); }
}
@-webkit-keyframes titles_anim {
	0%{ opacity:0; -webkit-transform: scale(0.95);} 
	65%{ opacity:0;  -webkit-transform: scale(0.95);} 
	100%{ opacity:1;  -webkit-transform: scale(1);}
}