.footer {
  background: var(--bg-secondary);
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid var(--border-accent);
}

.footer__content {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
}

@media(max-width: 1199px) {
  .footer__content {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer__information {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__information .logotype img {
  height: 40px;
}

.footer__information p {
  color: var(--text-secondary);
  font-size: var(--fs-6);
  font-style: normal;
  font-weight: 400;
  max-width: 350px;
}

@media(max-width: 991px) {
  .footer__information .logotype {
    width: 100%;
  }

  .footer__information p {
    text-align: center;
  }
}

.footer__sections {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
}

.footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 180px;
}

.footer__section:last-child {
  min-width: unset;
}

@media(max-width: 991px) {
  .footer__sections {
    text-align: center;
    flex-wrap: wrap;
  }

  .footer__section {
    width: 100%;
  }
}

.footer__section h3 {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.footer__section a {
  color: var(--text-secondary);
  font-size: var(--fs-6);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s;
}

.footer__section a:hover {
  color: #FFF;
  opacity: 0.7;
}