#hero-section {
  height: 200px;
  background-image: url('../img/breadcrumb.jpg'); 
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#hero-section .overlay {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  width: 100%;
  height: 100%;
  justify-content: center;
}

#hero-section h1 {
  font-size: 38px;
  font-weight: bold;
  color: var(--color3);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 5px;
}

#hero-section p {
  font-size: 16px;
  margin-top: 10px;
}

#hero-section a {
  color: white;
}

 @media screen and (max-width: 768px) {
#hero-section {
  height: 135px;
  }
#hero-section h1 {
  font-size: 30px;
}
 }
