.home-banner-update {
  background-size: cover;
  background-position: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  color: #fff;
  background-color: #1a2e4a;
  &:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.4;
  }
  .container {
    position: relative;
    z-index: 2;
  }
  h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  h1 {
    text-transform: none;
    width: 800px;
    max-width: 100%;
    span {
      color: #97d700;
    }
  }
  p {
    width: 800px;
    font-size: 2rem;
    max-width: 100%;
  }
  .button-wrap {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .button-primary {
    color: #161616;
    background-color: rgba(151, 215, 0, 1);
    border: 2px solid #97d700;
    padding: 12px 22px;
    font-weight: 600;
    transition: all 0.1s ease-in-out;
    &:hover {
      background-color: rgba(151, 215, 0, 0);
      cursor: pointer;
      text-decoration: none;
      color: #97d700;
    }
  }
  .button-secondary {
    border: 2px solid #97d700;
    padding: 12px 22px;
    font-weight: 600;
    color: #97d700;
    transition: all 0.1s ease-in-out;
    &:hover {
      background-color: #97d700;
      color: #161616;
      cursor: pointer;
      text-decoration: none;
    }
  }
}

section.statistics {
  padding-bottom: 80px;
  .stats-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    @media (min-width: 767px) {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  .stat {
    background-color: #ebebeb;
    padding: 30px;
    text-align: center;
  }
  h3 {
    margin: 0 0 20px;
    @media (min-width: 767px) {
      font-size: 3rem;
    }
  }
  p {
    margin: 0;
  }
}
