/* footer css */
.footer-area {
  background-color: var(--primary);
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .footer-area { padding-top: 70px; }
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-logo {
  margin-bottom: 25px;
  display: inline-block;
}
.footer-text {
  color: var(--white-2);
  margin-bottom: 30px;
  font-size: 16px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}
.footer-social-links a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
  color: var(--white);
}

.footer-widget-title {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  color: var(--white-2);
  font-size: 16px;
}
.footer-links li a:hover {
  color: var(--theme);
  padding-left: 5px;
}

.footer-copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 40px;
}
.footer-copyright-text {
  color: var(--white-2);
  font-size: 15px;
  text-align: center;
}