footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 50px;
  padding: 20px 0px 10px 0px; /*верх-право-низ-лево*/
  justify-content: space-between;
  background-color: #009739;
  color: #ffffff;
  font-family: "Public Sans", sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}
.footer-top {
  display: flex;
  justify-content: space-evenly;
}
.nav-footer {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.nav-footer a {
  text-decoration: none;
  color: #ffffff;
}
.adress-footer {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
  /*line-height: 10px;*/
}
.contact-footer {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
#contact-footer-mobail {
  display: none;
}
.contact-footer img {
  width: 25px;
}

.whatsapp-footer,
.email-footer {
  display: flex;
  grid-gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
}
.social-icons {
  display: flex;
  grid-gap: 20px;
}
.copyright {
  text-align: center;
  padding-top: 15px;
}





/*АДАПТИВ*/

@media screen and (max-width: 480px) {
  footer {
    font-size: 15px;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    align-items: center;
  }
  .nav-footer {
    grid-gap: 3px;
  }
  .adress-footer {
    align-items: center;
  }
  .adress-footer p {
    text-align: center;
  }
  .contact-footer {
    align-items: center;
  }
  .contact-footer img {
    width: 20px;
  }
  .copyright {
    font-size: 14px;
  }
}
@media screen and (min-width: 480px) and (max-width: 760px) {
  footer {
    font-size: 20px;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    align-items: center;
  }
  .nav-footer {
    grid-gap: 3px;
  }
  .adress-footer {
    align-items: center;
  }
  .adress-footer p {
    text-align: center;
  }
  .contact-footer {
    align-items: center;
  }
  .contact-footer img {
    width: 30px;
  }
  .copyright {
    font-size: 18px;
  }
}
@media screen and (min-width: 760px) and (max-width: 960px) {
  footer {
    font-size: 20px;
  }

  .nav-footer {
    grid-gap: 3px;
  }
  .adress-footer {
    text-align: end;
  }
  .adress-footer p {
  }
  .contact-footer {
  }
  .contact-footer img {
    width: 30px;
  }
  .copyright {
    font-size: 18px;
  }

  .footer-top {
    display: none;
  }
  #contact-footer-mobail {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    grid-gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .nav-footer-container {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1200px) {
  footer {
    font-size: 20px;
  }

  .nav-footer {
    grid-gap: 3px;
  }
  .adress-footer {
    text-align: end;
  }
  .adress-footer p {
  }
  .contact-footer {
  }
  .contact-footer img {
    width: 30px;
  }
  .copyright {
    font-size: 18px;
  }
  .footer-top {
    display: none;
  }
  #contact-footer-mobail {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    grid-gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .nav-footer-container {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
  }
}
