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

.main-footer ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-brand img {
  width: 96%;
  max-width: 144px;
}

.main-footer a {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  font-style: normal;
  text-decoration: none;
  transition: var(--transition-sm);
}

.main-footer a:hover,
.main-footer a:focus-within,
.main-footer a:active {
  color: rgba(255, 255, 255, 0.7);
}

.footer-address {
  padding-left: 0;
  margin: 30px 0;
}

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

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 0;
}

.footer-social li a {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-size: 30px;
}

.main-footer .footer-nav {
  justify-content: center;
}

.main-footer .footer-nav a {
  display: block;
  font-weight: 900;
  margin: 8px 0;
}

footer .copyright {
  background-color: var(--secondary-color);
  color: var(--black);
  text-align: center;
  font-size: 14px;
  padding: 14px 0;
}

footer .copyright a {
  position: relative;
  display: inline-block;
  color: var(--black) !important;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  text-decoration: none;
}

footer .copyright a:hover,
footer .copyright a:focus-within {
  text-decoration: underline;
}

footer .copyright .copyright-item {
  position: relative;
  display: inline-block;
  color: var(--black) !important;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  text-decoration: none;
  padding: 0 14px 0 10px;
}

footer .copyright .copyright-item::after {
  content: '|';
  position: absolute;
  right: 0;
  color: var(--black);
  font-style: normal;
}

footer .copyright .copyright-item:last-child::after {
  content: none;
}


/*  tablets and smaller desktops: MD */
@media only screen and (max-width: 992px) {
  .main-footer {
    text-align: center;
  }

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

  .footer-social {
    justify-content: center;
  }

  .footer-social li a {
    font-size: 24px;
  }


  footer .copyright a {
    font-size: 13px;
    padding: 0 8px;
  }
}