.card {
  display: flex;
  flex-direction: column;
  border: 6px solid #005f6c;
  border-radius: 8px;
  overflow: hidden;
}

  .card__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
	  background-color: #007e8f;
  }

    .card__descriptionIcon {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .card__title {
      color: #fff;
      font-size: 1.4em;
	  font-weight: bold;
      text-align: center;
	  padding-bottom: .5em;
    }

  .card__maincopy {
    text-align: left;
    color: #000;
    font-size: 1em;
    padding: 5px 15px;
    border-top: 2px solid #80f0ff;
    background-color: #ccf9ff;
  }

.card--fixedWidth {
  max-width: 700px;
}

li {list-style-type: square; }