.footer {
  display: flex;
  flex-direction: column;
  padding: 56px 24px;
  gap: 20px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to left,
      rgb(0, 163, 224) 0%,
      rgb(0, 163, 224) 10%,
      #84bd00 90%,
      #84bd00 100%);
}

.footer-outer-block {
  display: flex;
  flex-direction: column;
  gap: 30px;

}

.footer-bottom-block {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.footer-bottom-block-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  margin: 0 auto;
}

.footer-bottom-block-inner-text {
  font-weight: 500;
  color: white;
}

.footer-bottom-block-button {
  width: 40px;
  height: 40px;
  border: 2px solid #1f1f1f;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom-block-button-img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(13%) saturate(6007%) hue-rotate(23deg) brightness(115%) contrast(76%);
  transform: rotate(-90deg);
  max-width: 20px;
}

.footer-inner-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;

}

.footer-inner-block-title {
  font-weight: 600;
  color: #1f1f1f;
}

.footer-inner-block-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-inner-block-nav-item {
  text-align: center;
  color: #1f1f1f;
}

@media (min-width: 992px) {
  .footer-outer-block {
    flex-direction: row;
  }

  .footer-inner-block {
    width: 100%;
  }

  .footer-inner-block-nav-item {
    text-align: left;
  }

  .footer-bottom-block {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-bottom-block-inner {
    flex: 1 0 0;
  }
}

.footer_content{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_link a {
  color: #EAEAEA;
  font-family: "TT Ramillas Trl";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  /* 24px */
}

.footer_link{
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
}

.razdel {
  width: 30px;
  height: 1px;
  transform: rotate(-90deg);
  flex-shrink: 0;
  background-color: #EAEAEA;;
}