.footer {
  background-color: var(--black_white950);
  border-top: 1px solid var(--primaryColors700);
  position: relative;
  z-index: 2;
}

/* Footer top */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  min-height: 412px;
  gap: 50px;
}

/* Separator */
.footer-separator {
  height: 412px;
  width: 1px;
  background: var(--primaryColors700);
}

.footer-l,
.footer-r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0 24px 0;
  align-items: flex-start;
  align-self: stretch;
}

.footer-links a:hover,
.social a:hover {
  color: var(--neutral400);
}

.footer-links a,
.social a {
  transition: color 0.4s ease;
}

.social,
.footer-links {
  display: flex;
  /* width: 500px; */
  padding-top: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-transform: uppercase;
}

.footer-part-title {
  color: var(--neutral500, #7c7c7c);
  text-transform: uppercase;
}

.footer-about-us {
  color: var(--black_white50);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

#menu-footer-links {
  padding: 0;
}

/* Social links and footer links */
.footer-links nav ul,
.footer-links nav ul li,
.social-links-wrapper {
  display: flex;
  align-items: center;
}

.social-links-wrapper a {
  display: inline-flex;
  align-items: center;
}

.footer-links nav ul li:not(:last-child)::after,
.social-links-wrapper a:not(:last-child)::after {
  content: "";
  width: 10px;
  height: 10px;
  margin: 0 16px;
  background-color: var(--neutral500, #7c7c7c);
  mask: url("/wp-content/themes/webrom-new/assets/img/dot.svg") no-repeat center /
    contain;
  -webkit-mask: url("/wp-content/themes/webrom-new/assets/img/dot.svg")
    no-repeat center / contain;
  flex-shrink: 0;
}

/* Logo */
.footer-logo img {
  width: 399.998px;
  height: 86.4px;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  padding: 32px 0;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background: var(--primaryColors700);
}

.footer-bottom-l,
.footer-bottom-r a {
  color: var(--neutral500);
}

.footer-bottom-r {
  display: flex;
  gap: 16px;
  align-items: center;
  text-transform: uppercase;
}

.footer-bottom-r a {
  transition: color 0.4s ease;
}

.footer-bottom-r a:hover {
  color: var(--black_white50);
}

/* responsive */
@media (max-width: 800px) {
  .footer-top {
    grid-template-columns: 1fr;
    min-height: unset;
    gap: 0;
  }

  .footer-logo img {
    width: 148.148px;
    height: 32px;
  }

  .footer-separator {
    height: 1px;
    width: 100vw;
    margin-left: -16px;
  }

  .footer-l,
  .footer-r {
    padding: 32px 0;
  }

  .footer-links {
    padding-top: 40px;
  }

  .footer-links nav ul li:not(:last-child)::after,
  .social-links-wrapper a:not(:last-child)::after {
    margin: 0 12px;
  }

  .footer-bottom {
    padding: 24px 0;
    flex-direction: column-reverse;
    justify-content: unset;
    gap: 12px;
  }

  .footer-bottom-r {
    gap: 24px;
  }
}
