.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;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
}

@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%;
    }
}