.benefits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
    margin-bottom: 40px;
}

.benefits .cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

.benefits .cards .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 486px;
    border: none;
}

.benefits .cards .card .number {
    border-top: 1px solid #E5E7EB;
    ;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;

    width: 28px;
    height: 29px;

    background: linear-gradient(270deg, #38CFFE -73.08%, #4968ED 11.06%, #4F42E6 81.97%, #5808DD 157.69%);
    border-radius: 3px;

    margin-bottom: 8px;
}

.benefits .cards .card .number span {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.benefits .cards .card .title-card {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    background: linear-gradient(270deg, #570DDD -24.6%, #4968ED 38.4%, #4199F5 100.14%, #37D6FF 160.88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    margin-bottom: 8px;
}

.benefits .cards .card .content {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #000000;

}

@media screen and (min-width:1024px) {
    .benefits .cards .card-5 {
        max-width: 538px;
        width: 538px;
    }
}


@media screen and (min-width: 641px) and (max-width: 1024px) {
    .benefits .cards .card {
        width: 310px;
        margin-top: 16px;
        border-bottom: 1px solid #E5E7EB;
    }

    .benefits .cards .card-5 {
        width: 100%;
        border: none;
    }
}


@media screen and (max-width: 640px) {
.benefits{
    padding: 0 16px;
}

    .benefits .cards .card {
        margin-top: 16px;
        border-bottom: 1px solid #E5E7EB;
    }

    .benefits .cards .card-5 {
        border: none;
    }



}

@media screen and (prefers-color-scheme: dark) {
    .button-menu span {
        background: #ccc;
    }

    .benefits .cards .card .title-card {
        background: linear-gradient(270deg, #4199F5 100.14%, #37D6FF 160.88%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    
    }

    .benefits .cards .card .number {
        background:linear-gradient(270deg, #4199F5 100.14%, #37D6FF 160.88%);
    }
    /*linear-gradient(270deg, #74b8ff 38.4%, #4199F5 100.14%, #37D6FF 160.88%)*/
}