.card {
  border-radius: 18px;
  backdrop-filter: blur(17px);
  height: 100%;
  min-height: 400px;
  display: flex;
}
.top {
  background: rgba(45, 44, 44, 0.3);
  flex-direction: column;
  color: white;
}
.top .card__image {
  border-radius: 18px 18px 0px 0px;
}

.bottom {
  background: #cfcfcf;
  flex-direction: column-reverse;
}
.bottom .card__image {
  border-radius: 0px 0px 18px 18px;
}
.content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  padding: 1rem 1rem 2rem;
}
.content img {
  align-self: flex-end;
}

.content h5 {
  font-size: 1.5rem;
  font-weight: 400;
}
.card__image {
  width: 100%;
  min-width: 200px;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .card {
    min-height: 300px;
  }

  .content h5 {
    font-size: 1.3rem;
    font-weight: 400;
  }
  .card__image {
    min-width: 160px;
  }
}
@media (max-width: 800px) {
  .card__image {
    max-height: 150px;
  }
  .bottom{
    transform: translate(0px, 50%);
  }
  .content h5 {
    font-size: 1.2rem;
    font-weight: 400;
  }
}
