.footer-box {
    background-color: #01245B;
}

.footer-nav {
    display: flex;
    padding: 50px 8.3% 11px;
    box-sizing: border-box;
    border-bottom: 2px solid #bfbfbf;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-logo {
    padding-top: 30px;
    width: 12.6%;
}

.footer-logo>div {
    width: 100%;

    padding-top: 23.1%;
    position: relative;
}

.footer-logo>div img {
    position: absolute;
    top: 0;
}

.footer-link {
    flex: 1;
    color: rgba(255, 255, 255, 0.7);

    display: flex;
    text-align: center;
    justify-content: flex-end;
}

.footer-link ul {
    margin-right: 7.2%;
}

.footer-link ul:last-child {
    margin-right: 0;
}

.footer-link li {
    margin-bottom: 24px;
}

.footer-link ul li:nth-child(1) {
    font-size: 16px;
    /* opacity: 0.8; */
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
}

.footer-desc {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);

}

.footer-desc img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.footer-desc span {
    margin-left: 10px;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
    }

    .footer-logo {
        width: 50%;
        padding-top: 0;
        padding-bottom: 20px;
    }

    .footer-link {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-link ul {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-link ul li:nth-child(1) {
        /* width: 100%; */
        text-align: left;
        display: block !important;
    }

    .footer-link ul li {
        display: none;
    }

    .footer-desc {
        flex-wrap: wrap;
    }

    .footer-desc span:nth-child(1) {
        width: 100%;
        text-align: center;
    }

    .footer-desc span {
        margin-bottom: 10px;
        margin-left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}