.footer-holder {
    background: var(--footer-background-color);
    color: var(--footer-color);
    padding: 100px 0 80px
}

.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: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--footer-list-color);
    position: absolute;
    top: 6px;
    left: 0;
}


.copyright-holder {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: var(--footer-background-color);
    color: var(--footer-color);
    padding: 20px 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%;
    }
}