.text-image-features {
    /* padding: 20px 0; */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.text-image-features .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.text-image-features .content-wrapper-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 48px;
}

.text-image-features .image-wrapper {
    width: calc(30% - 24px);
    flex: 1 auto;
}

.text-image-features .text-wrapper {
    width: calc(70% - 24px);
    flex: 1 auto;
}

.text-image-features .image-wrapper img {
    width: 100%;
    height: auto;
}

.text-image-features .block-title.title-inner {
    margin-left: 0;
}

.text-image-features .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.text-image-features .text-wrapper h3 {
    font-size: 22px;
    color: var(--red);
    font-weight: 500;
}

.text-image-features .feature-title {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 9px 0;
}

.text-image-features .feature-title .data-icon {
    background-color: var(--red);
    width: 49px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.text-image-features .feature-title .data-icon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    width: 49px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid var(--red);
    transition: transform .3s ease;
}

.text-image-features .feature-single:hover .data-icon::before {
    transform: translateY(-50%) translateX(0);
}

.text-image-features .feature-single p {
    padding-left: 65px;
    font-size: 18px;
}

@media (max-width:991px) {

    .text-image-features .image-wrapper,
    .text-image-features .text-wrapper {
        width: 100%;
    }

    .text-image-features .feature-single p {
        font-size: 16px;
    }

}