.team-perks__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
}
.team-perks__items {
    flex-basis: calc((100% - 48px) / 3);
    background: #333b3f;
    border-radius: 20px;
    padding: 24px;
   
    display: flex;
    flex-direction: column;
}
/*Item First*/
.team-perks__items.first{
    background: transparent;
    padding: 24px 0;
}
.team-perks__items.first .team-perks__item-heading>p strong{
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    text-transform: uppercase;
    color: #b4f8db;
}
.team-perks__items.first .team-perks__item-heading h2,
.team-perks__items.first .team-perks__item-heading h2 strong{
    font-weight: 600;
    font-size: 45px;
    line-height: 130%;
}
.team-perks__items.first .team-perks__item-heading h2 strong{
    background: linear-gradient(149deg, #8feafb 20%, #b4f8db 40%, #b4f8db 60%, #8feafb 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*Item First*/
.team-perks__item-icon{
    margin-bottom: 16px;
    display: block;
}
.team-perks__item-heading p{
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: #fff;
}
.team-perks__item-heading{
    margin-bottom: 12px;

}
.team-perks__item-text{
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}

@media screen and (max-width: 1023.98px){
    .team-perks__wrapper{
        gap: 12px;
    }
    .team-perks__items.first{
        padding: 20px 0;
    }
    .team-perks__items{
        flex-basis: calc((100% - 12px) / 2);
        padding: 20px;
    }
    .team-perks__items.first .team-perks__item-heading h2,
    .team-perks__items.first .team-perks__item-heading h2 strong{
        font-size: 30px;
        line-height: 140%;
    }
    .team-perks__item-text{
        font-size: 16px;
    }
    .team-perks__item-heading>p{
        font-size: 20px;
    }

}
@media screen and (max-width:658px){
    .team-perks__items{
        flex-basis: unset;
        min-height: auto;
    }
    .team-perks__wrapper{
        gap: 20px;
        flex-direction: column;
    }
    .team-perks__items.first{
        padding: 0;
        margin-bottom: 4px;
    }

    .team-perks__items.first .team-perks__item-heading h2{
        margin-top: 13px;
    }

}
