/* -----------------------------------Footer----------------------------------------------- */
footer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 100px 50px;
  padding-bottom: 0;
  background-color: #FFFFFF;
  & hr {
    width: 100%;
    border: none;
    border-top: 1px solid #E8E9E1;
  }
}

.footer {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: auto;
  margin-bottom: 0;

  justify-items: center;
  align-items: start;
  width: 100%;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 2rem;
}
.footer-menu a, .footer-menu p {
  line-height: 1.5rem;
  /* padding-left: 16px; */
  color: #444444;
}
.footer-menu a, .footer-menu p {
  margin: 0;
}
.footer-menu a:hover {
  color: #7FA6A1;
}
.footer-menu .social-icons {
  display: flex;
  flex-direction: row;
  font-size: 1.3rem;
  gap: 1rem;
  & h4 {
    font-size: 1.3rem;
    font-family: 'Montserrat', sans-serif;
    color: #444444;
  }
}
.footer-menu .social-icons a {
  color: #407D96;
  &:hover {
    color: #7FA6A1;
  }
}
.footer-menu .footer-links {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  gap: 0.5rem;
  margin: auto;
  margin-top: 0;
  & h4 {
    font-family: 'Montserrat', sans-serif;
    color: #444444;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
  }
  & p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #444444;
  }
}

.footer-menu .footer-links>a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  color: #444444;

  &:hover {
    color: #7FA6A1;
  }
}

.copyright-text {
  text-align: center;
  margin-top: 20px;
  color: #444444;
}
#admin-button {
  position: fixed;
  display: flex;
  justify-content: end;
  align-items: center;
  text-decoration: none;
  right: 0;
  bottom: 100px;
  z-index: 1;
}
#admin-button 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;
  &:hover {
    background-color: grey;
  }
}


#whatsapp-button {
  position: fixed;
  display: flex;
  justify-content: end;
  align-items: center;
  text-decoration: none;
  right: 10px;
  bottom: 50px;
  z-index: 2;
}

#whatsapp-button button{
  font-size: 3rem;
  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) {
  /* .footer {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: end;
  } */
}
@media screen and (min-width: 600px) {
  .footer {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    width: 100%;
  }
  .footer-menu {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 3rem;
  }
  .footer-menu .footer-links {
    width: fit-content;
    margin-left: 0;
  }
  #whatsapp-button {
    right: 20px;
    bottom: 90px;
  }

}
@media screen and (min-width: 769px) {
  footer {
    padding: 100px;
    padding-bottom: 0;
  }
  #whatsapp-button {
    right: 50px;
  }
  #whatsapp-button button{
    font-size: 4rem;
  }
}
@media screen and (min-width: 1024px) {}
@media screen and (min-width: 1200px) {}
@media screen and (min-width: 1440px) {}
