/* Theme created by Kévin Rouart */

footer {
  padding: 1rem 3rem;
  background-color: var(--bs-dark-blue);
}

footer hr {
  color: white;
}

footer h5 {
  font-weight: bold;
  text-align: center;
}

footer ul {
  padding-left: 0;
  list-style: none;
  text-align: center;
}

footer a {
  text-decoration: none;
}

footer a, footer p, footer h4 {
  color: #fff;
}

footer i {
  background: white;
  color: var(--bs-primary);
  border-radius: 50%;
  text-align: center;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

footer i:hover {
  transform: scale(1.1);
}

footer .list {
  display: flex;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile responsive */

@media (max-width: 992px) {
  footer {
    padding: 0.5rem 4rem;
    align-items: center !important;
  }
}

