.header-content {
  margin-top: 30px;
  font-size: 14px;
  background-color: #2b2b2b;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}
.header-content:hover {
  color: #dc3545;
}

.products {
  margin: 40px 0;
}

.card {
  box-shadow: none;
  border: 1px solid #e9e8e8;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  min-height: 350px;
}

.card .member-info {
  padding: 25px 15px;
  color: #444444;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
}

.card .image {
  height: 250px;
  width: 100%;
  position: relative;
}

/* .card .image::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  transition: 0.4s linear;
}

.card:hover .image::after {
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
} */

.card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s linear;
}

.card:hover .image img {
  transform: scale(0.9);
}

.card .bottom-info {
  background: #2b2b2b;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px 15px;
  font-size: 0.8rem;
  margin-left: -15px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.card .bottom-info a {
  color: #e2bb3c;
  text-decoration: none;
}

.card .header-info {
  cursor: pointer;
  transition: 0.2s;
  font-size: 16px;
  color: #666;
  display: block;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card .header-info:hover {
  color: #ffec00;
}

.card .bottom-info {
  cursor: pointer;
  transition: 0.3s;
}

.card .bottom-info a {
  transition: 0.3s;
  font-size: 14px;
}

.card .bottom-info:hover a {
  color: #dc3545;
}

