/* ************************** Animacion ************************** */

.slide-bottom-1 {
	-webkit-animation: slide-bottom 1s ease-out both;
	        animation: slide-bottom 1s ease-out both;
}
.slide-bottom-2 {
	-webkit-animation: slide-bottom 1.5s ease-out both;
	        animation: slide-bottom 1.5s ease-out both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-1-6 12:38:51
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
              opacity: 1;
    }
  }
  @keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
              opacity: 1;
    }
  }