/* footer */
.footer {
  border-top: 1px solid #ccc;
  padding: 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(150px, 1fr));
  grid-gap: 5px;

}

.footer h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}



.footer .link-secondary {
  font-size: 0.9rem;
  text-decoration: none;
  color: rgb(124, 125, 126);
}

.footer .link-secondary:hover {
  color: var(--secondaryColor);
}

.copyright {
  width: 100%;
  height: 70px;
  background: var(--navBgColor);
  color: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.6rem;
}

.social-links {
  border: 1px solid var(--navBgColor);
  background: var(--navBgColor);
  width: 200px;
  margin: 0 auto;
  border-radius: 3rem;
  margin-bottom: -1.1rem;
}

.social-links .links {
  display: flex;
  list-style: none;
  text-align: center;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.social-links .links li {
  width: 100%;
  text-align: center;
}

.social-links .links a {
  text-decoration: none;
  display: inline-block;
  color: var(--whiteColor);
  font-size: 1.3rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.social-links .links a:hover {
  color: var(--primaryColor);
}

.arrow-up {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  display: none;
}

.arrow-up-link .bi {
  width: 30px;
  height: 30px;
  transition: all 0.2s ease;
  color: var(--primaryColor);
}

.arrow-up-link .bi:hover {
  transform: translateY(-5px);
}
