.footer {
  background-color: var(--orange);
  color: #fff;
  padding: 2rem 0;
  & .wrapped {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding-right: 6rem;
    width: 100%;
    & > * {
      width: 100%;
    }
    @media (max-width: 1000px) {
      padding-right: 0;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }

  .footer-newsletter {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;

    @media (max-width: 1200px) {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    @media (max-width: 900px) {
      margin-left: 0;
      max-width: 100%;
    }

    label {
      white-space: nowrap;
    }

    input {
      min-width: 12rem;
      width: 12rem;
      flex: 0 0 auto;
      height: 2rem;
      box-sizing: border-box;
      border: none;
      border-radius: 0.35rem;
      padding: 0 0.5rem;
      font: inherit;
      font-size: 0.9rem;
      color: #111;
      background: #fff;
    }

    button {
      height: 2rem;
      box-sizing: border-box;
      border: 1px solid #fff;
      border-radius: 0.35rem;
      padding: 0 0.55rem;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--orange);
      background: #fff;
      cursor: pointer;
    }

    button:disabled {
      opacity: 0.8;
      cursor: wait;
    }

    .footer-newsletter-message {
      position: absolute;
      left: 0;
      top: calc(100% + 0.2rem);
      margin: 0;
      font-size: 0.85rem;
      color: #fff;
      white-space: nowrap;
    }
  }

  & menu {
    display: flex;
    gap: 1rem;
    @media (max-width: 1000px) {
      justify-content: center;
    }

    & a {
      color: #fff;
      text-decoration: none!important;
      &:hover {
        text-decoration: underline!important;
        text-underline-offset: 0.2em!important;
        text-decoration-thickness: 1px!important;
      }

    }
  }
}
