
/* =================== default =================== */


body {
    width: 100%;
    height: 100%;
    font-family: "微軟正黑體";
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}

a {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

    a:hover,
    a:focus {
        text-decoration: none;
    }

/* ----- custom btn  ----- */
.custom-btn {
    color: #33b5e6;
    padding: 10px 40px;
    font-weight: 500;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.btn-effect {
    border: 2px solid #33b5e6;
    z-index: 1;
}

    .btn-effect:after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        background: #33b5e6;
        transition: all 0.3s ease;
    }

    .btn-effect:hover {
        color: #fff;
    }

        .btn-effect:hover:after {
            top: 0;
            height: 100%;
        }

    .btn-effect:active {
        top: 2px;
    }

/* ----- custom btn(login)  ----- */
.custom-login-btn {
    color: #FFF !important;
    border: 2px solid #1785d4;
    background-color: #1785d4;
    width: 100%;
    padding: 10px 40px;
    transition: all 0.3s ease;
    display: block;
}

    .custom-login-btn:hover {
        color: #1785d4 !important;
        border: 2px solid #1785d4;
        background-color: #FFF;
        width: 100%;
        padding: 10px 40px;
        transition: all 0.3s ease;
        display: block;
    }

.custom-google-btn {
    color: #FFF !important;
    border: 2px solid #ea4335;
    background-color: #ea4335;
    width: 100%;
    padding: 10px 40px;
    transition: all 0.3s ease;
    display: block;
}

    .custom-google-btn:hover {
        color: #ea4335 !important;
        border: 2px solid #ea4335;
        background-color: #FFF;
        width: 100%;
        padding: 10px 40px;
        transition: all 0.3s ease;
        display: block;
    }

/* ----- mar&pad ----- */

.mar_0 {
    margin: 0;
}

.mar_T10 {
    margin-top: 10px;
}

.mar_T15 {
    margin-top: 15px;
}

.mar_T30 {
    margin-top: 30px;
}

.pad_0 {
    padding: 0;
}

/* ----- color ----- */
.light-blue {
    color: #2880d9;
}

.orange {
    color: #ffbe00;
}

.red {
    color: #ff6761;
}

/* =================== fix menu =================== */
.fix-menu {
    padding: 4px 6px;
    background-color: rgba(255,255,255,0);
    position: fixed;
    right: 20px;
    top: 20%;
    z-index: 9999;
}

    .fix-menu ul {
        padding-left: 0;
        list-style-type: none;
    }

        .fix-menu ul li {
            margin: 15px 0;
        }

            .fix-menu ul li a {
            }

    .fix-menu a:after {
        content: "";
        display: table;
        clear: both;
    }

    .fix-menu a span {
        background-color: rgba(35,63,104,0);
        float: right;
        display: inline-block;
        -webkit-transform: rotate(0deg) scale(.9);
        -moz-transform: rotate(0deg) scale(.9);
        -ms-transform: rotate(0deg) scale(.9);
        -o-transform: rotate(0deg) scale(.9);
        transform: rotate(0deg) scale(.9);
    }

    .fix-menu a:hover span {
    }

        .fix-menu a:hover span:nth-child(1) {
            -webkit-transform: rotate(30deg) scale(1.1);
            -moz-transform: rotate(30deg) scale(1.1);
            -ms-transform: rotate(30deg) scale(1.1);
            -o-transform: rotate(30deg) scale(1.1);
            transform: rotate(30deg) scale(1.1);
        }

        .fix-menu a:hover span:nth-child(2) {
            -webkit-transform: rotate(0deg) scale(1.1);
            -moz-transform: rotate(0deg) scale(1.1);
            -ms-transform: rotate(0deg) scale(1.1);
            -o-transform: rotate(0deg) scale(1.1);
            transform: rotate(0deg) scale(1.1);
            background-color: rgba(0,0,0,.6);
        }

    .fix-menu a:hover .cd-label {
        opacity: 1;
    }

    .fix-menu a.is-selected .cd-dot {
        background-color: white;
    }

    .fix-menu .cd-dot img {
        margin-top: -8px;
    }

    .fix-menu .cd-dot {
        left: 5px;
        position: relative;
        top: 2px;
        -webkit-transition: -webkit-transform 0.2s, background-color 0.5s;
        -moz-transition: -moz-transform 0.2s, background-color 0.5s;
        transition: transform 0.2s, background-color 0.5s;
        -webkit-transform-origin: 50% 50%;
        -moz-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        -o-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    .fix-menu .cd-label {
        position: relative;
        margin-right: 10px;
        padding: .4em .5em;
        color: white;
        font-size: 15px;
        -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
        -moz-transition: -moz-transform 0.2s, opacity 0.2s;
        transition: transform 0.2s, opacity 0.2s;
        opacity: 0;
        -webkit-transform-origin: 100% 50%;
        -moz-transform-origin: 100% 50%;
        -ms-transform-origin: 100% 50%;
        -o-transform-origin: 100% 50%;
        transform-origin: 100% 50%;
    }


/* =================== login =================== */
.blur-it {
    filter: blur(4px);
}

.modal-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(23, 133, 212, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

    .modal-wrapper.open {
        opacity: 1;
        visibility: visible;
        z-index:2000;
    }

    .modal-wrapper .modal {
        width: 500px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        /* top: 40%; 2024/05 註解 for login位置調整 */
        background: #fff;
        opacity: 0;
        transition: all 0.5s ease-in-out;
        position: relative;
    }

    .modal-wrapper.open .modal {
        margin-top: 0.75rem; /*2024/05 註解 for login位置調整  margin-top: -240px;*/
        opacity: 1;
    }

    .modal-wrapper .head {
        height: 34px;
        overflow: hidden;
        background: #233f67;
    }

    .modal-wrapper .btn-close {
        font-size: 16px;
        padding: 6px 6px;
        display: block;
        float: right;
        color: #fff;
    }

        .modal-wrapper .btn-close:hover {
            opacity: .5;
        }

.wrapper-content-title {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    text-align: center;
}

.wrapper-content {
    /*padding: 0 10% 10% 10%; 2024/05 註解 為了login*/
    text-align: center;
}

    .wrapper-content hr {
        margin: 15px 0;
    }

    .wrapper-content h4 {
        font-size: 14px;
        margin: 5px 0 10px 0;
    }

.login-code-img img {
    width: 150px;
    clear: both;
    margin-top: -3px;
}

/* =================== menu =================== */

#top-bar {
    background-color: #1785d4;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
    height: 30px;
    -webkit-transition: top 0.4s ease-in-out, top 0.4s ease-in-out;
    -moz-transition: top 0.4s ease-in-out, top 0.4s ease-in-out;
    transition: top 0.4s ease-in-out, top 0.4s ease-in-out;
}
#login-top-bar {
    background-color: #FFD306;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
    height: 30px;
    -webkit-transition: top 0.4s ease-in-out, top 0.4s ease-in-out;
    -moz-transition: top 0.4s ease-in-out, top 0.4s ease-in-out;
    transition: top 0.4s ease-in-out, top 0.4s ease-in-out;
}

    #top-bar.top-bar-hidden {
        top: -26px;
    }

