@-webkit-keyframes "vortex" {
	0% {
	    -webkit-transform: scale(0.1);
	    transform: scale(0.1) rotate(0);
		opacity: 0;
	}
	20% {
	    -webkit-transform: scale(0.9) rotate(360deg);
	    transform: scale(0.9) rotate(360deg);
	    opacity: 1;
	}
	60% {
	    -webkit-transform: scale(1) rotate(360deg);
	    transform: scale(1) rotate(360deg);
	    opacity: 1;
	}
  	100% {
    	-webkit-transform: scale(0.9) rotate(360deg);
    	transform: scale(0.9) rotate(360deg);
    	opacity: 1;
	}
}

.panel-blue-cta { background-color: #1942d2; text-align: center; padding-top: 24px; padding-bottom: 14px; }
.panel-blue-cta h3 { display: inline-block; color: #fff; font-family: 'Antonio', sans-serif; font-size: 88px; font-weight: 500; text-transform: uppercase; margin-bottom: 0; padding-top: 35px; }
.panel-blue-cta h3 span { color: #fff900; }
.panel-blue-cta img { display: inline-block; -webkit-animation: vortex 10s linear infinite; animation: vortex 10s linear infinite;}

.panel-blue-cta.panel-class-home { margin-top: 100vh; }

@media (max-width: 1599px){
	.panel-blue-cta.panel-class-home h3 { font-size: 70px; }
}
@media (max-width: 991px){
	.panel-blue-cta.panel-class-home { padding-bottom: 40px; }
	.panel-blue-cta.panel-class-home h3 { font-size: 64px; padding-top: 20px; }
}
@media (max-width: 767px){
	.panel-blue-cta.panel-class-home h3 { font-size: 40px; }
}