/*============================================================================================
   Start Features Style 1 
==============================================================================================*/
.feature-section.style-1 {
    margin-top: 32px;
}
.feature-section.style-1 .feature-section-wrapper {
    background: #f5f5f5;
    padding: 24px;
    border-radius: 16px;
}
.feature-section.style-1 .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.feature-section.style-1 .feature-icon {
    width: 56px;
    min-width: 56px;
    height: 56px;
    line-height: 62px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white-color);
    font-size: 24px;
    border-radius: 8px;
}

.feature-section.style-1 .feature-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    color: var(--title-color);
}

@media only screen and (max-width: 767px) {
    .feature-section.style-1 .feature-icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
        line-height: 52px;
        font-size: 20px;
    }
    .feature-section.style-1 .feature-label {
        font-size: 14px;
    }
}

/*============================================================================================
   End Features Style 1 
==============================================================================================*/
