* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    text-align: center;
    font-family: 'Titillium Web', Helvetica, Arial, sans-serif;
}


h1, h2, h3, h4, h5 {
    color: #333;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        -ms-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

.all-title {
    float: left;
    margin-top: 80px;
    margin-bottom: 80px;
    border-bottom: 1px solid #ccc;
}

.all-td-en {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: #242424;
    text-transform: uppercase;
    margin-bottom: -15px;
    letter-spacing: 2px;
}

.all-td-cn {
    color: #CB5750;
    font-family: "微軟正黑體";
    font-weight: 600;
    font-size: 3em;
}

/*============== Preloader ==============*/

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff; /* change if the mask should have another color then white */
    z-index: 99; /* makes sure it stays on top */
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%; /* centers the loading animation horizontally one the screen */
    top: 50%; /* centers the loading animation vertically one the screen */
    background-image: url(../images/preloader.gif); /* path to your loading animation */
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px; /* is width and height divided by two */
}


/*============== Scroll up to  ==============*/

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    overflow: hidden;
    width: 51px;
    height: 51px;
    border: none;
    text-indent: 100%;
    background: url(../images/ui.totop.png) no-repeat left top;
}

#toTopHover {
    background: url(../images/ui.totop.png) no-repeat left -51px;
    width: 51px;
    height: 51px;
    display: block;
    overflow: hidden;
    float: left;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
}

#toTop:active, #toTop:focus {
    outline: none;
}






/*============== Scroll up to  ==============*/

.row {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 2%;
}

.content {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 2% 50px;
}

.main_header .row .content {
    padding: 0;
}


.dark {
    background: #333;
}



/*
Fade content bs-carousel with hero headers
Code snippet by maridlcrmn (Follow me on Twitter @maridlcrmn) for Bootsnipp.com
Image credits: unsplash.com
*/

/********************************/
/*       Fade Bs-carousel       */
/********************************/
.fade-carousel {
    position: relative;
    height: 100vh;
}

    .fade-carousel .carousel-inner .item {
        height: 100vh;
    }

    .fade-carousel .carousel-indicators > li {
        margin: 0 2px;
        background-color: #3498DB;
        border-color: #3498DB;
        opacity: .7;
    }

        .fade-carousel .carousel-indicators > li.active {
            width: 10px;
            height: 10px;
            opacity: 1;
        }

/********************************/
/*          Hero Headers        */
/********************************/
.hero {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0,0,0,.75);
    -webkit-transform: translate3d(-50%,-50%,0);
    -moz-transform: translate3d(-50%,-50%,0);
    -ms-transform: translate3d(-50%,-50%,0);
    -o-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
}

    .hero h1 {
        color: #fff;
        font-size: 4em;
        font-weight: bold;
        margin: 0;
        padding: 0;
        text-align: center;
    }

        .hero h1 span {
            color: #3498db;
            font-family: "微軟正黑體";
            text-align: center;
        }

    .hero h3 {
        color: #fff;
        font-family: "微軟正黑體";
        text-align: center;
        font-size: 1.5em;
        line-height: 1.5em;
    }

.fade-carousel .carousel-inner .item .hero {
    opacity: 0;
    -webkit-transition: 2s all ease-in-out .1s;
    -moz-transition: 2s all ease-in-out .1s;
    -ms-transition: 2s all ease-in-out .1s;
    -o-transition: 2s all ease-in-out .1s;
    transition: 2s all ease-in-out .1s;
}

.fade-carousel .carousel-inner .item.active .hero {
    opacity: 1;
    -webkit-transition: 2s all ease-in-out .1s;
    -moz-transition: 2s all ease-in-out .1s;
    -ms-transition: 2s all ease-in-out .1s;
    -o-transition: 2s all ease-in-out .1s;
    transition: 2s all ease-in-out .1s;
}

/********************************/
/*            Overlay           */
/********************************/
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #080d15;
    opacity: .6;
}

/********************************/
/*          Custom Buttons      */
/********************************/

.btn.btn-lg {
    padding: 10px 40px;
}

.btn.btn-hero,
.btn.btn-hero:hover,
.btn.btn-hero:focus {
    color: #f5f5f5;
    border: 1px solid #f5f5f5;
    outline: none;
    margin: 20px auto;
    ;
    border-radius: 0px;
    background-color: rgba(0,0,0,0);
}

.btn-hero2 {
    color: #FFFFFF;
    font-family: "微軟正黑體";
    background-color: #3498DB;
    float: right;
    margin: 80px 0;
    border: 1px solid #3498DB;
    letter-spacing: 1px;
    border-radius: 0px;
}

    .btn-hero2 i {
        margin-right: 5px;
    }

    .btn-hero2:hover {
        color: #3498DB;
        background-color: #FFFFFF;
    }

