/* Footer Styles */
.footer {
  margin-top: -1px;
  padding-top: 50px;
  padding-bottom: 80px;
  background-color: #0A0021;
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-image: url('../images/bg/footer-bg-mobile.svg');
}

@media (min-width: 768px) {
  .footer {
    background-image: url('../images/bg/footer-bg.svg');
  }
}

@media (min-width: 1024px) {
  .footer {
    padding-bottom: 32px;
    background-position: top;
  }
}

.footer-container {
  width: 100%;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .footer-container {
    padding: 0 64px;
  }
}

.footer-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
}

.footer-logo {
  width: 116px;
  height: 35px;
  margin-bottom: 16px;
  order: 2;
}

@media (min-width: 1024px) {
  .footer-logo {
    width: 120px;
    height: 29px;
    margin-bottom: 20px;
    order: 1;
  }
}

.footer-legit {
  width: 75px;
  order: 1;
  margin-bottom: 24px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .footer-legit {
    order: 2;
    margin-bottom: 32px;
  }
}

.footer-heading {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  order: 3;
  margin: 0;
}

@media (min-width: 1024px) {
  .footer-heading {
    font-size: 32px;
    line-height: 46px;
  }
}

.footer-heading p {
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .footer-links {
    display: flex;
    flex-direction: row;
    gap: 80px;
    width: auto;
  }
}

.footer-column {
  text-align: left;
}

.footer-column h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  margin-bottom: 24px;
  white-space: nowrap;
  margin-top: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-column a {
  font-family: 'GreycliffCF', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.footer-column a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-location {
  grid-column: span 2;
  text-align: left;
}

@media (min-width: 1024px) {
  .footer-location {
    grid-column: span 1;
  }
}

.footer-location-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.footer-location-text > div {
  display: flex;
}

@media (min-width: 1024px) {
  .footer-location-text > div {
    display: block;
  }
}

.footer-copyright {
  display: none;
}

@media (min-width: 1024px) {
  .footer-copyright {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: -26px;
    margin-bottom: 40px;
  }
}

.footer-copyright-text {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
}

