.reveal{
  position: relative; /* FILTERED: 1702989925.808 */ 
  transform: translateY(150px);
  opacity: 0;
  transition: .9s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}
.active.fade-bottom {
  animation-name: fade-bottom;
  animation-duration: .4s;
  animation-timing-function: ease-out;
}
.active.fade-left {
  animation: fade-left .9s ease-in;
}
.active.fade-right {
  animation: fade-right .9s ease-in;
}


.active.fade-nosotros .fade-lateral-right {
  animation-name: fade-lateral-right;
  animation-duration: .4s;
  animation-timing-function: ease-out;
}
.active.fade-nosotros .fade-lateral-left {
  animation-name: fade-lateral-left;
  animation-duration: .4s;
  animation-timing-function: ease-out;
}

@keyframes fade-lateral-right {
  0% {
    /*transform: translateY(50px);*/
    margin-right: -100px;
    margin-top: 200px;
    transform: rotate(-10deg);
    opacity: 0;
  }

  100% {
    /*transform: translateY(0);*/
    margin-right: 0;
    margin-top: 0;
    transform: rotate(0deg);
    opacity: 1;
  }
}

@keyframes fade-lateral-left {
  0% {
    /*transform: translateY(50px);*/
    margin-left: -100px;
    padding-top: 200px;
    transform: rotate(10deg);
    opacity: 0;
  }

  100% {
    /*transform: translateY(0);*/
    margin-left: 0;
    padding-top: 0;
    transform: rotate(0deg);
    opacity: 1;
  }
}


@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  30% {
    transform: translateY(-20px);
    opacity: .5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.scale_animation a:hover{
  transform: scale(1.1);
}

.translate_animation_y a:hover{
  transform: translateY(-5px);

}
.translate_animation_x a:hover{
  transform: translateX(5px);
}




@keyframes loadingpulse_down {
  0% {
    bottom: 28px;
    opacity: 0.1;
  }
  10% {
    bottom: 10px;
    opacity: 1;
  }
  100% {
    bottom: 28px;
    opacity: 0.1;
  }
}

.btnanimate:link,
.btnanimate:visited {
  transition: all .2s;
}

.btnanimate:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btnanimate:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


.btnanimate::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s;
}


@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}


.pulseamimation {
  animation: pulseopt .4s ease-in-out;
}

@keyframes pulseopt {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  70% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


@keyframes wave{
  to{
    transform: translateX(-100%);
  }
}

@-webkit-keyframes wave{

  to{
    -webkit-transform: translateX(-100%);
  }
}

@keyframes pulsedos{
  0%{
    transform: scale(0.1);
    opacity: 0;
  }

  50%{
    transform: scale(1.1);
    opacity: .9;
  }

  100%{
    transform: scale(1);
    opacity: 1;
  }
}


@keyframes pulse{
  0%{
    transform: scale(0.1);
    opacity: 0;
  }

  10%{
    transform: scale(1.1);
    opacity: 1;
  }

  40%{
    transform: scale(0.9);
    opacity: 0.8;
  }
  100%{
    transform: scale(0.8);
    opacity: 0;
  }
}


.transition{
  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  -o-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

.transition-med{
  -webkit-transition: all 0.4s 0s ease;
  -moz-transition: all 0.4s 0s ease;
  -o-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
}

.transition-fast{
  -webkit-transition: all 0.2s 0s ease;
  -moz-transition: all 0.2s 0s ease;
  -o-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}