@media (max-width: 1024px) {
    .btn-hero2 {
        float: none;
    }
}

.btn-hero3 {
    color: #FFFFFF;
    font-family: "微軟正黑體";
    background-color: #3EC9C3;
    float: right;
    margin: 80px 0;
    border: 1px solid #3EC9C3;
    letter-spacing: 1px;
    border-radius: 0px;
}

    .btn-hero3:hover, .btn-hero3:active, .btn-hero3:focus {
        color: #3EC9C3;
        background-color: #EEEEEE;
    }

.btn-hero4 {
    padding: 20px;
    color: #3498DB;
    font-family: 微軟正黑體;
    background-color: #fff;
    border: 1px solid #3498DB;
}

    .btn-hero4:hover, .btn-hero4:active, .btn-hero4:focus {
        color: #fff;
        background-color: #3498DB;
    }


/********************************/
/*       Slides backgrounds     */
/********************************/
.fade-carousel .slides .slide-1,
.fade-carousel .slides .slide-2,
.fade-carousel .slides .slide-3,
.fade-carousel .slides .slide-4 {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fade-carousel .slides .slide-1 {
    background-image: url(../images/header1.jpg);
}

.fade-carousel .slides .slide-2 {
    background-image: url(../images/header2.jpg);
}

.fade-carousel .slides .slide-3 {
    background-image: url(../images/header3.jpg);
}

.fade-carousel .slides .slide-4 {
    background-image: url(../images/header4.jpg);
}

/********************************/
/*          Media Queries       */
/********************************/
@media screen and (min-width: 980px) {
    .hero {
        width: 980px;
    }
}

@media screen and (max-width: 640px) {
    .hero h1 {
        font-size: 4em;
    }
}

.main_header {
    position: fixed;
    top: 0px;
    max-height: 70px;
    z-index: 999;
    width: 100%;
    background: none;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    top: -100px;
}

.main_header2 {
    position: fixed;
    top: 0px;
    max-height: 70px;
    z-index: 999;
    width: 100%;
    background: none;
    overflow: hidden;
    opacity: 1;
    top: -100px;
}


@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}


@media only screen and (max-width : 600px) {
    .cd-headline b {
    }
}





.open-nav {
    max-height: 500px !important;
}

    .open-nav .mobile-toggle {
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
    }

.sticky {
    background-color: #E7F3FD;
    opacity: 1;
    top: 0px;
}

.sticky2 {
    background-color: #E7F3FD;
    opacity: 1;
    top: 0px;
}


.logo {
    float: left;
    display: block;
    padding-top: 6px;
    padding-left: 6px;
    margin: 8px 0;
}

    .logo img {
        height: 45px;
    }

.main_menu li a {
    color: #666666;
    font-family: "微軟正黑體";
}

.main_menu li .myemail {
    color: #666666;
    font-family: "微軟正黑體";
    font-size: 1em;
    background-color: transparent;
    border: none;
    margin-right: 5px;
    padding: 0;
}

#myNavbar p {
    float: right;
    margin: 0;
}

    #myNavbar p .mylogin {
        color: #666666;
        font-family: "微軟正黑體";
        background-color: transparent;
        border: none;
        margin-right: 5px;
        display: inline-block;
        padding: 25px 5px;
        font-size: 0.9em;
    }

    #myNavbar p span {
        color: rgb(52, 152, 219);
        margin-right: 5px;
        font-weight: 600;
    }

    .main_menu li:hover a, #myNavbar p:hover .mylogin, .main_menu li:hover .myemail {
        color: #fff;
        border: none;
        outline: none;
    }

    .main_menu li a:focus, #myNavbar p .mylogin:focus, .main_menu li:focus .myemail {
        border: none;
        outline: none;
    }

    .main_menu li a:active, #myNavbar p .mylogin:active, .main_menu li:active .myemail {
        text-decoration: none;
        border: none;
        outline: none;
    }

@media only screen and (max-width: 1023px) {
    .logo {
        padding-top: 0;
        float: left;
        margin-top: -10px;
    }

    .main_header {
        padding-top: 25px;
    }
}

nav {
    float: right;
    margin: 0;
}

@media only screen and (max-width: 1023px) {
    nav {
        width: 100%;
        margin: 10px auto;
    }
}

nav ul {
    list-style: none;
    overflow: hidden;
    text-align: right;
    float: left;
    margin: 0;
}

@media only screen and (max-width: 1023px) {
    nav ul, #myNavbar p .mylogin {
        text-align: center;
        width: 100%;
    }

    #myNavbar p {
        text-align: center;
        width: 100%;
    }

        #myNavbar p .mylogin {
            width: 100%;
            padding: 7px 0;
        }
}

