/* Base Footer Styles */
.footer__area {
    background: #000000;
}

.footer {
    color: #fff;
    background: #000000;
    padding: 10px 0;
}

.footer .row {
    padding: 30px 0;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
    flex-wrap: wrap;
}

.footer .row .footer__col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    text-align: left;
}

.footer .row .footer__col .logo__footer {
    width: 45px;
    margin: 0 5px;
}

.footer .row .footer__col .logo {
    height: 50px;
}

.footer__social {
    margin: 10px 0;
}

.footer__social span {
    margin: 0px 5px;
}

.footer__social span a i {
    color: #7100da;
    transition: 0.5s;
}

.footer__social span a i:hover {
    color: #fff;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin: 10px 0;
}

.footer__list li span {
    margin-right: 10px;
}

/* Responsive CSS for Mobile Devices */
@media (max-width: 768px) {
    .footer .row {
        padding: 20px 10px;
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }

    .footer .row .footer__col {
        width: 100%;
        margin-bottom: 20px;
        text-align: left;
    }

    .footer__list li {
        margin: 8px 0;
    }

    .footer__social {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer__social span {
        margin: 5px;
    }

    .footer .d-flex.justify-content-center {
        flex-direction: column;
        font-size: 14px;
        line-height: 1.5;
    }
}


