@charset "utf-8";

/* ==========================================
  Utility Classes
========================================== */

/* Display
------------------------------ */
.is-show {
  opacity: 1 !important;
}

.is-hide {
  opacity: 0 !important;
}

/* Responsive Display
------------------------------ */
@media (min-width: 768px) {
  .pc {
    display: block;
  }

  .pc--inline {
    display: inline;
  }

  .sp {
    display: none !important;
  }

  .sp--inline {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .pc {
    display: none !important;
  }

  .pc--inline {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .sp--inline {
    display: inline;
  }
}

/* Animations
------------------------------ */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

/* Animation Classes
------------------------------ */
.bz-circle-anime {
  animation: rotate 20s linear infinite;
}

.js-count-up {
  opacity: 0;
  display: inline-block;
}

.js-count-up.animate {
  animation: fadeIn 1s ease-out forwards;
}

/* Graph Bar Animations
------------------------------ */
.graph-bars .bar {
  fill: #43688866;
  transform-origin: bottom;
  animation: barGrow 0.8s ease-out backwards;
}

.graph-bars .bar:nth-child(1) {
  animation-delay: 0s;
}
.graph-bars .bar:nth-child(2) {
  animation-delay: 0.1s;
}
.graph-bars .bar:nth-child(3) {
  animation-delay: 0.2s;
}
.graph-bars .bar:nth-child(4) {
  animation-delay: 0.3s;
}
.graph-bars .bar:nth-child(5) {
  animation-delay: 0.4s;
}
.graph-bars .bar:nth-child(6) {
  animation-delay: 0.5s;
}
.graph-bars .bar:nth-child(7) {
  animation-delay: 0.6s;
}

/* Hover Effects
------------------------------ */
a:hover {
  opacity: 0.6;
}

a img {
  transition: var(--transition__slow);
}
