.benefits {
    padding: 3.75rem 0;
}

.benefits h2 {
    text-align: center;
}

.benefits h4 {
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.benefits--list {
    margin: 1.75rem 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.benefits--item {
    margin: 1rem;
    padding: 2.5rem;
    border-radius: 2.5rem;
    background: #E9E9E9;
    width: calc(50% - 2rem);
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    flex-direction: row;
}

.benefits--item h4 {
    font-weight: 500;
    line-height: 120%;
}

.benefits--item p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 0;
}

.benefits--item_icon {
    border-radius: 1.5rem;
    background: var(--black-text);
    padding: 1.5rem;
    margin-right: 1.5rem;
}

.benefits--item_icon svg {
    width: 3rem;
    height: 3rem;
}

.benefits--item_icon svg path {
    fill: white;
}

.benefits--item_desc-mb {
    max-height: 0;
    overflow: hidden;
}

.benefits--item_text h5 {
    text-align: left;
    margin-bottom: .5rem;
}

.benefits--cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.benefits--cta .cta-btn {
    font-size: 1rem;
    font-weight: 600;
    line-height: 160%;
    border-radius: 0.75rem;
    padding: 1rem 5.5rem;
}

@media screen and (max-width: 1199px) {
    .benefits h4 {
        font-size: 1.25rem;
    }

    .benefits--item_icon {
        padding: 1.25rem;
    }
}

@media screen and (max-width: 991px) {
    .benefits {
        padding: 3rem 0;
    }
    .benefits--item {
        width: 100%;
        margin: .25rem 0;
        position: relative;
        border-radius: 2rem;
        padding: 1.5rem
    }

    .benefits--list {
        margin: 1.5rem 0
    }

    .benefits--item_icon {
        display: none;
    }

    .benefits--item_text {
        width: 100%;
    }
    .benefits--item_text h5 {
        width: calc(100% - 2rem);
    }

    .benefits--item:after {
        content: '';
        width: 1.5rem;
        height: 1.5rem;
        display: inline-flex;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 2C4.23858 2 2 4.23858 2 7V17C2 19.7614 4.23858 22 7 22H17C19.7614 22 22 19.7614 22 17V7C22 4.23858 19.7614 2 17 2H7ZM12 7C12.5523 7 13 7.44772 13 8V11H16C16.5523 11 17 11.4477 17 12C17 12.5523 16.5523 13 16 13H13V16C13 16.5523 12.5523 17 12 17C11.4477 17 11 16.5523 11 16V13H8C7.44772 13 7 12.5523 7 12C7 11.4477 7.44772 11 8 11H11V8C11 7.44772 11.4477 7 12 7Z' fill='%230A223B'/%3E%3C/svg%3E") no-repeat;
        background-size: contain;
        transition: transform .2s ease-in-out;
        position: absolute;
        right: 1.5rem;
        top: 1.5rem;
    }

    .benefits--item.opened:after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7 2C4.23858 2 2 4.23858 2 7V17C2 19.7614 4.23858 22 7 22H17C19.7614 22 22 19.7614 22 17V7C22 4.23858 19.7614 2 17 2H7ZM7 12C7 11.4477 7.44772 11 8 11H16C16.5523 11 17 11.4477 17 12C17 12.5523 16.5523 13 16 13H8C7.44772 13 7 12.5523 7 12Z' fill='%230A223B'/%3E%3C/svg%3E") no-repeat;
        background-size: contain;
        transform: rotate(-180deg);
        transition: transform .2s ease-in-out;
        top: 1.5rem;
    }

    .benefits--item_desc-mb {
        max-height: 10rem;
    }

    .benefits--item_desc {
        max-height: 0;
        overflow: hidden;
    }

    .benefits--item.opened .benefits--item_desc-mb {
        max-height: 0;
    }

    .benefits--item.opened .benefits--item_desc {
        max-height: 10rem;
    }
    .benefits--cta .cta-btn {
        padding: 1rem;
        width: 100%;
        text-align: center;
    }
}