footer {
  background-color: #606060;
}
footer .logo-social {
  border-bottom: 1px solid #fff;
  padding: 3rem 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .logo-social .logo {
  width: 11.375rem;
}
footer .logo-social .logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
footer .logo-social .social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
footer .logo-social .social a {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #fff;
  color: #c67764;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.25s ease, color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .logo-social .social a svg {
  fill: #c67764;
  width: 1rem;
  transition: fill 0.25s ease;
}
footer .logo-social .social a:hover {
  background-color: #c67764;
  color: #fff;
}
footer .logo-social .social a:hover svg {
  fill: #fff;
}
footer .links {
  padding: 2.875rem 0;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
footer .links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: calc(20% - 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
footer .links ul li {
  font-size: 1rem;
  color: #fff;
  line-height: 1.3125;
}
footer .links ul li a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  position: relative;
}
footer .links ul li a::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.25s ease;
}
footer .links ul li a:hover::before {
  width: 100%;
}
footer .copyright {
  border-top: 1px solid #fff;
  padding: 2rem 0 1.5rem;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.35;
}
