.it-footer {
  background-color: var(--text-color);
  color: var(--white-color);
  padding: 45px 0 55px;

  .it-container {
    display: flex;
    grid-gap: 30px;
    justify-content: space-between;
  }

  .it-footer--item {
    flex: 0 0 calc(30% - 30px);
    &:not(.it-footer--item-large) {
      display: none;
      @media (min-width: 974px) {
        display: block;
      }
    }
    &.it-footer--item-large {
      flex: 0 0 100%;
      text-align: center;
      display: flex;
      flex-direction: column;
      @media (min-width: 974px) { 
        flex: 0 0 calc(40% - 30px);
        text-align: left;
        display: block;
      }
    }
    .it-footer--item-heading {
      font-size: 14px;
      line-height: 1.5;
      font-weight: 600;
      color: var(--white-color);
      margin: 0 0 3px 0;
      font-family: var(--body-font);

      display: none;
      @media (min-width: 974px) {
        display: block;
      }
    }
    .it-footer--navList {
      .it-footer--navListItem {
        padding-bottom: 3px;
        a {
          color: #f6f6f6;
          font-size: 13px;
          transition: .2s all ease;
          border-bottom: 1px solid transparent;
          &:hover,
          &:focus-visible {
            border-bottom-color: #e6e6e6;
          }
        }
      }
    }
    .it-footer--social-list {
      margin-top: 30px;
      padding-bottom: 15px;
      display: flex;
      align-items: center;
      grid-gap: 5px;
      justify-content: center;
      @media (min-width: 974px) {
        margin-top: 15px;
      }
      @media (min-width: 974px) {
        justify-content: start;
      }
      .it-footer--social-listItem {
        .it-footer--social-link {
          display: block;
          svg {
            width: 26px;
            height: 26px;
          }
        }
      }
    }
    hr {
      border-bottom: 1px solid #6e7882;
      display: none;
      @media (min-width: 974px) {
        display: block;
        margin: 10px 0 20px;
      }
    }
    .it-footer-support-info {
      font-size: 14px;
      color: #f6f6f6;
      order: -1;
      .it-footer--item-heading {
        display: block;
      }
      a {
        transition: .2s all ease;
        border-bottom: 1px solid transparent;
        &:hover,
        &:focus-visible {
          border-bottom-color: #e6e6e6;
        }
      }
      p {
        display: block;
        font-size: 12px;
        @media (min-width: 974px) {
          display: none;
        }
      }
      .it-footer--app-link {
        display: flex;
        justify-content: center;
        grid-gap: 5px;
        margin-top: 30px;
        @media (min-width: 974px) {
          display: none;
        }
        li {
          a {
            display: block;
            width: 150px;
            height: 45px;
            svg {
              width: 150px;
              height: 45px;
            }
          }
        }
      }
    }
  }
  .it-copyright-text {
    font-size: 12.8px;
    color: #87919b;
    margin: 0;
    @media (min-width: 974px) {
      margin-top: 45px;
    }
    @media (min-width: 974px) {
      width: 75%;
    }
  }
}