.site-footer {
    background: #f4f3f3;
    position: relative;
    overflow: hidden;
}

/* Top Color Bar */
.footer-top-bar {
    display: flex;
    width: 100%;
    height: 16px;
}

.yellow-bar {
    width: 33.33%;
    background: #f4c400;
}

.purple-bar {
    width: 66.67%;
    background: #5a2ca0;
}

/* Main Footer */
.site-footer .container {
    padding-top: 100px;
    padding-bottom: 40px;
}

/* Logo */
.footer-logo {
    display: inline-flex;
    margin-bottom: 40px;
    text-decoration: none;
    color: var(--light-black-color);
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-about p {
    color: var(--dark-grey);
    font-size: 18px;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 35px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 14px;
}
.copyright p {
    color: var(--dark-grey);
    font-size: 14px;
        margin: 0;
}
.footer-social a {
    width: 44px;
    height: 44px;
    background: #ece8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a2ca0;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #5a2ca0;
    color: #fff;
}

/* Headings */
.footer-widget h4 {
    font-size: 18px;
    font-weight: 700;
    color: #5a2ca0;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
    margin: 0 0 25px;
}
.footer-widget h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 22px;
    background: #f4c400;
}

/* Navigation */
.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 22px;
}

.footer-widget ul li a {
    color: #57525d;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: #5a2ca0;
}

.footer-widget ul li::before {
    content: "•";
    color: #f4c400;
    margin-right: 12px;
    font-size: 22px;
}

/* Contact */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-info li::before {
    display: none;
}

.contact-info i {
    color: #f4c400;
    font-size: 22px;
    margin-top: 4px;
}

.contact-info span,
.contact-info a {
    color: var(--dark-grey);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
}
.footer-logo p {
    margin: 0;
}
/* Bottom */
.footer-bottom {
    border-top: 1px solid #dfdcdc;
    margin-top: 70px;
    padding-top: 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: #8a848d;
    font-size: 18px;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: var(--dark-grey);
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #5a2ca0;
}

/* Responsive */
@media (max-width: 991px) {

    .site-footer .container {
        padding-top: 70px;
    }

    .footer-widget h4 {
        font-size: 28px;
    }

    .footer-about p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {

    .site-footer .container {
        padding-top: 50px;
    }

    .footer-widget h4 {
        font-size: 24px;
    }

    .footer-about p,
    .footer-widget ul li a,
    .contact-info span,
    .contact-info a,
    .copyright,
    .footer-links a {
        font-size: 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}