/* ============================ */
/*    Footer Section */
/* ============================ */

.footer-container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  padding: 3rem 2rem 1rem 2rem;
  width: 100%;
  gap: 2rem;
  background-color: #14131b;
  color: white;
}
.footer-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 2rem;
}

/* Footer Text Content */
.footer-box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  max-width: 400px;
  gap: 1rem;
}
.footer-box-content span {
  color: #4c98ff;
}
.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 0.5rem;
}
.footer-social a img {
  width: 25px;
  height: 25px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  transition: all 0.2s ease-in-out;
}
.footer-social a img:hover {
  border-color: #4c98ff;
}

/* Footer Quick Links */
.footer-box-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 2rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  list-style-type: none;
  gap: 0.5rem;
}
.footer-links a,
.footer-box-content p {
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}
.footer-links a:hover {
  color: #4c98ff;
}

/* Footer Rights */
.footer-end {
  display: flex;
  justify-self: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
}

@media (max-width: 1250px) {
  .footer-container {
    padding: 3rem 2rem 1rem 2rem;
  }
  .footer-box-content {
    max-width: 100%;
  }
  .footer-wrap {
    flex-direction: column;
  }
}
@media (max-width: 750px) {
  .footer-container {
    padding: 3rem 1rem 1rem 1rem;
  }
  .footer-box-links {
    flex-direction: column;
  }
}
