.footer-link {
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #444;
  text-decoration: none;
}
.site-footer {
  width: 100vw;
  min-height: 12rem;
  background: #c6d8e2;
  margin: 0;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
}

.footer-columns {
  display: flex;
  width: 100%;
  height: 100%;
}

.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-logo {
  height: 4rem;
  width: auto;
  margin-bottom: 1rem;
}

.left-col {
  align-items: flex-start;
  text-align: left;
}

.center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-center-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-center-logo {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0;
}

.footer-partner-logo {
  max-width: 90%;
  max-height: 8rem;
  object-fit: contain;
  margin: 0 auto;
}
.footer-partner-logo#deep-logo {
  max-width: 40%;
}

.right-col {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.footer-right-columns {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  align-items: flex-start;
  height: 100%;
}

.footer-right-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
}



.footer-link:hover {
  color: #0077a3;
}

@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .footer-col {
    width: 100%;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
  }
  .site-footer {
    min-height: unset;
    padding: 2rem 0;
  }
}

@media (max-width: 600px) {
  .footer-logo {
    max-width: 80vw;
    height: auto;
    max-height: 6rem;
    margin-bottom: 1rem;
  }
}
