#footer-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #292f3d;
  justify-content: center;
  font-size: 0.75em;
  border-top: 1px solid black;
  font-family: open-sans, sans-serif;
}
#footer-box-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 5px;
  color: darkgray;
  font-weight: 500;
  justify-content: center;
}
.footer-box {
  display: flex;
  flex-direction: row;
  width: 12vw;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 2vw;
  padding-right: 2vw;
}
.footer-box-items {
  display: flex;
  flex-direction: column;
}
.footer-box-item {
  display: flex;
  flex-direction: row;
  margin-top: 5px;
  margin-bottom: 5px;
}
.footer-box-item > ul {
  padding-left: 0;
}
.footer-box-item li {
  list-style: none;
}
.footer-box-item a {
  text-decoration: none;
  color: darkgray;
}
#footer-logo {
  width: 77px;
  height: 27px;
}
#footer-divider {
  content: "";
  width: 80vw;
  border-bottom: 1px solid rgba(240, 240, 240, 0.1);
}
#footer-copyright-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1vh;
  margin-top: 1vh;
  width: 100%;
}
.footer-copyright-item {
  padding-left: 10vw;
  padding-right: 10vw;
  color: darkgray;
  font-weight: 500;
}
.footer-copyright-item > a {
  text-decoration: none;
  color: inherit;
  padding-left: 5px;
  padding-right: 5px;
}
a:hover {
  color: white;
}

@media only screen and (max-width: 615px) {
  #footer-box-container {
    flex-direction: column;
  }
  .footer-box {
    width: auto;
    padding-left: 18vw;
    padding-right: 18vw;
    justify-content: flex-start;
  }
  #footer-copyright-items {
    flex-direction: column;
    align-items: center;
  }
  .footer-copyright-item {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
