/*#region common*/
.ht-pageheader, .hkb-article .hkb-article__title {
    display: none;
}

.ht-page.ht-page--sidebaroff .ht-page__content {
    width: 100%;
}

.ht-page {
    padding: 0;
}

.ht-page>.ht-container {
    padding: 0;
    max-width: 100%;
}

.ai-feature {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    color: #111827;
}

.highlight-text {
    font-family: Inter Bold, Arial, sans-serif;
    background: linear-gradient(180deg, #144BFF 20%, #CE65FF 80%, #B68CFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 1366px) {
    .ai-feature .container {
        width: 1366px;
    }
}

@media (min-width: 1600px) {
    .ai-feature .container {
        width: 1540px;
    }
}

@media (max-width: 1365px) {
    .ai-feature .container {
        width: 100%;
    }
}
/*#endregion*/

/*#region hero*/
.hero {
    background: url(/sites/help/images/pages/ai-feature/bg-hero.webp) center;
    background-size: cover;
    padding: 60px 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-wrap {
    position: relative;
}

.hero-title {
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 48px;
    text-align: center;
    line-height: 4/3;
    max-width: 965px;
    margin: 0 auto;
}

.img-ava {
    position: absolute;
    right: 0%;
    top: -40%;
    width: 15%;
}

@media (max-width: 1365px) {
    .hero {
        min-height: 300px;
    }

    .img-ava {
        right: 0%;
        top: 40%;
    }
}

@media (max-width: 979px) {
    img.img-ava {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
}
/*#endregion*/

/*#region products*/
.products-wrap {
    position: relative;
}

.products-tabs {
    position: absolute;
    top: -40px;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.products-tabs::-webkit-scrollbar {
    height: 6px;
    border-radius: 50px;
    background: #D9D9D9;
}

.products-tabs::-webkit-scrollbar-thumb {
    background: #2563EB;
    border-radius: 50px;
}

.products-tabs::-webkit-scrollbar-track {
    background: #D9D9D9;
    border-radius: 50px;
}

.pt-item {
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 20px;
    text-align: center;
    padding: 20px 24px;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.pt-item:hover,
.pt-item.active {
    color: #FFF;
    background-color: #2563EB;
}

.products-content {
    background-color: #E0E7FF;
    padding: 80px 124px 120px;
    border-radius: 24px;
}

.products-group {
    display: none;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.products-group.active {
    display: flex;
}

.product-item {
    display: inline-block;
    width: calc(33.33% - 24px);
    padding: 40px;
    background-color: #FFF;
    border-radius: 32px;
    box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.2);
}

.product-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.product-name {
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 20px;
    color: #111827;
    padding-bottom: 4px;
}

.product-detail {
    font-size: 13px;
    color: #2563EB;
}

.products-update {
    margin: 32px auto 0;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B5563;
    gap: 8px;
}

@media (max-width: 1300px) {
    .pt-item {
        font-size: 16px;
    }

    .products-content {
        padding: 80px;
    }
}

@media (max-width: 1000px) {
    .products-tabs {
        position: relative;
        top: 0;
        justify-content: start;
        margin: 24px 0;
        overflow-x: auto;
        padding-bottom: 24px;
    }

    .pt-item {
        min-width: max-content;
    }

    .products-content {
        padding: 24px;
    }

    .product-item {
        padding: 24px;
    }

    .product-logo {
        width: 60px;
        height: 60px;
    }

    .product-name {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .products-tabs {
        gap: 16px;
    }

    .pt-item {
        padding: 16px;
    }

    .product-item {
        width: 100%;
    }
}

/*#endregion*/