.footer {
  width: 100%;
  max-width: 924px;
  height: 50px;
  margin: auto;
  display: flex;
  flex-direction: row;
}

.logo_footer {
  width: 15%;
  display: flex;
  justify-content: start;
}
.logo_footer > img {
  height: 40px;
}

.copyright {
  width: 25%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright > p {
  color: #989898;
  margin-bottom: 8px !important;
  font-size: 12px;
}

.nav_footer {
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav_footer > a {
  color: #989898;
  font-size: 12px;
  margin-left: 20px;
  margin-bottom: 8px;
  font-weight: 100;
  font-family: Futura LT Light;
}

.nav_footer a:hover {
  color: #3242ff;
}
.sst_logo {
  width: 100%;
  height: 30px;
  background: center url("../images/footer/sst.svg") no-repeat;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

@media (max-width: 500px) {
  .footer {
    display: block;
    flex-direction: unset;
    height: 80px;
  }
  .logo_footer {
    width: 100%;
    display: block;
    margin-top: 10px;
  }
  .copyright {
    width: 100%;
  }
  .nav_footer {
    display: block;
    width: 100%;
    transform: translateY(-163px);
  }
  .nav_footer > a {
    margin-left: 10px;
  }
}
