/*============================================================================================
   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-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    gap: 24px;
    border-radius: 16px;
    flex-wrap: wrap;
}
.feature-section.style-1 .feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}
.feature-section.style-1 .feature-item:hover {
    border: 1px solid var(--primary-color);
}
.feature-section.style-1 .feature-icon {
    text-align: center;
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 8px;
    position: relative;
    top: 3px;
}

.feature-section.style-1 .feature-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    color: var(--title-color);
}

@media only screen and (max-width: 767px) {
    .feature-section.style-1 .feature-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .feature-section.style-1 {
        margin-top: 24px;
    }
    .feature-section.style-1 .feature-label {
        font-size: 12px;
    }
    .feature-section.style-1 .feature-icon {
        font-size: 20px;
    }
    .feature-section.style-1 .feature-item {
        gap: 12px;
    }
}

/*============================================================================================
   End Features Style 1 
==============================================================================================*/
