.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-top: -100px;
}

@media (min-width: 576px) {
  .header-container {
    margin-top: 0;
  }
}

.header-container .header-title {
  letter-spacing: 1pt;
  line-height: 1;
  padding-bottom: 25px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: clamp(24px, 4vw, 40px) !important;
  margin-bottom: 1.125vw;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header-container .header-title {
    text-shadow: none;
  }
}

@media (max-width: 1024px) {
  .header-container .header-title {
    font-size: 45px;
  }
}

.header-container .header-subtitle {
  font-family: "Poppins", arial, serif;
  letter-spacing: 1pt;
  line-height: 1.5;
  padding-bottom: 1vw;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 18px !important;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .header-container .header-subtitle {
    font-size: clamp(24px, 4vw, 40px) !important;
  }
}

@media (min-width: 768px) {
  .header-container .header-subtitle {
    text-shadow: none;
  }
}

@media (min-width: 768px) {
  .header-container .header-subtitle {
    padding-bottom: 1.25vw;
  }
}

.header-container .header-img-section img {
  width: 100%;
}

.heroSection {
  position: relative;
}

.heroSection::before {
  content: "";
  background-image: url("/assets/images/hero.png");
  background-repeat: no-repeat;
  background-size: 100vh;
  background-position: 10% bottom;
  position: absolute;
  opacity: 0.6;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

@media (min-width: 645px) {
  .heroSection::before {
    background-position: right bottom;
  }
}

@media (min-width: 768px) {
  .heroSection::before {
    opacity: 1;
  }
}

.header-about {
  font-size: clamp(12px, 1.3vw, 18px) !important;
  line-height: 32px;
}

.modal {
  overflow-y: auto;
}

.category-container a {
  text-decoration: none;
  color: black;
}


