.footer {
  margin-top: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 25px;
  padding-left: 25px;

  &__text {
    font-size: 14px;
    color: var(--color-2);

    a {
      color: var(--color-1);

      &:hover {
        color: #006da0;
      }
    }
  }

  &__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  &__version {
    font-size: 13px;
    color: #92a2b2;
    font-weight: 300;
    margin-left: auto;
    line-height: 0.5;
    text-align: right;
  }

  &__social-media {
    ul {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    li {
      &:not(:last-child) {
        margin-left: 18px;
      }
    }

    a {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    i {
      font-size: 24px;
      background: -webkit-linear-gradient(#a9bdc4 0%, #c6cfda 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;

      &:hover {
        color: var(--color-1);
        background: unset;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
      }
    }
  }

  &__website {
    font-size: 14px;
    color: var(--color-1);
    margin-right: 20px;
  }
}