.footer-holder {
    background: var(--footer-background-color);
    color: var(--footer-color);

    position: relative;
    font-size: 14px;
}

.theme-default .footer-holder  .container {
    position: relative;
    z-index: 10;
   
}

.footer-holder .container:after {
    content: '';
    display: block;
    height: 100%;
    width: 40%;
    position: absolute;
    top: 0;
    right: 0;
}

.theme-default .footer-holder .container:after {
    background: url(../../images/blocks/hero/hero-icon.png) no-repeat center top;
}

.theme-brown_1 .footer-holder .container:after {
    background: url(../../images/blocks/hero/hero-icon-brown.png) no-repeat center top;
    opacity: 0.2;
}

.theme-blue_1 .footer-holder .container:after {
    background: url(../../images/blocks/hero/hero-icon-blue.png) no-repeat center top;
    opacity: 0.2;
}

.footer-col-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 60px 0;
    position: relative;
    z-index: 20;
}

.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: "\e901";
    display: block;
    width: 20px;
    height: 20px;
    text-align: center;
    font-family: 'local-business' !important;
    color: var(--footer-list-color);
    position: absolute;
    transform: rotate(-90deg);
    font-size: 9px;
    line-height: 18px;
    top: 1px;
    left: 0px;
}

.copyright-holder {
    text-align: center;
    padding: 20px 0;
}


.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;
    }
}


@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;
     }
}