.footer-holder {
    background: var(--footer-background-color);
    color: var(--footer-color);
    padding: 60px 0;
    position: relative;
}

.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-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: 20px;
}

.footer-menu li:after {
    content: "\e901";
    display: block;
    width: 14px;
    height: 10px;
    text-align: center;
    font-family: 'local-business' !important;
    color: var(--footer-list-color);
    position: absolute;
    transform: rotate(-90deg);
    font-size: 12px;
    top: 6px;
    left: -7px;
}


.copyright-holder {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

@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%;
    }
}