.request-cards {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  align-self: stretch;
}

.request-card {
  display: flex;
  flex-direction: column;
  /* stack photo + info vertically */
  flex: 1 1 300px;
  background: #fff;
  max-width: 350px;
  width: 350px;
  box-shadow: 0 3.465px 3.465px 0 rgba(0, 0, 0, 0.25);
}

a.request-card {
  text-decoration: none;
}

.request-card-info {
  display: flex;
  flex-direction: column;
  /* stack content + button */
  flex: 1;
  /* take all remaining vertical space */
  padding: 0;
}

.request-card-content {
  flex: 1;
  padding: 40px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  display: flex;
}


.request-card-info h4 {
  color: #000;
  text-align: center;
  font-feature-settings: 'salt'on;
  font-family: "lora", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 100% */
  letter-spacing: 0.84px;
  margin-bottom: 0;
}

.reqbtn {
  background: #016F45;
  display: flex;
  padding: 15px 0 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #FFF;
  text-align: center;
  font-feature-settings: 'salt'on;
  font-family: "lora", serif;
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.99px;
}

.request-card-info p {
  color: #212427;
  text-align: center;
  font-feature-settings: 'salt'on;
  font-family: "Open Sans";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 146.667% */
  letter-spacing: 0.45px;
  margin-bottom: 0;
}

.request-card-photo {
  width: 100%;
  height: 175px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 780px) {
  .request-card {
    flex: 1 1 calc(50% - 25px);
    max-width: calc(50% - 25px);
  }
  .request-card-info h4{
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 0.84px;
  }
}

@media only screen and (max-width: 510px) {
  .request-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}