/*@series1:            #017bb9;
@series2:            #26c7fc;
@series3:            #669d24;
@series4:            #aec000;
@series5:            #f9b000;
@series6:            #d85509;
@series7:            #e29100;*/
html,
body {
  overflow: hidden;
  height: 100%;
}
@media (max-width: 768px) {
  body {
    overflow-y: auto;
    height: auto;
  }
}
.hero-slider {
  position: relative;
  color: #fff;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}
.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slider .slide .slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 10px 0;
  background-color: #fff;
  color: #c600ff;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.hero-slider .slide .slide-content .subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}
.hero-slider .slide .slide-content .hashtag {
  padding: 8px 25px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  border-radius: 20px;
  background-color: #26c7fc;
  display: inline-block;
  margin-top: 15px;
}
.hero-slider .slide .slide-content .empty {
  display: none;
}
.hero-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background-color 0.3s;
}
.hero-slider .slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.hero-slider .slider-arrow.prev {
  right: 20px;
}
.hero-slider .slider-arrow.next {
  left: 20px;
}
@media (max-width: 768px) {
  .hero-slider {
    min-height: 400px;
  }
  .hero-slider .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
}
.feature-blocks {
  display: flex;
  /*justify-content: center;*/
  gap: 190px;
  background: transparent;
  position: relative;
  top: -40px;
  /*margin-bottom: -60px;*/
  z-index: 20;
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: -60px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .feature-blocks {
    flex-direction: column;
    top: -20px;
    gap: 0;
    margin: 0 auto;
    padding: 10px;
  }
}
/*# sourceMappingURL=index.css.map */