nav ul li {
    display: inline-block;
    padding: 25px 5px;
    font-size: 0.9em;
}

    nav ul li:hover, #myNavbar p:hover .mylogin {
        background-color: #9FD0F9;
    }

@media only screen and (max-width: 1023px) {
    nav ul li {
        width: 100%;
        padding: 7px 0;
        margin: 0 0 0 -35px;
    }
}

nav ul a li {
    color: #777;
    text-transform: uppercase;
    font-size: 1em;
    font-family: 微軟正黑體;
}

nav ul a:hover li {
    color: #FFFFFF;
}

@media only screen and (max-width: 1023px) {
    nav ul li {
        width: 100%;
        padding: 7px 0;
        margin: 0 0 0 -35px;
    }
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    right: 22px;
    top: 0;
    width: 30px;
    -webkit-transition: all 200ms ease-in;
    -moz-transition: all 200ms ease-in;
    transition: all 200ms ease-in;
}

@media only screen and (max-width: 1023px) {

    .mobile-toggle {
        display: block;
    }
}

.mobile-toggle span {
    width: 30px;
    height: 4px;
    margin-bottom: 6px;
    border-radius: 1000px;
    background: #8f8f8f;
    display: block;
}

.mouse {
    display: block;
    margin: 0 auto;
    width: 26px;
    height: 46px;
    border-radius: 13px;
    border: 2px solid #ffffff;
    position: absolute;
    position: absolute;
    left: 51%;
    margin-left: -26px;
}

    .mouse span {
        display: block;
        margin: 6px auto;
        width: 2px;
        height: 2px;
        border-radius: 4px;
        background: #ffffff;
        border: 1px solid transparent;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-name: scroll;
        animation-name: scroll;
    }

@-webkit-keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}


/*============== 首頁 最新消息 ==============*/

.news {
    background-color: #3498DB;
}

/*.newsbody:before {
  content: ' ';
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(img/callout1.jpg) center 0 no-repeat;
  background-size: cover;
}
*/

.news_section {
}

.quotes {
    float: left;
    top: 20px;
}

    .quotes blockquote {
        margin: 0;
        border-left: none;
    }

    .quotes h3 {
        font-family: "微軟正黑體";
        font-size: 1em;
        color: #FFFFFF;
        text-align: justify;
        margin-top: 0px;
        line-height: 1.5em;
    }

        .quotes h3 span {
            font-family: "Raleway",sans-serif;
            color: #FFF;
            font-size: 0.8em;
            font-weight: 500;
            margin-right: 10px;
        }


/*============== 內頁 最新消息 ==============*/

.news_page {
    padding-bottom: 80px;
    padding-top: 80px;
}

.my-panel-group {
}

.my-panel {
    border-bottom: 1px solid #E6E6E6;
}

.date-group {
    margin: 0;
    bottom: -9px;
    display: inline-block;
    position: relative;
}