.bar-text {
    padding-top: 6px;
    font-size: 12px;
}

    .bar-text a {
        color: #FFF;
        margin-right: 10px;
    }

        .bar-text a:hover {
            color: #e7e7e7;
        }


.light {
    font-weight: 400;
}

.navbar-custom {
    margin-top: 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #e3edf7;
    text-transform: uppercase;
    background-color: #FFF;
}

    .navbar-custom .navbar-toggle {
        color: white;
        background-color: #1785d4;
        font-size: 12px;
    }

        .navbar-custom .navbar-toggle:focus,
        .navbar-custom .navbar-toggle:active {
            outline: none;
        }

    .navbar-custom .navbar-brand {
        font-weight: 700;
    }

        .navbar-custom .navbar-brand:focus {
            outline: none;
        }

    .navbar-custom a {
        color: #233f67;
    }

    .navbar-custom .navbar-brand img {
        margin-top: -10px;
        width: 265px;
    }

    .navbar-custom .nav li a {
        -webkit-transition: background 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out;
        transition: background 0.3s ease-in-out;
    }

        .navbar-custom .nav li a:hover {
            color: #7388a6;
            outline: none;
            background-color: transparent;
        }

        .navbar-custom .nav li a:focus,
        .navbar-custom .nav li a:active {
            outline: none;
            background-color: transparent;
        }

    .navbar-custom .nav li.active {
        outline: none;
    }

        .navbar-custom .nav li.active a {
            background-color: rgba(255, 255, 255, 0.3);
        }

            .navbar-custom .nav li.active a:hover {
                color: white;
            }

.navbar-nav li :after {
    content: '';
}

.navbar-nav img {
    margin-top: 0;
    opacity: 1;
    transition: .6s;
}

.navbar-nav > li > a {
    padding: 6px 15px;
}

.navbar-nav img:hover {
    opacity: .75;
    margin-top: -5px;
    transition: .3s;
}

.navbar-custom.top-nav-collapse {
    margin-top: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    -webkit-box-shadow: 3px 7px 14px -8px rgba(0,0,0,0.2);
    -moz-box-shadow: 3px 7px 14px -8px rgba(0,0,0,0.2);
    box-shadow: 3px 7px 14px -8px rgba(0,0,0,0.2);
}



