.section-product-ci.section-grey {
    background: #F7F8FA;
}

.section-product-ci.section-white {
    background: #FFFFFF;
}

.section-product-ci .section-heading {
    padding-bottom: 50px;
}

.section-items {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-items .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.section-items .item:nth-child(2n) .item-content {
    order: 2;
}

.section-items .item > div {
    flex: 1 1 0;
}

.section-items .item-featured {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-items .item-featured  img {
    width: auto;
    height: 100%;
    max-height: 213px;
}

.section-items .item-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-items .item-content .title {
    font-size: 38px;
}

.section-items .item-content strong {
    font-weight: 600;
    color: #AD3275;
}

.section-items .item-content p {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    padding: 0;
}


@media (max-width: 1280px) {

}

@media (max-width: 992px) {
    .section-product-ci .section-heading {
        padding-bottom: 30px;
    }

    .section-items .item-content .title {
        font-size: 28px;
    }

    .section-items .item-featured {
        max-width: 300px;
    }

    .section-items .item-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section-items .item {
        flex-direction: column;
    }

    .section-items .item-content {
        width: 100%;
    }

    .section-items .item:nth-child(2n) .item-content {
        order: 0;
    }

    .section-items .item-content p {
        font-size: 18px;
    }
}