.page-footer {
  background: var(--Gray-900);
  padding: var(--spacing-mobile);
}

.footer-content {
  max-width: var(--max-width);
  margin: auto;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-columns-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.footer-images {
  width: 7rem;
  max-width: 5.3rem;
  height: auto;
  object-fit: contain;
}

.footer-links-cols {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
  column-gap: 0;
}

.footer-links-cols .row-footer {
  display: contents;
}

.footer-links-cols .section-divider {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 1.5rem;
  align-items: start;
  padding: 0.75rem 0;
}

.footer-links-cols .section-divider:last-child {
  border-bottom: 0;
}

.footer-links-cols .section-divider > .footer-column,
.footer-links-cols > .footer-column {
  min-width: 0;
}
.row-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links li {
  padding-left: 0;
}

.footer-links li::before {
  display: none;
}

.footer-links li a {
  text-decoration: none;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav .menu-item {
  margin: 0;
}

.footer-nav .menu-item a {
  color: var(--Basic-White);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-nav .menu-item a:hover {
  color: var(--Primary-blue-500);
}

.lang-switcher {
  position: static;
}

.lang-btn {
  background: #3a3b44;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  top: 0.5rem;
  width: 100%;
}

.arrow-icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
}

.language-flag {
  width: 2rem;
  height: auto;
  border-radius: 0.25rem;
}

.lang-menu {
  position: static;
  display: block;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  margin-top: 0.25rem;
  list-style: none;
  padding: 0.5rem 0;
  background: #3a3b44;
  border-radius: 0.5rem;
  transition: height 260ms ease, opacity 220ms ease, transform 260ms ease;
  will-change: height, opacity, transform;
}

.lang-menu li {
  padding-left: 0;
}

.lang-menu li::before {
  display: none;
}

.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.lang-menu li a:hover {
  background: #4a4b55;
}

.lang-menu.show,
.lang-menu.animating {
  pointer-events: auto;
  visibility: visible;
  margin-bottom: 0.5rem;
}
.footer-bottom {
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  left: 50%;
  transform: translate(-50%);
}

.footer-copy {
  margin: 0;
  gap: 0.25rem;
  align-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem;
}

.footer-social img {
  display: block;
  width: 1rem;
  height: 1rem;
}
.arrow-icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
}
@media (prefers-reduced-motion: reduce) {
  .lang-menu {
    transition: none;
    transform: none;
  }
}

@media (min-width: 767px) {
  .footer-content {
    padding: 3rem 1rem;
  }

  .footer-columns-wrapper {
    flex-direction: row;
    gap: 2rem;
  }

  .footer-links-cols {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .footer-links-cols .row-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .footer-links-cols .section-divider {
    display: contents;
    border: 0;
    padding: 0;
  }

  .footer-images {
    max-width: 8rem;
  }

  .lang-switcher {
    position: static;
    margin-top: 0.5rem;
  }
  .footer-bottom {
    padding: 1.5rem 4rem;
  }
}

@media (min-width: 992px) {
  .footer-contentr {
    padding: 6rem 4rem;
  }
  .footer-column {
    min-width: 9rem;
  }
}

@media (min-width: 1350px) {
  .footer-column {
    min-width: 12rem;
  }
  .footer-content {
    padding: 6.25rem 4rem 6.25rem 11rem;
  }
}
