.footer {
  border-top: 1px solid var(--grey-dark);
  line-height: 1.2;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: var(--space-40-m30);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  margin: 0 -10px;
}

.footer__col {
  flex: 0 0 auto;
  width: 25%;
  padding: 0 10px;
}

.footer-nav__header {
  margin-bottom: 30px;
}

.footer-nav__title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.footer-nav__header .icon {
  display: none;
}

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

.footer-nav__content li {
  margin-bottom: 15px;
}

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

.footer-nav__content a {
  color: inherit;
}

.footer-nav__content a:hover,
.footer-nav__content a.is-active {
  color: var(--red-main-color);
}

.footer__bottom {
  margin-top: 60px;
}

.footer-contact__value {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--red-main-color);
}

.footer-contact__value a {
  color: inherit;
}

.footer-contact__value a:hover {
  color: var(--red-dark);
}

.footer-contact__title {
  font-size: 14px;
  color: var(--black-50);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--red-main-color);
  color: var(--red-main-color);
  border-radius: 50%;
}

.footer-social__btn:hover {
  background-color: var(--red-main-color);
  color: var(--white);
}

.footer-social__btn .icon {
  width: 22px;
  height: 22px;
}

.footer-link-row {
  font-size: 14px;
  color: var(--black-50);
}

.footer-link {
  color: inherit;
}

.footer-link:hover {
  color: var(--red-main-color);
}

@media (max-width: 1399.98px) {
  .footer__col {
    width: 33.33%;
  }

  .footer__content .footer__col:first-child {
    display: none;
  }

  .footer__col_social {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .footer__bottom {
    margin-top: 30px;
  }

  .footer__row {
    row-gap: 20px;
  }

  .footer__col_social {
    margin-bottom: 10px;
  }
}

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

  .footer__content {
    display: none;
  }

  .footer__row {
    display: block;
    margin: 0;
  }

  .footer__col {
    width: auto;
    padding: 0;
  }

  .footer-nav {
    padding: 20px 0 19px;
    border-bottom: 1px solid var(--grey-dark);
  }

  .footer-nav__header {
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
  }

  .footer-nav__header .icon {
    display: block;
    color: var(--red-main-color);
  }

  .footer-nav.is-open .footer-nav__header .icon {
    transform: rotate(180deg);
  }

  .footer-nav__content {
    padding-top: 13px;
  }

  .footer-nav:not(.is-open) .footer-nav__content {
    display: none;
  }

  .footer__bottom {
    margin-top: 0;
  }

  .footer-contact {
    margin-bottom: 20px;
  }

  .footer-link-row {
    margin-top: 10px;
  }

  .footer__col_social {
    margin-bottom: 30px;
  }
}
