.list-services {
    display: flex;
    list-style: none;
    padding-inline-start: 0;
}
.list-services .service-item:last-child{
    margin-right: 0;
}
.service-item {
    position: relative;
    flex: 0 0 135px;
    box-sizing: border-box;
    margin-right: 0.813rem;
    padding: 2.5rem 1.25rem 1.25rem 1.25rem;
    border: 1px solid var(--wp--preset--color--black);
    background: var(--wp--preset--color--white);
    min-height: 268px;
    max-width: 31.25rem;
    transition: width 0.6s ease, max-width 0.4s ease, background-color 0.4s ease, border-color 0.3s ease;
}
.service-item .title{
    font-family: var(--wp--preset--font-family--texto);
    font-size: var(--wp--preset--font-size-h5);
    font-weight: 700;
    line-height: normal;
    margin-top: 0;
    margin-bottom: 0;
}
.service-item.active .title{
    margin-bottom: 1.313rem;
    padding-right: 1rem;
}
.service-item .description{
    display: none;
    font-size: var(--text-16);
}
.service-item.active {
    flex: 1 1 auto;
    max-width: 50%;
    background-color: var(--wp--preset--color--grey-light);
    border-color: var(--wp--preset--color--green);
}
.list-services.services-5 .service-item.active{
    max-width: calc(100% - 135*4 - 13*4);
}
.service-item.active .description{
    display: block;
}
.service-item .link-service{
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
}
/* Landing */

/* End Landing */
@media only screen and (max-width : 970px) {
    .list-services{
        display: block;
        margin-top: 2.5rem;
    }
    .service-item{
        margin-right: 0;
        min-height: 0;
        padding: 1.25rem;
        max-width: 100%;
    }
    .service-item .title{
        position: relative;
    }
    .service-item .title::after{
        position: absolute;
        top: -0.125rem;
        right: 0;
        content: '+';
        font-weight: 100;
        font-size: 2rem;
        line-height: 1rem;
    }
    .service-item.active{
        max-width: 100%;
    }
    .service-item.active .title::after{
        content: '-';
    }
    .service-item .link-service{
        display: none;
        bottom: 0.75rem;
    }
    .service-item.active .link-service{
        display: flex;
        position: relative;
        bottom: 0;
        right: 0;
        justify-content: end;
        margin-top: 1.25rem;
    }
}