.footer {
  background-color: var(--bg-deep);
  color: var(--text);
  padding: 50px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.footer-details {
  margin-top: 30px;
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
}

.footer-wrapper >div {
    display: flex;
    flex-direction: column;
}

.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
}

.footer-wrapper>div >a {
  color: var(--text);
  text-decoration: none;
  margin-top: 5px;
}

.footer-wrapper > div > a:link,
.footer-wrapper > div > a:visited {
  color: var(--text);
  text-decoration: none;    
}

.footer-wrapper > div > a:hover,
.footer-wrapper > div > a:active {
  color: var(--highlight);
}

.footer-title {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

@media (max-width: 960px) {
  .footer {
    background-color: var(--bg-deep);
    color: var(--text);
    padding: 40px 15px 15px 30px;
  }

  .footer-wrapper {
    flex-direction: column;
  }

  .footer-wrapper  >div {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-soft);
  }
  .footer-wrapper >:last-child {
    border: none;
  }
}