.c-features__container {
    display: flex;
}

.c-features__container.show-button {
    margin-bottom: 39px;
}

.c-features__content {
    margin-right: 32px;
    width: calc(100% - 384px);
}

.c-features__title {
    font-weight: 700;
    font-size: 36px;
    line-height: 140%;
    color: #1BC19A;
    margin-bottom: 64px;
}

.c-features__offers {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-features__offer {
    display: flex;
    margin-bottom: 32px;
    align-items: center;
    width: calc(50% - 16px);
}

.c-features__offer-picture {
    max-width: 44px;
    max-height: 44px;
    margin-right: 16px;
    min-width: 44px;
    min-height: 44px;
}

.show-button .c-features__offer {
    flex-direction: column;
    align-items: unset;
}

.show-button .c-features__offer-picture {
    max-width: 80px;
    max-height: 80px;
    margin-right: 0;
    margin-bottom: 16px;
    min-width: 80px;
    min-height: 80px;
}

.show-button .c-features__offer-picture img {
    width: 100%;
    height: 100%;
}

.c-features__price-description,
.c-features__offer-description {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #575757;
}

.c-features__price-description._big {
    font-size: 28px;
    color: #1BC19A;
    font-weight: 700;
}

.c-features__price-wrapper {
    box-shadow: 0 4px 64px rgba(2, 32, 3, 0.1);
    border-radius: 42px;
    padding: 32px;
}

.c-features__price-item {
    display: flex;
    align-items: center;
}

.c-features__price-item:not(:last-child) {
    margin-bottom: 24px;
}

.c-features__price-picture {
    max-width: 80px;
    max-height: 80px;
    margin-right: 16px;
    min-width: 80px;
    min-height: 80px;
}

.c-features__photo {
    width: 352px;
    max-height: 100%;
    border-radius: 36px;
    overflow: hidden;
    display: block;
}

.c-features__img {
    vertical-align: top;
    max-width: 100%;
    max-height: 100%;
}

button.c-features__order-btn {
    background: linear-gradient(180deg, #1BC19A 0%, #1BC19A 53.12%, #12DDAC 100%);
    border-radius: 55px;
    padding: 16px 56px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
    display: block;
}

@media (max-width: 991px) {
    .c-features__photo {
        display: none;
    }

    .c-features__content {
        width: unset;
        margin-right: unset;
    }
}

@media (max-width: 767px) {
    .c-features__order-btn {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .c-features__title {
        text-align: center;
        margin-bottom: 32px;
        font-size: 22px;
    }

    .c-features__offer-picture {
        margin-right: 8px;
    }

    .c-features__offer {
        margin-bottom: 24px;
        width: unset;
    }

    .c-features__offer:last-child {
        margin-bottom: 32px;
    }

    .c-features__price-description, .c-features__offer-description {
        font-size: 16px;
    }

    .c-features__price-description._big {
        font-size: 20px;
    }

    .c-features__price-picture {
        display: none;
    }
    
    .c-features__order-btn {
        width: 100%;
    }

    .c-features__price-wrapper {
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 4px 64px rgba(2, 32, 3, 0.1);
    }
}