.main-footer {
  padding: 68px 0 0 0;
  background-color: var(--black);
  color: var(--white);
}

.main-footer .footer-logo img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 10px;
}

.main-footer .footer-label img {
  width: 100%;
  max-width: 150px;
  margin: 30px 0;
}

.main-footer a {
  color: var(--white);
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
  margin-bottom: 6px;
  transition: 0.2s;
}

.main-footer .footer-address {
  margin-bottom: 24px;
}

.main-footer .footer-links a,
.main-footer .footer-address a {
  display: block;
}

.main-footer .footer-title {
  font-weight: bold;
  display: block;
}

.main-footer a:hover,
.main-footer a:focus,
.main-footer a:active {
  color: var(--secondary-green);
}

.footer-social a {
  display: inline-block;
  color: var(--white);
  font-size: 24px;
  margin-right: 14px;
}

.content-social {
  padding-left: 0;
  list-style: none;
  text-align: center;
  margin: 15px auto;
}

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

.main-footer .copyright {
  background-color: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: bold;
  margin-top: 68px;
  padding: 20px 0;
}

.main-footer .copyright a {
  font-weight: bold;
  font-size: 13px;
  color: var(--black);
}

.main-footer .copyright a:hover,
.main-footer .copyright a:focus {
  color: var(--primary-color);
}

.main-footer .copyright a::after {
  content: '|';
  padding: 0 6px;
}

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

/*  tablets and smaller desktops: MD */
@media only screen and (max-width: 992px) {
  .main-footer .copyright {
    margin-top: 40px;
  }

  .main-footer .copyright a {
    font-size: 12px;
  }
}