   .fspmenu-hide-pc {
        display: none;
    }
@media screen and (max-width: 992px) {
    .fspmenu-hide-pc {
        display: block;
    }
    .fspmenu {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        overflow: auto;
        max-height: 0;
        transition: max-height 0.5s ease;
    }
    .fsp-menu img {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .fspmenu.active {
        max-height: 1200px;
    }
    .fsp-inner {
        width: 100%;
        height: auto;
        min-height: 100vh; /* Should remove at the end */
        background-color: #1d1f83;
        position: relative;
    }
    .fsp-head {
        padding: 10px;
    }
    .fhead-inner {
        width: 100%;
        display: flex;
        background-color: #FFF;
    }
    .fh-logo {
        flex: 100%;
        max-width: 80%;
        align-self: center;
/*        text-align: center;*/
        text-align: left;
        padding-left: 5px;        
    }
    
    .fh-logo img {
        width: 60%;
    }
    
    .fh-ocbtn {
        flex: 100%;
        max-width: 20%;
        align-self: center;
        text-align: center;
    }
    .fsp-content {
        padding-bottom: 100px;
    }
    .fsp-foot {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
       /* background-color: #FFF;*/
        height: 48px;
    }
    .ffoot-inner {
        display: flex;
        width: 60%;
        margin: 0 auto;
        transform: translateY(-50%);
    }
    .ff-icon {
        flex: 100%;
        max-width: calc(100% / 3);
        text-align: center;
        align-self: center;
    }
    .ff-icon img {
        width: 70%;
        border-radius: 50%;
        border: 1px solid #54b6e3;
    }

    .fsp-txt {
        font-size: 14px;
        color: #fff;
        text-align: center;
        margin-top: 30px;
    }

    .fsp-underline {
        height: 1px;
        width: 30%;
        margin: 15px auto 40px;
        border-top: 2px solid #FFF;
    }

    .fsp-menu {
        margin: 6vw 0vw;
        text-align: center;
    }
}