.medical-card-container {
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
}




.custom-card {
  height: 155px;
  /* background:#f7f7f7; */
  background-color: var(--color-background-beige);
  border-radius: 10px;
  overflow: hidden;
}

.card-img-left {
  height: 155px;
  width: 205px;
}

.content-area {
  padding: 32px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.card-medicalage-btn {
  position: relative;
  /* display: inline-block; */
  /* padding: 10px 40px 10px 20px; */
  background: #4b5f87;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  height: 37px;
  display: flex;

}

.card-medicalage-btn::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);

  width: 0.5rem;
  height: 0.5rem;

  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}


.pharmacy-img {
  object-fit: contain;
  width: 100%;
  height: auto;
  padding: 0 0 0 0;
}





/* MOBILE VIEW */


@media (max-width:768px) {

  

  .custom-card {
    flex-direction: column;
    height: 368px;
    width: 329px;
  }

  .card-img-left {
    height: 231px;
    width: auto;
  }

  .content-area {
    height: 120px;
    justify-content: flex-start;
    padding: 13px 15px 0px 15px;
  }

  .card-medicalage-btn {
    height: 37px;
    width: 198px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    margin-left: 40px;
  }

  .custom-mb {
    margin-bottom: 45px;
  }
}