    .footer {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 100;
      pointer-events: none;
    }

    .footer__background {
      position: fixed;
      width: 100%;
      height: 200%;
      top: -100%;
      border-bottom: 40vh solid #0f1516;
      border-radius: 52% 53%;
      transform: scale(1.5);
      z-index: -1;
      pointer-events: none;
    }

    .footer__container {
      width: 100%;
      z-index: 99;
      padding-bottom: 60px;
      padding-left: 60px;
      padding-right: 60px;
      box-sizing: border-box;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      pointer-events: none;
    }

    .footer__logo {
      width: 250px;
      height: 250px;
      object-fit: contain;
      display: block;
      pointer-events: auto;
    }

    .footer__links {
      display: flex;
      color: #fff;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-end;
      height: 100%;
      gap: 8px;
      font-size: 0.9rem;
      box-sizing: border-box;
    }

    .footer__link {
      font-weight: bold;
      cursor: pointer;
      color: #fff;
      pointer-events: auto;
    }

@media (max-width: 1000px) {

      .footer__logo {
        width: 150px;
        height: 150px;
      }

      .footer__container {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
      }
    }

    @media (max-width: 990px) {
      .footer__background {
        border-bottom: 45vh solid #0f1516;
        height: 125%;
        top: 0%;
      }
    }

    @media (max-width: 600px) {
      .footer__logo {
        width: 60px;
        height: 60px;
      }

      .footer__container {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 15px;
      }

      .footer__links {
        gap: 15px;
      }
    }