.usecases__feature-array {
  .slim__nav {
    background-color: var(--ghost-gray);
    width: 100%;
    z-index: 999;
    -o-transition: all .35s ease-in-out;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    &#slim__navigation_sticky {
      position: fixed;
      top: 0;
      visibility: hidden;
    }
    ul {
      max-width: 1140px;
      margin: 0 auto;
      padding: 14px 0 9px 0;
      &.slim__nav-links {
        li {
          position: relative;
          display: inline-block;
          list-style: none;
          margin: 0 15.5px;
          -o-transition: all .35s ease-in-out;
          -webkit-transition: all .35s ease-in-out;
          -moz-transition: all .35s ease-in-out;
          transition: all .35s ease-in-out;
          &::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 5px;
            background-color: transparent;
            left: 0;
            bottom: -9px;
            -o-transition: all .35s ease-in-out;
            -webkit-transition: all .35s ease-in-out;
            -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
          }
          &:hover {
            &::after {
              position: absolute;
              content: "";
              width: 100%;
              height: 5px;
              background-color: var(--pd-black);
              left: 0;
              bottom: -9px;
            }
          }
          &:first-child {
            margin: 0 15.5px 0 0;
          }
          &:last-child {
            margin: 0 0 0 15.5px;
          }
          &.active {
            &::after {
              position: absolute;
              content: "";
              width: 100%;
              height: 5px;
              background-color: var(--pd-black);
              left: 0;
              bottom: -9px;
            }
            a {
              font-weight: bold;
            }
          }
          a {
            position: relative;
            font-family: 'Roboto';
            font-size: 14px;
            font-weight: 300;
            font-stretch: normal;
            font-style: normal;
            line-height: 1.29;
            letter-spacing: normal;
            color: var(--pd-black);
            text-decoration: none;
            -o-transition: all .35s ease-in-out;
            -webkit-transition: all .35s ease-in-out;
            -moz-transition: all .35s ease-in-out;
            transition: all .35s ease-in-out;
            &:target:before {
              content: "";
              display: block;
              height: 50px;
              margin: -100px 0 0;
            }
          }
        }
      }
    }
  }

  .usecases__items {
    max-width: 1140px;
    margin: 0 auto;
    .usecases__item {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 50px 0;
      &:nth-child(even) {
        flex-direction: row-reverse;
      }
      .block {
        flex-basis: 45%;
        padding: 0 30px;
        &.asset_block {
          flex-basis: 55%;
          max-width: 650px;
          padding: 0;
        }
        h2 {
          font-family: 'europa';
          font-size: 24px;
          font-weight: bold;
          font-stretch: normal;
          font-style: normal;
          line-height: normal;
          letter-spacing: normal;
          color: var(--pd-black);
          margin: 0 0 10px 0;
        }
        p {
          font-family: 'europa';
          font-size: 16px;
          font-weight: normal;
          font-stretch: normal;
          font-style: normal;
          line-height: 1.38;
          letter-spacing: normal;
          color: var(--pd-black);
          margin: 0 0 22px 0;
        }
        ul,ol{
            li{
                font-family: 'europa';
                font-size: 16px;
                font-weight: normal;
                font-stretch: normal;
                font-style: normal;
                line-height: 1.25;
                letter-spacing: normal;
                color: var(--pd-black);
                margin: 0 0 7px 0;
            }
        }
        ul>li::marker{
                font-size: 12px;
        }
        img,
        .vidyard__embed-container,
        video {
          max-height: 410px;
        }

      }
    }
  }

}

body.sw19-new-nav .usecases__feature-array .slim__nav#slim__navigation_sticky {
  top: 0px;
}

@media screen and (max-width: 991px) {
  .slim__nav {
    display: none !important;
  }
  .usecases__items {
    padding: 0 15px;
    .usecases__item {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 30px 0;
      &:nth-child(even) {
        flex-direction: row-reverse;
      }
      .block {
        flex-basis: 100% !important;
        padding: 0 !important;
        &.asset_block {
          flex-basis: 100% !important;
          max-width: 100% !important;
          max-height: unset !important;
          padding: 0 0 30px 0 !important;
        }
        img,
        .vidyard__embed-container,
        video {
          max-width: 100% !important;
          max-height: unset !important;
        }

      }
    }
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .usecases__items,
  .slim__nav {
    display: block;
    padding: 0 15px;
  }
  .usecases__items {
    .usecases__item {
      .block {
        img,
        .vidyard__embed-container,
        video {
          max-width: 100% !important;
          max-height: unset !important;
        }
      }
    }
  }
}