.text8_list{
   position: relative;
}

.text8_item {
    display: -webkit-flex;
    display: flex;
    position: sticky;
    top: 0;
    margin-bottom: 2rem;
    padding: 5rem 0;
    background: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50px;
    overflow: hidden;
}

.text8_item_content {
    color: #fff;
    padding: 3rem;
    background: var(--theme-color-dark);
    border-radius: 1.5rem;
}

.text8_item_icon {
    width: 70px;
    margin-bottom: 2rem;
}

.text8_item_icon img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.text8_item_title {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--theme-skit-color);
    margin-bottom: 2rem;
}

.text8_item_desc {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media all and (min-width: 992px){
    .text8_item {
        padding: 8rem 0;
        border-radius: 100px;
    }
}

@media all and (max-width: 575px){
    .text8_item {
        padding: 3rem 0;
    }

    .text8_item_content {
        padding: 2rem 1rem;
    }

    .text8_item_title {
        font-size: 1.8rem;
    }
}
