.footerPhone {
    display: none;
}

.footer {
    direction: rtl;
    padding: 1vh;
    box-sizing: border-box;
    background-color: #F4E6CC;
}

.footer .inerFooter {
    display: flex;
    justify-content: space-evenly;
    padding: 1vh;
    box-sizing: border-box;
}

.footer .inerFooter .cardFooter {
    flex-direction: row;
    padding: 2vh;
    box-sizing: border-box;
}

.footer .inerFooter .cardFooter .inerCard {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    line-height: 2;
}

.footer .inerFooter .cardFooter .inerCard .inerCardH {
    color: #363636;
    font-weight: 100;
}

.footer .inerFooter .cardFooter .inerCard .inerCardA {
    color: #666666;
    font-weight: 10;
    margin-top: 10px;
    padding: 3px;
}

.footer .inerFooter .cardFooter .inerCard .btnFooter {
    background-color: rgb(251 246 238);
    justify-content: center;
    text-align: center;
    border: solid;
    border-radius: 10px;
    width: 60%;
}

.footer .bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color: #666666;
    align-items: center;
    padding: 2vh;
}

.footer .bottom .rightBottom {
    direction: rtl;
    width: 33%;
    text-align: center;
}

.footer .bottom .middleBottom {
    width: 33%;
    color: rgb(251 246 238);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer .bottom .leftBottom {
    width: 33%;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer {
        display: none;
    }
    .footerPhone {
        display: block;
        direction: rtl;
        padding: 1vh;
        box-sizing: border-box;
        background-color: #F4E6CC;
        font-size: smaller;
    }
    .footerPhone .inerFooter {
        display: flex;
        justify-content: space-evenly;
        padding: 1vh;
        box-sizing: border-box;
    }
    .footerPhone .inerFooter .cardFooter {
        flex-direction: row;
        padding: 2vh;
        box-sizing: border-box;
    }
    .footerPhone .inerFooter .cardFooter .inerCard {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        line-height: 2;
    }
    .footerPhone .inerFooter .cardFooter .inerCard .inerCardH {
        color: #191919;
        font-weight: 100;
    }
    .footerPhone .inerFooter .cardFooter .inerCard .inerCardA {
        color: #666666;
        font-weight: 10;
        margin-top: 10px;
        padding: 3px;
    }
    /* .footerPhone .inerFooter .cardFooter .inerCard .btnFooter{
        background-color: rgb(251 246 238);
        justify-content: center;
        text-align: center;
        border: solid;
        border-radius: 10px;
        width: 60%;


    } */
    .footerPhone .bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        color: #666666;
        align-items: center;
        padding: 2vh;
        font-size: smaller;
    }
    .footerPhone .bottom .rightBottom {
        direction: rtl;
        width: 33%;
        text-align: center;
    }
    .footerPhone .bottom .middleBottom {
        width: 33%;
        color: rgb(251 246 238);
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
    .footerPhone .bottom .leftBottom {
        width: 33%;
        text-align: center;
    }
}