@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  font-family: Calibri, sans-serif;
}
.footer {
  background: #13294b;
  color: #fff;
  padding: 1.5rem 0 0 0;
  font-family: "Segoe UI", Arial, sans-serif;
}
.footer h2 {
  color: darkgrey;
}
.footer p {
  color: #fff;
  font-size: 0.8rem;
}
.footer-top {
  max-width: 1400px;
  margin: auto;
  padding: 0 2vw 2rem 2vw;
}
.footer-brand-social {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.footer-logo-img {
  height: 2rem; /* Adjust as needed */
  width: auto;
  display: block;
}

.footer-social {
  height: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  color: #fff;
}

.fa-brands {
  color: #fff;
}

.footer-icon:hover {
  rotate: -360deg;
  transition: 1s;
}

.footer-divider {
  border: none;
  border-top: 2px solid #c0d0ee55;
  margin: 1.2rem 0 1.2rem 0;
}

.footer-main {
  display: flex;
  justify-content: space-betweenpace-evenly;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  flex: 1;
  min-width: 20px;
}

.footer-nav li {
  margin-bottom: 0.7rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contact {
  text-align: right;
  font-size: 0.8rem;
  line-height: 2;
  min-width: 230px;
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.85;
}

.footer-top-btn {
  background: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 0.8em 2em;
  font-size: 1.2rem;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-top-btn:hover {
  background: #fff;
  color: #13294b;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 20;
  }
  .footer-brand-social {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-nav {
    list-style: none;
    padding: 0;
    margin-top: -14px;
    font-size: 0.8rem;
    flex: 1;
    min-width: 220t-content;
  }
  .footer-contact {
    text-align: left;
    margin-top: 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}
