/* Responsive Footer  */
.footer__widget--button>* {
    pointer-events: none;
}

.footer__widget--button {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    content: "";
    color: transparent;
    border: 0;
    background-color: transparent;
    color: var(--white-color);
    text-align: end;
}

.footer__widget.active {
    padding-bottom: 3.5rem;
}

.footer__widget.active .footer__widget--title__arrowdown--icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.footer__widget .footer__widget--title__arrowdown--icon {
    -webkit-transition: .3s;
    transition: .3s;
}

@media only screen and (max-width: 991px) {

    .footer-title {
        position: relative;
    }

    .footer__widget--inner {
        display: none;
    }

    .footer__widget--button {
        visibility: visible;
    }

    .footer-title.footer__widget--title:after {
        content: unset !important;
    }

    .footer-title.footer__widget--title {
        margin-bottom: 8px !important;
        padding-bottom: 0px !important;
        text-transform: capitalize !important;
    }

    .footer__widget.active {
        padding-bottom: 1.5rem !important;
    }

}