.site-footer {
  margin-top: 12rem;
  background-color: #06283d;
  color: #fff;
}

.site-footer-top a {
  margin-top: 12rem;
  background-color: #06283d;
  color: #fff;
}

@media (min-width: 60rem) {
  .site-footer {
    margin-top: 16rem;
  }
}
.site-footer-top {
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-direction: column;
}
@media (min-width: 50rem) {
  .site-footer-top {
    align-items: center;
    flex-direction: row;
  }
}
.site-footer-contact > * + * {
  margin-top: 0.5rem;
}
.site-footer-contact span {
  display: block;
}
.site-footer-contact a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 0;
  flex-direction: column-reverse;
}
@media (min-width: 50rem) {
  .site-footer-bottom {
    align-items: flex-end;
    flex-direction: row;
  }
}
.site-footer-bottom a {
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
  margin-left: 4px;
  font-size: 18px;
}
.site-footer-bottom a:hover {
  animation: SivulabraAnimation 1s ease-in-out infinite;
  opacity: 0.6;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
}
.footer-menu ul li {
  margin: 1rem 0;
}
.footer-menu ul li a {
  color: #FFF;
  padding: 0.25rem 0;
  font-size: 24px;
}
.footer-menu ul li a:hover {
  text-decoration: underline;
}
