footer {
  padding: 3rem;
  background-color: rgb(250, 250, 250);
}

.footer-container {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: end;
  background-color: rgb(250, 250, 250);
}

.footer-container ul {
  padding: 2rem;
  line-height: 1.8rem;
}

.footer-container h3 {
  line-height: 1.5rem;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-align: end;
  position: relative;
  width: fit-content;
}

.footer-container h3::after {
  content: '';
  position: absolute;
  left: 1px;
  bottom: -13px;
  width: 3rem;
  height: 0.1875rem;
  background-color: rgb(252, 180, 47);
}

.heading-wrapper {
  padding: 2rem;
  display: flex;
  justify-content: flex-end;
}

.locations {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 30rem;
  flex: 4;
}

.locations ul {
  column-count: 3;
  column-gap: 1.3rem;
  list-style: none;
}

.locations ul li a {
  text-decoration: none;
  color: inherit;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
}

.links {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 30rem;
  flex: 2.3;
}

.links ul {
  list-style: none;
}

.links ul li a {
  text-decoration: none;
  color: inherit;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
}

.pages {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 30rem;
  flex: 1;
}

.pages ul {
  list-style: none;
}

.pages ul li a {
  text-decoration: none;
  color: inherit;
  font-weight: 400;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
}

.pages ul li a:hover {
  color: rgb(252, 180, 47);
  transition: color 0.5s ease;
}

.links ul li a:hover {
  color: rgb(252, 180, 47);
  transition: color 0.5s ease;
}

.locations ul li a:hover {
  color: rgb(252, 180, 47);
  transition: color 0.5s ease;
}
/* -------------------------MEDIA------------------------ */
@media (max-width: 500px) {
  .footer-container {
    flex-direction: column-reverse;
    height: auto;
  }

  .locations ul {
    columns: 2;
  }
}

@media (501px <= width <= 1000px) {
  .footer-container {
    width: 80%;
    margin: 0 auto;
  }
}
