/* =========================
   FOOTER
========================= */
.site-footer{
  background: #4EC234;
  color: #fff;
  padding: 70px 0 40px;
}

.site-footer a{
  color: inherit;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.footer-left{
  display: grid;
  grid-template-rows: 1fr auto;
  row-gap: 20px;
  min-height: 100%;
}

.footer-left-top{
  display: grid;
  grid-template-columns: 220px 1fr;
  column-gap: 70px;
  align-items: start;
}

.footer-nav{
  margin: 0;
}

.footer-menu{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li{
  margin: 0 0 14px 0;
}

.footer-menu a{
  text-decoration: none;
  font-size: 15px;
  opacity: .95;
}

.footer-menu a:hover{
  opacity: 1;
  text-decoration: underline;
}

.footer-copy{
  margin: 0;
  font-size: 15px;
  opacity: .95;
}

.footer-right{
  display: grid;
  grid-template-rows: auto auto;
  row-gap: 20px;
  align-content: stretch;
  justify-items: end;
}

.footer-logo--eu{
  max-width: 200px;
  height: auto;
  justify-self: end;
  align-self: start;
}

.footer-logo--da{
  max-width: 180px;
  height: auto;
  justify-self: end;
  align-self: end;
}

.footer-bottom{
  margin-top: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-shadow{
  max-width: 260px;
  width: 100%;
  height: auto;
}

@media (max-width: 900px){
  .site-footer{
    padding: 50px 0 32px;
    text-align: center;
  }

  .footer-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-left{
    grid-template-rows: auto auto;
    row-gap: 18px;
    justify-items: center;
  }

  .footer-left-top{
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
    justify-items: center;
  }

  .footer-menu li{
    margin: 0 0 12px 0;
  }

  .footer-right{
    justify-items: center;
    row-gap: 18px;
  }

  .footer-logo--eu,
  .footer-logo--da{
    justify-self: center;
  }

  .footer-bottom{
    margin-top: 28px;
  }
}
