.footer {
  margin-top: 145px;

  &-wrapper {
    background: #262c3a url("./../images/background/bg-footer.png") 0 0
      no-repeat;
    background-size: 100% 100%;

    &,
    &::before,
    &::after {
      border-radius: 25px 25px 0 0;
    }

    &::before,
    &::after {
      top: -8px;
      right: -10px;
      left: -9px;
    }

    &::before {
      background-image: linear-gradient(
        194.33deg,
        #8f2ffd 20.08%,
        #f6509c 89.83%
      );
      background-blend-mode: screen;
      mix-blend-mode: screen;
      opacity: 0.15;
      filter: blur(50px);
    }

    &::after {
      background-color: rgba(#262c3a, 0.43);
    }
  }

  &-content {
    padding: 34px 35px 0 60px;
  }

  &-title {
    line-height: 19px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 29px;

    &::before {
      width: 26px;
      height: 15px;
      transform: translate(-2px, -50%);
      top: 50%;
      background-image: linear-gradient(
        100.26deg,
        rgba(246, 80, 156, 0.4) 14.18%,
        rgba(143, 47, 253, 0) 94.9%
      );
    }
  }

  &-nav {
    li {
      &:not(:last-child) {
        margin-bottom: 10px;
      }

      a {
        line-height: 30px;
        color: #acb3c9;

        &::before {
          border-radius: 7px;
          background-color: rgba(#fff, 0.03);
          left: -10px;
          transition: all 0.3s ease-in-out;
          opacity: 0;
        }

        &:hover {
          color: #fff;

          &::before {
            opacity: 1;
          }
        }
      }
    }
  }

  &-socials {
    margin-left: 60px;

    &::before {
      background-color: rgba(#acb3c9, 0.41);
      width: 1px;
      height: 25px;
      top: 50%;
      transform: translate(-31px, -50%);
    }

    li {
      &:not(:last-child) {
        margin-right: 25px;
      }

      a {
        color: #acb3c9;
        font-size: 18px;

        &:hover {
          color: #fff;
          filter: drop-shadow(0 3px 6px rgba(#f6509c, 0.6));
        }
      }
    }
  }

  p {
    font-size: 12px;
    line-height: 28px;
    color: #acb3c9;
    margin-top: 22px;
  }

  &-copyright {
    margin-top: 27px;
    background-color: rgba(#fff, 0.03);
    padding: 15px 58px 15px 55px;

    span {
      line-height: 18px;
      color: #dbe1f3;

      i {
        margin-left: 7px;
        color: #f6509c;
      }
    }
  }

  @include md {
    background: #262c3a url("./../images/background/bg-footer.png") center
      no-repeat;
    background-size: cover;

    &::before {
      background-color: rgba(#262c3a, 0.43);
      transform: translateY(-8.5px);
    }

    &-wrapper {
      border-radius: 0;
      background: transparent;

      &::before,
      &::after {
        content: none;
      }
    }

    &-content {
      padding: 32px 0;
    }

    &-logo-socials {
      margin-bottom: 25px;
    }

    &-copyright {
      padding: 15px 0;
      background-color: transparent;

      &::before {
        background-color: rgba(#fff, 0.03);
        width: 200vw;
        transform: translateX(-50%);
      }
    }
  }

  @include sm {
    margin-top: 52px;
  }

  @include media('max', 369px) {
    &-title, &-nav li a {
      font-size: 12px;
    }
  }
}
