.site-footer {
  background: var(--footer-bg);
  padding: 60px 0;
}

.site-footer > .content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: min(90vw, 1200px);
  margin: auto;
}

.site-footer .col > h3 {
  margin: 0 0 1rem;
  color: var(--colour-7);
  font-size: 1rem;
  font-weight: 600;
}

.site-footer .col > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .col > ul > li > a {
  display: block;
  padding: .3125rem 0;
  color: var(--colour-10);
  font-size: .875rem;
}

.site-footer .brand-col > img {
  width: 180px;
  margin-bottom: 1.5rem;
}

.site-footer .contact > li {
  display: flex;
  gap: .75rem;
  padding: .5rem 0;
  color: var(--colour-10);
  font-size: .875rem;
}

.site-footer .contact > li > i {
  flex: none;
  font-size: 1.125rem;
}

#admin-button {
  position: fixed;
  display: flex;
  justify-content: end;
  align-items: center;
  text-decoration: none;
  right: 0;
  bottom: 100px;
  z-index: 1;

  &>button {
    font-size: 2rem;
    font-weight: 600;
    padding: 0.2em 0.2em;
    background-color: lightgrey;
    color: white;
    border: none;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
  }
  &>button:hover {
    background-color: grey;
  }

}
#whatsapp-button {
  position: fixed;
  right: 16px;
  bottom: 50px;
  z-index: 2;
  text-decoration: none;
}

#whatsapp-button button {
  font-size: 2.5rem;
  padding: 0.2em 0.3em;
  background-color: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

#whatsapp-button button:hover {
  background-color: #128C7E;
}

@media screen and (min-width: 425px) {}
@media screen and (min-width: 600px) {
  .site-footer > .content { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (min-width: 768px) {}
@media screen and (min-width: 1024px) {
  .site-footer { padding: 80px 0; }
  .site-footer > .content { grid-template-columns: repeat(4, 1fr); }
}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