@media (min-width: 768px) {
    .navbar-custom {
        margin-top: 30px;
        padding: 10px 0;
        border-bottom: none;
        letter-spacing: 1px;
        background: #FFF;
        -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
        -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
        transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
    }

        .navbar-custom.top-nav-collapse {
            margin-top: 4px;
            padding: 0;
            background: rgba(255,255,255,.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0);
            -webkit-box-shadow: 3px 7px 14px -8px rgba(0,0,0,0.2);
            -moz-box-shadow: 3px 7px 14px -8px rgba(0,0,0,0.2);
            box-shadow: 3px 7px 14px -8px rgba(0,0,0,0.2);
        }

    .navbar-nav li :after {
        margin-left: 12px;
        margin-right: -25px;
        content: '/';
        color: #b9d1ec;
    }

    .navbar-nav li:nth-child(7) :after {
        content: '';
        margin-right: -20px;
    }
}


/* =================== banner =================== */
.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 40px 0;
    text-align: center;
    color: white;
    background-image: url(/images/banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

    .intro .intro-body {
        display: table-cell;
        vertical-align: middle;
    }

        .intro .intro-body .brand-heading {
            font-size: 40px;
        }

        .intro .intro-body .intro-text {
            font-size: 18px;
        }

.intro {
    margin-top: 50px;
    height: 400px;
    padding: 0;
}

.intro-text-BG {
    padding: 25px 10px;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    background-color: rgba(35,64,104,.9);
}

.intro-text p:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: bold;
}

.intro-text p:nth-child(3) {
    font-size: 18px;
    color: #8c96a9;
    font-weight: 700;
    margin-bottom: 0;
}



@media (min-width: 768px) {
    .intro {
        margin-top: 110px;
        height: 500px;
        padding: 0;
    }

        .intro .intro-body .brand-heading {
            font-size: 100px;
        }

        .intro .intro-body .intro-text {
            font-size: 26px;
        }
}

/* ----- banner Carousel ----- */
#carousel-example-generic {
    margin-top: 130px;
}

.skyblue {
    background-color: #22c8ff;
}

.deepskyblue {
    background-color: #00bfff;
}

.darkerskyblue {
    background-color: #00a6dd;
}

.carousel-indicators {
    bottom: 50px;
}

    .carousel-indicators li {
        width: 15px;
        height: 15px;
        border: 2px solid #c8c8c8;
        transform: scale(1);
        transition: .4s;
    }

        .carousel-indicators li:hover {
            transform: scale(1.25);
            transition: .2s;
        }

    .carousel-indicators .active {
        margin: 0 2px;
        height: 18px;
        width: 18px;
        background-color: #233f67;
    }

        .carousel-indicators .active:hover {
            transform: scale(1);
        }

.carousel-control.right,
.carousel-control.left {
    background-image: none;
}

.carousel .item {
    min-height: 500px;
    height: 100%;
    width: 100%;
}

.carousel .icon-container {
    display: inline-block;
    font-size: 25px;
    line-height: 25px;
    padding: 1em;
    text-align: center;
    border-radius: 50%;
}

.carousel-BG-1 {
    background: url(/images/banner-1.jpg) no-repeat center center;
}

.carousel-BG-2 {
    background: url(/images/banner-2.jpg) no-repeat center center;
}

.carousel-BG-3 {
    background: url(/images/banner-3.jpg) no-repeat center center;
}

#carousel-example-generic .intro-text-BG {
    color: #FFF;
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    top: 60px;
    padding: 25px 10px;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
    background-color: rgba(35,64,104,.9);
}

#carousel-example-generic .intro-text p:nth-child(2) {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: bold;
}

#carousel-example-generic .intro-text p:nth-child(3) {
    font-size: 18px;
    color: #8c96a9;
    font-weight: 700;
    margin-bottom: 0;
}

/* ----- banner animate ----- */
.banner-animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.one {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

.two {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.three {
    -webkit-animation-delay: 1.4s;
    -moz-animation-delay: 1.4s;
    animation-delay: 1.4s;
}

@-webkit-keyframes banner-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes banner-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.banner-fadeIn {
    -webkit-animation-name: banner-fadeIn;
    animation-name: banner-fadeIn;
}

@-webkit-keyframes banner-fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes banner-fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.banner-fadeInDown {
    -webkit-animation-name: banner-fadeInDown;
    animation-name: banner-fadeInDown;
}

@-webkit-keyframes banner-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes banner-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.banner-fadeInUp {
    -webkit-animation-name: banner-fadeInUp;
    animation-name: banner-fadeInUp;
}



/* =================== #news =================== */
#news-BG {
    background-image: url(/images/explanation_bg.png);
}

.news-section {
    padding: 90px 0 100px 0;
}

.section-title {
}

    .section-title span {
        position: relative;
        color: #233f67;
        font-size: 36px;
        font-weight: bold;
    }

        .section-title span:before {
            position: absolute;
            top: 22px;
            right: 0;
            left: 0;
            content: url("/images/line_slash.png");
        }

    .section-title p {
        color: #97a2b2;
        margin-top: 20px;
        font-weight: lighter;
        font-size: 18px;
    }



.news-section .btn-circle-p {
    position: relative;
}

.news-section .btn-circle-BG {
    background-image: url(/images/explanation_bg.png);
    position: absolute;
    width: 90px;
    height: 90px;
    margin-left: -41px;
    margin-top: -132px;
    background-color: #FFF;
    border-radius: 100% !important;
}

.news-section .btn-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -20px;
    margin-top: -115px;
    padding: 5px 15px;
    border: 2px solid #33b5e6;
    border-radius: 100% !important;
    font-size: 28px;
    color: #33b5e6;
    background: transparent;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

    .news-section .btn-circle:hover,
    .news-section .btn-circle:focus {
        outline: none;
        color: white;
        background: rgba(51, 181, 230, 0.5);
    }

    .news-section .btn-circle i.animated {
        -webkit-transition-property: -webkit-transform;
        -webkit-transition-duration: 1s;
        -moz-transition-property: -moz-transform;
        -moz-transition-duration: 1s;
    }

    .news-section .btn-circle:hover i.animated {
        -webkit-animation-name: pulse;
        -moz-animation-name: pulse;
        -webkit-animation-duration: 1.5s;
        -moz-animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        -moz-animation-timing-function: linear;
    }

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

/* ----- carousel ----- */
.news-content {
    padding: 30px 10px;
}

#owl-demo-1 .item {
    margin: 0 20px;
    margin-bottom: 20px;
}

