*, *:before, *:after {
    box-sizing: border-box;
  }
  
  html {
    font-size: 100%;
  }
  
  body {
    font-family: acumin-pro, system-ui, sans-serif;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    font-size: 14px;
    background-color: #f4f4f4;
    align-items: start;
    min-height: 100vh;
    font-family: 'Acumin Pro';
  }

  body  {
    background-color: lightblue;
}
  
  .footer {
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #2f2f2f;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
    position: relative;
  }
  
  .footer > * {
    flex:  1 100%;
    font-family: 'Acumin Pro';
  }
  
  .footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .footer__logo {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.5rem;
  }
  
  .footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .nav__title {
    font-weight: 400;
    font-size: 15px;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .footer address {
    font-style: normal;
    color: #999;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(33, 33, 33, 0.07);
    border-radius: 100px;
    color: #2f2f2f;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .footer ul {
    list-style: none;
    padding-left: 0;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .footer li {
    line-height: 2em;
  }
  
  .footer a {
    text-decoration: none;
  }
  
  .footer__nav {
    display: flex;
      flex-flow: row wrap;
      font-family: 'Acumin Pro';
      font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
  }
  
  .nav__ul a {
    color: #999;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .legal {
    display: flex;
    flex-wrap: wrap;
    color: #999;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
    
  .legal__links {
    display: flex;
    align-items: center;
    font-family: 'Acumin Pro';
    font-family: acumin-pro, system-ui, sans-serif;
  }
  
  .heart {
    color: #2f2f2f;
  }

  .popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* The actual popup */
  .popup .popuptext {
    visibility: hidden;
    width: 160px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -80px;
  }
  
  /* Popup arrow */
  .popup .popuptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  /* Toggle this class - hide and show the popup */
  .popup .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
  }
  
  /* Add animation (fade in the popup) */
  @-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }
  
  @media screen and (min-width: 24.375em) {
    .legal .legal__links {
      margin-left: auto;
    }
  }
  
  @media screen and (min-width: 40.375em) {
    .footer__nav > * {
      flex: 1;
    }
    
    .nav__item--extra {
      flex-grow: 2;
    }
    
    .footer__addr {
      flex: 1 0px;
    }
    
    .footer__nav {
      flex: 2 0px;
    }
  }
