#eg-footer {
  padding: var(--content-spacing);
  background-color: var(--agora-red);
  background-image: url("/agora-template-2/public/assets/images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

#eg-footer > .eg-container > .eg-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 1rem;
}

#eg-footer > .eg-container > .eg-wrapper > .left {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

#eg-footer .left > .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#eg-footer .left > .footer-links > .adress {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

#eg-footer .left > .footer-links > .adress > .group {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}

#eg-footer .left > .footer-links > .adress > .group > p,
#eg-footer .left > .footer-links > .adress > .group > a {
  color: var(--agora-white);
  font-size: var(--font-16);
  font-weight: 400;
}

#eg-footer .left > .footer-links > .contact-us {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#eg-footer .left > .footer-links > .contact-us > .link {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

#eg-footer .left > .footer-links > .contact-us > .link:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  background: var(--agora-white);
}

#eg-footer .left > .footer-links > .contact-us > .link > .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

#eg-footer .left > .footer-links > .contact-us > .link > .group {
  display: flex;
  flex-direction: column;
  align-items: start;
}

#eg-footer .left > .footer-links > .contact-us > .link > .group > small {
  color: var(--agora-white);
  font-size: var(--font-14);
  font-weight: 300;
}

#eg-footer .left > .footer-links > .contact-us > .link > .group > a,
#eg-footer .left > .footer-links > .contact-us > .link > .group > p {
  color: var(--agora-white);
  font-size: var(--font-20);
  font-weight: 600;
}

#eg-footer .left > .footer-links > b {
  color: var(--agora-white);
  font-size: var(--font-18);
  font-weight: 700;
}

#eg-footer .left > .footer-links > .content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

#eg-footer .left > .footer-links > .content > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#eg-footer .left > .footer-links > .content > ul > li > a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--agora-white);
  font-size: var(--font-16);
  font-weight: 400;
  transition: 0.3s;
}

#eg-footer .left > .footer-links > .content > ul > li > a::before {
  content: "";
  background: var(--agora-grey-5);
  width: 0;
  height: 0;
  transition: height 0.3s;
}

#eg-footer .left > .footer-links > .content > ul > li > a:hover {
  color: var(--agora-grey-5);
}

#eg-footer .left > .footer-links > .content > ul > li > a:hover::before {
  width: 2px;
  height: 20px;
}

#eg-footer .left > .footer-links > .social-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}

#eg-footer .left > .footer-links > .social-links > .group {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}

#eg-footer .left > .footer-links > .social-links > .group > a {
  display: flex;
  align-items: center;
  justify-content: center;
}

#eg-footer .left > .footer-links > .social-links > .group > a > svg > path {
  transition: 0.3s;
}

#eg-footer .left > .footer-links > .social-links > .group > a:hover > svg > path {
  fill: var(--agora-red-2);
}

#eg-footer .left > .footer-links > .social-links > a {
  color: var(--agora-white);
  font-size: var(--font-18);
  font-weight: 400;
}

#eg-footer > .eg-container > .eg-wrapper > .right {
  display: flex;
  align-items: center;
  justify-content: center;
}

#copyright {
  padding: 1rem 0;
}

#copyright > .eg-container > .eg-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#copyright > .eg-container > .eg-wrapper > .left > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#copyright > .eg-container > .eg-wrapper > .left > ul > li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#copyright > .eg-container > .eg-wrapper > .left > ul > li > a,
#copyright > .eg-container > .eg-wrapper > .left > ul > li > p {
  color: var(--agora-grey-2);
  font-size: var(--font-16);
  font-weight: 400;
}

#copyright > .eg-container > .eg-wrapper > .left > ul > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  min-width: 4px;
  min-height: 4px;
  border-radius: 100%;
  background: var(--agora-grey-5);
}

@media (max-width: 1400px) {
  #eg-footer > .eg-container > .eg-wrapper {
    grid-template-columns: 4fr 1fr;
  }
}

@media (max-width: 1200px) {
  #eg-footer > .eg-container > .eg-wrapper {
    grid-template-columns: var(--col-12);
  }
}

@media (max-width: 992px) {
  #eg-footer > .eg-container > .eg-wrapper > .left {
    grid-template-columns: var(--col-12);
    gap: 2rem;
  }
  #eg-footer .left > .footer-links {
    align-items: center;
  }
  #eg-footer .left > .footer-links > .adress {
    flex-direction: column;
    text-align: center;
  }
  #eg-footer .left > .footer-links > .adress > .group,
  #eg-footer .left > .footer-links > .social-links {
    align-items: center;
  }
}

@media (max-width: 576px) {
  #eg-footer .left > .footer-links > .contact-us {
    flex-direction: column;
  }
  #eg-footer .left > .footer-links > .contact-us > .link:not(:last-child)::after {
    display: none;
  }
  #eg-footer .left > .footer-links > .contact-us {
    align-items: start;
  }
  #copyright > .eg-container > .eg-wrapper,
  #copyright > .eg-container > .eg-wrapper > .left > ul,
  #copyright > .eg-container > .eg-wrapper > .left > ul > li {
    flex-direction: column;
  }
}