.news-block {
    text-align: left;
}

.news-block-title {
    font-size: 16px;
    padding: 10px 0;
    color: #233f67;
    border-bottom: 1px solid #cdcccc;
}

    .news-block-title span:nth-child(2) {
        margin-left: 20px;
        font-weight: bold;
    }

.news-block-text {
    padding: 10px 0;
}

    .news-block-text a {
        font-weight: bold;
        font-size: 16px;
        line-height: 30px;
        color: #233f67;
    }

        .news-block-text a:hover {
            color: #7a90af;
            transform: .3s;
        }


.customNavigation {
    position: relative;
}

    .customNavigation .prev1 {
        position: absolute;
        top: -180px;
        left: -50px;
    }

    .customNavigation .next1 {
        position: absolute;
        top: -180px;
        right: -50px;
    }



/* =================== #internship =================== */
#internship-BG {
    background: linear-gradient( rgba(255, 255, 255, .7), rgba(255, 255, 255, .15)),url('/images/internship_BG.jpg') no-repeat fixed center;
    background-size: cover;
}

.internship-section {
    padding: 100px 0;
}

#internship .btn-circle-p {
    position: relative;
}

#internship .btn-circle-BG {
    background-color: #FFF;
    position: absolute;
    width: 90px;
    height: 90px;
    margin-left: -41px;
    margin-top: -145px;
    background-color: #FFF;
    border-radius: 100% !important;
}

#internship .btn-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -20px;
    margin-top: -125px;
    padding: 5px 15px;
    border: 2px solid #33b5e6;
    border-radius: 100% !important;
    font-size: 28px;
    color: #33b5e6;
    background: transparent;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

    #internship .btn-circle:hover,
    #internship .btn-circle:focus {
        outline: none;
        color: white;
        background: rgba(51, 181, 230, 0.5);
    }

    #internship .btn-circle i.animated {
        -webkit-transition-property: -webkit-transform;
        -webkit-transition-duration: 1s;
        -moz-transition-property: -moz-transform;
        -moz-transition-duration: 1s;
    }

    #internship .btn-circle:hover i.animated {
        -webkit-animation-name: pulse;
        -moz-animation-name: pulse;
        -webkit-animation-duration: 1.5s;
        -moz-animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        -moz-animation-timing-function: linear;
    }

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

/* ----- carousel ----- */
.internship-content {
    padding: 30px 10px;
}

#owl-demo-2 .item {
    padding: 20px 0;
    margin-bottom: 20px;
}

.internshop-circle {
    font-size: 18px;
    /*padding-top: 65px;*/
    padding-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 100%;
    background-color: #233f67;
    width: 280px;
    height: 280px;
    transform: scale(1);
    transition: .6s;
}

    .internshop-circle:hover {
        background-color: rgba(35,63,103,.9);
        margin-top: -10px;
        transition: .2s;
    }

    .internshop-circle p {
        text-align: center;
        margin-bottom: 10px;
    }
    /*1060922 ADD*/
    .internshop-circle h3{
      margin-bottom: 5px;
      color: #FFF
    }
        .internshop-circle p:nth-child(2) {
            color: #FFF;
        }

        .internshop-circle p:nth-child(3) {
            margin-left: auto;
            margin-right: auto;
            background-color: #ffbe00;
            width: 60%;
            color: #233f67;
        }

        .internshop-circle p:nth-child(4) {
            color: #FFF;
            font-weight: bold;
        }

    .internshop-circle a {
        color: #33b5e6;
    }

.customNavigation {
    position: relative;
}

    .customNavigation .prev2 {
        position: absolute;
        top: -230px;
        left: -50px;
    }

    .customNavigation .next2 {
        position: absolute;
        top: -230px;
        right: -50px;
    }


