.common-footer {
  padding-top: 45px;
  background-color: var(--light-color);
}

.common-footer__logo {
  display: inline-block;
  font-size: 24px;
  color: var(--text-color);
  font-family: 'PF BeauSans Pro Light', sans-serif;
  line-height: 24px;
  margin-bottom: 45px;
}

.common-footer__logo span {
  font-family: 'PF BeauSans Pro SemiBold', sans-serif;
  color: #1976D1;
}

.common-footer__logo:hover {
  color: var(--text-color);
}

.common-footer__link-block {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.common-footer__link-block h3 a {
  text-decoration: underline;
}

.common-footer__link-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.common-footer__link-block li {
  margin-bottom: 5px;
}

.common-footer__link-block a {
  display: inline-block;
  color: var(--text-color);
  padding: 2px 5px;
  margin-left: -5px;
  transition: 0.3s ease all;
}

.common-footer__link-block a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.copyright__wrapper {
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.common-footer__copyright-block {
  display: flex;
  justify-content: space-between;
}

.common-footer__copyright-block p {
  margin: 0;
}

.common-footer__copyright-block .text-muted {
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .common-footer__link-block {
    width: 200px;
  }
  .common-footer__copyright-block {
    text-align: center;
  }
}

