.FooterMenu {
  padding: 0 0 20px;
  font-size: 1.25rem;
}

@media screen and (min-width: 769px) {

.FooterMenu {
    display: flex;
    gap: 0 16px;
    justify-content: space-between;
}

    .FooterMenu .Menu-icon-mobile {
      display: none;
    }
  }

@media screen and (min-width: 1026px) {

.FooterMenu {
    flex-grow: 1;
}
  }

.FooterMenu .Menu-icon-mobile {
    width: 20px;
    transition: transform 250ms ease-in-out;
  }

.FooterMenu a {
    position: relative;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    font-size: var(--font-size-lg);
    line-height: var(--font-line-height-lg);
    text-decoration: none;
    color: #ffffff;
  }

.FooterMenu a:hover {
      text-decoration: underline;
      color: #ffffff;
    }

.FooterMenu a.is--external svg {
      margin-left: 12px;
    }

.FooterMenu a.is--external svg path {
        fill: currentColor;
      }

.FooterMenu .Menu-label a {
      font-family: var(--font-secondary);
      font-size: var(--font-size-lg);
      font-weight: 700;
      line-height: var(--font-line-height-lg);
    }

@media screen and (min-width: 769px) {

.FooterMenu .Menu-label a {
        margin-bottom: 8px;
        font-size: var(--font-size-xl);
        line-height: var(--font-line-height-xl);
    }
      }

.FooterMenu .Menu-label svg path {
      fill: #ffffff;
    }

@media screen and (max-width: 768px) {

.FooterMenu .Menu-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
    }

.FooterMenu .Menu-sub {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
  }

.FooterMenu .Menu-sub a {
      font-size: var(--font-size-md);
      font-weight: 400;
      line-height: var(--font-line-height-md);
    }

@media screen and (max-width: 768px) {

.FooterMenu .Menu-sub {
      overflow: hidden;
      max-height: 0;
      padding: 0;
      transition: max-height 250ms ease-in-out, padding 250ms ease-in-out;
  }
    }

.FooterMenu .is-Active .Menu-icon-mobile {
      transform: rotate(180deg);
    }

.FooterMenu .is-Active .Menu-sub {
      overflow: hidden;
      max-height: 100px;
      padding: 10px 0 20px;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    }

@keyframes grow {
  100% {
    width: 100%;
  }
}