/* =================== #employment =================== */
#employment-BG {
    background-color: #f6f6f6;
}

#employment {
}

.employment-section {
    padding: 100px 0 80px 0;
}



    .employment-section .btn-circle-p {
        position: relative;
    }

    .employment-section .btn-circle-BG {
        background-color: #f6f6f6;
        position: absolute;
        width: 90px;
        height: 90px;
        margin-left: -41px;
        margin-top: -140px;
        border-radius: 100% !important;
    }

    .employment-section .btn-circle {
        position: absolute;
        width: 50px;
        height: 50px;
        margin-left: -20px;
        margin-top: -120px;
        padding: 5px 15px;
        border: 2px solid #33b5e6;
        border-radius: 100% !important;
        font-size: 28px;
        color: #33b5e6;
        background: transparent;
        -webkit-transition: background 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out;
        transition: background 0.3s ease-in-out;
    }

        .employment-section .btn-circle:hover,
        .employment-section .btn-circle:focus {
            outline: none;
            color: white;
            background: rgba(51, 181, 230, 0.5);
        }

        .employment-section .btn-circle i.animated {
            -webkit-transition-property: -webkit-transform;
            -webkit-transition-duration: 1s;
            -moz-transition-property: -moz-transform;
            -moz-transition-duration: 1s;
        }

        .employment-section .btn-circle:hover i.animated {
            -webkit-animation-name: pulse;
            -moz-animation-name: pulse;
            -webkit-animation-duration: 1.5s;
            -moz-animation-duration: 1.5s;
            -webkit-animation-iteration-count: infinite;
            -moz-animation-iteration-count: infinite;
            -webkit-animation-timing-function: linear;
            -moz-animation-timing-function: linear;
        }

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}



/* ----- cards ----- */
* {
    box-sizing: border-box;
}

.card {
    overflow: hidden;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

    .card a {
        color: inherit;
        text-decoration: none;
    }

    .card:hover {
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.3);
    }

.cardICON {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    padding-top: 10px;
    color: #FFF;
    text-align: center;
    line-height: 13px;
    font-weight: bold;
    background-color: #ffbe00;
    border-radius: 50%;
}

    .cardICON img {
        margin-top: -3px;
        margin-left: 4px;
    }


.cardThumb {
    height: 235px;
    overflow: hidden;
    background-color: #000;
    transition: height 0.3s;
}

    .cardThumb img {
        display: block;
        opacity: 1;
        transition: opacity 0.3s, -webkit-transform 0.3s;
        transition: opacity 0.3s, transform 0.3s;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

.card:hover .cardThumb img {
    opacity: 0.6;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.card:hover .cardThumb {
    height: 90px;
}

.cardBody {
    position: relative;
    padding: 20px;
    height: 135px;
    transition: height 0.3s;
}

.card:hover .cardBody {
    height: 280px;
}

.cardCategory {
    position: absolute;
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    width: 80px;
    top: -25px;
    height: 25px;
    padding: 0 15px;
    color: #233f67;
    font-size: 12px;
    line-height: 25px;
    text-transform: uppercase;
    background-color: #ffbe00;
}

.cardTitle {
    margin: 0;
    padding: 0 0 18px 0;
    font-size: 30px;
    color: #000;
    font-weight: bold;
}

.card:hover .cardTitle {
    -webkit-animation: titleBlur 0.3s;
    animation: titleBlur 0.3s;
}

.employment-section .cardSubtitle {
    text-align: left;
    margin: 0;
    padding: 0 0 10px 0;
}

    .employment-section .cardSubtitle p {
    }

        .employment-section .cardSubtitle p:nth-child(1) {
            color: #33b5e6;
            margin-bottom: 0;
            font-size: 15px;
            margin-bottom: 4px;
        }

        .employment-section .cardSubtitle p:nth-child(2) {
            color: #233f67;
            margin-bottom: 0;
            font-size: 15px;
            margin-bottom: 4px;
        }

.card:hover .cardSubtitle {
    -webkit-animation: subtitleBlur 0.3s;
    animation: subtitleBlur 0.3s;
}

.back-cardSubtitle {
    text-align: left;
}

.employment-section .back-cardSubtitle p:nth-child(odd) {
    color: #33b5e6;
    margin-bottom: 0;
    font-size: 15px;
    margin-bottom: 4px;
}

.employment-section .back-cardSubtitle p:nth-child(even) {
    color: #233f67;
    margin-bottom: 0;
    font-size: 15px;
    margin-bottom: 4px;
}

.cardDescription {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 65px;
    margin: 0;
    padding: 0;
    color: #666C74;
    font-size: 14px;
    line-height: 27px;
    opacity: 0;
    transition: opacity 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, transform 0.2s;
    transition-delay: 0s;
    -webkit-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
}

.card:hover .cardDescription {
    opacity: 1;
    transition-delay: 0.1s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.cardFooter {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 11px;
    color: #A3A9AB;
}

    .cardFooter .icon--comment {
        margin-left: 12px;
    }

.icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}

.icon--comment {
    background: url('/images/employment-1.JPG');
    width: 14px;
    height: 14px;
    margin-top: -2px;
}

.icon--time {
    background: url('/images/employment-1.JPG');
    width: 10px;
    height: 17px;
    margin-top: -3px;
}

@-webkit-keyframes titleBlur {
    0% {
        opacity: 0.6;
        text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6);
    }

    100% {
        opacity: 1;
        text-shadow: 0px 5px 5px transparent;
    }
}

@keyframes titleBlur {
    0% {
        opacity: 0.6;
        text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6);
    }

    100% {
        opacity: 1;
        text-shadow: 0px 5px 5px transparent;
    }
}

