footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #02071a;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.7);
}

footer .logo_footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: none;
}

footer .logo_footer p {
  font-family: inherit;
  color: #fff;
  text-align: center;
  margin-top: -0.5em;
}

footer .info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #fff;
}

footer .info span {
  margin: 5px;
}

footer .info div a {
  text-decoration: none;
  color: #fff;
}

footer .info div a:hover {
  color: rgb(17, 65, 110);
}

footer .social_media a img {
  width: 30px;
}

@media (max-width: 782px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  footer .logo_footer {
    width: 30%;
  }

  footer .info {
    flex-direction: column;
    width: 60%;
  }

  footer .info div {
    display: block;
  }

  footer .info span {
    display: none;
  }
}

@media (max-width: 450px) {
  footer .info,
  footer .info div a {
    font-size: 0.9em;
  }
}

.copy-rights {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #02071a;
}

.copy-rights p {
  font-family: inherit;
  color: #fff;
}
