.footer {
  background-color: rgb(var(--background-color-footer));
  padding-top: 70px;
  padding-bottom: 70px;
}

.footer__title {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  color: rgb(var(--light-color));
  font-size: 24px;
  font-weight: 700;
}

.footer__content {
  max-width: var(--container-size);
  width: 90%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__contact {
  color: rgb(var(--grey-color));
  font-size: 18px;
  font-weight: 400;
}

.footer__contact-title {
  margin-bottom: 20px;
}

.footer__cotact-phone {
  color: white;
  text-decoration: none;
  margin-top: 5px;
}

.footer__social-title {
  color: rgb(var(--grey-color));
  font-size: 18px;
}

.footer__social-links {
  display: flex;
  margin-top: 20px;
  gap: 50px;
}

.footer__social-links-image {
  font-size: 25px;
  color: rgb(var(--grey-color));
  transition: 300ms ease color;
}

.footer__social-links-image:hover {
  color: rgb(var(--black-color));
}

.footer__copy {
  font-size: 13px;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
  color: rgb(var(--grey-color));
}

.footer a {
  color: rgb(var(--grey-color));
}

@media screen and (max-width: 900px) {
  .footer__copy,
  .footer__content {
    flex-direction: column;
  }

  .footer__copy {
    gap: 12px;
  }

  .footer__contact {
    margin-bottom: 30px;
  }

  .footer__social-links {
    gap: 20px;
  }
}
