@import 'globals/colors.css';
footer {
  --footer-main-color: rgba(55, 108, 171, 1);
  --footer-light-color: rgba(120, 157, 203, 1);
  background-color: rgb(237, 237, 237);
  color: var(--footer-main-color);
  line-height: 160%;
  padding: 50px 0 50px 0;
}
footer .bottom-block {
  color: var(--footer-light-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--footer-light-color);
  border-bottom: 1px solid var(--footer-light-color);
  padding: 15px 0;
  text-align: center;
}
footer .bottom-block a {
  color: var(--footer-light-color);
}
footer .bottom-block .social-networks-block {
  display: flex;
  gap: 30px;
}
@media (max-width: 575px) {
  footer .bottom-block {
    font-size: 13px;
  }
  footer .bottom-block .logo img {
    width: 120px;
  }
  footer .bottom-block {
    flex-direction: column;
    gap: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  footer .bottom-block .logo img {
    width: 150px;
  }
  footer .bottom-block .social-networks-block {
    gap: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  footer .bottom-block .logo img {
    width: 150px;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  footer .title {
    font-size: 14px;
  }
  footer ul {
    font-size: 12px;
  }
  footer .bottom-block {
    font-size: 13px;
  }
}

#yandex-metrika-element {
  position: absolute;
  left: -9999px;
}

/*# sourceMappingURL=footer.css.map */