#footer {
  color: var(--color-white);
  font-size: 14px;
  padding: 100px 0;
}

#footer .footer-top {
  padding-bottom: 100px;
}

#footer .footer-info .logo img {
  max-height: 80px;
  margin-bottom: 30px;
}

#footer h2,
#footer h3,
#footer h4,
#footer .h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  margin-bottom: 20px;
}

#footer .footer-contact p {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-gray-400);
  margin-bottom: 0;
}

#footer .footer-contact a {
  color: var(--color-gray-400);
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
}

#footer .footer-contact a:hover {
  color: var(--color-white);
}

#footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links ul li {
  font-size: 16px;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

#footer .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-links ul a {
  color: var(--color-gray-400);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
}

#footer .footer-links ul a:hover {
  color: var(--color-white);
}

#footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white-12);
  font-size: 18px;
  color: var(--color-white);
  margin-right: 10px;
  transition: 0.3s;
  background: var(--white-08);
  text-decoration: none;
}

#footer .social-links a:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

#footer .footer-bottom {
  border-top: 1px solid var(--white-12);
  padding: 100px 0 0;
  color: var(--color-gray-400);
  font-size: 14px;
}

#footer .copyright {
  text-align: left;
}

@media (max-width: 768px) {
  #footer .footer-top {
    padding: 40px 0;
  }
  
  #footer .copyright {
    text-align: center;
  }
}
@media (max-width: 576px) {
  #footer .social-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
  }
}
