/**
 * Theme Name: twentytwentyfour-child
 * Template:   twentytwentyfour
 */

h2.meetTeam{
    
    animation-name: focus;
		animation-duration: 1s;
		animation-timing-function: linear;
		animation-iteration-count: 1;
        animation-delay: 2000ms;
}
@keyframes focus {
			
	0% {
		letter-spacing:.3em;
		filter:blur(12px);
		opacity:0;
		}
		100% {
			filter:blur(0);
			opacity:1;
		}
}

.wp-block-button:hover{
    animation-name: up;
        animation-duration: .2s;
		animation-timing-function: linear;
		animation-iteration-count: 1;
        animation-fill-mode: forwards;
}
@keyframes up {
			
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-2px)
    }
}

.aboutUs{
    animation-name: focus-in;
    animation-duration: .8s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
}
@keyframes focus-in {
        
    0% {
        filter:blur(10px);
        opacity:0.7;
    }
    100% {
        filter:blur(0);
        opacity:1;
    }
}

.is-style-rounded:hover{
    animation-name: zoom-out;
    animation-duration: .5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes zoom-out{
        
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.spirits:hover{
    animation-name: up;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes up {
        
0% {
    transform: scale(1);
}
100% {
    transform: scale(1.01)
}
}