.date {
    position: relative;
    margin: 0 auto;
    width: 40px;
    background: #e6e6e6;
    text-align: center;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

.month {
    font-family: "微軟正黑體";
    font-size: 0.8em;
    padding: 4% 16%;
    background-color: rgb(180,0,0);
    color: white;
}

.day {
    padding: 4% 16%;
    font-size: 1em;
    color: #333;
}

.my-panel-heading {
    padding-top: 10px;
    text-align: left;
}

    .my-panel-heading .my-panel-title {
        line-height: 2em;
        display: inline-block;
    }

        .my-panel-heading .my-panel-title p {
            margin: 0px;
            color: #333;
            font-size: 1.2em;
            font-family: 微軟正黑體;
            text-align: justify;
            padding-left: 5px;
        }

        .my-panel-heading .my-panel-title span {
            font-size: 0.8em;
            font-family: "Raleway",sans-serif;
            background-color: #3498DB;
            color: #fff;
            padding: 5px;
            border-radius: 4px;
            margin-right: 10px;
        }

.my-panel-date {
    text-align: left;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    color: #242424;
}

.my-panel-body {
    background-color: #E6E6E6;
}

    .my-panel-body img {
        width: 100%;
        padding: 15px 0;
    }

    .my-panel-body p {
        color: #333;
        font-family: "微軟正黑體";
        font-size: 1em;
        line-height: 2em;
        text-align: justify;
        padding-top: 15px;
    }



/*============== 首頁 關於學校 ==============*/
.about {
    padding-bottom: 60px;
    background-color: #FFFFFF;
}

.single_service {
    background-color: #F5F6FA;
    width: 23%;
    padding: 10px;
    margin: 0px 1% 20px;
}

@media (max-width: 992px) and (min-width: 769px) {
    .single_service {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .single_service {
        width: 98%;
    }
}

.single_service:hover {
    background-color: #E7F3FD;
    -webkit-transition: ease-out .3s;
    -moz-transition: ease-out .3s;
    -o-transition: ease-out .3s;
    transition: ease-out .3s;
}

.single_service i {
    position: relative;
    overflow: hidden;
}

.single_service .ico {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin: 0px auto;
    text-align: center;
}

@media (max-width: 992px) and (min-width: 481px) {
    .single_service .ico {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .single_service .ico {
        height: 200px;
    }
}

.single_service h3 {
    font-family: "微軟正黑體";
    font-size: 1.5em;
    text-align: justify;
    font-weight: 400;
    letter-spacing: 1px;
}

.single_service p {
    font-family: "微軟正黑體";
    text-align: justify;
    font-size: 16px;
    color: #666666;
    letter-spacing: 1px;
    line-height: 1.5em;
}


/*============== 內頁 開班理念 教學特色 環境設備 ==============*/

.about_page {
    margin-top: 80px;
}

.about_page_section {
}

.my-carousel-inner .item img {
    width: 100%;
}

.my-carousel-name {
    font-size: 1.2em;
    font-family: 微軟正黑體;
    text-align: justify;
}

    .my-carousel-name i {
        color: #3498DB;
        margin-right: 5px;
    }

.my-carousel-caption {
    width: 100%;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px 25px 4px 25px;
    text-align: center;
    line-height: 1.5em;
    font-family: "微軟正黑體";
}

.my-icon-left {
    position: absolute;
    left: 10px;
    top: 38%;
    ;
    color: #fff;
}

.my-icon-right {
    position: absolute;
    right: 10px;
    top: 38%;
    ;
    color: #fff;
}

.ideal-text {
    text-align: justify;
    font-family: 微軟正黑體;
    line-height: 2em;
    padding: 30px 30px 0;
}

.about-nav {
    display: inline-flex;
    list-style: none;
    position: relative;
    left: -21px;
}

    .about-nav li {
        border: 1px solid #fff;
        letter-spacing: 2px;
        background-color: #3498DB;
        padding: 7px 9px 7px 11px;
        font-size: 0.8em;
        margin: 20px auto 80px;
        max-width:80px;
    }

        .about-nav li:hover {
            background-color: #34D5DB;
        }

        .about-nav li a {
            color: #fff;
        }


/*============== 內頁 師資陣容 ==============*/


.about_page_section .brick2 {
    background-color: #F5F6FA;
    width: 300px;
    /*-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;*/
}

    .about_page_section .brick2:hover {
        background-color: #3498DB;
    }

.brick2 .slider-text {
    padding: 20px;
    font-family: "微軟正黑體";
    letter-spacing: 1px;
    line-height: 2em;
}

    .brick2 .slider-text h3 {
        font-size: 1.5em;
        margin: 20px 0px;
        /*-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;*/
        color: #3498DB;
        font-weight: 600;
        line-height: 1.5em;
    }

.brick2:hover .slider-text h3 {
    color: #FF6;
}

.brick2 .slider-text h4 {
    font-size: 1.5em;
    margin: 20px 0px;
    /*-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;*/
}

.brick2:hover .slider-text h4 {
    color: #fff;
}

.brick2 .slider-text .slider-date {
    font-size: 0.8em;
    margin-top: -15px;
    /*-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;*/
}

.brick2:hover .slider-text .slider-date {
    color: #FFF;
}

.brick2 .slider-text .slider-title {
    background-color: #333;
    color: #FFF;
    border-radius: 4px;
    /*-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;*/
}

.brick2:hover .slider-text .slider-title {
    background-color: #fff;
    color: #3498DB;
}

.brick2 .slider-text .slider-detail {
    text-align: justify;
    /*-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;*/
}

.brick2:hover .slider-text .slider-detail {
    color: #FFF;
}

.brick2 .slider-text .slider-detail2 {
    font-size: 1.5em;
    /*-webkit-transition: all .5s ease-in-out;
  -moz-transition: all .5s ease-in-out;
  -o-transition: all .5s ease-in-out;
  -ms-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;*/
}

.brick2:hover .slider-text .slider-detail2 {
    color: #FFF;
}

/* =========== 首頁 倒數計時 ===========*/

#time .item {
    margin: 0px auto;
    text-shadow: 2px 2px #000000;
    padding: 0 40px;
}

    #time .item .item_descrip {
        background-color: rgba(0, 0, 0, 0.5);
        padding: 15px;
    }

    #time .item .timer-bg {
        background-color: rgba(0,0,0,0.5);
        padding-top: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    #time .item h4 {
        color: #FFFFFF;
        font-family: "微軟正黑體";
        font-size: 1.4em;
        font-weight: 400;
        text-align: center;
        line-height: 1.5em;
        letter-spacing: 1px;
        padding-bottom: 20px;
    }

    #time .item .timer-date {
        font-size: 1em;
        color: #A0A0A0;
        margin-bottom: 20px;
    }

    #time .item .timer-day {
        color: #FFFFFF;
        font-family: "微軟正黑體";
        text-align: center;
        font-size: 16px;
    }

    #time .item span {
        color: #FF2828;
        font-size: 2.5em;
        padding-left: 10px;
        padding-right: 10px;
    }


