.footer {
  background-color: var(--dark-blue-color);
  color: var(--gray-300);
  padding: 4rem 0 0 0;
  border-top: 1px solid var(--gray-200);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white-color);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white-color);
  text-decoration: none;
  padding-left: 4px;
}

.footer .social-links a {
  color: var(--gray-400);
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer .social-links a:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.footer .input-group {
  box-shadow: var(--box-shadow);
}

.footer .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gray-700);
  color: var(--white-color);
}

.footer .form-control::placeholder {
  color: var(--gray-500);
}

.footer .form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
  box-shadow: none;
  color: var(--white-color);
}

.footer-bottom {
  background-color: #0F1A2C;
  color: var(--gray-500);
  padding: 1.5rem 0;
  margin-top: 4rem;
  font-size: 0.875rem;
  text-align: center;
}

.footer-bottom a {
  color: var(--gray-400);
}

.footer-bottom a:hover {
  color: var(--white-color);
  text-decoration: underline;
}

.footer-bottom .list-inline-item:not(:last-child) {
  margin-right: 1rem;
}

.footer-links i.fas {
  width: 20px;
  color: var(--primary-color);
}

.footer-bottom .list-inline-item:not(:last-child) {
  .footer {
    text-align: center;
    margin-top: 0 !important;
    padding-top: 1.5rem !important;
  }
  .footer .row > div {
    margin-bottom: 1.5rem;
  }
  .footer .social-links {
    justify-content: center;
  }
  .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 0.5rem;
  }
  .footer-bottom .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
