@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

@keyframes heightDown {
  0% {
    height: 30px;
    
  }
  50% {
    height: 63px;
  }
  100% {
    height: 30px;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10rem, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInUpSHero {
  from {
    opacity: 0;
    transform: translate3d(0, 3rem, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpSHero {
  animation-name: fadeInUpSHero;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-timing-function: cubic-bezier(.07,.51,.12,1);
}

@keyframes fadeInUpS {
  from {
    opacity: 0;
    transform: translate3d(0, 3rem, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpS {
  animation-name: fadeInUpS;
  animation-timing-function: cubic-bezier(.07,.51,.12,1);
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10rem, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}
@keyframes wipe {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
.wipe {
  animation-name: wipe;
}
@keyframes wipeBg {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.wipeBg {
  animation-name: wipeBg;
}
@keyframes wipe-Bg {
  from {
    width: 0;
  }
  to {
    width: 100vw;
  }
}
.wipe-Bg {
  animation-name: wipe-Bg;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}