/* =========== 首頁 招生資訊 ===========*/

.imformation {
    background-color: #FFFFFF;
    padding-bottom: 60px;
}

.imformation_ad {
    background-image: url(../images/00002.jpg);
    width: 100%;
    height: 600px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
}

@media (max-width:1024px) {
    .imformation_ad {
        background-image: url(../images/00002-2.jpg);
    }
}

@media (max-width:990px) {
    .imformation_ad {
        background-image: none;
        height: 100%;
    }
}

.bs-example {
}

    .bs-example ul {
        list-style-type: none;
        margin-left: -40px;
    }

        .bs-example ul li {
            margin-bottom: 20px;
        }

            .bs-example ul li a {
            }

            .bs-example ul li h3 {
                font-family: "微軟正黑體";
                margin-left: 85px;
                text-align: justify;
                font-size: 1.5em;
            }

            .bs-example ul li p {
                font-family: "微軟正黑體";
                margin-left: 85px;
                color: #888;
                font-size: 16px;
                text-align: justify;
            }


            .bs-example ul li a span {
                background-color: #3EC9C3;
                font-family: "Raleway, sans-serif";
                color: #FFFFFF;
                line-height: 1em;
                text-align: center;
                border-top-left-radius: 6px;
                border-bottom-left-radius: 6px;
                display: block;
                position: absolute;
                height: 4em;
                padding: 0.5em 0.8em;
                margin: 2px 0;
                letter-spacing: 1px;
            }

                .bs-example ul li a span::after {
                    content: '';
                    position: absolute;
                    bottom: 0px;
                    right: -1.2em;
                    border-left: solid 1.25em #3EC9C3;
                    border-top: solid 2em transparent;
                    border-bottom: solid 2em transparent;
                }

            .bs-example ul li a:hover span {
                background-color: #2F9B94;
            }

                .bs-example ul li a:hover span::after {
                    border-left: solid 1.25em #2F9B94;
                }

    .bs-example strong {
        font-family: "微軟正黑體";
        font-weight: 600;
        font-size: 2em;
        display: block;
        line-height: 1.2em;
    }



/* =========== 內頁 招生資訊 ===========*/

.imformation_page {
    padding-top: 80px;
    background-color: #FFFFFF;
}

.tabbable ul {
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

@media (max-width: 992px) {
    .tabbable ul {
        margin-top: 10px;
    }
}

.tabbable ul li {
}

@media (max-width: 992px) {
    .tabbable ul li {
        position: relative;
        display: block;
        float: left;
        margin-bottom: 10px;
        margin-top: 0 !important;
    }
}

.tabbable ul li a {
    margin-right: 10px;
}

    .tabbable ul li a span {
        background-color: #3EC9C3;
        font-family: "Raleway, sans-serif";
        color: #FFFFFF;
        line-height: 1em;
        text-align: center;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        display: inline-block;
        position: relative;
        height: 4em;
        padding: 0.5em 0.8em;
        letter-spacing: 1px;
        font-size: 0.8em;
    }

@media (max-width: 992px) {
    .tabbable ul li a span {
        border-radius: 6px;
    }
}

.tabbable ul li a:hover span,
.tabbable ul li a:focus span,
.tabbable ul li.active a:hover span,
.tabbable ul li.active a:focus span {
    background-color: #2F9B94;
}

.tabbable ul li a span::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: -1.2em;
    border-left: solid 1.25em #3EC9C3;
    border-top: solid 2em transparent;
    border-bottom: solid 2em transparent;
}

.tabbable ul li a:hover span::after,
.tabbable ul li a:focus span::after,
.tabbable ul li.active a:hover span::after,
.tabbable ul li.active a:focus span::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: -1.2em;
    border-left: solid 1.25em #2F9B94;
    border-top: solid 2em transparent;
    border-bottom: solid 2em transparent;
}

@media (max-width: 992px) {
    .tabbable ul li a span::after {
        display: none;
    }
}

.tabbable ul li a span strong {
    font-family: "微軟正黑體";
    font-weight: 600;
    font-size: 2em;
    display: block;
    line-height: 1.2em;
}

