.features {
    background: var(--primaryColor);
    color: var(--white);
    padding: 40px 20px;
}

.features-container {
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 12px;
}

.feature {
    flex: 1 0 250px;
    text-align: center;
    display: flex;
    gap: 12px;
    align-items: center;
    /* justify-content: space-between; */
}

.feature div {
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature i {
    color: var(--secondaryColor);
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-title {
    font-weight: 700;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-4);
}