.banner {
  background-color: #00000008;
}

.banner-heading {
  font-size: 7em;
  font-family: "Do Hyeon", sans-serif;
  color: #ff4d4d;
  font-weight: 900;
  line-height: 0.8em;
  margin-top: 70px;
}

.banner-subtitle {
  font-family: "Libre Franklin", sans-serif;
  font-size: 40px;
  color: #11222c;
  font-weight: 900;
  text-transform: capitalize;
  margin-top: 18px;
}

.banner p {
  margin-top: 35px;
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: 1.8em;
}

.cards {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

.card {
  background-color: white;
  width: 355px;
  border: none;
  cursor: pointer;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}

.card .card-heading {
  color: #0e1920;
  font-family: "Libre Franklin", sans-serif;
  font-size: 40px;
  font-weight: 900;
  margin-top: 20px;
  text-transform: uppercase;
}

.card .card-body {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

.image-wrapper {
  /* position: relative; */
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.overlay {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.255);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.card:hover .overlay {
  opacity: 1;
}
/* 
.card-body div {
  border: 2px solid black;
  padding: 8px 25px;
  font-size: 15px;
  margin-bottom: 20px;
} */

.price {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 100;
  font-size: 32px;
  color: #ff7e38;
}
