.mainFooter{
    border-top: var(--border);
    color: var(--footerClr);
    background: var(--footerBg);
}
.mainFooter .wrap{    
    padding-top: 20px;
    padding-bottom: 10px;
}
.mainFooter .social-btns{
    width: 220px;
}
.social-btns{

}
.social-btns a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    transition: all .3s linear 0s;
    border-radius: 50%;
}
.social-btns i{
    margin: 0;
    transition: all .3s linear 0s;
}
.social-btns a:is(:hover, :focus){
    /* --mask: #111; */
    background: var(--primary);
    box-shadow: var(--box-shadow);
}

.mainFooter .links{
    max-width: calc(100% - 250px);
}
.mainFooter .links a{
    position: relative;
    display: inline-block;
    max-width: 160px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--txtColor);
    transition: all .15s ease-in-out;
    margin-inline-end: 15px;
}
.mainFooter .links a::before,
.mainFooter .links a span::before{
    display: block;
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--gradeBg);
    content: "";
    transition: all .15s ease-in-out;
}
.mainFooter .links a:hover::before,
.mainFooter .links a:focus::before,
.mainFooter .links a:hover span::before,
.mainFooter .links a:focus span::before{
    width: 100%;
}

.mainFooter .links a.whatsapp{
    direction: ltr;
    font-weight: 600;
    margin: 0;
}
.mainFooter .links a.whatsapp::before{
    display: none;
}
.mainFooter .links a.whatsapp img{
    width: 20px;
    height: 20px;
}
.mainFooter .links a.whatsapp span{
    position: relative;
    display: inline-block;
}

.cRights{
    width: 100%;
    font-size: .9rem;
    margin-top: 10px;
    text-align: center;
}
@media all and (max-width: 540px) {
    .mainFooter .flex{
        -webkit-justify-content: center;
        justify-content: center;
    }
    .mainFooter .flex > div{
        width: 100%;
        max-width: unset;
        text-align: center;
        margin-top: 20px;
    }
    .mainFooter .links a{
        margin-inline-end: 25px;
    }
    .mainFooter .social-btns{
        justify-content: center !important;
    }
    .cRights{
        margin-top: 15px;
    }
}
@media all and (max-width: 540px) {
    .mainFooter .links a{
        display: block;
        max-width: unset;
        margin-inline-end: 0;
        font-size: 1.1rem;
    }
    .mainFooter .links a:not(:last-child){
        margin-bottom: 10px;
    }
}
