.section-cards {
  padding: 0;
}

.section-cards .section-details {
  width: 100%;
  text-align: center;
}

.section-cards .section-row {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.section-cards .section-card {
  flex-grow: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.section-cards .section-card .section-card-inner {
  padding: 32px 16px;
  margin: 16px 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1 1 auto;
}

.section-container-inverse .section-card .section-card-inner {
  background-color: #525252;
}

.section-cards .section-card .section-card-inner *:nth-last-child(2) {
  flex: 1 1 auto;
}

.section-cards .section-card:first-of-type .section-card-inner {
  margin-left: 0;
}

.section-cards .section-card:last-of-type .section-card-inner {
  margin-right: 0;
}

.section-cards .section-card .section-logo {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-cards .section-card .section-buttonlink {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-cards .section-card .section-buttonlink a,
.section-cards .section-card .section-buttonlink button {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .section-cards .section-row {
    flex-direction: row;
    justify-content: center;
  }

  .section-cards .section-card .section-card-inner {
    padding: 16px;
    margin: 16px;
  }

  .section-cards .section-card {
    flex: 1;
  }

  .section-cards .section-card .section-buttonlink a,
  .section-cards .section-card .section-buttonlink button {
    width: initial;
  }
}