/* ===== Preloader & Camera Shutter ===== */
@keyframes openShutter {
  to {
    transform: scaleY(1);
    top: 0;
  }
}
@keyframes closeShutter {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.1;
  }
}
/* ===== About Section ===== */
@keyframes progressBar-01 {
  0% {
    width: 20%;
  }
  10% {
    width: 95%;
  }
  95% {
    width: 95%;
  }
  100% {
    width: 20%;
  }
}
@keyframes progressBar-02 {
  0% {
    width: 20%;
  }
  10% {
    width: 80%;
  }
  95% {
    width: 80%;
  }
  100% {
    width: 20%;
  }
}
@keyframes progressBar-03 {
  0% {
    width: 20%;
  }
  10% {
    width: 90%;
  }
  95% {
    width: 90%;
  }
  100% {
    width: 20%;
  }
}
/* ===== Numbers Section ===== */
@keyframes counter-01 {
  0% {
    --num: 0;
  }
  10% {
    --num: 850;
  }
  95% {
    --num: 850;
  }
  100% {
    --num: 0;
  }
}
@keyframes counter-02 {
  0% {
    --num: 0;
  }
  10% {
    --num: 230;
  }
  95% {
    --num: 230;
  }
  100% {
    --num: 0;
  }
}
@keyframes counter-03 {
  0% {
    --num: 0;
  }
  10% {
    --num: 9450;
  }
  95% {
    --num: 9450;
  }
  100% {
    --num: 0;
  }
}
@keyframes counter-04 {
  0% {
    --num: 0;
  }
  10% {
    --num: 780;
  }
  95% {
    --num: 780;
  }
  100% {
    --num: 0;
  }
}
