@media (max-width: 768px) {
    .footer-collapsible h4::after {
        content: "\f078";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 20px;
        transition: all ease .125s;
    }

    .footer-collapsible .elementor-widget-heading {
        margin-bottom: 0 !important;
    }

    .ca-collapsible .elementor-widget-container > div:first-child,
    .ca-collapsible .elementor-widget-container > ul:first-child{
         padding-top: 20px;
    }

    .footer-collapsible .elementor-widget-heading.expanded h4::after {
        transform: rotate(-180deg) translateY(50%);
    }

    .footer-collapsible:not(:last-of-type) {
        border-top: 1px solid #dedede;
    }
}

.text-collapsed {
    height: 200px;
    overflow: hidden;
    position: relative;
    transition: all linear .15s;
}

.text-collapsed:hover {
    height: 250px;
}

.text-collapsed::after {
    content: attr(data-text);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 15px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent, #fff);
    position: absolute;
    cursor: pointer;
    font-weight: bold;
}