/* [project]/components/Hero.module.css [client] (css) */
.Hero-module__Z8hQ_W__heroContainer {
  background-color: #000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Hero-module__Z8hQ_W__heroSlide {
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.Hero-module__Z8hQ_W__heroImage {
  object-fit: cover;
  opacity: 0;
  width: 100%;
  height: 100%;
  animation: 18s ease-in-out infinite Hero-module__Z8hQ_W__slideInOut;
  position: absolute;
  top: 0;
  left: 0;
}

.Hero-module__Z8hQ_W__heroImage:first-child {
  animation-delay: 0s;
}

.Hero-module__Z8hQ_W__heroImage:nth-child(2) {
  animation-delay: 6s;
}

.Hero-module__Z8hQ_W__heroImage:nth-child(3) {
  animation-delay: 12s;
}

.Hero-module__Z8hQ_W__heroImage:nth-child(4) {
  animation-delay: 18s;
}

.Hero-module__Z8hQ_W__heroContent {
  text-align: center;
  color: #fff;
  z-index: 1;
  max-width: 600px;
  position: absolute;
}

.Hero-module__Z8hQ_W__heroTitle {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: bold;
}

.Hero-module__Z8hQ_W__heroDescription {
  opacity: .8;
  color: gold;
  font-size: 1.5rem;
}

@keyframes Hero-module__Z8hQ_W__slideInOut {
  0%, 100% {
    opacity: 0;
    transform: scale(1.1);
  }

  20% {
    opacity: 1;
    transform: scale(1);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }

  60% {
    opacity: 0;
    transform: scale(1.1);
  }

  80% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* [project]/node_modules/react-circular-progressbar/dist/styles.css [client] (css) */
.CircularProgressbar {
  vertical-align: middle;
  width: 100%;
}

.CircularProgressbar .CircularProgressbar-path {
  stroke: #3e98c7;
  stroke-linecap: round;
  transition: stroke-dashoffset .5s;
}

.CircularProgressbar .CircularProgressbar-trail {
  stroke: #d6d6d6;
  stroke-linecap: round;
}

.CircularProgressbar .CircularProgressbar-text {
  fill: #3e98c7;
  dominant-baseline: middle;
  text-anchor: middle;
  font-size: 20px;
}

.CircularProgressbar .CircularProgressbar-background {
  fill: #d6d6d6;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-background {
  fill: #3e98c7;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-text {
  fill: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-path {
  stroke: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-trail {
  stroke: rgba(0, 0, 0, 0);
}

/*# sourceMappingURL=_aed31b56._.css.map*/