.mobile-footer{

    position: fixed;
    bottom: -100px;
    background-color: #6576FF;
    max-width: 500px;
    width: 90%;
    /* Make it center   */
    left: 50%;
    transform: translateX(-50%);

    border-radius: 10px;
    transition: 0.5s;
    padding: 10px;
    -webkit-box-shadow: 3px 36px 95px 7px rgba(0,0,0,0.83);
    -moz-box-shadow: 3px 36px 95px 7px rgba(0,0,0,0.83);
    box-shadow: 3px 36px 95px 7px rgba(0,0,0,0.83);
}

.mobile-footer.active{
    bottom: 100px;
}

.mobile-footer span{
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
    padding-bottom: 5px;
}

.mobile-footer .btn{
    background-color: #1e1e42;
    border: unset;
}

.serviceList li{
    width: 50%;
}

@media screen and (max-width: 600px){
    .mobile-footer{
        display:block;
    }

    .serviceList li{
        width: 100%;
    }
}

