.product-category-detail {
    text-align: center;
    padding-bottom: 32vw;
}

.product-category-detail-label h6 {
    text-transform: uppercase;
    display: inline-block;
    margin: 0;
    padding-bottom: 18px;
    position: relative;
}

.product-category-detail-label h6:after {
    content: "";
    width: 95%;
    height: 1px;
    background: var(--e-global-color-secondary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.product-category-detail-main_title h3 {
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    line-height: var(--e-global-typography-secondary-line-height);
    letter-spacing: var(--e-global-typography-secondary-letter-spacing);
    font-family: var(--e-global-typography-secondary-font-family);
    width: 100%;
    margin: 0 auto;
    color: var(--e-global-color-primary);
    max-width: 480px;
}

.product-category-detail-main_title {
    text-align: center;
    width: 100%;
    margin-top: 18px;
}

.product-category-detail-sub_description {
    margin-top: 22px;
    text-align: center;
}

.product-category-detail-sub_description p {
    width: 100%;
    max-width: 466px;
    margin: 0 auto;
}

ul.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 64px;
    padding: 0;
    width: 70%;
    margin: 75px auto 0;
    justify-content: space-between;
}

.features-list .feature-title {
    width: 100%;
    font-size: 18px;
    color: var(--e-global-color-8149083);
    font-family: var(--e-global-typography-primary-font-family);
    font-weight: 600;
    margin-top: 23px;
}

.features-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul.features-list .feature-icon {
    display: flex;
}

@media (max-width: 1024px) {
    .product-category-detail-main_title h3 {
        max-width: 400px;
    }
}

@media (max-width: 767.98px) {
    .product-category-detail-main_title h3 {
        width: 100%;
    }
    
    ul.features-list {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        row-gap: 48px;
        margin-top: 53px;
    }

    .features-list .feature-title {
        margin-top: 16px;
    }

    .product-category-detail {
        padding-bottom: 60vw;
    }
}