.tabbable ul li a h3 {
    font-family: "微軟正黑體";
    margin-left: 25px;
    text-align: justify;
    font-size: 1.5em;
    position: relative;
    display: inline-block;
    top: -8px;
}

@media (max-width: 992px) {
    .tabbable ul li a h3 {
        display: none;
    }
}

.tab-content {
    padding: 0;
    margin-bottom: 80px;
}

    .tab-content h3 {
        font-family: "微軟正黑體";
        font-size: 1.5em;
        text-align: center;
        line-height: 1.5em;
        margin: 0;
        background-color: #34495e;
        color: #fff;
        padding: 20px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .tab-content img {
        margin-top: 15px;
        padding: 0 15px;
        width: 100%;
    }

    .tab-content p {
        color: #888;
        font-family: "微軟正黑體";
        font-size: 16px;
        text-align: justify;
        line-height: 1.5em;
        margin-top: 15px;
        padding: 0 15px;
    }


.rwd-table {
    font-family: "微軟正黑體";
    font-size: 1.2em;
    margin: 0 auto;
    width: 100%;
}

    .rwd-table table {
        table-layout: fixed;
        margin: 1rem auto;
        width: 90%;
        box-shadow: 0 0 2px rgba(0,0,0,.4);
        border-collapse: collapse;
    }

    .rwd-table thead {
    }

    .rwd-table th {
        background: #ddd;
        font-weight: 400;
        padding: 15px;
        text-align: center;
    }

        .rwd-table th:last-child {
        }

    .rwd-table tr:nth-child(even) {
        background: rgba(17,149,178,.2);
    }

    .rwd-table td {
        padding: 15px;
        background-color: #eee;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }

        .rwd-table td:last-child {
            border-right: 0 none;
            text-align: center;
        }

@media only screen and (max-width:768px) {
    .rwd-table table {
        width: 100%;
    }

    .rwd-table thead {
        display: none;
    }

    .rwd-table th {
    }

    .rwd-table tr {
        border-bottom: 2px solid rgba(17,149,178,.35);
    }

        .rwd-table tr:last-child {
            border-bottom: 0 none;
        }

    .rwd-table td {
        display: block;
        padding: 10px;
        border-right: none;
        text-align: justify;
    }

        .rwd-table td:before {
            content: attr(data-head)"：";
            display: inline-block;
            width: auto;
            ;
            min-width: 35%;
            font-weight: 400;
            padding-right: 1rem;
            font-variant: small-caps;
        }

        .rwd-table td:last-child {
            text-align: left;
        }

        .rwd-table td:nth-child(odd) {
            background: #ddd;
            ;
        }
}





/* =========== 首頁 課程報名 ===========*/

#joinus {
    color: white;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background-image: url(../images/firstBG.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 1024px) {
    #joinus {
        /*display:none;*/
    }
}

#joinus-b {
    color: white;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    background-image: url(../images/firstBG.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

@media (min-width: 1025px) {
    #joinus-b {
        /*display:none;*/
    }
}

#joinus p, #joinus-b p {
    font-family: 微軟正黑體;
    font-size: 1.2em;
    letter-spacing: 1px;
    line-height: 1.5em;
    padding: 20px;
}

/* =========== 活動花絮 ===========*/

.gallery {
    padding-bottom: 80px;
    background-color: #F5F5F5;
}

    .gallery .gallery-text {
        font-size: 1.2em;
        text-align: center;
        line-height: 1.5em;
        margin-bottom: 40px;
        font-family: 微軟正黑體;
    }

.free-wall {
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
}

.brick {
    width: 300px;
    background-color: #3498DB;
}

    .brick img {
        margin: 0px;
        padding: 0px;
        display: block;
    }

    .brick i {
        font-size: 3em !important;
        color: #ffffff;
        position: absolute;
        right: 15px;
        bottom: 12px;
    }

    .brick .hover-text {
        position: absolute;
        background-color: rgba(0,0,0,0);
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: all 0.5s;
        text-align: center;
    }

        .brick .hover-text:hover {
            background-color: rgba(18, 50, 65, 0.7);
            opacity: 1;
            z-index: 100;
        }

    .brick span {
        background-color: rgb(51, 58, 63);
        font-family: "Raleway, sans-serif";
        color: #FFF;
        line-height: 1em;
        text-align: center;
        display: block;
        position: absolute;
        height: 4em;
        padding: 0.5em 0.8em;
        letter-spacing: 1px;
        border-radius: 6px;
        top: 15px;
        left: 15px;
        -webkit-box-shadow: 0px 1px 3px rgba(0,0,34,0.5);
        box-shadow: 0px 1px 3px rgba(0,0,34,0.5);
    }

    .brick strong {
        font-family: "微軟正黑體";
        font-weight: 600;
        font-size: 2em;
        display: block;
        line-height: 1.2em;
        z-index: 1;
    }

