.footer-container {
  width: 100%;
  background-color: #35562f;
}

.footer-container .footer-content {
  width: 95%;
  margin: 0 auto;
}

.footer-content .logo {
  width: 10%;
  margin: 0 auto;
  padding: 2rem 0;
}

.footer-content .logo img {
  width: 100%;
}

.footer-content .info {
  margin: 0 auto;
  width: fit-content;
  color: #fff;
}

.footer-content .phones {
  width: fit-content;
  margin: 1rem auto;
}

.footer-content .phones a {
  color: #eeeeee;
}

.footer-content .phones a:hover {
  color: #fff;
}

.footer-content .socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 1rem;
}

.footer-content .socials a {
  color: #eeeeee;
}

.footer-content .socials a:hover {
  color: #fff;
}

.footer-content .socials i {
  font-size: 2rem;
}

.footer-content .line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.footer-container .copyright {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

@media screen and (max-width: 1400px) {
  .footer-content .logo {
    width: 20%;
  }
}

@media screen and (max-width: 756px) {
  .footer-content .logo {
    width: 25%;
  }

  .footer-container .copyright {
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .footer-content .logo {
    width: 35%;
  }
}
