.benf-sec-wrap{
    display: flex;
    flex-direction: column;
}

.benf-sec-head{
    width: 100%;
    text-align: center;
}

.benf-sec-head .g-content{
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.benf-sec-list{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 21px;
    justify-content: center;
}

.benf-card{
    flex: 1;
    min-width: 230px;
    max-width: calc(25% - 12px);
}

.benf-card.active {}

.benf-card-inner{
    min-height: 200px;
    background: rgb(var(--uicolor-code)/6%);
    border-radius: 22px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: .35s ease;
}

.benf-card.active  .benf-card-inner {
    background: rgb(var(--uicolor2-code)/10%);
}

.benf-card:hover .benf-card-inner{
    transform: translateY(-6px);
    box-shadow: 0 14px 28px #00000010;
    background: var(--uicolor);
}

.benf-card.active:hover .benf-card-inner {
    background: var(--uicolor2);
}

.benf-card-icon{
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #fff;
    color: var(--uicolor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 18px;
    transition: .35s ease;
}

.benf-card.active .benf-card-icon{
    color: var(--uicolor2);
}

.benf-card-icon i,
.benf-card-icon svg{
    color: inherit;
    font-size: inherit;
    line-height: 1;
    fill: inherit;
}

.benf-card-content{
    width: 100%;
}

.benf-card-title{
    display: inline-block;
    margin: 0 0 12px;
    color: var(--primary-text);
    text-decoration: none;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    transition: .3s ease;
}

.benf-card.active  .benf-card-title {
}

.benf-card:hover .benf-card-title {
    color: white;
}

.benf-card-text,
.benf-card-text p{
    color: var(--secondarytext);
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    transition: 0.3s all ease;
}

.benf-card:hover .benf-card-text ,.benf-card:hover .benf-card-text p {
    color: #dfdede;
}

@media (max-width: 1199px){
    .benf-card{
        min-width: 260px;
        max-width: calc(50% - 8px);
    }

    .benf-card-title{
        font-size: 24px;
    }
}

@media (max-width: 767px){
    .benf-sec-wrap{
        gap: 0;
    }

    .benf-sec-list{
        gap: 14px;
    }

    .benf-card{
        min-width: 260px;
        max-width: 100%;
    }

    .benf-card-inner{
        min-height: auto;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .benf-card-icon{
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 20px;
        margin-bottom: 14px;
    }

    .benf-card-title{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .benf-card-text,
    .benf-card-text p{
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 575px){
    .benf-card-inner{
        padding: 18px 14px;
    }

    .benf-card-title{
        font-size: 18px;
    }
}
