.footer {
  background-color: #E1DDD5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.8rem;
  color: #333333;
  padding: 2rem 0 1rem;
  margin-top: auto;
  position: relative;
  box-sizing: border-box;
  padding-left: 3vw;
  padding-right: 3vw;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: repeating-linear-gradient(
    to right,
    #333333,
    #333333 1px,
    transparent 1px,
    transparent 12px
  );
}

.footer-section {
  width: 100%;
  margin-bottom: 1rem;
}

.footer-header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.footer-heading {
  font-family: '2Regular';
  font-weight: bold;
  color: #2E2522FF;
  white-space: nowrap;
}

.footer-menu {
  display: flex;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
  padding-left: 0;
  margin-left: 0;
}

.footer a {
  color: #333333 !important;
  text-decoration: none;
  outline: none;
}

.footer a:link,
.footer a:visited,
.footer a:hover,
.footer a:active {
  color: #333333 !important;
  text-decoration: none;
}

.footer a:focus {
  outline: none;
}

.footer-copyright {
  margin-top: 0.75rem;
  font-family: '2Regular';
  font-size: 0.8rem;
  color: #333333;
  align-self: center;
}