/* Footer */
.footer {
  background-color: var(--themethirdclr);
  color: var(--plainclr);
  padding-top: 70px;
}

.footer-links a, .footer-links p {
  font-size: 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--themeprimaryclr);
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plainclr);
  text-decoration: none;
  transition: 0.3s ease;
}

.social-links a:hover {
  background-color: var(--themeprimaryclr);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--themeprimaryclr);
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  color: var(--themeprimaryclr);
  margin-top: 5px;
}

.footer-bottom {
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-legal a:hover {
  color: var(--themeprimaryclr);
}

.footer-gov-links {
  display: flex;
  justify-content: center;
}

.gov-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.gov-links a {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gov-links img {
  height: 40px;
  width: auto;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--themeprimaryclr);
  color: var(--plainclr);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow2);
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--themehoverclr);
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 30px;
  }
  .footer-main {
    padding: 30px 0px;
    gap: 25px;
  }
  .footer-logo h3 {
    font-size: 1.3rem;
  }
  .footer-col h4 {
    font-size: 1.2rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .gov-links a {
    padding: 9px;
  }
  .footer-legal {
    flex-wrap: wrap;
  }
  .footer-links a, .footer-links p {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=footer.css.map */