.footer-holder {
    background: var(--footer-background-color);
    color: var(--footer-color);
    padding: 60px 0;
    position: relative;
    font-size: 14px;
}

.footer-col-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-col {
    width: calc(1/4*100% - (1 - 1/4)*30px);
    font-size: 14px;
}

.footer-col a {
    color: var(--footer-link-color);
}

.footer-col a:hover {
    color: var(--footer-link-color-hover)
}

.footer-title {
    color: var( --footer-title-color);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-menu li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
}

.footer-menu li:after {
    content: "\e90b";
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    font-family: 'local-business' !important;
    border: 2px solid  var(--footer-list-color);
    border-radius: 2px;
    color: var(--footer-list-color);
    position: absolute;
    transform: rotate(0deg);
    font-size: 9px;
    line-height: 18px;
    top: 1px;
    left: 0px;
}

.copyright-holder {
    width: 100%;
    padding: 40px 0;
    text-align: right;
    font-size: 14px;
    background: var(--footer-copyright-background-color);
    color: var( --footer-copyright-color);
}


.copyright-holder > .container {
    position: relative;
}


@media only screen and (min-width: 768px) {
    .copyright-holder > .container {
        position: relative;
    }

    .copyright-holder .footer-image {
        position: absolute;
        bottom: -20px;
        right: 0;
        max-width: 200px;
    }

    .copyright-holder.has-image > .container {
        padding-right: 200px;
    }
    
    .copyright-holder.has-image img {
        max-width: 180px;
    }
}


@media only screen and (max-width: 991px) {
    .footer-col {
        width: calc(1/2*100% - (1 - 1/2)*30px);
    }
}

@media only screen and (max-width: 767px) {
    .footer-holder {
        padding: 60px 0 80px
    }

    .footer-col {
        width: 100%;
    }

     .copyright-holder .footer-image {
        max-width: 100px;
        position: absolute;
        right: 0;
        top: -120px;
     }
}