/* ----------------------------------------------
 * Generated by Animista on 2022-2-4 19:45:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@media (min-width:992px){
    .appear-animation-visible .tracking-in-expand {
        -webkit-animation: tracking-in-expand 1s ease-in-out both;
                animation: tracking-in-expand 1s ease-in-out both;
    }
}
 @-webkit-keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  
/* delay */
.delayx1 {
    animation-delay: 1s;
}
.delayx2 {
    animation-delay: 2s;
}
.delayx3 {
    animation-delay: 3s;
}