.my-freewall-info {
    padding: 10px 20px;
    font-family: "微軟正黑體";
}

    .my-freewall-info h4 {
        text-align: justify;
        line-height: 1.5em;
        color: #FFFFFF;
    }

    .my-freewall-info h5 {
        text-align: justify;
        line-height: 1.5em;
        color: #FFFFFF;
    }

/*============== 首頁 行事曆 ==============*/

.calendar_area {
    background-color: #3498db;
    padding: 100px 0 40px 0;
}

.calendar-detail {
    margin: 80px 0px;
    padding: 45px;
}

@media (max-width: 992px) {
    .calendar-detail {
        margin: 0 0 80px 0;
        padding: 0 45px 45px 45px;
    }
}


.calendar-detail h4 {
    font-size: 1.5em;
    font-family: "微軟正黑體";
    color: #fff;
    text-align: justify;
    font-weight: 100;
}

.calendar-detail p {
    font-size: 1.2em;
    font-family: 微軟正黑體;
    text-align: justify;
    color: #fff;
}



.calendar {
    width: 90%;
    margin: 0 auto;
}

.nav-justified {
    font-family: "微軟正黑體";
}

    .nav-justified td {
        padding: 0;
        text-align: center;
    }

.year {
    text-align: center;
    font-family: "微軟正黑體";
    font-size: 1.5em;
    width: 90%;
    margin: 30px auto 5px;
}

    .year a i {
        padding-top: 7px;
        color: rgba(62,201,195,0.5);
    }

    .year a:hover i {
        color: rgba(62,201,195,1);
    }

    .year p {
        display: inline-block;
    }



.calendar ol, .calendar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.days {
    float: left;
    width: 14.2857142857%;
    font-size: 1em;
    text-align: center;
    padding: 10px 0 10px 0;
    font-weight: 900;
    font-family: 微軟正黑體;
}

.calendar ol, .calendar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1em;
    font-family: 'Raleway', sans-serif;
}

.column {
    position: relative;
    float: left;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1em;
    text-align: center;
    padding: 10px 0 10px 0;
    color: #000;
}

.holiday {
    color: rgb(203, 87, 80);
}

.light {
    color: rgba(56, 56, 56, 0.5);
}

.today {
    background-color: rgb(237, 238, 242);
}

.work {
    position: absolute;
    bottom: 3px;
    left: -1px;
    right: 0;
    margin: 0 auto;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    background: #19dd89;
    width: 5px;
    height: 5px;
    display: block;
}


/*============== 首頁 榮譽榜 ==============*/

.honorroll {
    background-color: #FFFFFF;
    padding-bottom: 50px;
}

.my_btn-default, .my_btn-default:hover, .my_btn-default:focus, .my_btn-default:active {
    background-color: #3498DB !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-family: 微軟正黑體 !important;
    padding: 10px 20px !important;
    border: #FFF !important;
}

.my_dropdown-menu {
    margin: 0;
    border-radius: 0;
    border: 1px solid #3498DB;
    font-family: 微軟正黑體;
}

.roll-card {
    padding: 15px;
    margin-bottom: 30px;
}

    .roll-card .roll-images {
        margin: 0 auto 20px;
        /*border-radius: 200px;
	-webkit-box-shadow: 0px 1px 8px rgba(0,0,0,0.3);*/
        box-shadow: 0px 1px 8px rgba(0,0,0,0.3);
    }

    .roll-card h4 {
        font-family: "微軟正黑體";
        font-size: 1.5em;
    }

    .roll-card .roll-title {
        font-family: "微軟正黑體";
        color: #888;
        font-size: 16px;
    }

    .roll-card .roll-date {
        font-size: 0.8em;
    }

/*============== 首頁 聯絡我們 ==============*/


.contact_area {
    background-color: #F4F9FF;
    padding-bottom: 80px;
}

.contact_section {
}

    .contact_section h1 {
        color: #3498db;
        text-transform: uppercase;
        font-weight: 600;
    }

.contact_info {
    text-align: justify;
    padding: 0px;
    font-family: "微軟正黑體";
    font-size: 1em;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 20px;
}

    .contact_info li {
        list-style: outside none none;
        margin-left: 0px;
        margin-bottom: 20px;
        margin-top: 0px;
    }

