.footer-2025,
footer {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.footer-2025__wrapper {
  display: flex;
  flex-direction: column;
  padding: 3rem 0;
  gap: 2rem;
}
.footer-2025__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-2025__info p:first-of-type {
  margin-top: 0;
}
.footer-2025__info p:last-of-type {
  margin-bottom: 0;
}
.footer-2025__info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  margin: 16px 0;
}
.footer-2025__menu .menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.footer-2025__menu .menu a,
.footer-2025__menu .menu a.is-active {
  color: var(--color-white);
}
.footer-2025__cta {
  padding: 6px 6px 6px 12px;
  background-color: var(--color-secondary--4);
  color: var(--color-neutral);
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 15px;
  font-weight: 700;
}
.footer-2025__cta::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  border-radius: 15px;
  background-image: url(../images/icons/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.footer-2025__other {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer-2025__other .menu {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.footer-2025__other .menu-item {
  margin: 0;
  padding: 0;
}
.footer-2025__other .menu-item a {
  text-indent: -999px;
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer-2025__other .menu-item a.facebook {
  background-image: url(../images/facebook.svg);
}
.footer-2025__other .menu-item a.instagram {
  background-image: url(../images/instagram.svg);
}
.footer-2025__other .menu-item a.youtube {
  background-image: url(../images/youtube.svg);
}
.footer-2025__other .menu-item a.linkedin {
  background-image: url(../images/linkedin.svg);
}
.footer-2025__other-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-2025__other-links a {
  color: var(--color-white);
  line-height: 150%;
}
@media all and (min-width: 750px){
  .footer-2025__wrapper {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    align-items: center;
  }
  .footer-2025__info {
    align-items: flex-start;
    width: calc(50% - 1rem);
  }
  .footer-2025__menu {
    width: calc(50% - 1rem);
    flex: 1;
    max-width: 583px;
    margin: auto;
  }
  .footer-2025__other {
    align-items: center;
    width: 100%;
  }
  .footer-2025__menu .menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(min-content, 286px));
  }
}
@media all and (min-width: 1300px){
  .footer-2025__wrapper {
    gap: 5rem;
  }
  .footer-2025__info {
    max-width: 336px;
  }
  .footer-2025__other {
    align-items: flex-start;
    max-width: 235px;
  }
  .footer-2025__info,
  .footer-2025__menu,
  .footer-2025__other {
    width: unset;
  }
}

.footer-2025 a:hover {
  text-decoration: underline;
}
