.hero-container-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.hero-container-details h1 {
  font-size: 5rem;
}

.hero-container-details p {
  font-size: 1.5rem;
  text-align: center;
  color: rgb(89, 89, 89);
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: whitesmoke;
  gap: 100px 0px;
  padding: 8rem 0px;
}

.brochure-card-container {
  display: flex;
  gap: 10rem;
}

.brochure-card {
  border: 1px solid gray;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(128, 128, 128, 0.3);
}

.banner {
  position: relative;
  height: 50vh;
  padding-bottom: 50px;
}

.banner-heading h1 {
  font-size: 5rem;
}

.banner-heading {
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner::before {
  content: "";
  position: absolute;
  background: url(../assets/brochuer-banner.jpg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
}

.banner::after {
  content: "";
  position: absolute;
  background: black;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
  opacity: 0.5;
}

@media (max-width: 1324px) {
  .brochure-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .brochure-card:nth-child(3) {
    grid-column: span 2;
    margin: 0 auto;
  }

  .banner-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 1200px) {
  .banner {
    height: 25vh;
  }

  .hero-container-details {
    width: 100%;
  }

  .brochure-card-container{
    display: flex ;
    flex-direction: column;
  }
}
