* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: 'DKSnemand';
  src: url("../fonts/dk-snemand.otf");
  src: url("../fonts/dk-snemand.ttf");
}

body {
  height: 100vh;
  /* Use vh as a fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f5f5f5;
}

body .card {
  padding: 20px;
  background-color: #3a2414;
  height: 428px;
  width: 600px;
  border-radius: 2px;
  font-family: 'Josefin Sans', sans-serif;
}

body .card__inner {
  border-radius: 20px;
  background-color: #c9bd99;
  height: 100%;
  width: 100%;
}

body .card__header {
  width: 100%;
  padding: 8px 5px;
  background-color: #94663f;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #f5f5f5;
}

body .card__heading {
  font-family: 'DKSnemand', sans-serif;
  text-align: center;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

body .card__line {
  width: 70%;
  height: 1px;
  background-color: #f5f5f5;
  margin: 5px auto;
}

body .card__subheading {
  font-weight: 300;
  font-style: italic;
  text-align: center;
  font-size: 18px;
}

body .card__body {
  padding: 5px;
  padding-top: 10px;
  height: calc(100% - 60px);
}

body .card__body-lead {
  text-transform: uppercase;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 30px;
}

body .card__body-lead:first-child {
  margin-top: 0;
}

body .card__paragraph {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: justify;
}

body .card__paragraph--sm {
  font-size: 14px;
}

body .card__icon {
  max-width: 25px;
  height: auto;
  margin-bottom: -8px;
}

body .card__icon--sm {
  max-width: 18px;
}

body .card__icon--lg {
  min-width: 36px;
}

body .table {
  border: 1px solid #94663f;
  border-collapse: collapse;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  width: 425px;
  margin-bottom: 10px;
}

body .table th,
body .table td {
  border: 1px solid #94663f;
  padding: 5px 15px;
  text-align: center;
  background-color: #f5f5f5;
}

body .table th {
  background-color: #94663f;
  color: #f5f5f5;
}

body .table__icon {
  height: 25px;
}

body .table__icon--small {
  height: auto;
}

body .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .row i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45px;
          flex: 0 0 45px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  body {
    height: auto;
  }
  body .card {
    height: auto;
    width: 100%;
  }
  body .card__paragraph--sm {
    font-size: 18px;
  }
  body .table {
    width: 100%;
  }
  body .table__icon {
    max-height: 40px;
  }
}

@media only screen and (max-width: 428px) {
  body .table td:first-child {
    padding: 0;
  }
  body .table td:first-child .table__icon {
    height: 25px;
    width: 30px;
  }
  body .table__icon {
    width: 100%;
  }
}

@media only screen and (max-height: 428px) {
  body {
    height: auto;
  }
  body .card {
    height: 100%;
    width: auto;
  }
}
/*# sourceMappingURL=cards.css.map */