.footer-holder {
    background: var(--footer-background-color);
    color: var(--footer-color);
    padding: 60px 0 0px;
    position: relative;
}
.footer-holder .section-wave-top path {
    fill: var(--footer-background-color);
}

.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:before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background: var(--footer-list-color);
    border-radius: 50%;
    position: absolute;
    top: 11px;
    left: 5px;
}

.footer-menu li:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    text-align: center;
    border: 1px solid var(--footer-list-color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}


.copyright-holder {
    width: 100%;
    border-top: 1px solid var(--copyright-border-color);
    margin-top: 40px;
    padding: 25px 0;
    text-align: left;
    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%;
    }
}