@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/* FOOTER BASE */
.footer {
  background: #000435;
  color: #fff;
  padding: 40px 60px 12px;
  font-family: "Inter", sans-serif;
  /* BOTTOM STRIP */
  /* RESPONSIVE DESIGN */
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: auto;
}
.footer .footer-container .footer-logo img {
  width: 6rem;
  margin-bottom: 20px;
}
.footer .footer-container .footer-logo img:hover {
  cursor: pointer;
  opacity: 0.5;
}
.footer .footer-container .footer-columns {
  display: flex;
  gap: 80px;
}
.footer .footer-container .footer-columns .footer-col .items a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 12px;
  color: #C9DAFF;
}
.footer .footer-container .footer-columns .footer-col .items a:hover {
  color: #fff;
  cursor: pointer;
}
.footer .footer-container .footer-columns .footer-col h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.footer .footer-container .footer-columns .footer-col h3 .title-links {
  text-decoration: none;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #E8EEFF;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.footer .footer-bottom p {
  font-size: 12px;
  opacity: 0.9;
}
.footer .footer-bottom .footer-socials {
  display: flex;
  gap: 25px;
}
.footer .footer-bottom .footer-socials img {
  width: 18px;
  height: 18px;
  cursor: pointer;
  transition: 0.2s;
}
.footer .footer-bottom .footer-socials img:hover {
  opacity: 0.7;
}
@media (max-width: 900px) {
  .footer .footer-container {
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 479px) {
  .footer {
    padding: 40px 24px 12px;
  }
}
