.standout-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
  padding: 0;
  margin: 0.625rem auto;
}
.standout-card .standout-card__item {
  display: flex;
  width: 100%;
  max-width: 12rem;
  border: 1px solid #e2e4e4;
  background-color: #ffffff;
  flex-direction: column;
  margin: 0.3125rem;
}
.standout-card .standout-card__item .standout-card__img {
  position: relative;
}
.standout-card .standout-card__item .standout-card__img:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 84.2105263158%;
}
.standout-card .standout-card__item .standout-card__img > .inner, .standout-card .standout-card__item .standout-card__img > picture .inner {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.standout-card .standout-card__item .standout-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.standout-card .standout-card__item .standout-card__info .standout-card__title {
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
.standout-card .standout-card__item .standout-card__info .standout-card__description {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5625rem;
  font-style: normal;
}
.standout-card .standout-card__item .standout-card__btn {
  display: inline-flex;
  justify-content: center;
  font-style: normal;
  align-items: center;
  width: 100%;
  max-width: 9.375rem;
  line-height: 1.875rem;
  font-size: 0.75rem;
  text-decoration: none;
  margin: 0.3125rem;
  background-color: #fff;
  color: #16283d;
  border: 0.0625rem solid #16283d;
  font-weight: bold;
}
.standout-card .standout-card__item .standout-card__btn:hover {
  border-bottom: 0.3125rem solid #00245d;
  transition: all 0.3s;
}
