

 footer {
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  box-shadow: var(--shadow-theme);
  padding-top: 8rem !important;
  padding-bottom: 20px !important;
}

footer .main-container {
  position: relative;
  z-index: 2;
}

footer .footer-tagline {
  max-width: 70%;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      3px 3px at 10% 90%,
      rgba(255, 255, 255, 0.9),
      transparent
    ),
    radial-gradient(
      2.5px 2.5px at 25% 65%,
      rgba(255, 255, 255, 0.7),
      transparent
    ),
    radial-gradient(3px 3px at 80% 70%, rgba(255, 255, 255, 0.8), transparent);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

footer li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.4rem 0;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

footer li a:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

footer .content li a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: var(--transition-base);
}

footer .content li a:hover {
  color: #fff;
  transform: translateX(3px);
}

footer .content li a:hover::before {
  width: 100%;
}

footer .content li span.d-flex {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  font-weight: 600;
}

footer p,
footer span:not(.nav-title) {
  color: rgba(255, 255, 255, 0.9);
}

footer .nav-title {
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 1.5rem;
}

footer .social-links {
  margin-top: 4rem;
  margin-bottom: -2rem;
  position: relative;
  z-index: 4;
}

footer .social-item {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: 0.2s linear;
}

footer .social-item:hover {
  transform: scale(1.06);
}

footer .social-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

footer .social-item i {
  color: #fff;
  transition: 0.3s linear;
}

footer .social-item:hover i {
  color: var(--color-accent-orange);
}

@media (max-width: 991px) {
  footer .social-links {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  footer {
    padding-top: 3rem !important;
    padding-bottom: 1.5rem !important;
  }

  footer .footer-tagline {
    max-width: 100%;
    font-size: 1.05rem;
  }

  footer .nav-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  footer li a {
    font-size: 1.4rem;
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  footer .social-item {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 44px;
    min-height: 44px;
  }

  footer .content.row {
    margin-left: 0;
    margin-right: 0;
  }
}

.border-top {

	border-top: 1px solid transparent; 
  border-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0)
  ) 1;
	
}