footer {
  background-color: var(--black);
  padding: 10rem 16rem 5rem;
  margin-top: 16rem;

  display: flex;
  flex-direction: column;
  gap: 10rem;

  position: relative;

  @media (max-width: 767px) {
    padding: 6rem 1.5rem;
    margin-top: 10rem;

    gap: 9rem;
  }

  .footer-high {
    display: flex;
    justify-content: space-between;

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      gap: 4rem;
    }

    .footer-high_one {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .footer-high_block {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      @media (max-width: 767px) {
        align-items: center;
      }

      button {
        color: var(--grey);
        background-color: transparent;
        cursor: pointer;
        width: fit-content;
      }

      p {
        color: var(--grey);
      }
    }
    .footer-form {
      display: flex;

      @media (max-width: 767px) {
        flex-direction: column;
        gap: 1rem;
      }

      input {
        padding: 1.4rem 2rem;
        width: 24rem;

        outline: none;
        background-color: var(--black);
        border: 0.1rem solid var(--yellow);

        color: var(--grey);

        caret-color: white;

        @media (max-width: 767px) {
          width: 34.5rem;
          height: 4.4rem;
        }

        &::placeholder {
          font-family: "Open Sans";
          font-weight: 400;
          font-size: 1.4rem;
          line-height: 140%;
          letter-spacing: 0%;
        }
      }

      .footer-btn_form {
        padding: 0.9rem 2.4rem;
        cursor: pointer;

        display: flex;
        align-items: center;
        gap: 2rem;

        @media (max-width: 767px) {
          gap: unset;
          justify-content: space-between;
          height: 4.4rem;
        }
      }
    }

    /* ------ */

    .footer-nav {
      .footer-nav_list {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        @media (max-width: 767px) {
          align-items: center;
        }
        a {
          color: var(--grey);
        }
      }
    }

    /* -------- */

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 1rem;

      @media (max-width: 767px) {
        display: none;
      }

      .our_office {
        color: var(--grey);
      }
      .footer-tel {
        color: var(--grey);
        pointer-events: none;
      }

      p {
        color: var(--grey);
      }

      div {
      }
    }
  }

  /* ------ */

  .footer-under {
    display: flex;
    justify-content: space-between;

    @media (max-width: 767px) {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    p {
      color: var(--grey);

      @media (max-width: 767px) {
        text-align: center;
      }
    }
  }
}
