#headerWrapper{
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
}

#headerWrapper .flexWrap{
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;            
}

#headerWrapper .flexWrap .logo img{
    width: 314px;
}

#headerWrapper .flexWrap .menuBox{
    display: flex;
    height: 100%;
    align-items: center;
}

#headerWrapper .flexWrap .menuBox a{
    display: inline-block;
    margin-left: 54px;
    font-size: 18px;
}

#headerWrapper .flexWrap .menuBox a.active,
#headerWrapper .flexWrap .menuBox a:hover{
    color: #5631EB;
    font-weight: 700;
}

#headerWrapper .flexWrap .menuBox .hambugerMenu{
    display: none;
}

#headerWrapper .quickMenu{
    position: fixed;
    right: 28px;
    bottom: 28px;
}

#headerWrapper .quickMenu a{
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-top: 12px;
    background: #E8E3FF;
    box-shadow:0px 0px 10px rgba(0, 0, 0, 0.1);
}

#headerWrapper .quickMenu a:first-child{
    background: #03C75A;
    color: #fff;
}

#headerWrapper .quickMenu a:last-child{
    background: #5631EB;
    color: #fff;
}

#headerWrapper .quickMenu a span{
    position: absolute;
    left: 50%;
    top:50%;
    width: 100%;
    transform: translate(-50%,-50%);            
    text-align: center;
}

#headerWrapper .quickMenu a span img{
    display: block;
    margin:0 auto 3px;
    width: 74px;
}

#headerWrapper .quickMenu a span strong{
    font-size: 16px;
    font-weight: 700;
}

#headerWrapper .quickMenu a span em{
    margin-top: 3px;
    display: block;
    font-size: 12px;
    color: #595959;
}

#headerWrapper .hiddenMenu{
    display: none;
}

#footerWrapper{
    padding:60px 0px 67px;
    background: #4724d1;
}

#footerWrapper .inner{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
}

#footerWrapper .inner .logo{
    margin-right: 43px;
}

#footerWrapper .inner .logo img{
    width:87px;
}

#footerWrapper .inner .textBox h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

#footerWrapper .inner .textBox br.active{
    display: none;
}

#footerWrapper .inner .textBox span{
    display: inline-block;
    margin:0px 32px 12px 0px;
    font-size: 18px;
}

#footerWrapper .inner .textBox span::after{
    content: '';
    display: block;
    position: absolute;
    height: 14px;
    width: 1px;
    background: #C6B8FF;
    right: -16px;
    top: 4px;
}

#footerWrapper .inner .textBox span.active::after{
    display: none;
}

#footerWrapper .inner .textBox span em{
    font-weight: 700;
    margin-right: 6px;
}

#footerWrapper .inner .textBox p{
    font-size: 18px;
    color: #C6B8FF;
}

@media screen and (max-width:980px){
    #headerWrapper .flexWrap{
        height: 60px;
    }

    #headerWrapper .flexWrap .logo img{
        width: 220px;
    }

    #headerWrapper .flexWrap .menuBox a{
        display: none;
    }
    
    #headerWrapper .flexWrap .menuBox .hambugerMenu{
        display: block;
        width: 22px;
        height: 14px;
    }

    #headerWrapper .flexWrap .menuBox .hambugerMenu span{
        position: absolute;
        left: 0px;
        top:0px;
        width: 100%;
        height: 2px;
        background: #222;
    }

    #headerWrapper .flexWrap .menuBox .hambugerMenu span:nth-child(2){
        top:50%;
        transform: translateY(-50%);
    }

    #headerWrapper .flexWrap .menuBox .hambugerMenu span:nth-child(3){
        top:auto;
        bottom: 0px;
    }

    #headerWrapper .quickMenu{
        position: fixed;
        right: 10px;
        bottom: 16px;
    }

    #headerWrapper .quickMenu a{
        width: 80px;
        height: 80px;
        margin-top: 8px;
    }

    #headerWrapper .quickMenu a span strong{
        display: none;
    }

    #headerWrapper .quickMenu a span img{
        display: block;
        margin:auto;
        width:50px;
    }

    #headerWrapper .quickMenu a:first-child span{
        top: 53%;
        left: 51%;
    }

    #headerWrapper .quickMenu a:nth-child(2) span{
        top: 54%;
        left: 48%;
    }

    #headerWrapper .quickMenu a:nth-child(2) span img{
        width: 55px;
    }

    #headerWrapper .quickMenu a span em{
        display: none;
    }

    #headerWrapper .hiddenMenu{
        display: none;
        position: fixed;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 100;
    }

    #headerWrapper .hiddenMenu .inner{
        position: absolute;
        right: -280px;
        top: 0px;
        width: 280px;
        height: 100%;
        background:#fff;
        transition: all 0.3s;
    }

    #headerWrapper .hiddenMenu .inner .titleBox{
        background: #4724d1;
        padding:16px 12px 16px 20px;
        display: flex;
        align-items: center;
        justify-content:space-between;
    }

    #headerWrapper .hiddenMenu .inner .titleBox img:first-child{
        height: 38px;
    }

    #headerWrapper .hiddenMenu .inner ul li{
        display: block;
        margin:24px 0px 0px 20px;
        font-weight: 500;
        font-size: 16px;
    }

    #footerWrapper{
        padding:30px 0px 60px;
    }

    #footerWrapper .inner{
        display: block;
    }

    #footerWrapper .inner .logo{
        display: inline-block;
        margin-right: 0px;
        margin-bottom: 16px;
    }

    #footerWrapper .inner .logo img{
        width: 70px;
    }

    #footerWrapper .inner .textBox h4{
        font-size: 18px;
        margin-bottom: 16px;
    }

    #footerWrapper .inner .textBox br{
        display: none;
    }

    #footerWrapper .inner .textBox br.active{
        display: block;
    }

    #footerWrapper .inner .textBox span{
        margin:0px 30px 8px 0px;
        font-size: 16px;
        display: block;
    }

    #footerWrapper .inner .textBox span::after{
        display: none;
    }

    #footerWrapper .inner .textBox span.active::after{
        display: none;
    }

    #footerWrapper .inner .textBox span em{
        font-weight: 700;
        margin-right: 20px;
    }

    #footerWrapper .inner .textBox span em::after{
        content: '';
        display: block;
        position: absolute;
        height: 11px;
        width: 1px;
        background: #C6B8FF;
        right: -10px;
        top: 4px;
        opacity: 0.6;
    }            

    #footerWrapper .inner .textBox p{
        font-size: 16px;
        margin-top: 16px;
        line-height: 1.6;
    }    
}

@media screen and (max-width:720px){
    #headerWrapper .quickMenu a{
        width: 60px;
        height: 60px;
        margin-top: 8px;
    }

    #headerWrapper .quickMenu a:first-child span img{
        width: 44px;
    }

    #headerWrapper .quickMenu a:nth-child(2) span img{
        width: 46px;
    }

    #headerWrapper .quickMenu a:last-child span{
        left: 49%;
    }

    #headerWrapper .quickMenu a:last-child span img{
        width: 44px;
    }

    #footerWrapper{
        padding:30px 0px 50px;
    }

    #footerWrapper .inner .textBox h4{
        font-size: 16px;
    }

    #footerWrapper .inner .textBox span{
        font-size: 14px;
    }

    #footerWrapper .inner .textBox p{
        font-size: 14px;
    }

    #footerWrapper .inner .textBox span em::after{
        top: 3px;
        height: 10px;
    }

}