/*  ===============================  *
 *               Hero                *
 *  ================================ */
/* Mobile */
@media only screen and (min-width: 0em) {
  #hero {
    height: 18em;
    background: url('../images/bg-7-m.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: end;
  }
  #hero h1 {
    margin-bottom: 1.5em;
    text-align: center;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #hero {
    background: url('../images/bg-7.jpg') no-repeat center;
    background-size: cover;
  }
}
/*  ===============================  *
 *             Content               *
 *  ================================ */
/* Mobile */
@media only screen and (min-width: 0em) {
  #content .dual-container {
    margin-bottom: 2em;
  }
  #content .dual-container picture,
  #content .dual-container img {
    max-width: 22.5em;
    max-height: 23.35em;
  }
  #content .dual-container div {
    max-width: 22.5em;
  }
  #content .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15em;
    height: 14em;
    margin: 0 0.5em 2em;
    background-color: white;
    border: 0.1em solid black;
    padding: 1em;
  }
  #content .card picture {
    display: flex;
    justify-content: left;
    position: relative;
  }
  #content .card picture:before {
    content: '';
    position: absolute;
    top: 1.1em;
    right: 0.65em;
    background-color: black;
    width: 76%;
    height: 0.05em;
  }
  #content .card ul {
    max-width: 22.5em;
  }
  #content .card ul li {
    margin: 0.4em 0;
    font-size: 0.8em;
  }
  #content .extra {
    display: flex;
    flex-direction: column;
    width: 12.5em;
    gap: 0.5em;
    margin-left: 0.5em;
  }
  #content .extra a {
    width: 7.5em;
    border-radius: 0;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #content .dual-container > :first-child {
    max-width: 20em;
  }
  #content #extra.dual-container {
    gap: 4em;
  }
  #content .card {
    width: 20em;
    height: 12em;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #content #extra.dual-container {
    gap: 5.5em;
  }
}
