@media (max-width: 82em) {
  .nav-items {
    gap: 2.4rem;
  }
  .nav {
    padding: 0 1rem 0 4.8rem;
  }
}

@media (max-width: 74em) {
  .card-container {
    gap: 1vw;
  }
  .logo {
    height: 5.4rem;
  }
  .nav-item:link,
  .nav-item:visited {
    font-size: 2rem;
  }
}

@media (max-width: 67em) {
  .card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10vw;
  }
  .splash-img {
    max-width: 100%;
  }
}

@media (max-width: 62em) {
  .contact-img {
    display: none;
  }
}

@media (max-width: 50em) {
  .card-container {
    gap: 1vw;
  }
}

@media (max-width: 47em) {
  .form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 45em) {
  .container {
    grid-template-columns: 1fr;
  }

  .splash-img {
    width: 50%;
  }

  .card-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 32em) {
  .features {
    width: 100%;
  }
}

@media (max-width: 27em) {
  /* Force table to not be like tables anymore */
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    margin: 0 auto;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    border: 1px solid #ccc;
  }

  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }

  /*
	Label the data
	*/
  td:nth-of-type(1):before {
    content: "Platform Built";
  }
  td:nth-of-type(2):before {
    content: "Custom Coded";
  }
}

@media (max-width: 23em) {
  .logo {
    height: 4.8rem;
    padding-left: 1.2rem;
  }
  .card-container .card .face {
    width: 320px;
  }

  .form input,
  .form select {
    font-size: 1.4rem;
  }
}
