
	/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-x8 {
    position: relative;
    padding: 61px 0 0;
    overflow: hidden;
}

.hero-x8 .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-x8 .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-x8 .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #a3d600;

}

.hero-x8 .container {
  z-index: 2;
}

.hero-x8 .badge-label {
display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #08192a;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-x8 .badge-label i {
  font-size: 2rem;
}

.hero-x8 h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
     color: #08192a;
}

.hero-x8 h2 .accent {
  color: var(--accent-color);
}

.hero-x8 .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #08192a;
    max-width: 580px;
    margin-bottom: 32px;
    font-weight: 700;
}

.hero-x8 .hero-actions {
  margin-bottom: 80px;
}

.hero-x8 .hero-actions .btn-main {
background: #081324;
    color: #a0d800;
	border: solid 3px #081324;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-x8 .hero-actions .btn-main:hover {
    background: transparent;
    border: solid 3px #081324;
    color: #081324;
}

.hero-x8 .hero-actions .btn-main-2 {
background: #a0d800;
    color: #081324;
	border: solid 3px #081324;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-x8 .hero-actions .btn-main-2:hover {
    background: #081324;
    border: solid 3px #081324;
    color: #a0d800;
}

.hero-x8 .hero-counters {
  background: #081324;
  border-radius: 8px 8px 0 0;
  padding: 32px;
}

.hero-x8 .hero-counters .counter-item {
  text-align: center;
}

.hero-x8 .hero-counters .counter-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: #a0d800;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.hero-x8 .hero-counters .counter-item p {
    font-size: 1rem;
    color: #a3d600;
    margin: 4px 0px 15px 0px;
}

@media (max-width: 991px) {
  .hero-x8 {
    padding: 80px 0 0;
  }

  .hero-x8 h2 {
    font-size: 40px;
  }

  .hero-x8 .hero-actions {
    margin-bottom: 48px;
  }
}

@media (max-width: 575px) {
  .hero-x8 {
    padding: 64px 0 0;
  }

  .hero-x8 h2 {
    font-size: 32px;
  }

  .hero-x8 .lead {
    font-size: 16px;
  }

  .hero-x8 .hero-actions {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero-x8 .hero-actions .btn-main,
  .hero-x8 .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-x8 .hero-counters {
    padding: 24px 16px;
  }

  .hero-x8 .hero-counters .counter-item h3 {
    font-size: 28px;
  }
}

