.hero-homepage {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 625px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;

}

.hero-homepage--dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


.hero-homepage .container {
  max-width: 1033px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 22.5px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-homepage h1 {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 5rem;
    line-height: 1;
    text-align: center;
    color: white;
}

.hero-homepage p {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 1.75rem;
    line-height: 1.4;
    text-align: center;
    color: white;
}

.hero-apply-now-btn {
  background-color: var(--volunteer-color);
  color: white;
  padding: 14px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-family: CircularXX, sans-serif;
  font-weight: 450;
  font-size: 1.125rem;
  line-height: 1.125rem;
  letter-spacing: -4%;
  text-align: center;
  transition: background-color 0.3s;
  border-radius: 68px;
}

.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(54px);
  border-radius: 8px;
  gap: 20px;
  padding: 10px;
}

.hero-tag {
    font-family: CircularXX, sans-serif;
    font-weight: 450;
    font-size: 1.125rem;
    letter-spacing: 0px;
    color: white;
}

.hero-tag-separator {
  width: 1px;
  height: 13px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 767px) {
    .hero-homepage {
        height: 661px;
    }

    .hero-homepage .container {
        padding: 20px 24px;
        gap: 10px;
    }

    .hero-homepage h1 {
        font-size: 54px;
        line-height: 54px;
    }

    .hero-homepage p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-apply-now-btn {
        font-size: 18px;
        line-height: 18px;
        margin: 20px 0;
    }

    .hero-tags {
        margin: 10px;
    }

    .hero-tag {
        font-size: 18px;
        line-height: 22px;
    }
}