body, html {
    margin: 0px;
    padding: 0px;
    background: #FFF;
    color: #000;
}

* {
    box-sizing: border-box;
    font-family: 'Montserrat', 'Noto Sans Display', 'Source Sans Pro', Arial, Helvetica, sans-serif;
}

a {
    transition: ease all 0.3s;
    color: inherit;
    text-decoration: none;
}

    a > img,
    a:before,
    a:after {
        transition: ease all 0.3s;
    }

body {
    font-size: 18px;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
}

/*================================================================================*/
/*LAYOUT*/
/*================================================================================*/
.hkstp_main {
    max-width: 1400px;
    margin: 0px auto;
}

@media screen and (max-width:1479px) {
    .hkstp_main {
        margin: 0px 40px;
    }
}

@media screen and (max-width:1023px) {
    body {
        font-size: 16px;
    }

    .hkstp_main {
        margin: 0px 20px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .hkstp_row .hkstp_col {
        width: 50%;
    }
/*================================================================================*/
/*HEAD */
/*================================================================================*/
.hkstp_head {
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0px;
    left: 0px;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 75%, rgba(255,255,255,0) 100%);
    transition: ease all 0.3s;
}

    .hkstp_head.fadeout {
        opacity: 0;
        pointer-events: none;
    }
    /*--------------------------------------------------------------------------------*/
    .hkstp_head .hkstp_menu {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 0px 40px 0px;
    }

    .hkstp_head .hkstp_menu_logo img {
        width: 118px;
        height: 65px;
        /*width: auto;*/
        filter: brightness(1);
        transition: ease all 0.3s;
    }

    .hkstp_head .hkstp_menu_logo a:hover img {
        filter: brightness(0);
    }

    .hkstp_head.scrolled .hkstp_menu_logo img,
    .hkstp_head.mobile .hkstp_menu_logo img {
        height: 65px;
    }

    .hkstp_head .hkstp_menu_main {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        .hkstp_head .hkstp_menu_main .hkstp_menu_item {
            font-size: 19px;
            padding: 10px 0px;
            margin: 0px 20px 0px 0px;
            position: relative;
        }

        .hkstp_head .hkstp_menu_main .hkstp_menu_subitem {
            display: none;
            font-size: 16px;
            position: absolute;
            top: 100%;
            left: 0px;
            min-width: 100%;
            background: #f7f7f7;
            border-top: 1px solid #ff6b03;
            box-shadow: rgba(0,0,0,0.1) 5px 5px 10px;
        }

        .hkstp_head .hkstp_menu_main .hkstp_menu_item .hkstp_menu_subitem a {
            display: block;
            padding: 10px 20px 10px 20px;
            position: relative;
            border: 1px solid #F0F0F0;
            border-top: none;
        }

            .hkstp_head .hkstp_menu_main .hkstp_menu_item .hkstp_menu_subitem a:after {
                content: "";
                display: block;
                position: absolute;
                top: calc(50% - 2px);
                right: 8px;
                width: 4px;
                height: 4px;
                border-top: 1px solid #999;
                border-right: 1px solid #999;
                transform: rotate(45deg);
            }

        .hkstp_head .hkstp_menu_main .hkstp_menu_item a:hover {
            color: #138fff;
        }

        .hkstp_head .hkstp_menu_main .hkstp_menu_item:hover .hkstp_menu_subitem {
            display: block;
        }

        .hkstp_head .hkstp_menu_main .hkstp_menu_item.active {
            border-bottom: 1px solid #ff6b03;
        }

    .hkstp_head .lang {
        width: 20px;
        height: 20px;
        display: block;
    }
    /*--------------------------------------------------------------------------------*/

    .hkstp_head .hkstp_menu .hkstp_search_bar {
        display: none;
    }

    .hkstp_head .hkstp_menu.search .hkstp_menu_item {
        display: none;
    }

    .hkstp_head .hkstp_menu.search .hkstp_menu_equiv {
        display: none;
    }

    .hkstp_head .hkstp_menu.search .hkstp_search_bar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 5px 0px;
        margin: 0px 20px 0px 0px;
        border-bottom: 1px solid #CCC;
    }

        .hkstp_head .hkstp_menu.search .hkstp_search_bar:before {
            display: block;
            content: "";
            width: 24px;
            height: 24px;
            background: url(/img/svg/search.svg);
            background-repeat: no-repeat;
            background-position: center right;
            background-size: contain;
            margin-right: 10px;
            display: none;
        }

        .hkstp_head .hkstp_menu.search .hkstp_search_bar input[type=text] {
            border: none;
            background: none;
            outline: none;
            width: 25vw;
            max-width: 300px;
        }

        .hkstp_head .hkstp_menu.search .hkstp_search_bar .hkstp_search_submit {
            margin-left: 10px;
        }

    .hkstp_head .hkstp_menu.search .hkstp_menu_search:before {
        background-image: url(/img/svg/close.svg);
        background-size: 18px;
    }

.hkstp_search_submit span {
    display: none;
}

.hkstp_search_submit:before {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background: url(/img/svg/arrow.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 24px;
    filter: grayscale(1);
}

.hkstp_menu .hkstp_search_submit:before {
    display: none;
}

.hkstp_menu .hkstp_search_submit span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .hkstp_menu .hkstp_search_submit span:before {
        display: block;
        content: "";
        width: 24px;
        height: 24px;
        background: url(/img/svg/search.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: contain;
        margin-right: 5px;
    }

.hkstp_search_submit:hover:before {
    filter: grayscale(0);
}

@media screen and (max-width:959px) {
    .hkstp_head .hkstp_menu.search .hkstp_user {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .hkstp_head .hkstp_menu.search .hkstp_search_bar input[type=text] {
        width: 100%;
    }

    .hkstp_head .hkstp_menu.search .hkstp_menu_logo {
        display: none;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_user {
    margin: 0px 0px 0px 20px;
    padding: 10px 0px;
    position: relative;
}

    .hkstp_user .hkstp_user_btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .hkstp_user .hkstp_user_btn span:first-of-type {
            position: relative;
            padding-right: 20px;
        }

            .hkstp_user .hkstp_user_btn span:first-of-type:before {
                content: "";
                display: block;
                position: absolute;
                top: calc(50% - 2px);
                right: 8px;
                width: 4px;
                height: 4px;
                border-top: 1px solid #ff6b03;
                border-right: 1px solid #ff6b03;
                transform: rotate(135deg);
            }

        .hkstp_user .hkstp_user_btn span:last-of-type {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #223670;
            color: #FFF;
            margin-left: 10px;
        }

    .hkstp_user .hkstp_user_detail {
        display: none;
        text-align: center;
        position: absolute;
        top: 100%;
        right: 0px;
        border-top: 1px solid #ff6b03;
        background: #f7f7f7;
        padding: 40px 40px;
        min-width: 300px;
        box-shadow: rgba(0,0,0,0.1) 5px 5px 10px;
    }

    .hkstp_user.active .hkstp_user_detail {
        display: block;
    }

    .hkstp_user .hkstp_user_detail .image {
        display: block;
    }

        .hkstp_user .hkstp_user_detail .image img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: contain;
            object-position: center center;
        }

    .hkstp_user .hkstp_user_detail .name {
        font-size: 1.5em;
        font-weight: bold;
        color: #223670;
        display: block;
    }

    .hkstp_user .hkstp_user_detail .company {
        font-size: 1em;
        color: #000;
        opacity: 0.7;
        display: block;
        margin-bottom: 20px;
        font-size: 0.8em;
    }

    .hkstp_user .hkstp_user_detail .link {
        display: block;
        padding: 10px 20px 10px 0px;
        text-align: left;
        border-bottom: 1px solid #CCC;
        position: relative;
        font-size: 0.8em;
    }

        .hkstp_user .hkstp_user_detail .link:after {
            content: "";
            display: block;
            position: absolute;
            top: calc(50% - 2px);
            right: 8px;
            width: 4px;
            height: 4px;
            border-top: 1px solid #CCC;
            border-right: 1px solid #CCC;
            transform: rotate(45deg);
        }

        .hkstp_user .hkstp_user_detail .link:hover:after {
            border-top-color: #ff6b03;
            border-right-color: #ff6b03;
        }

    .hkstp_user .hkstp_user_detail .logout {
        background: #CCC;
        color: #000;
        display: inline-block;
        padding: 5px 40px;
        border-radius: 20px;
        margin-top: 20px;
    }

        .hkstp_user .hkstp_user_detail .logout:hover {
            background: #223670;
            color: #FFF;
        }

@media screen and (max-width:1023px) {
    .hkstp_head .hkstp_menu_logo img {
        height: 65px;
    }

    .hkstp_head.scrolled .hkstp_menu_logo img,
    .hkstp_head.mobile .hkstp_menu_logo img {
        height: 65px;
    }
}

@media screen and (max-width:959px) {
    .hkstp_user {
        margin: 0px;
    }

        .hkstp_user .hkstp_user_btn span:first-of-type {
            display: none;
        }

        .hkstp_user .hkstp_user_btn span:last-of-type {
            margin-right: 20px;
            margin-left: 0px;
        }

        .hkstp_user .hkstp_user_detail {
            right: -30px;
        }
}

@media screen and (max-width:767px) {
    .hkstp_head .hkstp_menu_logo img {
        height: 65px;
    }

    .hkstp_head.scrolled .hkstp_menu_logo img,
    .hkstp_head.mobile .hkstp_menu_logo img {
        height: 65px;
    }
}

@media screen and (min-width:960px) {
    .hkstp_user:hover .hkstp_user_detail {
        display: block;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_head .hkstp_menu_main .hkstp_menu_link,
.hkstp_head .hkstp_menu_main .hkstp_menu_btn {
    font-size: 16px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .hkstp_head .hkstp_menu_main .hkstp_menu_link:after,
    .hkstp_head .hkstp_menu_main .hkstp_menu_btn:after {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        margin-left: 5px;
        border-top: 1px solid #ff6b03;
        border-right: 1px solid #ff6b03;
        transform: rotate(45deg);
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_link:hover {
        color: #138fff;
    }

.hkstp_head .hkstp_menu_main .hkstp_menu_btn {
    border: 1px solid #CCC;
    border-radius: 20px;
    font-weight: bold;
    color: #223670;
}

    .hkstp_head .hkstp_menu_main .hkstp_menu_btn:hover {
        background: #f7f7f7;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_btn:after {
        border-top-color: #223670;
        border-right-color: #223670;
    }

@media screen and (max-width:1279px) {
    .hkstp_head .hkstp_menu_main .hkstp_menu_item {
        font-size: 18px;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_subitem {
        font-size: 14px;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_link,
    .hkstp_head .hkstp_menu_main .hkstp_menu_btn {
        font-size: 14px;
    }
}
/*--------------------------------------------------------------------------------*/

.hkstp_head .hkstp_menu_main .hkstp_menu_search {
    margin: 0px 20px 0px 0px;
}

    .hkstp_head .hkstp_menu_main .hkstp_menu_search span {
        display: none;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_search:before {
        display: block;
        content: "";
        width: 24px;
        height: 24px;
        background: url(/img/svg/search.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: 24px;
        ;
        transition: none;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_search:hover:before {
        filter: brightness(0);
    }

.hkstp_head .hkstp_menu_main .hkstp_menu_sep {
    width: 1px;
    height: 30px;
    background: #ff6b03;
}

.hkstp_head .hkstp_menu_main .hkstp_menu_equiv {
    display: none;
    position: relative;
    width: 30px;
    height: 30px;
}

    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv span,
    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv:before,
    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        transform-origin: 50% 50%;
        transition: rotate(0deg);
        background: #223670;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv span {
        top: calc(50% - 1px);
        left: 0px;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv:before {
        top: 15%;
        left: 0px;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv:after {
        bottom: 15%;
        left: 0px;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv.active span {
        opacity: 0;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv.active:before {
        top: calc(50% - 1px);
        transform: rotate(45deg);
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv.active:after {
        bottom: calc(50% - 1px);
        transform: rotate(-45deg);
    }

@media screen and (max-width:959px) {
    .hkstp_head .hkstp_menu_main .hkstp_menu_item,
    .hkstp_head .hkstp_menu_main .hkstp_menu_link,
    .hkstp_head .hkstp_menu_main .hkstp_menu_sep,
    .hkstp_head .hkstp_menu_main .hkstp_menu_btn {
        display: none;
    }

    .hkstp_head .hkstp_menu_main .hkstp_menu_equiv {
        display: block;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_mobile {
    display: none;
    position: fixed;
    z-index: 98;
    width: 100%;
    height: 100%;
    top: 0px;
    right: -100%;
    background: rgba(255,255,255,0.95);
    padding-top: 100px;
    overflow: auto;
    transition: ease all 0.3s;
}

    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_item {
        font-size: 20px;
        margin: 10px 0px;
        padding: 0px 0px 10px 0px;
        border-bottom: 1px solid #CCC;
        position: relative;
    }

        .hkstp_mobile .hkstp_mobile_main .hkstp_menu_item a {
            display: block;
        }

    .hkstp_mobile .hkstp_mobile_main .hkstp_search_bar {
        display: none;
    }

    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_subitem {
        display: block;
        padding: 0px 0px 0px 20px;
    }

        .hkstp_mobile .hkstp_mobile_main .hkstp_menu_subitem a {
            margin: 10px 0px;
            font-size: 16px;
            position: relative;
        }

            .hkstp_mobile .hkstp_mobile_main .hkstp_menu_subitem a:after {
                content: "";
                display: block;
                position: absolute;
                top: calc(50% - 2px);
                right: 8px;
                width: 4px;
                height: 4px;
                border-top: 1px solid #999;
                border-right: 1px solid #999;
                transform: rotate(45deg);
            }

    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_link,
    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_btn {
        display: block;
        position: relative;
        margin: 10px 0px;
        font-size: 16px;
        color: #223670;
        font-size: 20px;
    }

        .hkstp_mobile .hkstp_mobile_main .hkstp_menu_link:after,
        .hkstp_mobile .hkstp_mobile_main .hkstp_menu_btn:after {
            content: "";
            display: block;
            position: absolute;
            top: calc(50% - 2px);
            right: 8px;
            width: 4px;
            height: 4px;
            border-top: 1px solid #ff6b03;
            border-right: 1px solid #ff6b03;
            transform: rotate(45deg);
        }

    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_sep,
    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_search,
    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_equiv {
        display: none;
    }

    .hkstp_mobile .hkstp_mobile_main .hkstp_user {
        display: none;
    }

    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_subitem a {
        font-size: 18px;
    }

    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_link + .hkstp_menu_item {
        margin-top: 20px;
    }

    .hkstp_mobile .lang {
        width: 20px;
        height: 20px;
        display: block;
    }

    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_item--lang > a {
        display: none;
    }

    .hkstp_mobile .hkstp_mobile_main .hkstp_menu_item--lang .hkstp_menu_subitem {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 0px;
    }

        .hkstp_mobile .hkstp_mobile_main .hkstp_menu_item--lang .hkstp_menu_subitem > a {
            padding: 0px;
            margin: 0px 30px 0px 0px;
            font-size: 20px;
        }

            .hkstp_mobile .hkstp_mobile_main .hkstp_menu_item--lang .hkstp_menu_subitem > a:after {
                display: none;
            }

@media screen and (max-width:959px) {
    .hkstp_mobile {
        display: block;
    }

        .hkstp_mobile.active {
            right: 0%;
        }
}
/*--------------------------------------------------------------------------------*/
.hkstp_head .hkstp_notice {
    background: #223670;
    color: #FFF;
    height: 45px;
    overflow: hidden;
    transition: ease all 0.3s;
}

.hkstp_head.scrolled .hkstp_notice,
.hkstp_head.mobile .hkstp_notice {
    height: 0px;
}

.hkstp_head .hkstp_notice a {
    display: inline-block;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    font-size: 15px;
    line-height: 40px;
    padding-right: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .hkstp_head .hkstp_notice a:hover {
        text-decoration: underline;
    }

    .hkstp_head .hkstp_notice a:after {
        content: "";
        display: block;
        position: absolute;
        width: 40px;
        height: 20px;
        top: calc(50% - 10px);
        right: 0px;
        background: url(/img/svg/arrow.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: 30px;
        filter: brightness(0) invert(1);
    }

/*================================================================================*/
/*FOOT */
/*================================================================================*/
.hkstp_foot {
    border-top: 1px solid #CCC;
    padding: 120px 0px 40px 0px;
}
    /*--------------------------------------------------------------------------------*/
    .hkstp_foot .hkstp_foot_action {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 80%;
    }

        .hkstp_foot .hkstp_foot_action a {
            font-size: 21px;
            margin: 0px 20px 20px 0px;
        }

            .hkstp_foot .hkstp_foot_action a:hover {
                color: #138fff;
            }
    /*--------------------------------------------------------------------------------*/
    .hkstp_foot .hkstp_foot_sns {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
        width: 34%;
    }

        .hkstp_foot .hkstp_foot_sns img {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        .hkstp_foot .hkstp_foot_sns a {
            margin: 0px 0px 20px 40px;
            filter: brightness(0);
        }

            .hkstp_foot .hkstp_foot_sns a:hover {
                opacity: 0.5;
                ;
            }
    /*--------------------------------------------------------------------------------*/
    .hkstp_foot .hkstp_foot_copy {
        padding: 60px 0px 0px 0px;
        font-size: 14px;
        opacity: 0.7;
    }

        .hkstp_foot .hkstp_foot_copy a:hover {
            text-decoration: underline;
        }

        .hkstp_foot .hkstp_foot_copy span {
            display: inline-block;
        }

        .hkstp_foot .hkstp_foot_copy > a {
            display: inline-block;
            margin-left: 10px;
            padding-left: 10px;
            border-left: 1px solid #000;
        }
/*--------------------------------------------------------------------------------*/
.hkstp_top {
    position: relative;
}

    .hkstp_top a {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -30px;
        right: 40px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #223670;
	z-index: 99;
    }

        .hkstp_top a:before {
            display: block;
            content: "";
            width: 10px;
            height: 10px;
            border-top: 1px solid #FFF;
            border-left: 1px solid #FFF;
            transform: rotate(45deg);
        }

        .hkstp_top a:hover {
            background: #138fff;
        }

        .hkstp_top a span {
            display: none;
        }

@media screen and (max-width:1279px) {
    .hkstp_foot .hkstp_foot_action a {
        font-size: 18px;
    }

    .hkstp_foot .hkstp_foot_copy {
        font-size: 14px;
    }
}

@media screen and (max-width:1023px) {
    .hkstp_foot .hkstp_foot_action a {
        font-size: 16px;
    }

    .hkstp_foot .hkstp_foot_copy {
        font-size: 13px;
    }

    .hkstp_top a {
        right: 20px;
    }
}

@media screen and (max-width:959px) {
    .hkstp_foot .hkstp_foot_action {
        width: 100%;
        justify-content: center;
    }

    .hkstp_foot .hkstp_foot_sns {
        width: 100%;
        justify-content: center;
        margin-top: 40px;
    }

    .hkstp_foot .hkstp_foot_action a:last-child {
        margin-right: 0px;
    }

    .hkstp_foot .hkstp_foot_sns a:first-child {
        margin-left: 0px;
    }

    .hkstp_foot .hkstp_foot_copy {
        text-align: center;
    }
}

@media screen and (max-width:767px) {
    .hkstp_foot .hkstp_foot_action a {
        font-size: 15px;
    }

    .hkstp_foot .hkstp_foot_copy {
        font-size: 12px;
    }
}

@media screen and (max-width:479px) {
    .hkstp_foot .hkstp_foot_action a {
        font-size: 14px;
    }

    .hkstp_foot .hkstp_foot_copy {
        font-size: 11px;
    }

    .hkstp_foot .hkstp_foot_action a {
        width: 100%;
    }

    .hkstp_foot .hkstp_foot_copy {
        text-align: left;
    }

        .hkstp_foot .hkstp_foot_copy > a {
            width: 100%;
            margin: 10px 0px 0px 0px;
            padding: 0px;
            border: none;
        }
}
/*================================================================================*/
/*HEADLINE */
/*================================================================================*/
.hkstp_headline {
    padding-top: 200px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

    .hkstp_headline.hkstp_headline--border {
        padding-bottom: 0px;
        border-bottom: 2px solid #223670;
    }


    .hkstp_headline .hkstp_canvas {
        position: absolute;
        top: 120px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

        .hkstp_headline .hkstp_canvas canvas {
            width: 100%;
            height: auto;
        }

        .hkstp_headline .hkstp_canvas:after {
            content: "";
            display: block;
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
        }

    .hkstp_headline .hkstp_main {
        position: relative;
    }

    .hkstp_headline .hkstp_row {
        align-items: flex-end;
    }

    .hkstp_headline h1 {
        font-size: 70px;
        line-height: 1.0em;
        color: #223670;
        margin: 0px;
        padding: 0px;
    }

    .hkstp_headline h2 {
        font-size: 20px;
        line-height: 1.0em;
        color: #000;
        margin: 20px 0px 20px 0px;
        padding: 0px;
    }

    .hkstp_headline h3 {
        font-size: 50px;
        line-height: 1.0em;
        color: #223670;
        margin: 20px 0px 0px 0px;
        padding: 0px;
    }

    .hkstp_headline h4 {
        font-size: 40px;
        line-height: 1.0em;
        color: #223670;
        margin: 20px 0px 0px 0px;
        padding: 0px;
    }

@media screen and (max-width:1479px) {
    .hkstp_headline h1 {
        font-size: 64px;
    }

    .hkstp_headline h2 {
        font-size: 20px;
    }

    .hkstp_headline h3 {
        font-size: 45px;
    }

    .hkstp_headline h4 {
        font-size: 36px;
    }
}

@media screen and (max-width:1279px) {
    .hkstp_headline h1 {
        font-size: 60px;
    }

    .hkstp_headline h2 {
        font-size: 18px;
    }

    .hkstp_headline h3 {
        font-size: 40px;
    }

    .hkstp_headline h4 {
        font-size: 32px;
    }
}

@media screen and (max-width:1023px) {
    .hkstp_headline h1 {
        font-size: 54px;
    }

    .hkstp_headline h2 {
        font-size: 18px;
    }

    .hkstp_headline h3 {
        font-size: 36px;
    }

    .hkstp_headline h4 {
        font-size: 28px;
    }

    .hkstp_headline .hkstp_col {
        width: 100%;
    }
}

@media screen and (max-width:767px) {
    .hkstp_headline h1 {
        font-size: 48px;
    }

    .hkstp_headline h2 {
        font-size: 16px;
    }

    .hkstp_headline h3 {
        font-size: 32px;
    }

    .hkstp_headline h4 {
        font-size: 24px;
    }
}

@media screen and (max-width:479px) {
    .hkstp_headline h1 {
        font-size: 45px;
    }

    .hkstp_headline h2 {
        font-size: 16px;
    }

    .hkstp_headline h3 {
        font-size: 28px;
    }

    .hkstp_headline h4 {
        font-size: 20px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_small_banner {
    width: calc(100% + 40px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .hkstp_small_banner a {
        position: relative;
        background: #223670;
        width: calc(33.33% - 40px);
        margin: 0px 40px 40px 0px;
    }

        .hkstp_small_banner a:before {
            content: "";
            display: block;
            padding-bottom: 50%;
        }

        .hkstp_small_banner a img {
            display: block;
            opacity: 1;
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .hkstp_small_banner a p {
            display: inline-block;
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: #FFF;
        }

            .hkstp_small_banner a p span {
                display: block;
            }

                .hkstp_small_banner a p span:first-of-type {
                    font-size: 33px;
                }

                .hkstp_small_banner a p span:last-of-type {
                    font-size: 18px;
                    display: none;
                    margin-bottom: 10px;
                }

            .hkstp_small_banner a p:after {
                display: block;
                content: "";
                width: 40px;
                height: 20px;
                background: url(/img/svg/arrow.svg);
                background-repeat: no-repeat;
                background-position: center right;
                background-size: cover;
                transform: translateX(0px);
                transition: ease all 0.3s;
                filter: brightness(0) invert(1);
            }

        .hkstp_small_banner a:hover img {
            opacity: 0.5;
        }

        .hkstp_small_banner a:hover p span:last-of-type {
            font-size: 18px;
            display: block;
        }

        .hkstp_small_banner a:hover p:after {
            transform: translateX(10px);
        }

@media screen and (max-width:1023px) {
    .hkstp_small_banner {
        width: calc(100% + 20px);
    }

        .hkstp_small_banner a {
            width: calc(50% - 20px);
            margin: 0px 20px 20px 0px;
        }
}

@media screen and (max-width:767px) {
    .hkstp_small_banner a {
        width: calc(100% - 20px);
        margin: 0px 20px 20px 0px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_crumb {
    margin: 40px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    .hkstp_crumb a {
        display: block;
        position: relative;
        padding: 0px 16px 0px 0px;
        margin: 0px 10px 10px 0px;
        font-size: 15px;
    }

        .hkstp_crumb a:hover {
            color: #138fff;
        }

        .hkstp_crumb a:after {
            content: "";
            display: block;
            position: absolute;
            top: calc(50% - 2px);
            right: 0px;
            width: 4px;
            height: 4px;
            border-top: 1px solid #000;
            border-right: 1px solid #000;
            transform: rotate(45deg);
        }

        .hkstp_crumb a:last-of-type {
                width: 100%;
                text-align: center;
                olor: #223670;
                font-size: 80px;
                font-weight: bold;
        cursor: default;
        margin: 0 auto;
            text-align: center;
            padding: 0px ;
        }

            .hkstp_crumb a:last-of-type:hover {
                /*color: #138fff;*/
                color: #223670;
        cursor: default;
            }

            .hkstp_crumb a:last-of-type:after {
                display: none;
            }

        .hkstp_crumb a .image {
            display: block;
            width: 128px;
            margin: 0px auto;
            position: relative;
        }

            .hkstp_crumb a .image:before {
                display: block;
                content: "";
                padding-bottom: 100%;
            }

            .hkstp_crumb a .image:after {
                display: block;
                content: "";
                position: absolute;
                bottom: 0px;
                right: 0px;
                width: 40px;
                height: 40px;
                background: #FFF;
                border-radius: 50%;
                background-image: url(/img/svg/camera.svg);
                background-size: 20px;
                background-repeat: no-repeat;
                background-position: center center;
            }

            .hkstp_crumb a .image img {
                position: absolute;
                top: 0px;
                left: 0px;
                width: 100%;
                height: 100%;
                display: block;
                border-radius: 50%;
                object-fit: cover;
                object-position: center center;
            }

        .hkstp_crumb a .name {
            font-size: 0.5em;
            display: block;
        }

        .hkstp_crumb a .company {
            font-size: 0.3em;
            display: block;
            color: #000;
            font-weight: normal;
        }

@media screen and (max-width:767px) {
    .hkstp_crumb {
        margin: 20px 0px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_company {
    text-align: center;
    font-size: 20px;
    margin: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    .hkstp_company a {
        margin: 0px 40px 10px 0px;
    }

        .hkstp_company a:hover {
            color: #223670;
        }

@media screen and (max-width:1023px) {
    .hkstp_crumb a:last-of-type {
            font-size: 64px;
        cursor: default;
        margin: 0 auto;
            text-align: center;
            padding: 0px ;
    }

    .hkstp_company {
        font-size: 18px;
    }
}

@media screen and (max-width:767px) {
    .hkstp_crumb a {
        font-size: 14px;
    }

        .hkstp_crumb a:last-of-type {
                font-size: 48px;
        cursor: default;
        margin: 0 auto;
            text-align: center;
            padding: 0px ;
        }

    .hkstp_company a {
        margin: 0px 20px 10px 0px;
    }

    .hkstp_company {
        font-size: 16px;
    }
}

@media screen and (max-width:479px) {
    .hkstp_crumb a {
        font-size: 12px;
    }

        .hkstp_crumb a:last-of-type {
                font-size: 36px;
        cursor: default;
        margin: 0 auto;
            text-align: center;
            padding: 0px ;
        }

    .hkstp_company {
        font-size: 14px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_company_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0px auto;
}

    .hkstp_company_btn p {
        width: 100%;
        margin: 0px 0px 20px 0px;
        text-align: center;
        line-height: 1.5em;
    }

    .hkstp_company_btn > a {
        display: block;
        background: #ff6b03;
        color: #FFF;
        padding: 15px 30px 15px 60px;
        margin: 0px 10px 10px 0px;
        border-radius: 30px;
        position: relative;
    }

        .hkstp_company_btn > a:before {
            content: "";
            display: block;
            position: absolute;
            width: 16px;
            height: 16px;
            top: calc(50% - 8px);
            left: 20px;
            background-image: url(/img/svg/clock.svg);
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
            filter: brightness(0) invert(1);
        }

        .hkstp_company_btn > a.chat:before {
            background-image: url(/img/svg/messenger.svg);
        }

        .hkstp_company_btn > a.book:before {
            background-image: url(/img/plus.png);
            background-size: 15px;
        }

        .hkstp_company_btn > a:hover {
            background: #138fff;
        }

@media screen and (max-width:1023px) {
    .hkstp_company_btn a {
        padding: 10px 10px 10px 30px;
    }

    .hkstp_company_btn > a:before {
        left: 10px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_company_text {
    text-align: center;
    max-width: 1000px;
    margin: 40px auto;
}

.hkstp_company_info {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

    .hkstp_company_info .hkstp_company_info_logo {
        width: 20%;
        padding-right: 40px;
        border-right: 1px solid #CCC;
    }

        .hkstp_company_info .hkstp_company_info_logo img {
            max-width: 200px;
            height: auto;
            width: 100%;
        }

    .hkstp_company_info .hkstp_company_info_fact {
        width: 40%;
        padding-right: 40px;
        padding-left: 40px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        border-right: 1px solid #CCC;
    }

        .hkstp_company_info .hkstp_company_info_fact div {
            margin: 0px 20px 20px 0px;
            min-width: calc(33% - 20px);
        }

            .hkstp_company_info .hkstp_company_info_fact div span {
                display: block;
            }

                .hkstp_company_info .hkstp_company_info_fact div span:first-of-type {
                    color: #223670;
                    font-weight: bold;
                }

                .hkstp_company_info .hkstp_company_info_fact div span:last-of-type {
                    color: #999;
                    font-size: 0.8em;
                }

    .hkstp_company_info .hkstp_company_info_contact {
        padding-left: 40px;
    }

        .hkstp_company_info .hkstp_company_info_contact a {
            position: relative;
            display: block;
            margin: 0px 0px 10px 0px;
            padding: 0px 0px 0px 30px;
        white-space: break-spaces
        }

            .hkstp_company_info .hkstp_company_info_contact a:before {
                content: "";
                display: block;
                position: absolute;
                line-height: 20px;
                width: 20px;
                height: 20px;
                top: 0px;
                left: 0px;
                background-image: url(/img/svg/earth.svg);
                background-position: center center;
                background-size: cover;
                background-repeat: no-repeat;
            }

            .hkstp_company_info .hkstp_company_info_contact a.addr:before {
                background-image: url(/img/svg/location.svg);
            }


@media screen and (max-width:1023px) {
    .hkstp_company_info {
        flex-wrap: wrap;
    }

        .hkstp_company_info .hkstp_company_info_logo {
            width: 100%;
            padding: 0px 20px 0px 0px;
            border-right: none;
            border-bottom: 1px solid #CCC;
        }

        .hkstp_company_info .hkstp_company_info_fact {
            width: 100%;
            padding: 20px 0px;
            border-right: none;
            border-bottom: 1px solid #CCC;
        }

        .hkstp_company_info .hkstp_company_info_contact {
            width: 100%;
            padding: 20px 0px 0px 0px;
        }
}
/*--------------------------------------------------------------------------------*/
.hkstp_img {
    position: relative;
    background: #000;
}

    .hkstp_img:before {
        content: "";
        display: block;
        padding-bottom: 55%;
    }

    .hkstp_img img,
    .hkstp_img video {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .hkstp_img a {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        display: block;
        background: rgba(0,0,0,0.5);
    }

        .hkstp_img a:hover {
            background: rgba(0,0,0,0);
        }

        .hkstp_img a:before {
            content: "";
            display: block;
            position: absolute;
            top: calc(50% - 40px);
            left: calc(50% - 40px);
            width: 80px;
            height: 80px;
            background: #000;
            border-radius: 50%;
        }

        .hkstp_img a:after {
            content: "";
            display: block;
            position: absolute;
            top: calc(50% - 12px);
            left: calc(50% - 6px);
            width: 0px;
            height: 0px;
            border-width: 12px;
            border-style: solid;
            border-color: transparent transparent transparent #FFF;
            transform: scaleY(0.8);
        }

.hkstp_company_img {
    margin-top: 40px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(100% + 40px);
}

    .hkstp_company_img .hkstp_img {
        width: calc(50% - 40px);
        margin: 0px 40px 40px 0px;
    }

@media screen and (max-width:1023px) {
    .hkstp_company_img {
        width: calc(100% + 20px);
    }

        .hkstp_company_img .hkstp_img {
            width: calc(50% - 20px);
            margin: 0px 20px 20px 0px;
        }
}

@media screen and (max-width:767px) {
    .hkstp_company_img {
        width: calc(100% + 0px);
    }

        .hkstp_company_img .hkstp_img {
            width: calc(100% - 0px);
            margin: 0px 0px 20px 0px;
        }
}
/*--------------------------------------------------------------------------------*/
.hkstp_gallery {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(100% + 20px);
}

    .hkstp_gallery .hkstp_gallery_item {
        position: relative;
        width: calc(33.33% - 20px);
        margin: 0px 20px 20px 0px;
    }

@media screen and (max-width:1023px) {
    .hkstp_gallery .hkstp_gallery_item {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width:767px) {
    .hkstp_gallery {
        width: 100%;
    }

        .hkstp_gallery .hkstp_gallery_item {
            width: calc(100% - 0px);
            margin: 0px 0px 20px 0px;
        }
}
/*--------------------------------------------------------------------------------*/
.hkstp_solution .hkstp_solution_item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0px;
    border-bottom: 1px solid #CCC;
}

.hkstp_solution .hkstp_solution_img {
    width: 300px;
}

.hkstp_solution .hkstp_solution_txt {
    width: calc(100% - 300px);
    padding-left: 40px;
}

@media screen and (max-width:1023px) {
    .hkstp_solution .hkstp_solution_img {
        width: 200px;
    }

    .hkstp_solution .hkstp_solution_txt {
        width: calc(100% - 200px);
        padding-left: 20px;
    }
}

@media screen and (max-width:767px) {
    .hkstp_solution .hkstp_solution_item {
        flex-wrap: wrap;
    }

    .hkstp_solution .hkstp_solution_txt {
        width: calc(100%);
        padding-left: 0px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_news .hkstp_news_item {
    padding: 20px 0px;
    border-bottom: 1px solid #CCC;
}

    .hkstp_news .hkstp_news_item h5 {
        margin-bottom: 0px;
    }

    .hkstp_news .hkstp_news_item p {
        margin-top: 10px;
    }
/*--------------------------------------------------------------------------------*/
.hkstp_btn {
    display: inline-block;
    background: #ff6b03;
    color: #FFF;
    border: 1px solid #ff6b03;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
}

    .hkstp_btn:hover {
        background: #138fff;
        border-color: #138fff;
    }

.hkstp_btn--white {
    border-color: #999;
    background: #FFF;
    color: #223670;
}

    .hkstp_btn--white:hover {
        background: #138fff;
        border-color: #138fff;
        color: #FFF;
    }

.hkstp_btn--upload {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

    .hkstp_btn--upload:before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url(/img/svg/upload.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 16px;
        margin-right: 10px;
        filter: invert(1);
    }

.hkstp_btn--edit {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

    .hkstp_btn--edit:before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        background-image: url(/img/svg/edit.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 16px;
        margin-right: 10px;
    }

    .hkstp_btn--edit:hover:before {
        filter: invert(1);
    }

.hkstp_btn--del:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(/img/svg/delete.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px;
    margin-right: 10px;
}

.hkstp_btn--del:hover:before {
    filter: invert(1);
}

.hkstp_btn--cal {
    display: inline-block;
    padding: 0px !important;
    padding: 0px;
    width: 46px;
    height: 46px;
}

    .hkstp_btn--cal:before {
        content: "";
        display: inline-block;
        width: 100%;
        height: 100%;
        background-image: url(/img/svg/calendar.svg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 16px;
    }

    .hkstp_btn--cal:hover:before {
        filter: brightness(0) invert(1);
    }

@media screen and (max-width:1023px) {
    .hkstp_btn {
        padding: 10px 20px;
    }

    .hkstp_btn--cal {
        width: 38px;
        height: 38px;
    }
}

@media screen and (max-width:767px) {
    .hkstp_btn {
        padding: 8px 15px;
    }

    .hkstp_btn--cal {
        width: 32px;
        height: 32px;
    }
}
/*================================================================================*/
/*BODY */
/*================================================================================*/
.hkstp_body {
    padding-bottom: 120px;
    position: relative;
}

    .hkstp_body h3 {
        font-size: 50px;
        font-weight: bold;
        margin: 20px 0px;
        color: #223670;
    }

    .hkstp_body h4 {
        font-size: 18px;
        font-weight: bold;
        margin: 20px 0px;
    }

    .hkstp_body h5 {
        font-size: 28px;
        font-weight: bold;
        margin: 20px 0px;
    }

    .hkstp_body h6 {
        font-size: 18px;
        font-weight: normal;
        margin: 20px 0px;
        line-height: 2em;
    }

    .hkstp_body p {
        font-size: 18px;
        font-weight: normal;
        margin: 20px 0px;
        line-height: 1.5em;
    }

    .hkstp_body li {
        font-size: 14px;
    }

    .hkstp_body th {
        font-size: 18px;
    }

    .hkstp_body td {
        font-size: 14px;
    }

    .hkstp_body ul {
        padding: 0px;
        margin: 20px 0px;
    }

        .hkstp_body ul li {
            display: block;
            list-style: none;
            position: relative;
            padding: 0px 0px 0px 16px;
            margin: 0px 0px 5px 0px;
        }

            .hkstp_body ul li::before {
                content: "";
                display: block;
                position: absolute;
                width: 4px;
                height: 4px;
                top: 6px;
                left: 0px;
                background: #138fff;
                border-radius: 50%;
            }

    .hkstp_body hr {
        border: none;
        border-top: 1px solid #CCC;
        margin: 60px 0px;
    }

    .hkstp_body .center {
        text-align: center;
    }

@media screen and (max-width:1279px) {
    .hkstp_body h3 {
        font-size: 45px;
    }
}

@media screen and (max-width:1023px) {
    .hkstp_body h3 {
        font-size: 40px;
    }

    .hkstp_body h4 {
        font-size: 16px;
    }

    .hkstp_body h5 {
        font-size: 24px;
    }

    .hkstp_body h6 {
        font-size: 16px;
    }

    .hkstp_body p {
        font-size: 16px;
    }

    .hkstp_body li {
        font-size: 14px;
    }

    .hkstp_body th {
        font-size: 16px;
    }

    .hkstp_body td {
        font-size: 14px;
    }
}

@media screen and (max-width:767px) {
    .hkstp_body h3 {
        font-size: 40px;
    }

    .hkstp_body h4 {
        font-size: 15px;
    }

    .hkstp_body h5 {
        font-size: 18px;
    }

    .hkstp_body h6 {
        font-size: 15px;
    }

    .hkstp_body p {
        font-size: 15px;
    }

    .hkstp_body li {
        font-size: 13px;
    }

    .hkstp_body th {
        font-size: 15px;
    }

    .hkstp_body td {
        font-size: 13px;
    }
}


@media screen and (max-width:535px) {
    .hkstp_form .hkstp_input--profile input[type="text"],
    .hkstp_form .hkstp_input--profile input[type="password"],
    .hkstp_form .hkstp_input--profile select,
    .hkstp_form .hkstp_input--profile textarea,
    .hkstp_form .hkstp_input--profile .display {
        padding: 0px 20px;
    }
}

@media screen and (max-width:479px) {
    .hkstp_body h3 {
        font-size: 36px;
    }

    .hkstp_body h4 {
        font-size: 14px;
    }

    .hkstp_body h5 {
        font-size: 16px;
    }

    .hkstp_body h6 {
        font-size: 14px;
    }

    .hkstp_body p {
        font-size: 14px;
    }

    .hkstp_body li {
        font-size: 12px;
    }

    .hkstp_body th {
        font-size: 14px;
    }

    .hkstp_body td {
        font-size: 12px;
    }

}
/*--------------------------------------------------------------------------------*/
.hkstp_arr {
    display: inline-block;
    position: relative;
    height: 1em;
    line-height: 1em;
    padding-right: 40px;
    font-size: 16px;
}

    .hkstp_arr span {
        display: none;
    }

    .hkstp_arr:hover {
        color: #ff6b03;
    }

    .hkstp_arr:after {
        content: "";
        display: block;
        position: absolute;
        width: 40px;
        height: 20px;
        top: calc(50% - 10px);
        right: 0px;
        background-image: url(/img/svg/arrow.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: contain;
        transform: translateX(0px);
    }

    .hkstp_arr:hover:after {
        transform: translateX(5px);
    }

.hkstp_table .hkstp_arr:not(.hkstp_arr--bookmark):after {
    background-image: url(/img/svg/arrow2.svg);
    height: 30px;
}

.hkstp_arr--bookmark:after {
    width: 30px;
    height: 30px;
    background-image: url(/img/plus.png);
    background-size: 20px;
    background-position: center center;
    margin-top: 0px;
}

.hkstp_arr--bookmark:hover:after {
    transform: translateX(0px);
}
/*--------------------------------------------------------------------------------*/
.hkstp_table {
    width: 100%;
    overflow: auto;
}

    .hkstp_table table {
        border-spacing: 0px 10px;
    }

        .hkstp_table table tr th {
            text-align: left;
            padding: 0px 20px;
        }

        .hkstp_table table tr td {
            background: #f7f7f7;
            padding: 10px 20px;
        }

            .hkstp_table table tr td:first-of-type {
                border-radius: 10px 0px 0px 10px;
            }

            .hkstp_table table tr td:last-of-type {
                border-radius: 0px 10px 10px 0px;
            }

.hkstp_table--company td img {
    display: block;
    max-width: 120px;
    width: 100%;
    height: auto;
}

.hkstp_table--company td:nth-of-type(1) {
    width: 160px;
}

.hkstp_table--company td:nth-of-type(2) {
    width: calc(30% - 190px);
}

.hkstp_table--company td:nth-of-type(3) {
    width: 35%;
}

.hkstp_table--company td:nth-of-type(4) {
    width: 35%;
}

.hkstp_table--company td:nth-of-type(5) {
    width: 30px;
    vertical-align: center;
}

@media screen and (max-width:767px) {

    .hkstp_table--company table,
    .hkstp_table--company tbody,
    .hkstp_table--company table tr,
    .hkstp_table--company table tr td {
        display: block;
        width: 100% !important;
        background: none;
        padding: 0px;
        border-radius: 0px;
    }

        .hkstp_table--company table tr {
            background: #f7f7f7;
            border-radius: 10px;
            margin: 10px 0px;
            padding: 20px 20px 40px 20px;
        }

            .hkstp_table--company table tr:first-of-type {
                display: none;
            }

    .hkstp_table--company h4 {
        margin: 0px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_paging {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0px;
}

    .hkstp_paging .hkstp_paging_prev,
    .hkstp_paging .hkstp_paging_next {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #223670;
        color: #FFF;
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }

    .hkstp_paging .hkstp_paging_prev {
        margin-right: 40px;
    }

    .hkstp_paging .hkstp_paging_next {
        margin-left: 40px;
    }

        .hkstp_paging .hkstp_paging_prev:hover,
        .hkstp_paging .hkstp_paging_next:hover {
            background: #138fff;
        }

        .hkstp_paging .hkstp_paging_prev span,
        .hkstp_paging .hkstp_paging_next span {
            display: none;
        }

        .hkstp_paging .hkstp_paging_prev:before,
        .hkstp_paging .hkstp_paging_next:before {
            display: block;
            content: "";
            width: 10px;
            height: 10px;
            border-top: 1px solid #FFF;
            border-left: 1px solid #FFF;
            transform: rotate(-45deg);
        }

        .hkstp_paging .hkstp_paging_next:before {
            transform: rotate(135deg);
        }

    .hkstp_paging .hkstp_paging_cur {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #FFF;
        color: #000;
        border: 1px solid #CCC;
        ;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0px 10px;
    }

@media screen and (max-width:767px) {
    .hkstp_paging .hkstp_paging_cur,
    .hkstp_paging .hkstp_paging_prev,
    .hkstp_paging .hkstp_paging_next {
        width: 40px;
        height: 40px;
    }

    .hkstp_paging .hkstp_paging_prev {
        margin-right: 20px;
    }

    .hkstp_paging .hkstp_paging_next {
        margin-left: 20px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_tab {
    margin-top: 40px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: no-wrap;
}

    .hkstp_tab a {
        display: block;
        margin: 5px 5px 0px 5px;
        padding: 15px 30px;
        background: #f7f7f7;
        color: #223670;
        border-radius: 10px 10px 0px 0px;
    }

        .hkstp_tab a:hover,
        .hkstp_tab a.active {
            background: #223670;
            color: #FFF;
        }


@media screen and (max-width:767px) {
    .hkstp_tab {
    display: flex;
        justify-content: flex-start;
    }

        .hkstp_tab a {
            width: calc(50% - 10px);
            margin: 5px;
            border-radius: 10px;
        text-align: center;
        }
}

@media screen and (max-width:490px) {
    .hkstp_tab {
        display: block;
    
    }

        .hkstp_tab a {
            width: 100%;
            margin: 5px;
            border-radius: 10px;
        text-align: center;
        white-spaec: break-spaces;
        }
}

/*--------------------------------------------------------------------------------*/
.hkstp_row--arrow .hkstp_col:first-of-type {
    padding-right: 40px;
}

.hkstp_row--arrow h3,
.hkstp_row--arrow h4,
.hkstp_row--arrow h5,
.hkstp_row--arrow h6,
.hkstp_row--arrow p {
    max-width: 540px;
}

.hkstp_row--arrow h3 {
    margin-left: auto;
}

    .hkstp_row--arrow h3 a {
        display: block;
        width: 100%;
        position: relative;
        padding-right: 200px;
    }

        .hkstp_row--arrow h3 a:before,
        .hkstp_row--arrow h3 a:after {
            content: "";
            display: block;
            position: absolute;
            bottom: 10px;
            right: 0px;
            width: 200px;
            border-bottom: 2px solid #223670;
        }

        .hkstp_row--arrow h3 a:before {
            width: 20px;
            transform: rotate(45deg);
            transform-origin: 100% 50%;
        }

        .hkstp_row--arrow h3 a:hover {
            color: #138fff;
        }

@media screen and (max-width:1279px) {
    .hkstp_row--arrow h3 {
        max-width: 400px;
    }

        .hkstp_row--arrow h3 a {
            padding-right: 150px;
        }

            .hkstp_row--arrow h3 a:after {
                width: 150px;
            }
}

@media screen and (max-width:1023px) {
    .hkstp_row--arrow .hkstp_col {
        width: 100%;
    }

    .hkstp_row--arrow h3 {
        margin-left: 0px;
    }

    .hkstp_row--arrow h3 {
        max-width: 360px;
    }

        .hkstp_row--arrow h3 a {
            padding-right: 120px;
        }

            .hkstp_row--arrow h3 a:after {
                width: 120px;
            }
}

@media screen and (max-width:767px) {
    .hkstp_row--arrow h3 a {
        padding-right: 90px;
    }

        .hkstp_row--arrow h3 a:after {
            width: 90px;
        }
}

@media screen and (max-width:479px) {
    .hkstp_row--arrow h3 a {
        padding-right: 60px;
    }

        .hkstp_row--arrow h3 a:after {
            width: 60px;
        }
}
/*================================================================================*/
/*FORM */
/*================================================================================*/
.hkstp_enquiry {
    max-width: 600px;
    margin: 0px auto;
}

.hkstp_form {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(100% + 40px);
}

.hkstp_form--sml {
    max-width: 720px;
    margin: 0px auto;
}

.hkstp_form .hkstp_input {
    width: calc(100% - 40px);
    margin: 0px 40px 20px 0px;
    display: block;
    position: relative;
}

    .hkstp_form .hkstp_input.half {
        width: calc(50% - 40px);
    }

    .hkstp_form .hkstp_input input[type="text"],
    .hkstp_form .hkstp_input input[type="date"],
    .hkstp_form .hkstp_input input[type="time"],
    .hkstp_form .hkstp_input input[type="password"],
    .hkstp_form .hkstp_input textarea,
    .hkstp_form .hkstp_input select {
        display: block;
        width: 100%;
        color: #000;
        font-size: 16px;
        border: none;
        background: none;
    }

    .hkstp_form .hkstp_input input[type="text"],
    .hkstp_form .hkstp_input input[type="date"],
    .hkstp_form .hkstp_input input[type="time"],
    .hkstp_form .hkstp_input input[type="password"],
    .hkstp_form .hkstp_input select {
        min-height: 48px;
        padding-left: 10px
    }

    .hkstp_form .hkstp_input input[type="date"],
    .hkstp_form .hkstp_input input[type="time"] {
        padding: 0px 20px;
    }

    .hkstp_form .hkstp_input textarea {
        min-height: 240px;
        resize: none;
        padding: 10px 20px;
    }

    .hkstp_form .hkstp_input .display,
    .hkstp_form .hkstp_input select {
        background-image: url(/img/svg/select.svg);
        background-position: center right 5px;
        background-repeat: no-repeat;
        background-size: 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .hkstp_form .hkstp_input input[type="file"] {
        display: none;
    }

    .hkstp_form .hkstp_input .label {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 0px 0px 10px 0px;
        font-weight: bold;
    }

    .hkstp_form .hkstp_input.notnull .label:after {
        content: "*";
        display: block;
        margin-left: 10px;
        color: #ff6b03;
    }

    .hkstp_form .hkstp_input .desc {
        display: block;
        margin-bottom: 10px;
        max-width: 720px;
    }

    .hkstp_form .hkstp_input .word {
        display: block;
        text-align: right;
        margin-top: 10px;
    }
/*--------------------------------------------------------------------------------*/
.hkstp_form .hkstp_input_file {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/*--------------------------------------------------------------------------------*/
.hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn {
    width: 200px;
    margin: 0px 20px 20px 0px;
}

    .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .image {
        position: relative;
    }

        .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .image:before {
            content: "";
            display: block;
            padding-bottom: 75%;
        }

        .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .image .upload {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background: #223670;
            color: #FFF;
            cursor: pointer;
        }

            .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .image .upload:before {
                content: "";
                display: block;
                width: 16px;
                height: 16px;
                background-image: url(/img/svg/upload.svg);
                background-position: center center;
                background-repeat: no-repeat;
                background-size: 16px;
                margin-bottom: 10px;
                filter: invert(1);
            }

            .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .image .upload:hover {
                background: #138fff;
            }

        .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .image img {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }

        .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .image .file_del {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #CCC;
            border-radius: 50%;
            background: #FFF;
        }

            .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .image .file_del:hover {
                color: #FFF;
                background: #223670;
            }

    .hkstp_form .hkstp_input_file--photo .hkstp_input_file_btn .file_name {
        display: block;
        margin-top: 5px;
        font-size: 0.8em;
        word-break: break-all;
    }
/*--------------------------------------------------------------------------------*/

.hkstp_form .hkstp_input_file--file .hkstp_input_file_btn {
    margin: 0px 20px 20px 0px;
    max-width: 100%;
}

    .hkstp_form .hkstp_input_file--file .hkstp_input_file_btn .file_item {
        display: block;
        position: relative;
        padding: 12px 40px 12px 20px;
        border-radius: 10px;
        background: #CCC;
    }

    .hkstp_form .hkstp_input_file--file .hkstp_input_file_btn .file_name {
        word-break: break-all;
    }

    .hkstp_form .hkstp_input_file--file .hkstp_input_file_btn .file_del {
        position: absolute;
        top: 0px;
        right: 10px;
        width: 20px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .hkstp_form .hkstp_input_file--file .hkstp_input_file_btn .file_del:hover {
            color: #F00;
        }

    .hkstp_form .hkstp_input_file--file .hkstp_input_file_btn:last-child {
        width: 100%;
    }
/*--------------------------------------------------------------------------------*/
.hkstp_form .hkstp_input--sel {
    border-bottom: 1px solid #CCC;
}

.hkstp_form .hkstp_input--search {
    position: relative;
    border: 1px solid #CCC;
    border-radius: 24px;
    background: #FFF;
}

    .hkstp_form .hkstp_input--search input[type="text"],
    .hkstp_form .hkstp_input--search input[type="password"] {
        padding: 0px 50px;
        min-height: 48px;
    }

    .hkstp_form .hkstp_input--search:after {
        position: absolute;
        top: calc(50% - 12px);
        left: 12px;
        display: block;
        content: "";
        width: 24px;
        height: 24px;
        background: url(/img/svg/search.svg);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: 24px;
    }

    .hkstp_form .hkstp_input--search .hkstp_search_submit {
        position: absolute;
        top: calc(50% - 12px);
        right: 12px;
    }

.hkstp_form .hkstp_input--text {
    border: 1px solid #CCC;
    border-radius: 10px;
    background: #FFF;
}

    .hkstp_form .hkstp_input--text select,
    .hkstp_form .hkstp_input--text input[type="text"],
    .hkstp_form .hkstp_input--text input[type="password"] {
        padding: 0px 20px;
    }

.hkstp_form .hkstp_input--profile input[type="text"],
.hkstp_form .hkstp_input--profile input[type="password"],
.hkstp_form .hkstp_input--profile select,
.hkstp_form .hkstp_input--profile textarea,
.hkstp_form .hkstp_input--profile .display {
    border: 1px solid #CCC;
    border-radius: 10px;
    background-color: #FFF;
    padding: 0px 20px;
}

.hkstp_form .hkstp_input--profile .display {
    min-height: 48px;
    line-height: 48px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disabled .hkstp_input--profile .display {
    opacity: 0.6;
}

.hkstp_form .hkstp_input--profile .display,
.hkstp_form .hkstp_input--profile select {
    background-position: center right 20px;
    padding: 0px 40px 0px 20px;
}

.hkstp_form .hkstp_input--profile textarea {
    padding: 20px;
    min-height: 200px;
}

.hkstp_input_dropmulti {
    position: relative;
}

.hkstp_input_dropmulti_drop {
    display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0px;
    min-width: 100%;
    max-height: 300px;
    overflow: auto;
    background: #FFF;
    border: 1px solid #CCC;
    border-radius: 10px;
    padding: 10px;
}

.hkstp_input_dropmulti.open .hkstp_input_dropmulti_drop {
    display: block;
}

    .hkstp_input_dropmulti.open .hkstp_input_dropmulti_drop label {
        cursor: pointer;
    }
/*--------------------------------------------------------------------------------*/
@media screen and (max-width:1279px) {
    .hkstp_form .hkstp_input input,
    .hkstp_form .hkstp_input textarea,
    .hkstp_form .hkstp_input select {
        font-size: 18px;
    }
}

@media screen and (max-width:1023px) {
    .hkstp_form {
        width: calc(100% + 20px);
    }

        .hkstp_form .hkstp_input {
            width: calc(100% - 20px);
            margin: 0px 20px 20px 0px;
        }

            .hkstp_form .hkstp_input.half {
                width: calc(50% - 20px);
            }

            .hkstp_form .hkstp_input input,
            .hkstp_form .hkstp_input textarea,
            .hkstp_form .hkstp_input select {
                font-size: 16px;
            }
}

@media screen and (max-width:767px) {
    .hkstp_form .hkstp_input input,
    .hkstp_form .hkstp_input textarea,
    .hkstp_form .hkstp_input select {
        font-size: 16px;
    }

    .hkstp_form .hkstp_input.half {
        width: calc(100% - 20px);
    }
}

@media screen and (max-width:479px) {
    .hkstp_form .hkstp_input input,
    .hkstp_form .hkstp_input textarea,
    .hkstp_form .hkstp_input select {
        font-size: 16px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_profile.disabled input,
.hkstp_profile.disabled select,
.hkstp_profile.disabled textarea {
    opacity: 0.6;
}

.hkstp_profile.disabled .hkstp_input_file .hkstp_input_file_btn:last-child {
    display: none;
}

.hkstp_profile.disabled .hkstp_input_file .file_del {
    display: none;
}

.hkstp_profile.disabled .hkstp_input_file--photo .hkstp_input_file_btn .image .file_del {
    display: none;
}

.hkstp_profile.disabled .unlock {
    display: none;
}

.hkstp_profile:not(.disabled) .lock {
    display: none;
}

.hkstp_profile_form {
    background: #f7f7f7;
    padding: 40px 80px 80px 80px;
}

.hkstp_profile_action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 40px 0px;
}

    .hkstp_profile_action h5 {
        color: #223670;
        margin: 0px;
        min-width: 50%;
        padding-right: 40px;
    }

    .hkstp_profile_action .hkstp_btn {
        margin: 0px 0px 0px 20px;
    }

    .hkstp_profile_action .notnull {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
    }

        .hkstp_profile_action .notnull:before {
            color: #ff6b03;
            content: "*";
            margin-right: 10px;
        }

@media screen and (max-width:1279px) {
    .hkstp_profile_form {
        padding: 20px 40px 40px 40px;
    }
}

@media screen and (max-width:1023px) {
    .hkstp_profile_form {
        padding: 20px 20px 40px 20px;
    }

    .hkstp_profile_action .hkstp_btn {
        margin: 0px 0px 0px 10px;
    }
}

@media screen and (max-width:767px) {
    .hkstp_profile_form {
        padding: 20px 20px 40px 20px;
    }

    .hkstp_profile_action .hkstp_btn {
        margin: 0px 0px 0px 5px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0px 10px 0px;
}

    .hkstp_checkbox span {
        display: block;
        padding-left: 10px;
        flex: 1;
    }

.hkstp_checklist {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-height: 48px;
}

    .hkstp_checklist .hkstp_checkbox {
        margin: 10px 20px 10px 0px;
    }
/*--------------------------------------------------------------------------------*/
input[type="radio"] {
    position: relative;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-bottom: 2px;
    margin-left: 2px;
    background-color: transparent;
    border: 1px solid transparent;
}

    input[type="radio"]:before {
        content: "";
        position: absolute;
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        border: 1px solid #CCC;
        top: -1px;
        left: -1px;
        background-color: #FFF;
    }

    input[type="radio"]:checked:after {
        content: "";
        position: absolute;
        width: 11px;
        height: 11px;
        top: 2px;
        left: 2px;
        background-color: #ff6b03;
        border-radius: 50%;
    }
/*--------------------------------------------------------------------------------*/
input[type="checkbox"] {
    position: relative;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-bottom: 2px;
    margin-left: 2px;
    background-color: transparent;
    border: 1px solid transparent;
}

    input[type="checkbox"]:before {
        content: "";
        position: absolute;
        display: inline-block;
        width: 15px;
        height: 15px;
        border: 1px solid #CCC;
        top: -1px;
        left: -1px;
        background-color: #FFF;
    }

    input[type="checkbox"]:checked:after {
        content: "";
        position: absolute;
        width: 13px;
        height: 13px;
        top: 1px;
        left: 1px;
        background-color: #ff6b03;
        background-size: 10px;
        background-position: center center;
        background-repeat: no-repeat;
    }

/* -------------------------------------------------------------------------------- */
/* COMPO - CALENDAR */
/* -------------------------------------------------------------------------------- */
.hkstp_calendar table {
    width: 100%;
    border-spacing: 0px;
}

    .hkstp_calendar table th, .hkstp_calendar table td {
        width: 14%;
        text-align: center;
        vertical-align: middle;
        padding: 0px;
    }

    .hkstp_calendar table th {
        color: #999;
        font-weight: normal;
        padding: 8px 0px;
    }

    .hkstp_calendar table td > div {
        position: relative;
        max-width: 48px;
        width: 100%;
        margin: 0px auto;
        overflow: hidden;
    }

        .hkstp_calendar table td > div:before {
            content: "";
            display: block;
            padding-bottom: 100%;
        }

        .hkstp_calendar table td > div > span {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .hkstp_calendar table td.today > div > span {
        background: #FF6B00;
        color: #FFF;
        border-radius: 50%;
    }

    .hkstp_calendar table td.other {
        opacity: 0.1;
    }

/* -------------------------------------------------------------------------------- */
.hkstp_calendar .hkstp_calendar_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px;
    padding: 0px 20px;
}

    .hkstp_calendar .hkstp_calendar_nav .hkstp_date {
        min-width: 150px;
        text-align: center;
        font-weight: bold;
    }

    .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_next,
    .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_prev {
        width: 40px;
        height: 40px;
        display: block;
        border: 1px solid #CCC;
        border-radius: 50%;
    }

        .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_next:before,
        .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_prev:before {
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            background-image: url(/img/svg/arrow.svg);
            ;
            background-position: center center;
            background-repeat: no-repeat;
            background-size: 20px;
            filter: brightness(0);
        }

        .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_prev:before {
            transform: rotate(180deg);
        }

        .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_next:before {
            transform: rotate(0deg);
        }

        .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_next:hover,
        .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_prev:hover {
            background: #138fff;
        }

            .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_next:hover:before,
            .hkstp_calendar .hkstp_calendar_nav .hkstp_calendar_prev:hover:before {
                filter: brightness(0) invert(1);
            }

@media screen and (max-width:639px) {
    .hkstp_calendar table th,
    .hkstp_calendar table td {
        font-size: 0.8em;
    }

        .hkstp_calendar table td .event {
            width: 6px;
            height: 6px;
            margin: 0px 2px;
        }
}

/*================================================================================*/
/*LOGIN */
/*================================================================================*/
.hkstp_login {
    text-align: center;
}

    .hkstp_login h3 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

        .hkstp_login h3:before {
            content: "";
            display: block;
            width: 40px;
            height: 40px;
            background-image: url(/img/svg/check.svg);
            background-repeat: no-repeat;
            background-position: center center;
            background-size: contain;
            margin-right: 10px;
        }

.hkstp_login_row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 80px 0px;
}

    .hkstp_login_row .hkstp_login_col {
        width: 50%;
    }

        .hkstp_login_row .hkstp_login_col:first-of-type {
            padding-right: 80px;
            border-right: 1px solid #CCC;
        }

        .hkstp_login_row .hkstp_login_col:last-of-type {
            padding-left: 80px;
        }

    .hkstp_login_row h4 {
        margin: 0px 0px 40px 0px;
        padding: 0px;
    }

        .hkstp_login_row h4:before {
            content: "";
            display: block;
            width: 80px;
            height: 6px;
            background: #223670;
            margin-bottom: 20px;
        }

    .hkstp_login_row p {
        line-height: 2em;
        margin: 0px 0px;
    }

        .hkstp_login_row p a {
            text-decoration: underline;
        }

            .hkstp_login_row p a:hover {
                color: #223670;
            }

    .hkstp_login_row .hkstp_btn {
        margin-top: 40px;
    }

    .hkstp_login_row strong {
        color: #223670;
    }

@media screen and (max-width:1279px) {
    .hkstp_login_row .hkstp_login_col:first-of-type {
        padding-right: 40px;
    }

    .hkstp_login_row .hkstp_login_col:last-of-type {
        padding-left: 40px;
    }
}

@media screen and (max-width:1023px) {
    .hkstp_login_row .hkstp_login_col:first-of-type {
        padding-right: 20px;
    }

    .hkstp_login_row .hkstp_login_col:last-of-type {
        padding-left: 20px;
    }

    .hkstp_login_row {
        margin: 40px 0px;
    }
}

@media screen and (max-width:767px) {
    .hkstp_login_row .hkstp_login_col {
        width: 100%;
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .hkstp_login_row .hkstp_login_col:first-of-type {
            padding-right: 0px;
            border-right: none;
            border-bottom: 1px solid #CCC;
        }

        .hkstp_login_row .hkstp_login_col:last-of-type {
            padding-left: 0px;
        }

    .hkstp_login_row {
        margin: 0px 0px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_block {
    background: #f7f7f7;
    margin: 40px 0px;
    padding: 40px;
    border-radius: 10px;
}

.hkstp_block--action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .hkstp_block--action .hkstp_btn {
        margin-left: 10px;
        white-space: nowrap;
    }

    .hkstp_block--action div:last-of-type {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

.hkstp_row--coll {
    align-items: flex-start;
}

    .hkstp_row--coll .hkstp_col:first-of-type {
        padding-right: 20px;
    }

    .hkstp_row--coll .hkstp_col:last-of-type {
        padding-left: 20px;
    }

    .hkstp_row--coll .hkstp_block {
        margin: 0px;
    }

@media screen and (max-width:1279px) {
    .hkstp_row--coll .hkstp_col {
        width: 100%;
        padding: 0px;
    }

        .hkstp_row--coll .hkstp_col:first-of-type {
            padding-right: 0px;
            padding-bottom: 40px;
        }

        .hkstp_row--coll .hkstp_col:last-of-type {
            padding-left: 0px;
        }
}

@media screen and (max-width:1023px) {
    .hkstp_block {
        margin: 20px 0px;
        padding: 20px;
    }

    .hkstp_block--action {
        flex-wrap: wrap;
    }

        .hkstp_block--action div:last-of-type {
            width: 100%;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

            .hkstp_block--action div:last-of-type .hkstp_btn {
                margin: 10px 10px 0px 0px;
            }

    .hkstp_row--coll .hkstp_col:first-of-type {
        padding-right: 0px;
        padding-bottom: 20px;
    }
}
/*--------------------------------------------------------------------------------*/
.hkstp_appoint_head {
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .hkstp_appoint_head .title {
        color: #ff6b03;
        font-size: 1.1em;
    }

    .hkstp_appoint_head .desc {
        color: #223670;
    }

    .hkstp_appoint_head .number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #223670;
        color: #FFF;
        margin-left: 10px;
    }

.hkstp_appoint_item {
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    margin: 20px 0px;
    border-radius: 10px;
}

    .hkstp_appoint_item .hkstp_appoint_name p {
        margin: 0px;
    }

        .hkstp_appoint_item .hkstp_appoint_name p strong {
            color: #223670;
        }

    .hkstp_appoint_item .hkstp_appoint_action .hkstp_btn {
        margin-left: 10px;
    }

    .hkstp_appoint_item .hkstp_appoint_action {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

@media screen and (max-width:1023px) {
    .hkstp_appoint_item {
        padding: 15px 20px;
    }
}

@media screen and (max-width:767px) {
    .hkstp_appoint_item {
        padding: 10px 15px;
    }
}

@media screen and (max-width:479px) {
    .hkstp_appoint_head {
        flex-wrap: wrap;
    }

        .hkstp_appoint_head .desc {
            margin-top: 10px;
            width: 100%;
        }


    .hkstp_appoint_item {
        flex-wrap: wrap;
    }

        .hkstp_appoint_item .hkstp_appoint_action {
            width: 100%;
            flex-wrap: wrap;
        }

        .hkstp_appoint_item .hkstp_appoint_actio .hkstp_btn {
            margin-top: 10px;
        }

    .notportaladmin {
        display:none;
    }

        .contact_us {
            display: none;
        }
    .hkstp_notice {
        display: none;
    }

}
/*================================================================================*/
/*POP */
/*================================================================================*/
.hkstp_pop {
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: RGB(245,245,245);
    transition: ease all 0.5s;
    opacity: 0;
    pointer-events: none;
}

    .hkstp_pop .hkstp_pop_top {
        position: absolute;
        top: 0px;
        z-index: 1;
        top: 0px;
        left: 0px;
        width: 100%;
        background: RGB(245,245,245);
        padding: 20px 0px 60px 0px;
    }

        .hkstp_pop .hkstp_pop_top .hkstp_main {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hkstp_pop .hkstp_pop_top .hkstp_pop_logo {
            height: 60px;
            width: auto;
            filter: brightness(1);
        }

        .hkstp_pop .hkstp_pop_top .hkstp_pop_close {
            display: block;
            width: 30px;
            height: 30px;
            position: relative;
        }

            .hkstp_pop .hkstp_pop_top .hkstp_pop_close:before,
            .hkstp_pop .hkstp_pop_top .hkstp_pop_close:after {
                content: "";
                display: block;
                position: absolute;
                width: 100%;
                height: 2px;
                transform-origin: 50% 50%;
                transition: rotate(0deg);
                background: #223670;
            }

            .hkstp_pop .hkstp_pop_top .hkstp_pop_close:before {
                top: calc(50% - 1px);
                transform: rotate(45deg);
            }

            .hkstp_pop .hkstp_pop_top .hkstp_pop_close:after {
                bottom: calc(50% - 1px);
                transform: rotate(-45deg);
            }


    .hkstp_pop .hkstp_pop_body {
        position: absolute;
        top: 0px;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 150px 0px;
    }

        .hkstp_pop .hkstp_pop_body .hkstp_main {
            min-height: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .hkstp_pop .hkstp_pop_body .hkstp_pop_content {
            width: 100%;
        }

.showpop .hkstp_pop {
    opacity: 1;
    pointer-events: all;
}

.showpop header,
.showpop footer,
.showpop section {
    filter: blur(4px);
    transition: ease all 0.3s;
}

.hkstp_pop.type2 {
    background: rgba(0,0,0,0.75);
}

    .hkstp_pop.type2 .hkstp_pop_top {
        background: none;
    }

    .hkstp_pop.type2 .hkstp_pop_logo {
        visibility: hidden;
    }

    .hkstp_pop.type2 .hkstp_pop_close {
        filter: brightness(0) invert(1);
    }

    .hkstp_pop.type2 .hkstp_pop_body .hkstp_main {
        background: #FFF;
        max-width: 800px;
        padding: 40px 40px;
        margin: 0px auto;
        border-radius: 20px;
    }

@media screen and (max-width:1279px) {
    .hkstp_pop .hkstp_pop_top .hkstp_pop_logo {
        height: 48px;
    }
}

@media screen and (max-width:1023px) {
    .hkstp_pop .hkstp_pop_top .hkstp_pop_logo {
        height: 36px;
    }
}

@media screen and (max-width:767px) {
    .hkstp_pop .hkstp_pop_top .hkstp_pop_logo {
        height: 30px;
    }

    .hkstp_pop.type2 .hkstp_pop_body .hkstp_main {
        padding: 20px 20px;
    }
}

.hkstp_pop.type2 .hkstp_pop_body .hkstp_main {
    padding: 20px 20px;
}
/*--------------------------------------------------------------------------------*/
.hkstp_pop2 {
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    transition: ease all 0.5s;
}

    .hkstp_pop2.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hkstp_pop2 .hkstp_pop_body {
        position: relative;
        width: calc(100% - 40px);
        max-width: 400px;
        height: auto;
        max-height: calc(100% - 80px);
        text-align: center;
        border-radius: 20px;
        padding: 60px 20px;
        background: #FFF;
        overflow: auto;
    }

        .hkstp_pop2 .hkstp_pop_body .hkstp_pop_image {
            position: relative;
            max-width: 240px;
            width: 100%;
            border-radius: 50%;
            overflow: hidden;
            margin: 40px auto;
        }

            .hkstp_pop2 .hkstp_pop_body .hkstp_pop_image:before {
                content: "";
                display: block;
                padding-bottom: 100%;
            }

            .hkstp_pop2 .hkstp_pop_body .hkstp_pop_image img {
                position: absolute;
                display: block;
                width: 100%;
                height: 100%;
                top: 0px;
                left: 0px;
            }

        .hkstp_pop2 .hkstp_pop_body h5 {
            font-size: 25px;
            color: #223670;
            font-weight: normal;
            margin: 0px 0px 10px 0px;
        }

        .hkstp_pop2 .hkstp_pop_body p {
            font-size: 18px;
            color: #000;
            margin: 0px;
        }

        .hkstp_pop2 .hkstp_pop_body .hkstp_pop_action {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            padding: 0px 20px;
        }

            .hkstp_pop2 .hkstp_pop_body .hkstp_pop_action .hkstp_btn {
                width: calc(50% - 10px);
            }

        .hkstp_pop2 .hkstp_pop_body .hkstp_pop_close {
            position: absolute;
            top: 20px;
            right: 20px;
        }

            .hkstp_pop2 .hkstp_pop_body .hkstp_pop_close span {
                display: none;
            }

            .hkstp_pop2 .hkstp_pop_body .hkstp_pop_close:before {
                content: "";
                display: block;
                width: 20px;
                height: 20px;
                background-image: url(/img/svg/close.svg);
                background-position: center center;
                background-repeat: no-repeat;
                background-size: contain;
            }
/*--------------------------------------------------------------------------------*/