.digital-signage ul.tabs {
        position: sticky;
        top: 75px;
        background-color: #f8f8f8;
        display: block;
        border: 1px solid #ccc;
        z-index: 1000;
        padding: 15px 15px 5px;
    }

    .digital-signage ul.tabs li {
        padding: 15px 25px;
        border-radius: 5px;
        background: #e9e0f7;
        cursor: pointer;
        font-size: 16px;
        border-bottom: 3px solid transparent;
        transition: border-color 0.3s, color 0.3s;
        margin: 0px 0px 10px;
        width: 100%;
        text-align: center;
    }

    .digital-signage ul.tabs li:hover,
    .digital-signage ul.tabs li.active {
        color: #000;
        background: #f98125;
    }

    .digital-signage .section {
        padding:30px;
    }

    .digital-signage .section .text-primary span {
        color: #000000;
        font-weight: 300;
        font-size: 1rem;
        background: #f98125;
        padding: 10px 15px;
        border-radius: 34px;
    }

    .digital-signage .section:nth-child(even) {
      background-color: #f0f0f0;
    }

    .digital-signage .section:nth-child(odd) {
      background-color: #ffffff;
    }  

    .digital-signage .cta-gradient {
        background: linear-gradient(90deg, rgb(231 98 1) 0%, rgb(233 106 9) 18.74%, rgb(249 142 58) 50.21%, rgb(255 152 74) 78.66% 78.66%, rgb(255 166 98) 100%) !important;
        margin: 1.5rem 0 0px !important;
        width: 100%;
        padding: 2rem;
        border-radius: 10px;
        align-items: center;
        justify-content: space-between;
    }
    .digital-signage .faqs .accordion{
      float: none;
    }
    .digital-signage .faqs .accordion-item{
      margin-bottom: 15px;
    }

  @media (max-width: 767px) {
    .digital-signage ul.tabs {
      display: none;
    }
    .digital-signage .section{
      padding: 15px;
    }
  }

  .digital-signage .chapters-details .title{
    font-size: 24px;
    font-weight: 500;
  }
  .digital-signage .chapters-details .sub-title{
    font-size: 18px;
    font-weight: 500;
  }
  .digital-signage .chapters-details ol,
  .digital-signage .chapters-details ul {
      margin-left: 30px;
      padding: 0;
  }
  .digital-signage .chapters-details ul li {
      list-style: disc;
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 25px;
      color: #48494e;
  }
  .digital-signage .box-bg {
      background: #fff;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
      display: block;
      border-radius: 15px;
      overflow: hidden;
      padding: 30px;
      width: 100%;
      margin: 0px 0 30px;
  }
  .digital-signage .item {
      transition: 7ms;
      border-radius: 6px;
      background: #fff;
      border: 1px solid #e2e6ec;
      position: relative;
      overflow: hidden;
      padding: 20px 15px 15px;
      text-align: left;
      margin-top: 15px;
  }
.digital-signage .item h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}
.digital-signage .item h3::after {
    position: absolute;
    content: '';
    height: 2px;
    left: 0;
    bottom: -10px;
    background: #ff6229;
    transition: all .3s ease;
    width: 100px;
}
.digital-signage .item p {
    font-size: 1rem;
    word-break: break-word;
    margin-bottom: 0px;
    text-align: justify;
}

.chapters-details .item:last-child{
  margin-bottom: 0px;
}

  /* title-tip down */

  .title-tip{
    position: relative;
    color: rgb(106, 101, 94);
    font-size: 18px;
    padding: 5px;
    color: rgb(0, 0, 0);
  }
  .title-tip:hover {
    position: relative;
  }
  .title-tip:hover:before {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;
    content: attr(tooltip-text);
    margin-top: 0.5em;
    padding: 0.5em;
    width: 100%;    /* change it */
    overflow: hidden;
    word-wrap: break-word;
    font-size: inherit;
    color: #FFF;
    text-align: center;
    background-color: #222;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }
  .title-tip:hover:after {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 99999;
    content: '';
    margin-left: -0.125em;
    width: 0;
    height: 0;
    border: 0.25em dashed transparent;
    border-bottom: 0.25em solid #222;
    font-size: inherit;
  }
  .digital-signage img, .digital-signage video {
      border: solid 2px #000;
      padding: 3px;
      background: #ffffff;
  }