@-webkit-keyframes subtitleBlur {
    0% {
        opacity: 0.6;
        text-shadow: 0px 5px 5px rgba(255, 140, 0, 0.6);
    }

    100% {
        opacity: 1;
        text-shadow: 0px 5px 5px rgba(255, 140, 0, 0);
    }
}

@keyframes subtitleBlur {
    0% {
        opacity: 0.6;
        text-shadow: 0px 5px 5px rgba(255, 140, 0, 0.6);
    }

    100% {
        opacity: 1;
        text-shadow: 0px 5px 5px rgba(255, 140, 0, 0);
    }
}

/* =================== #employer =================== */
#employer-BG {
    background-color: #233f67;
}

#employer {
    padding: 90px 0 0 0;
}

.employer-section {
}

    .employer-section .section-title span, .employer-section .section-title p {
        color: #FFF;
    }

        .employer-section .section-title span:before {
            position: absolute;
            top: 22px;
            right: 0;
            left: 0;
            content: url("/images/line_slash_white.png");
        }

.employer-content {
    background-color: #FFF;
}


.employer-content-L {
    height: 500px;
    background: linear-gradient( rgba(255, 255, 255, .1), rgba(255, 255, 255, .15)),url(/images/employer_BG.jpg) no-repeat center;
    background-size: cover;
}

.employer-content-R {
    padding-top: 60px;
}

    .employer-content-R ul {
        padding-left: 0;
        list-style-type: none;
        text-align: center;
    }

        .employer-content-R ul li {
            color: #233f67;
            font-size: 24px;
            padding: 10px 0;
        }


.employer-section .btn-circle-p {
    position: relative;
}

.employer-section .btn-circle-BG {
    background-color: #233f67;
    position: absolute;
    width: 90px;
    height: 90px;
    margin-left: -41px;
    margin-top: -130px;
    border-radius: 100% !important;
}

.employer-section .btn-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -20px;
    margin-top: -110px;
    padding: 5px 15px;
    border: 2px solid #FFF;
    border-radius: 100% !important;
    font-size: 28px;
    color: #FFF;
    background: transparent;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

    .employer-section.btn-circle:hover,
    .employer-section .btn-circle:focus {
        outline: none;
        color: white;
        background: rgba(51, 181, 230, 0.5);
    }

    .employer-section .btn-circle i.animated {
        -webkit-transition-property: -webkit-transform;
        -webkit-transition-duration: 1s;
        -moz-transition-property: -moz-transform;
        -moz-transition-duration: 1s;
    }

    .employer-section .btn-circle:hover i.animated {
        -webkit-animation-name: pulse;
        -moz-animation-name: pulse;
        -webkit-animation-duration: 1.5s;
        -moz-animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        -moz-animation-timing-function: linear;
    }

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


/* =================== #links =================== */
#links-BG {
    background-color: #e9f2fb;
}

.links-section {
    padding: 100px 0 80px 0;
}

.links-content {
    text-align: center;
}

    .links-content h3 {
        font-size: 26px;
        color: #33b5e6;
        margin-bottom: 20px;
    }

    .links-content ul {
        font-size: 18px;
        padding: 0;
        list-style-type: none;
    }

        .links-content ul li {
            padding: 9px 0;
            color: #233f67;
        }

            .links-content ul li a {
                color: #233f67;
            }

                .links-content ul li a:hover {
                    color: #7a90af;
                }

    .links-content i {
        color: #33b5e6;
        margin-right: 8px;
    }


.links-section .btn-circle-p {
    position: relative;
}

.links-section .btn-circle-BG {
    background-color: #e9f2fb;
    position: absolute;
    width: 90px;
    height: 90px;
    margin-left: -41px;
    margin-top: -140px;
    border-radius: 100% !important;
}

