.main-footer {
    background: #0f172a;
    color: #fff;
    padding-top: 80px;
}

.footer-logo {
    max-height: 100px;
    margin-bottom: 20px;
    background:white;
    border-radius:5px;
}

.footer-about {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #86efac;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #28a354;
    color: #fff;
}

.main-footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #86efac;
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,.75);
}

.footer-contact i {
    color: #28a354;
    width: 20px;
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p,
.footer-bottom-links a {
    color: rgba(255,255,255,.65);
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #86efac;
}

@media (max-width: 767px) {

    .main-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }

}