.card {
    max-width: 50em;
    height:23rem;
    flex-direction: row;
    background-color: #ffff;
    border: 0;
    box-shadow: 5px 9px 9px 9px  rgba(0, 0, 0, 0.18);
    margin: 3em auto;
  }

  .card img {
    max-width: 25%;
    margin: auto;
    padding: 0.5em;
    border-radius: 0.7em;
}
.card-body {
display: flex;
justify-content: space-between;
}
.text-section {
max-width: 60%;
}
.cta-section {
max-width: 40%;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: space-between;
}
.cta-section .btn {
padding: 0.3em 0.5em;
/* color: #696969; */
}
@media screen and (max-width: 475px) {
.card {
  font-size: 0.9em;
}
}


/* https://codepen.io/codingyaar/pen/ZEqEpem */