.banner {
  border-radius: 24px;
  padding: 9rem 2.4rem;
  max-width: var(--container-width);
  width: 100%;
  text-align: center;
  position: relative;
  border-radius: 4rem;
}

.banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4rem;

}



.banner__light-gray {
  background: var(--light-gray);
}

.banner__primary {
  background: var(--primary-color);
}

.banner__secondary {
  background: var(--secondary-color);
}

.banner-flex {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 79rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.banner__content {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.25px;
  color: var(--secondary-color);
}

.banner *:last-child {
  margin-bottom: 0;
}

.banner__text-dark h2 {
  background: linear-gradient(90deg, #00BFFF 0%, #181F4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.banner__text-light,
.banner__text-light .banner__content,
.banner__text-light h2 {
  color: #fff;
}

{#
.banner .dot.before:before {
  margin-bottom: -3rem;
}
#}
