.home-features-wrapper {
    background-color: #FFFAF8;
}

.home-features {
    background: rgba(255, 255, 255, 0.7);
    padding: 50px 16px 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    max-width: 1220px;
    margin: 0 auto;
}

.home-features-item-icon {
    width: 36px;
    height: auto;
}

.home-features-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-features-item-text {
    font-weight: 450;
    font-size: 16px;
    line-height: 27px;
    text-align: center;
    color: var(--color-primary);
}

@media (min-width: 1024px) {
    .home-features-wrapper {
        padding: 50px 24px 93px 24px;
    }

    .home-features {
        border-radius: 20px;
        padding: 30px 24px 22px;
    }

    .home-features-item {
        gap: 14px;
    }

    .home-features-item-text {
        font-size: 18px;
    }
}