.footerSection {
    background: var(--c-secondary);
    color: #fff;
}

.footerSection .footerNavList {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.footerSection .socialIcons {
    padding: 10px 0 50px;
    position: relative;
    margin: 20px 0 40px;
}

.footerSection .socialIcons img {
    width: 50px;
}

.footerSection .socialIcons::before {
    content: '';
    width: 20%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}



/* /// Media Queries  */
@media screen and (max-width: 1400px) {
    .footerSection .socialIcons img {
        width: 45px;
    }
}

@media screen and (max-width: 1200px) {
    .footerSection .socialIcons img {
        width: 35px;
    }
    .footerSection .socialIcons {
        padding: 10px 0 30px;
        margin: 20px 0 20px;
    }
}



@media screen and (max-width: 991px) {
    .footerSection .socialIcons img {
        width: 30px;
    }

    .footerSection .socialIcons {
        padding: 10px 0 30px;
        margin: 15px 0;
    }
}