.footer {
    border-radius: 65px 65px 0 0;
    background: #3954FB;
    background-color: var(--color-primary);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.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 p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  max-width: 350px;
}

.footer__information-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media(max-width: 991px) {
  .footer__information-socials {
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer__information-socials .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: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s;
}

.footer__section a:hover {
  color: #FFF;
  opacity: 0.7;
}