/* CSS Reset */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('https://road.africa/static/media/Picture-1.4e5b88351f096deb4735.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  min-height: 100px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero {
    height: 50vh;
    min-height: 350px;
  }

  .card-img-top {
    height: 200px; /* Adjust this value as needed */
    object-fit: cover;
    width: 100%;
}
  
  @media (max-width: 575.98px) {
  .hero {
    height: 35vh;
    min-height: 250px;
  }
}