/* Footer */
.footer {
  background: var(--main-color);
  color: var(--light-color);
}

.footer a {
  color: inherit;
}

.footer a:hover {
  color: var(--white-color);
}

.footer .icon {
  color: var(--secondary-color);
}

.footer a:hover .icon {
  color: inherit;
}

.footer__logo img {
  width: auto;
  height: auto;
  max-width: 194px;
  min-height: 67px;
}

.footer__copyright {
  font-size: 13px;
  line-height: 21px;
  border-top: 1px solid var(--secondary-color);
  margin-top: 45px;
  padding-top: 35px;
}

.footer__title {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  color: var(--white-color);
  margin-bottom: 16px;
}

.footer__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__list li {
  margin-bottom: 11px;
}

.footer__list li:last-child {
  margin-bottom: 0;
}

.footer__contacts {
  max-width: 300px;
}

.footer__contacts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__contacts li {
  display: flex;
  align-items: center;
  column-gap: 14px;
  margin-bottom: 11px;
}

.footer__contacts li > .icon {
  width: 17px;
  height: 19px;
}

.footer__contacts li > span {
  display: flex;
  align-items: center;
  column-gap: 22px;
}

.footer__contacts-icons {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.footer__contacts-icons .icon {
  width: 20px;
  height: 20px;
}

.footer__social {
  border-top: 1px solid var(--secondary-color);
  margin-top: 23px;
  padding-top: 21px;
}

.footer__social-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.footer__social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}

.footer__social .icon {
  width: 20px;
  height: 20px;
}

.footer__main {
  padding-top: 68px;
  padding-bottom: 55px;
}

.footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}

.footer__col {
  flex: 0 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.footer__bottom {
  font-size: 13px;
  line-height: 21px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--dark-color);
}

.footer__dev a {
  color: var(--white-color);
}

@media (max-width: 1199.98px) {
  .footer {
    padding-bottom: 60px;
  }

  .footer__row {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .footer__main {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .footer__col {
    width: 100%;
  }

  .footer__copyright {
    padding-top: 20px;
    margin-top: 20px;
  }
}
/* ! Footer */