.my-fa {
    width: 25px;
    height: 25px;
    color: #FFFFFF;
    text-align: center;
    background-color: #3EC9C3;
    border-radius: 100px;
    padding-top: 6px;
    margin-right: 5px;
}
/*.myemail{
	background-color: #3EC9C3;
	width: 25px;
	height: 25px;
	position: relative;
	border-radius: 100px;
	overflow: hidden;
	border-style: none;
	margin-right: 5px;
	background-color: rgba(255,255,255,0);
}
.myemail-animate{
	animation: up-down 1s infinite -0.1s ease-in-out;
	color: #FFFFFF;
}*/
@keyframes up-down {
    50% {
        transform: translateY(-3px);
    }
}

@-webkit-keyframes up-down {
    50% {
        transform: translateY(-3px);
    }
}


.contact_social {
    margin-top: 5px;
}

    .contact_social li {
        display: inline;
        margin-left: 15px;
    }

.fb:hover {
    color: #3B5998;
}

.tw:hover {
    color: #55acee;
}

.rss:hover {
    color: #f26522;
}

.gp:hover {
    color: #dd4b39;
}

.contact_social {
    font-size: 2em;
    text-align: left;
}

#map {
    width: 100%;
    height: 450px;
    border-top: 1px solid #E4E4E4;
}

/*========= 首頁 聯絡我們 跳出寫信給我視窗 =========*/

.my-modal-header {
    background-color: #E6E6E6;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.my-modal-title {
    color: #fff;
    font-family: "微軟正黑體";
    font-size: 2em;
    margin: 0 auto 15px;
}

.my-form {
    margin-bottom: 80px;
}

.my-form-control {
    display: block;
    width: 100%;
    padding: 10.7px;
    font-size: 1em;
    line-height: 2em;
    background-color: rgba(255,255,255,0.2);
    margin-bottom: 16px;
    border: none;
}

    .my-form-control::-webkit-input-placeholder {
        color: white;
        font-family: "微軟正黑體";
        letter-spacing: 1px;
    }

    .my-form-control:-moz-placeholder {
        color: white;
        font-family: "微軟正黑體";
        letter-spacing: 1px;
    }

    .my-form-control::-moz-placeholder {
        color: white;
        font-family: "微軟正黑體";
        letter-spacing: 1px;
    }

    .my-form-control:-ms-input-placeholder {
        color: white;
        font-family: "微軟正黑體";
        letter-spacing: 1px;
    }

    .my-form-control:focus {
        border: none;
        box-shadow: none;
    }

    .my-form-control td {
        text-align: left;
        font-family: "微軟正黑體";
    }

        .my-form-control td input {
            margin-right: 5px;
            margin-left: 5px;
        }

.my-form-control-b {
    display: block;
    width: 100%;
    padding: 10.7px;
    font-size: 1em;
    line-height: 2em;
    background-color: #fff;
    margin-bottom: 16px;
    border: none;
}

    .my-form-control-b::-webkit-input-placeholder {
        font-family: "微軟正黑體";
        letter-spacing: 1px;
    }

    .my-form-control-b:-moz-placeholder {
        font-family: "微軟正黑體";
        letter-spacing: 1px;
    }

    .my-form-control-b::-moz-placeholder {
        font-family: "微軟正黑體";
        letter-spacing: 1px;
    }

    .my-form-control-b:-ms-input-placeholder {
        font-family: "微軟正黑體";
        letter-spacing: 1px;
    }

    .my-form-control-b:focus {
        border: none;
        box-shadow: none;
    }

#form-font {
    font-size: 1.5em;
}

#form-font-span {
    font-family: "微軟正黑體";
    font-size: 16px;
    font-weight: 900;
}

.btn-contactus, .btn-contactus:focus {
    background-color: #3EC9C3;
    border-radius: 4px;
    font-family: "微軟正黑體";
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 1px;
    vertical-align: middle;
    text-decoration: none;
    float: right;
    margin-left: 10px;
    margin-top: 10px;
    border-style: none;
    padding: 10px 20px;
}

    .btn-contactus:hover, .btn-contactus:active {
        text-decoration: none;
        background-color: #2D9D98;
    }

#myModal p {
    font-family: 微軟正黑體;
    text-align: justify;
    padding-top: 20px;
    line-height: 2em;
}

/*============= footer =============*/
.footer {
    background-color: #CB5750;
    padding-top: 10px;
}

    .footer p {
        font-family: "微軟正黑體",sans-serif;
        letter-spacing: 1px;
        font-size: 1em;
        color: #fff;
        padding: 10px 0;
    }

        .footer p a {
            color: #fff;
        }

.footer_right {
    float: right;
}

.footer_left {
    float: left;
}

.footer_people {
    float: right;
}

.footer_copy {
    float: left;
}

@media (max-width:480px) {
    .footer_right {
        float: none;
    }

    .footer_left {
        float: none;
    }
}
@media (max-width:600px) {
    .footer_people {
        float: none;
    }

    .footer_copy {
        float: none;
    }
}
