:root {
  --bg-footer: #f9fafb;
  --text-footer-title: #000;
  --text-footer-desc: #0e0e0e;
  --text-footer-li: #333131;
  --text-footer-link: #1570fd;
  --border-footer: #bbb7b7;
  --text-logo: #0F172A;
}

body.dark-mode {
  --bg-footer: #0f0f12;
  --text-footer-title: #fdf8f8;
  --text-footer-desc: #cfc8c8;
  --text-footer-li: #b9afaf;
  --text-footer-link: #9595e1;
  --border-footer: #8f8888;
  --text-logo: #fdfdfd;
}

a {
  text-decoration: none;
}

footer {
  height: auto;
  max-width: 100%;
  width: 100%;
  position: relative;
  padding: 60px 10%;
  bottom: 0;
  background: var(--bg-footer);
}
footer .footer-content-wrapp {
  width: 100%;
  height: 100%;
}
footer .footer-logo-wrapp {
  display: flex;
  align-items: center;
}
footer .footer-logo-wrapp img {
  width: fit-content;
  height: 45px;
}
footer .footer-logo-wrapp span {
  color: var(--text-logo);
  margin: 0 5px;
  font-weight: 800;
  font-size: 1.2rem;
}
footer .website-desc {
  margin: 20px 0;
  width: 90%;
  font-size: 1.15rem;
  color: var(--text-footer-desc);
  font-weight: 600;
  line-height: 1.7;
}
footer ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .service-menu,
footer .company-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}
footer .service-menu li:not(:first-child),
footer .company-menu li:not(:first-child) {
  padding: 0 10px;
  border-left: 1px solid var(--border-footer);
  color: var(--text-footer-li);
  position: relative;
  font-weight: 500;
  font-size: 0.9rem;
}
footer .service-menu li:last-child,
footer .company-menu li:last-child {
  margin-bottom: 0;
}
footer .service-menu li a,
footer .company-menu li a {
  color: var(--text-footer-li);
  font-weight: 700;
  position: relative;
  font-weight: 600;
  font-size: 0.85rem;
}
footer .service-menu li a:after,
footer .company-menu li a:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--text-footer-link);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
footer .service-menu li a:hover,
footer .company-menu li a:hover {
  color: var(--text-footer-link);
}
footer .service-menu li a:hover:after,
footer .company-menu li a:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
footer .languages-menu,
footer .speech-menu {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
footer .languages-menu li,
footer .speech-menu li {
  width: fit-content;
  margin: 5px 2px;
  font-size: 0.95rem;
  color: var(--text-footer-li);
  cursor: pointer;
}
footer .languages-menu li:not(:first-child):hover,
footer .speech-menu li:not(:first-child):hover {
  color: var(--text-footer-link);
}
footer .languages-menu a,
footer .speech-menu a {
  color: var(--text-footer-li);
}
footer li.list-title {
  color: var(--text-footer-title);
  font-weight: 700;
  margin: 0 10px;
  font-size: 1rem;
}
footer .copyright-text {
  color: var(--text-footer-title);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  padding: 15px 5px;
}
footer .copyright-text svg {
  margin: 0 2px;
}
footer .copyright-text b {
  margin: 0 5px;
}
footer .copyright-text a {
  color: var(--text-footer-link);
  font-weight: 600;
}
footer .copyright-text a:hover {
  text-decoration: underline;
}

/* ===== Mobile adjustments ===== */
@media (max-width: 768px) {
  footer {
    padding: 40px 10px;
  }
  footer .footer-logo-wrapp img {
    height: 37px;
  }
  footer .footer-logo-wrapp span {
    font-size: 1rem;
  }
  footer .website-desc {
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 15px 0;
  }
  footer .service-menu,
  footer .company-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  footer .service-menu li,
  footer .company-menu li {
    line-height: 1.5;
  }
  footer .service-menu li:not(:first-child),
  footer .company-menu li:not(:first-child) {
    padding: 0 5px;
    font-size: 0.8rem;
  }
  footer .service-menu li a,
  footer .company-menu li a {
    font-size: 0.8rem;
  }
  footer .languages-menu,
  footer .speech-menu {
    margin: 10px 0;
  }
  footer .languages-menu li,
  footer .speech-menu li {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 4px 2px;
  }
  footer li.list-title {
    font-size: 0.9rem;
    margin: 0 6px;
  }
  footer .copyright-text {
    font-size: 0.72rem;
    line-height: 1.6;
    flex-wrap: wrap;
    padding: 10px 0;
  }
}

/*# sourceMappingURL=footer.css.map */