.links-section .btn-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -20px;
    margin-top: -120px;
    padding: 5px 15px;
    border: 2px solid #33b5e6;
    border-radius: 100% !important;
    font-size: 28px;
    color: #33b5e6;
    background: transparent;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background 0.3s ease-in-out;
}

    .links-section .btn-circle:hover,
    .links-section .btn-circle:focus {
        outline: none;
        color: white;
        background: rgba(51, 181, 230, 0.5);
    }

    .links-section .btn-circle i.animated {
        -webkit-transition-property: -webkit-transform;
        -webkit-transition-duration: 1s;
        -moz-transition-property: -moz-transform;
        -moz-transition-duration: 1s;
    }

    .links-section .btn-circle:hover i.animated {
        -webkit-animation-name: pulse;
        -moz-animation-name: pulse;
        -webkit-animation-duration: 1.5s;
        -moz-animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        -webkit-animation-timing-function: linear;
        -moz-animation-timing-function: linear;
    }

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


/* =================== footer =================== */
footer {
    margin-top: 20px;
    padding: 35px 0;
    color: #FFF;
    background-color: #1785d4;
}

    footer p {
        font-size: 16px;
        margin: 0;
    }

    footer img {
        width: 20px;
        margin-top: -5px;
    }



/* =================== sub pages =================== */
.sub-banner {
    margin-top: 120px;
    height: 250px;
    width: 100%;
    background: url('/images/sub-banner.jpg') center center;
    background-repeat: no-repeat;
}

#sub-content {
    padding: 40px 0;
}

.breadcrumb {
    border-radius: 0;
}

.table {
    border: 1px solid #ddd;
}

.table-title {
    color: #233f67;
    background-color: #f3f3f3;
}

.panel-default {
    border-radius: 0;
    border-color: #1785d4;
}

    .panel-default > .panel-heading {
        border-radius: 0;
        background-color: #1785d4;
        color: #FFF;
    }

    .panel-default > .panel-body {
        border-radius: 0;
    }

.panel-body {
    padding: 25px 30px;
}

.table > tbody > tr > td {
    padding: 12px 8px;
}

/* ----- add 0922(tabs) ----- */
/*20180410 新增一個 #owl-demo-5 .item 因學校要求新增一個類別【就業訊息】*/
#owl-demo-2 .item, #owl-demo-3 .item, #owl-demo-4 .item,#owl-demo-5 .item{
  padding: 20px 0;
  margin-bottom:20px ;
}

.tab-group,
.tab-group-vertical {
   position: relative;
   display: inline-block;
   vertical-align: middle;
   zoom: 1; /* Fix for IE7 */
   *display: inline; /* Fix for IE7 */
}

.tab-group > li, 
.tab-group-vertical > li {
    border: 1px solid #1785d4;
    position: relative;
    float: left;
}
.tab-group > li.active > a, 
.tab-group > li.active > a:hover, 
.tab-group > li.active > a:focus,
.tab-group-vertical > li.active > a, 
.tab-group-vertical > li.active > a:hover, 
.tab-group-vertical > li.active > a:focus {
    background-color: #1785d4;
    color: #fff;
}
.tab-group > li > a,
.tab-group-vertical > li > a {
    border-radius: 0;
}
.tab-group > li > a:hover,
.tab-group-vertical > li > a:hover {
    border-radius: 4px;
}

.tab-group li + li {
    margin-left: -1px;
}

.tab-group > li:not(:first-child):not(:last-child),
.tab-group > li:not(:first-child):not(:last-child) > a:hover {
  border-radius: 0;
}
.tab-group > li:first-child,
.tab-group > li:first-child > a:hover {
    margin-left: 0;
}
.tab-group > li:first-child:not(:last-child),
.tab-group > li:first-child:not(:last-child) > a:hover {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.tab-group > li:last-child:not(:first-child),
.tab-group > li:last-child:not(:first-child) > a:hover {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.tab-group-vertical > li {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    text-align:center;
}
.tab-group-vertical > li + li {
    margin-top: -1px;
    margin-left: 0px;
}

.tab-group-vertical > li:not(:first-child):not(:last-child),
.tab-group-vertical > li:not(:first-child):not(:last-child) > a:hover {
  border-radius: 0;
}
.tab-group-vertical > li:first-child:not(:last-child),
.tab-group-vertical > li:first-child:not(:last-child) > a:hover {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.tab-group-vertical > li:last-child:not(:first-child),
.tab-group-vertical > li:last-child:not(:first-child) > a:hover {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 4px;
}


/* ===================     ===================
   =================== RWD ===================
   ===================     =================== */
@media (max-width: 1200px) {
    .cardBody {
        height: auto;
    }

    .cardThumb {
        height: 90px;
    }

    .card:hover .cardBody {
        height: auto;
    }

    .cardThumb img {
        width: 100%;
    }

    .navbar-custom .navbar-brand img {
        margin-top: -4px;
        width: 220px;
    }

    .navbar-nav li :after {
        content: '';
    }

    .navbar-nav > li > a {
        padding: 6px 5px;
    }

    .navbar-nav img {
        height: 60px;
    }

    #employment .card {
        margin-bottom: 35px;
    }
}


@media (max-width: 991px) {
    .navbar-nav > li > a {
        padding: 6px 2px;
    }

    .navbar-nav img {
        height: 55px;
    }

    .navbar-custom .navbar-brand img {
        margin-top: -9px;
        width: 220px;
    }

    .intro {
        margin-top: 110px;
    }

    #employment .card {
        margin-bottom: 35px;
    }

    #carousel-example-generic .intro-text-BG {
        width: 65%;
    }
}



