/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 15.8.2023, 15:21:48
    Author     : pbartos
*/



.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}


.active.fade-li1 {
 animation: fade-li1 1s ease-in;
}

.active.fade-li2 {
  animation: fade-li2 2s ease-in;
}

.active.fade-li3 {
 animation: fade-li3 3s ease-in;
}

.active.fade-li4 {
 animation: fade-li4 4s ease-in;
}

.active.fade-li5 {
 animation: fade-li5 5s ease-in;
}

.active.fade-li6 {
 animation: fade-li6 6s ease-in;
}

.active.fade-right {
  animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


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

@keyframes fade-li1 {
  0% {
    
    opacity: 0;
  }
  100% {
   
    opacity: 1;
  }
}

@keyframes fade-li2 {
  0% {
    
    opacity: 0;
  }
  20% {
    
    opacity: 0;
  }
  100% {
   
    opacity: 1;
  }
}

@keyframes fade-li3 {
  0% {
    
    opacity: 0;
  }
  40% {
    
    opacity: 0;
  }
  100% {
   
    opacity: 1;
  }
}

@keyframes fade-li4 {
  0% {
    
    opacity: 0;
  }
  60% {
    
    opacity: 0;
  }
  100% {
   
    opacity: 1;
  }
}

@keyframes fade-li5 {
  0% {
    
    opacity: 0;
  }
  77% {
    
    opacity: 0;
  }
  100% {
   
    opacity: 1;
  }
}

@keyframes fade-li6 {
  0% {
    
    opacity: 0;
  }
  90% {
    
    opacity: 0;
  }
  100% {
   
    opacity: 1;
  }
}


.scroll-snap {
  scroll-snap-type: y mandatory;
}

.scroll-snap > section {
   scroll-snap-align: center;
}


