footer {
  padding: 64px 0 0 0;
  background-color: var(--primary-color);
  color: var(--white);
}

footer .footer-info {
  font-size: 20px;
  text-align: center;
}

footer .footer-logo {
  display: block;
  width: 100%;
  max-width: 250px;
}

footer a {
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover,
footer a:focus {
  color: rgba(255, 255, 255, 0.65) !important;
}

.footer-social {
  padding: 54px 0;
  list-style: none;
}

.footer-social li a {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  line-height: 0;
  margin: 0 12px;
  transition: var(--transition);
}

.footer-social a:hover {
  text-decoration: none;
  color: var(--light-gray);
}

.footer-address {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 20px;
}

.footer-address li {
  display: block;
  margin: 10px 0;
}

footer .list-unstyled li {
  margin-bottom: 10px;
}

footer .copyright {
  background-color: var(--primary-color);
  border-top: 1px solid var(--white);
  text-align: center;
  margin-top: 20px;
  padding: 20px 0;
}

footer .copyright a::after {
  content: '|';
  color: var(--white);
  margin: 0 10px;
}

footer .copyright a:last-of-type:after {
  display: none;
}

@media only screen and (min-width: 992px) {
  .footer-address {
    margin-left: 30px;
  }
}


@media only screen and (max-width: 991.5px) {
  footer {
    text-align: center;
  }

  .footer-address,
  footer h2 {
    text-align: center;
  }

  footer .copyright {
    margin-top: 40px;
  }

  .footer-social {
    text-align: center;
  }

  .footer-nav {
    margin-top: 20px;
  }

  .footer-social li a {
    font-size: 22px;
    width: 32px;
    height: 32px;
    line-height: 32px;
  }

  .footer-nav {
    text-align: center;
  }

  .footer-nav .list-unstyled {
    border-right: none;
  }

  .footer-address,
  footer h2 {
    text-align: center;
  }

  footer img {
    margin: 0 auto;
  }

  .footer-post img {
    max-width: 80%;
  }
}