body:has(footer.v-2025) footer:not(.footer.v-2025) {
  display: none;
}

.footer.v-2025 {
  text-align: center;
}
.footer.v-2025 .informations {
  padding-block: 40px;
  border-bottom: var(--base-border);
}
.footer.v-2025 .informations .info-wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 992px) {
  .footer.v-2025 .informations .info-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .footer.v-2025 .informations .info-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
  }
}
.footer.v-2025 .informations .info-wrapper .branding {
  width: clamp(200px, 168.3333333333px +  8.3333333333vw, 260px);
}
.footer.v-2025 .informations .info-wrapper .footer-menu {
  order: 2;
}
@media (min-width: 1136px) {
  .footer.v-2025 .informations .info-wrapper .footer-menu {
    order: unset;
  }
}
.footer.v-2025 .informations .info-wrapper .footer-menu .footer-menu-list {
  display: flex;
  gap: var(--base-gap);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.footer.v-2025 .informations .info-wrapper .footer-menu .footer-menu-list li a {
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.35s;
}
.footer.v-2025 .informations .info-wrapper .footer-menu .footer-menu-list li a:hover {
  color: var(--color-primary);
}
.footer.v-2025 .informations .info-wrapper .contact-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (min-width: 992px) {
  .footer.v-2025 .informations .info-wrapper .contact-data {
    gap: 12px;
  }
}
@media (min-width: 1136px) {
  .footer.v-2025 .informations .info-wrapper .contact-data {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1400px) {
  .footer.v-2025 .informations .info-wrapper .contact-data {
    justify-content: flex-end;
  }
}
.footer.v-2025 .informations .info-wrapper .contact-data .phone {
  display: grid;
  text-align: center;
  gap: 4px;
  color: #B2B2B2;
}
@media (min-width: 992px) {
  .footer.v-2025 .informations .info-wrapper .contact-data .phone {
    order: 2;
  }
}
@media (min-width: 1136px) {
  .footer.v-2025 .informations .info-wrapper .contact-data .phone {
    order: unset;
    text-align: right;
  }
}
.footer.v-2025 .informations .info-wrapper .contact-data .phone a {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  transition: color 0.35s;
}
.footer.v-2025 .informations .info-wrapper .contact-data .phone a:hover {
  color: var(--color-primary);
}
.footer.v-2025 .copyright {
  padding-block: 30px;
  color: #B2B2B2;
  font-weight: 500;
}
.footer.v-2025 .copyright .blue {
  color: var(--color-secondary);
}
.footer.v-2025 .copyright .orange {
  color: var(--color-primary);
}