@media (max-width: 767px) {
    .modal-wrapper .modal {
        width: 96%; /*width: 300px;*/
        margin: .5rem;
        /*top: 50%;2024/05 註解 for調整登入位置*/
    }

    .fix-menu {
        top: 32%;
        right: 8px;
    }

        .fix-menu img {
            width: 32px;
        }

    #carousel-example-generic {
        margin-top: 60px;
    }

        #carousel-example-generic .intro-text-BG {
            top: 50px;
            width: 80%;
        }

    .carousel-indicators {
        bottom: 36px;
    }

    .carousel .item {
        min-height: 400px;
    }

    .nav > li > a {
        font-size: 16px;
        padding: 9px 20px;
    }

    .intro {
        margin-top: 30px;
    }

    .navbar-custom .navbar-brand img {
        margin-top: -10px;
        width: 160px;
    }

    .intro-text-BG {
        width: 85%;
    }

        .intro-text-BG img {
            width: 140px;
        }

    .intro-text p:nth-child(2) {
        font-size: 18px;
    }

    .section-title span {
        font-size: 30px;
    }

    .intro-text p:nth-child(3) {
        font-size: 12px;
    }

    .intro-text-BG img {
        width: 140px;
    }

    .intro-text p:nth-child(2) {
        font-size: 18px;
    }

    .section-title span {
        font-size: 30px;
    }

    .intro-text p:nth-child(3) {
        font-size: 12px;
    }

    #carousel-example-generic .intro-text-BG img {
        width: 140px;
    }

    #carousel-example-generic .intro-text p:nth-child(2) {
        font-size: 18px;
    }

    #carousel-example-generic .section-title span {
        font-size: 30px;
    }

    #carousel-example-generic .intro-text p:nth-child(3) {
        font-size: 12px;
    }

    .navbar-header {
        border-bottom: 1px solid #edf3f8;
    }

    .news-section {
        padding: 70px 0 80px 0;
    }

        .news-section .btn-circle-BG {
            margin-top: -110px;
        }

        .news-section .btn-circle {
            margin-top: -90px;
        }

    .news-content {
        padding-top: 0;
    }


    .employment-section {
        padding: 70px 0 70px 0;
    }

        .employment-section .btn-circle-BG {
            margin-top: -110px;
        }

        .employment-section .btn-circle {
            margin-top: -90px;
        }

    #employer {
        padding: 70px 0 0 0;
    }

    .employer-section .btn-circle-BG {
        margin-top: -110px;
    }

    .employer-section .btn-circle {
        margin-top: -90px;
    }

    .internship-section {
        padding: 70px 0;
    }

    #internship .btn-circle-BG {
        margin-top: -110px;
    }

    #internship .btn-circle {
        margin-top: -90px;
    }

    .internship-content {
        padding: 0 10px 10px 10px;
    }

    #owl-demo-2 .item {
        padding: 0;
    }

    .internshop-circle:hover {
        margin-top: 0;
    }

    .links-section {
        padding: 70px 0 50px 0;
    }

        .links-section .btn-circle-BG {
            margin-top: -110px;
        }

        .links-section .btn-circle {
            margin-top: -90px;
        }

    .employer-content-R {
        padding: 20px 0 80px 0;
    }

    .employer-section .section-title span:before {
        content: "";
    }

    .sub-banner {
        margin-top: 0;
    }
}

@media (max-width: 450px) {
    #carousel-example-generic .intro-text-BG {
        width: 90%;
    }

    .carousel .item {
        min-height: 350px;
    }
}

/*專案中dialog自訂樣式 End*/
/*置頂按鈕 Begin*/
.toTop {
    position: fixed;
    right: 1%;
    bottom: 10%;
    padding: 10px 15px;
    background: #ffba00;
    color: #FFF;
    cursor: pointer;
    border-radius: 5px;
    float: right;
    z-index: 1;
    text-align: center;
    vertical-align: middle;
}

.Q_paper {
    background-image: url(/Images/ModalBackground.jpg);
    background-repeat: repeat-y;
    background-position: top left;
    background-color: #ececec;
    padding: 20px 50px 20px 100px;
    max-height:90%;
    overflow:auto;

}

.Q_paper h4 {
    font-size: 30px;
    color: #233f67;
    margin-bottom: 30px;
}

@media (min-width: 1024px) {
    .modal-lg {
        width: 1000px;
    }
}

@media (min-width: 1200px) {
    .modal-lg {
        width: 1180px;
    }
}

.RWDBanner-small {
    display: none !important;
}

.RWDBanner {
    display: none !important;
}

@media (max-width: 767px) {
    .RWDBanner-small {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .RWDBanner {
         display: block !important;
    }
}