.footer_btm {
    background: var(--footer-btm-bg);
    padding: 20px 0;
}
.social_text_center .ftr_socialMenu {
    justify-content: center;
} 
.ftr_socialMenu ul {
    display: flex;
    align-items: center;
    margin: 0 -10px;
}
.ftr_socialMenu li { 
    padding-left: 5px;
    padding-right: 5px;
} 
.ftr_socialMenu li a {
    width: 30px;
    height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: var(--footer-txt-color);
    line-height: 30px;
    text-align: center;
    color: var(--white-color);
    font-size: 13px;
    padding: 0 !important;
}  
.ftr_socialMenu li a:hover {
    background: var(--secondary-hover-color); 
    color: var(--white-color);
} 
.socialFtr_links {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 2;
}
.socialFtr_links .ftr_socialMenu ul {
    display: block;
}
.socialFtr_links .ftr_socialMenu ul li + li {
    margin-top: 6px;
} 

@media screen and (max-width: 767px) {  
    .ftr_socialMenu ul { 
        justify-content: center;
    }  
    .socialFtr_links { 
        top: auto;
        bottom: 15px;
        left: 7px;
        transform: none; 
    }
    .footer_btm .row [class*='col-'] { 
        margin-bottom: 20px; 
    } 
    .footer_btm .row [class*='col-']:last-child { 
        margin-bottom: 0; 
    }   
}