.footer {
  margin-top: auto;
  background-color: #2f3338;
  background-image: url('../images/main_imgs/fon_1.webp');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #fff;
  margin: 30px 150px;
  border-radius: 10px;
  padding: 20px 60px 0;
}

.footer__body {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 20px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 0.7;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
}

.footer__address {
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 300px;
}

.footer__email {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__email:hover {
  opacity: 0.7;
}

.footer__socials {
  display: flex;
  gap: 14px;
}

.footer__soc-link {
  display: inline-flex;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__soc-link img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.footer__soc-link:hover {
  opacity: 0.7;
}

.footer__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer__logo-bar {
  display: flex;
  justify-content: center;
}

.footer__logo {
  display: inline-block;
  background: #fff;
  border-radius: 14px 14px 0 0;
  padding: 14px 44px;
}

.footer__logo img {
  display: block;
  height: 20px;
  width: auto;
}


@media (max-width: 1000px) {
  .footer {
    margin: 30px 15px;
    padding: 20px 15px 0;
  }
}

@media (max-width: 700px) {
  .footer__body {
    gap: 12px;
    flex-direction: column;
  }

  .footer__right {
    flex-direction: column;
    min-width: 100%;
  }

  .footer__address {
    max-width: 100%;
  }
}
