.app_features {
    padding: 104px 0;
}

.app_features .container {
    max-width: 1216px;
    margin: 0 auto;
    width: 100%;
    display: flex;
}

.app_features.mobile_app {
    background-color: #faf9ff;
}

.app_features .inner-wrapper-box {
    display: flex;
    width: 100%;
    gap: 104px;
}

.app_features .inner-wrapper-box > div:first-child {
    width: 488px;
    flex-shrink: 0;
}

.app_features .inner-wrapper-box > div:last-child {
    flex: 1;
}

.app_features .item-header {
    font-family: var(--geist);
    font-weight: 500;
    font-size: 56px;
    line-height: 69px;
    color: var(--black);
}

.app_features .item-tab {
    font-size: 36px;
    color: #ababaf;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.app_features .item-tab:focus,
.app_features .item-tab:focus-visible {
    outline: none;
    box-shadow: none;
}

.app_features .tab-section {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.app_features .tab-scroll-bar {
    display: none;
}

.app_features .item-tab.active {
    color: #1b1b1f;
}

.app_features .item-tab .hidden-txt {
    display: none;
    color: #737373;
    font-size: 16px;
    letter-spacing: -0.4px;
    font-weight: 400;
}

.app_features .coll-1.desk,
.app_features .coll-2.mob {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app_features .coll-2.imgs-tabs.desk,
.app_features .coll-1.mp.mob {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-grey);
    border-radius: 24px;
}

.app_features .coll-2.imgs-tabs.desk {
    height: 670px;
}

.app_features .coll-1.mp.mob {
    height: 546px;
    padding: 27px 0;
}

.app_features .coll-2.imgs-tabs.desk picture,
.app_features .coll-1.mp.mob picture {
    display: contents;
}

.app_features .coll-2.imgs-tabs.desk img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    scale: 1.1;
    transition: opacity 0.6s ease-in-out;
}

.app_features .coll-1.mp.mob img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.app_features .coll-1.mp.mob img.show {
    opacity: 1;
}

.app_features .web_app .tab-section {
    max-width: 488px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.app_features .animLoading {
    display: none;
    width: 100%;
    height: 2px;
    background: #e1e2ec;
    position: relative;
    overflow: hidden;
    margin: 16px 0 24px;
}

.app_features .animLoading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #1b1b1f;
    animation: app-features-loading 10s linear infinite;
}

@keyframes app-features-loading {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 1149.99px) {
    .app_features .inner-wrapper-box > div:first-child,
    .app_features .inner-wrapper-box > div:last-child {
        width: 100% !important;
        min-width: 0;
        flex-shrink: 1;
    }

    .app_features.web_app .inner-wrapper-box,
    .app_features.mobile_app .inner-wrapper-box {
        flex-direction: column;
        gap: 0;
    }

    .app_features.web_app .coll-1.desk {
        display: contents;
    }

    .app_features.web_app .item-header,
    .app_features.mobile_app .item-header {
        order: 1;
        margin: 0 0 32px;
    }

    .app_features.web_app .coll-2.imgs-tabs.desk,
    .app_features.mobile_app .coll-1.mp.mob {
        order: 2;
        margin: 0 0 32px;
    }

    .app_features.web_app .tab-section-wrap,
    .app_features.mobile_app .tab-section-wrap {
        order: 3;
        margin: 0;
    }

    .app_features.mobile_app .coll-2.mob {
        display: contents;
    }

    .app_features.web_app .tab-section,
    .app_features.mobile_app .tab-section {
        flex-direction: row !important;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: flex-start;
        max-width: 100% !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-top: 0 !important;
        padding-bottom: 0;
    }

    .app_features .tab-section::-webkit-scrollbar {
        display: none;
    }

    .app_features .tab-section-wrap {
        position: relative;
        overflow: visible;
        padding-top: 0;
        padding-bottom: 14px;
    }

    .app_features .tab-scroll-bar {
        display: block !important;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        margin-top: 0;
        background: #e1e2ec;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow: hidden;
        transition:
            opacity 0.25s ease,
            visibility 0s linear 0.25s;
    }

    .app_features .tab-section-wrap.is-scroll-revealed .tab-scroll-bar {
        opacity: 1;
        visibility: visible;
        transition:
            opacity 0.25s ease,
            visibility 0s;
    }

    .app_features .tab-scroll-bar__thumb {
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        width: 40px;
        background: #1b1b1f;
    }

    .app_features .item-tab.active {
        color: #1b1b1f;
    }

    .app_features .item-tab .hidden-txt.hiddenTXT {
        width: 300px;
        margin-bottom: 0;
    }
}
