.ai-matter-sticky-section5 {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.ai-matter-sticky-section5__wrapper {
    position: relative;
    background: #fff;
}

.ai-matter-sticky-section5__card {
    position: sticky;
    background: #fff;
    border-top: 3px solid #E4F3FF;
    padding: 30px;

    min-height: 200px;

    overflow: hidden;
    box-sizing: border-box;
}

.ai-matter-sticky-section5__card.is-visible {
    /* opacity: 1;
    transform: translateY(0); */
}

.ai-matter-sticky-section5__card.is-last-card {
    position: sticky;
    top: auto;
    z-index: 11;
    border-bottom: 3px solid #E4F3FF;
}

.ai-matter-sticky-section5__inner {
    display: flex;
    align-items: flex-start;
}

.ai-matter-sticky-section5__left {
    width: 140px;
    flex: 0 0 140px;
}

.ai-matter-sticky-section5__divider {
    width: 3px;
    background: #E4F3FF;
    min-height: 90px;
    margin: 0 40px;
}

.ai-matter-sticky-section5__right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-matter-sticky-section5__number {
    display: inline-block;

    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;

    color: #0071BC;
}

.ai-matter-sticky-section5__title {
    letter-spacing: -1px;
    font-family: "DM Sans", sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #182439;
}

.ai-matter-sticky-section5__description {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #182439;

    /* max-height: 300px; */
    opacity: 1;

    transition:
        opacity .4s ease,
        max-height .4s ease,
        margin-top .4s ease;
}


/* =========================
   Tablet
========================= */

@media (max-width: 1024px) {

    .ai-matter-sticky-section5__left {
        width: 25%;
        flex: 0 0 25%;
    }

    .ai-matter-sticky-section5__right {
        width: 75%;
        flex: 0 0 75%;
    }

    .ai-matter-sticky-section5__title {
        font-size: 30px;
    }

    .ai-matter-sticky-section5__description {
        font-size: 16px;
    }

}

/* =========================
   Mobile
========================= */

@media (max-width: 767px) {

    .ai-matter-sticky-section5 {
        padding: 20px 0;
    }

    .ai-matter-sticky-section5__card {

        position: relative !important;
        top: auto !important;

        height: auto;
        min-height: auto;
    }

    .ai-matter-sticky-section5__inner {
        flex-direction: column;
    }

    .ai-matter-sticky-section5__left,
    .ai-matter-sticky-section5__right {
        width: 100%;
        flex: 0 0 100%;
    }

    .ai-matter-sticky-section5__divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
        margin: 20px 0;
    }

    .ai-matter-sticky-section5__number {
        font-size: 24px;
    }

    .ai-matter-sticky-section5__title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .ai-matter-sticky-section5__description {
        font-size: 15px;
        line-height: 1.6;
    }

}
