.footer {
  background-image: url("../imgs/footer.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
}

.footer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1ae5;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer .footer-logo img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.footer .footer-text {
  color: #fff;
  margin: 1rem 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 2;
}

.footer .footer-link-title {
  color: #fff;
  margin: 2.5rem 0;
  font-weight: 700;
  font-size: 24px;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer .footer-links a {
  color: #d4d9d8;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer .footer-links a:hover {
  opacity: 0.5;
}

.footer .social-links {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer .social-links .white-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #fff;
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-copyright {
  color: #fff;
  background-color: var(--green-color);
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer .row {
    justify-content: center;
    align-items: center;
  }
  .footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .footer .footer-logo img {
    width: 100px;
  }
  .footer .footer-text {
    text-align: center;
  }
  .footer .footer-links {
    justify-content: center;
    align-items: center;
  }
  .footer .footer-link-title {
    text-align: center;
  }
  .footer .social-links {
    justify-content: center;
  }
}
