.inner-banner {
  background-color: #122237;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(177, 210, 105, 0.12),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(177, 210, 105, 0.08),
      transparent 40%
    );
  padding: 130px 0;
  position: relative;
  z-index: 1;
}

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 0.6) 0%,
    rgba(0, 212, 255, 0.23) 100%
  );
  z-index: -1;
}

.inner-banner.has-bg-image {
  background-image:
    linear-gradient(180deg, rgba(18, 34, 55, 0.88), rgba(18, 34, 55, 0.94)),
    var(--bg-image);
  background-size: cover;
  background-position: center;
}

/* Breadcrumb shown at the top of an inner-banner hero */
.inner-banner-breadcrumb {
  margin: 25px 0 0;
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 6px;
  line-height: 1;
  padding: 9px 20px;
  backdrop-filter: blur(16px);
  background-color: #ffffff19;
  border: 1px solid #ffffff69;
  border-radius: 100px;
  text-transform: uppercase;
  font-size: 12px;
  position: relative;
}
.inner-banner-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
.inner-banner-breadcrumb a:hover {
  color: #d4f0a0;
}
.inner-banner-breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}
.inner-banner-breadcrumb .current {
  color: rgba(255, 255, 255, 0.653);
}

.inner-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(177, 210, 105, 0.14);
  border: 1px solid rgba(177, 210, 105, 0.35);
  color: #d4f0a0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.inner-banner-badge i {
  font-size: 11px;
}

.inner-banner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.inner-banner-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.inner-banner-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-banner-stat .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(177, 210, 105, 0.16);
  border: 1px solid rgba(177, 210, 105, 0.4);
  color: #d4f0a0;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inner-banner-stat .lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  line-height: 1.3;
}
.inner-banner-stat .lbl strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 767px) {

  .inner-banner {
    padding: 75px 0 40px;
  }

  .inner-banner h1 {
    font-size: 30px;
  }

  .inner-banner p {
    font-size: 15px;
  }

  .inner-banner-stats {
    gap: 20px 26px;
  }

  .inner-banner-breadcrumb {
    margin: 14px 0 0;
    padding: 7px 11px;
    font-size: 10px;
  }

}

@media (max-width: 578px) {

  .inner-banner {
        padding: 75px 0 50px;
    }
    
  .inner-banner-inner {
    text-align: center;
  }
  
}
