.footer-section {
  background-color: #eae8e6;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #3f291b;
  transform: translateX(-50%);
}

.footer-section.animate-line::before {
  animation: growLine 1s ease-out forwards;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-contact {
  display: flex;
  align-items: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  color: #3f291b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-navigation {
  display: flex;
}

.footer-link {
  color: #3f291b;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}

.footer-link::after {
  content: "";
  position: absolute;
  width: 0;
  background-color: #3f291b;
  transition: all 0.3s ease-out;
  transform: translateX(-50%);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-link:visited,
.footer-link:active,
.footer-link:hover {
  color: #3f291b;
  text-decoration: none;
}

.footer-contact-item:visited,
.footer-contact-item:active {
  color: #3f291b;
  text-decoration: none;
}

.footer-contact-item:hover {
  color: #8e4c23;
  text-decoration: none;
}

.footer-logo {
  width: 50px;
  height: auto;
}
