.FooterPane .title_Sm {
    color: var(--mc1);
    margin-bottom: 1rem;
    font-weight: bold;
}

#dnn_FooterRight {
    padding-left: 0.5rem;
    border-radius: var(--border-radius);
}

#dnn_FooterRight img {
    border-radius: var(--border-radius);
}

.certificate {
    display: flex;
    flex-direction: column;
}

.certificate__Card {
    border: 1px solid rgba(217, 217, 217, 0.5);
    ;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    width: 95px;
    height: 95px;
    overflow: hidden;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;

}

.footer__Social {
    background: #ffffff4d;
    box-shadow: 0px 4px 4px #8f8f8f40;
}

.footer__Social_Right,
.footer__Social_Left {
    display: flex;
}

.footer__Social_Left {
    justify-content: flex-end;
}

.copyright {
    border-top: 1px solid var(--mc1);
    color: var(--mc1);
    margin-top: 2rem;
    padding: 1rem 0;
}

.copyright img {
    font-size: 12px;
    margin-right: .25rem;
    margin-top: -.25rem;

}

.footer__Full_Mc {
    background: var(--mc1);
}

.footer__Full_Mc * {
    color: white !important;
}

footer .listStyle li {
    margin-bottom: 0.75rem;
    transition: var(--transition);
}
footer .listStyle li:hover{
    color: var(--mc1);
}

footer .listStyle li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    background: var(--tc1);
    margin-left: 0.5rem;
    transition: var(--transition);
}
footer .listStyle li:hover a::before {
    background: var(--mc1);
}

.footer__ShowMore i {
    margin-right: 0.75rem;
}

.footer__Address_link {
    margin-top: 1.5rem;
}

.footer__left>div{
    height: fit-content !important;
}


/* -------------------------------------------------------------------------- */
/*                                 RESPONSIVE                                 */
/* -------------------------------------------------------------------------- */

@media (max-width:991px) {
    .footer__Social .title_Sm {
        width: 100%;
        margin-bottom: .75rem;
    }

    .footer__Social .contactInfo {
        width: 50%;
    }

    .footer__Social_Left {
        justify-content: flex-start;
    }

    #dnn_FooterRight {
        padding-left: 0;
    }

    #dnn_FooterRight img {
        width: 100%;
    }
    .contactInfo .wb_Icon{
        margin-top: 0.5rem;
    }
    .certificate {
        flex-direction: row;
        justify-content: start;
    }
    .certificate__Card {
        margin-right: 0;
        margin-left: 0.5rem;
    }
}