

.js-scroll {
  opacity: 0;
  transition: opacity 500ms;
}

.js-scroll.scrolled {
  opacity: 1;
}
.scrolled.fade-scale {
  animation: fade-scale 1s ease-in-out both;
}

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1s ease-in-out both;
}

.scrolled.fade-in-top {
  animation: fade-in-top 1s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 1s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 1s ease-in-out both;
}



.scrolled.fade-ib-1{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: 0s;
}
.scrolled.fade-ib-2{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .1s;
}
.scrolled.fade-ib-3{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .2s;
}
.scrolled.fade-ib-4{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .3s;
}
.scrolled.fade-ib-5{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .4s;
}
.scrolled.fade-ib-6{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .5s;
}
.scrolled.fade-ib-7{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .6s;
}
.scrolled.fade-ib-8{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .7s;
}
.scrolled.fade-ib-9{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .8s;
}

.scrolled.fade-ib-10{
  animation: fade-in-bottom .5s ease-in-out both;
  animation-delay: .9s;
}

@keyframes fade-scale {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0;
  }

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

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }

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

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

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

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}










