/***********************
 ANIMATIONS CSS
***********************/

/* Type Animation */

.type {
  animation: type 2s steps(25), blink 0.5s infinite alternate;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  border-right: 3px solid;
}

@keyframes type {
  from {
    width: 0;
  }
}

/* blink cursor for typeing animation*/

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Slide animation */

/* slideIn class */

.slideIn {
  animation: slideIn 2s;
  overflow: hidden;
  white-space: nowrap;
  width: 300px;
  animation-fill-mode: both;
}

/* slideIn keyframes */

@keyframes slideIn {
  from {
    width: 0;
  }
}

/* slideUp class */

.slideUp {
  animation: slideUp 2s;
  overflow: hidden;
  position: relative;
  animation-fill-mode: both;
}

/* slideUp keyframes */

@keyframes slideUp {
  0% {
    bottom: -300px;
  }
  100% {
    bottom: 0px;
  }
}

/* slideLeft class */

.slideLeft {
  animation: slideLeft 3s;
  overflow: hidden;
  position: relative;
  animation-fill-mode: both;
}

/* slideLEft keyframes */

@keyframes slideLeft {
  0% {
    right: -3000px;
  }
  100% {
    right: 0px;
  }
}

/* slideRight */

.slideRight {
  animation: slideRight 2s;
  overflow: hidden;
  position: relative;
  animation-fill-mode: both;
}

/* slideRight keyframes */

@keyframes slideRight {
  0% {
    left: -3000px;
  }
  100% {
    left: 0px;
  }
}

/* FADE  Animation  */

.fadeIn {
  animation: fadeIn 2s;
  width: 100%;
  height: auto;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animaton Delays class*/

.wait-2s {
  animation-delay: 2s;
}

.wait-3s {
  animation-delay: 3s;
}

/* Zoom image on hover based  */

img.zoom {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}

.transition {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
/* ANIMATIONS  */
@keyframes borderLeftDown {
  0% {
    border-left: 0px solid blue;
  }
  100% {
    border-left: 5px solid #007bff;
  }
}

@keyframes bgFadeIn {
  0% {
    background: #51d8dae5;
    color: #c2cfcf;
  }
  100% {
    background: #a0cfff8a;
    color: #2b3131;
  }
}

@keyframes borderDown {
  0% {
    border-bottom: 0px solid;
  }
  100% {
    border-bottom: 5px solid;
  }
}

@keyframes bgMenuShow {
  0% {
    background: #00000005;
  }
  100% {
    background: #ffffff;
  }
}
