

  /* ------ Footer------ */
  footer{
    width: 100%;
    height:  auto;
    background-color: #181818;
    position: absolute;
    bottom: 0px;
    padding-top: 1em;
  }
  .footer-view{
    display: inline-grid;
    position: relative;
    width: auto;
    grid-template-columns: repeat(1fr, 1fr);
  }
  .footer-block{
    display: block;
    justify-self: center;
    position: relative;
    margin-bottom: 2em;
    grid-template-columns: 1fr 1fr;
  }
  .footer-block h2{
    color: #ccc;
    font-size: 1.3em;
    margin-bottom: 30px;
    font-family: RNSSanz;
  }
  .footer-view ol{
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    height: 50px;
  }
  .footer-block ul{
    list-style: none;
    display: grid;
    grid-column-gap: 1em;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  footer li{
    display: inline;
    min-width: 120px;
    max-width: 220px;
    color: #999;
  }
  .footer-block a{
    color: #999;
    margin-bottom: 15px;
    font-family: RNSSanz;
    -moz-text-align-last: center;
         text-align-last: center;
  }
  footer .bottom{
    height: 50px;
    width: 100%;
    background-color: #121212;
    display: block;
    position: static;
    overflow: hidden;
  }
  .empty-space{
    height: 230px;
  }
  /* ------ Footer------ */

@media screen and (max-width: 500px) {
  footer{
    margin-top: 3em;
  }
  .empty-space{
    height: 360px;
  }
  .footer-block .logo{
    margin-bottom: 2em;
  }
  .footer-block ul{
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    row-gap: 1em;
    align-items: center;
  }
  .footer-block{
    margin-bottom: 0em;
    height: auto;
  }
  .footer-view ol{
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    row-gap: 1em;
    align-items: center;
    height: auto;
    margin-bottom: 1em;
    margin-top: 1em;
  }
  footer .bottom{
    height: auto;
    width: 100%;
    background-color: #121212;
    display: block;
    position: static;
    overflow: hidden;
  }
}

