.footer {
  background-color: var(--greyColor);
  padding: 61px 0 58px;
  color: #fff;
}

.footer__top {
  padding-bottom: 71px;
  display: flex;
  justify-content: space-between;
}

.footer__bottom {
  padding-top: 71px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-menu__title {
  display: block;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-menu__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-menu__link {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
}

.footer-menu__sublink {
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
}

.footer-menu_contacts .footer-menu__link {
  line-height: normal;
}

.footer__logo {
  max-width: 241px;
}

.footer__logo img {
  max-width: 100%;
  display: block;
}

.footer__info {
  display: flex;
  align-items: center;
  gap: 35px;
}

.footer__about {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__rights {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3;
}

.footer__text {
  font-size: 15px;
  font-weight: 300;
  line-height: normal;
}

.social {
  display: flex;
  align-items: center;
  gap: 40px;
}

.social__link {
  display: block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.social__link_fb {
  background-image: url(../assets/images/icons/facebook.svg); 
}

.social__link_twitter {
  background-image: url(../assets/images/icons/twitter.svg);  
}

.social__link_inst {
  background-image: url(../assets/images/icons/instagram.svg);
}

.social__link_linkdin {
  background-image: url(../assets/images/icons/linked.svg);
}

.social__link_yt {
  background-image: url(../assets/images/icons/youtube.svg);
}

.social__link_vk {
  display: none;
}

.footer__text_mob {
  display: none;
}

@media(max-width: 1110px) {
  .footer__top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
  }

  .footer__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 0;
    justify-items: center;
  }

  .footer__info {
    grid-column: span 2;
    justify-content: center;
  }
}

@media(max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 11px;
    padding-bottom: 0;
    text-align: center;
  }

  .footer-menu__list {
    display: none;
  }

  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__rights {
    display: none;
  }
}

@media(max-width: 575px) {
  .footer {
    padding: 22px 0 29px;
  }

  .footer__top {
    text-align: left;
    padding-left: 22px;
  }

  .footer-menu__title {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
  }

  .footer__text {
    font-size: 14px;
    line-height: 1.3;
    text-decoration: underline;
  }

  .footer__text_mob {
    display: block;
    padding-left: 22px;
  }

  .footer__info {
    display: none;
  }

  .footer__bottom {
    flex-direction: column-reverse;
    padding: 0;
    gap: 30px;
  }

  .footer__logo {
    max-width: 131px;
  }

  .footer__logo img {
    height: 100%;
  }

  .footer__about {
    width: 100%;
    margin: 15px 0 0;
    padding: 17px 0;
    gap: 12px;
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }

  .social {
    padding: 0 22px;
    gap: 24px;
  }

  .social__link {
    width: 40px;
    height: 40px;
  }

  .social__link_fb {
    background-image: url(../assets/images/icons/facebook-fill.svg);
  }

  .social__link_twitter {
    display: none;
  }

  .social__link_inst {
    background-image: url(../assets/images/icons/instagram-fill.svg);
  }

  .social__link_linkdin {
    display: none;
  }

  .social__link_vk {
    display: block;
    background-image: url(../assets/images/icons/vk-fill.svg);
  }

  .social__link_yt {
    background-image: url(../assets/images/icons/youtube-fill.svg);
  }

}