/* CSS RESET START */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* CSS RESET END */
/* CSS RESET SETTING START */
/* img reset */
img{
    max-width: 100%;
    height: auto;
}

/* box-sizing */
*,*:before,*:after{
    box-sizing: border-box;
}

/* text-center */
.text-center{
    text-align: center;
}
/* menu-disabled */
.menu-disabled{
    cursor: not-allowed;
}
/* CSS RESET SETTING END */
/* CSS LAYOUT START */
body{
    font-family: -apple-system, BlinkMacSystemFont, "Microsoft JhengHei","Segoe UI", "Roboto", "Ubuntu", "Droid Sans","Helvetica Neue", sans-serif;
}

.container{
    max-width: 960px;
    margin: 0 auto;
}
.header{
    background: #D5E8D4;
}
.main-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    height: 92px;
}

.logo a{
    display: block;
    width: 150px;
    height: 36px;
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: 101%;
    overflow: hidden;
    white-space: nowrap;
}
.menu{
    display: flex;
}
.menu > li{
    position: relative;
}
.menu > li a{
    display: block;
    width: 120px;
    text-decoration: none;
    text-align: center;
    color: slateblue;
    background: #D5E8D4;
    padding-top: 10px;
    padding-bottom: 10px;
}
.menu > li a:hover{
    background: slateblue;
    color: #B9E0A5;
}
/* 下拉式收闔選單 */
.menu ul{
    display: none;
    position: absolute;
    z-index: 2;
}
.menu > li:hover ul{
    display: block;
}
@media (max-width: 940px){
    .menu{
        flex-wrap: wrap;
        margin-left: 10px;
    }
    .menu > li{
        width: 33.33333%;
    }
    .menu > li a{
        min-width: 120px;
        width: 100%;
    }
    .menu ul{
        width: 100%;
    }
}
@media (max-width: 767px){
    .menu{
        margin-left: 0;
    }
    .menu > li{
        width: 100%;
    }
    .menu > li a{
        background: #B9E0A5;
        color: #222;
        width: 100%;
    }
    .menu ul{
        width: 100%;
        z-index: 2;
    }
}
/* 在PC上隱藏漢堡選單 */
.showmenu{
    display: none;
}
@media (max-width: 767px){
    .menu{
        /* 隱藏選單開始 */
        max-height: 0px;
        overflow: hidden;
        transition: max-height 2.3s;
        position: absolute;
        z-index: 100;
        top: 92px;
        left: 0;
        right: 0;
        background: #B9E0A5;
        flex-wrap: wrap;
    }
    .menu > li{
        width: 100%;
    }
    .menu > li a{
        transition: all 0.3s;
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 24px;
        border-bottom: 1px solid slateblue;
    }
    .menu > li a:hover{
        background: slateblue;
        color: #fff;
    }
    /* menu icon */
    .showmenu{
        display: flex;
        margin: 10px;
        text-decoration: none;
        font-size: 32px;
        color: slateblue;
    }
    /* jQuery 點擊後動態在 body 加上 class */
    .menu-show .menu{
        max-height: 500px;
    }
    .menu-show .menu:hover{
        overflow: visible;
    }
}

/* 漢堡選單 + 下拉式 hover 效果 */
@media (max-width: 767px){
    .menu > li:hover ul li a{
        background: #D5E8D4;
    }
    .menu > li:hover ul li a:hover{
        color: slateblue;
    }
}

/* footer */
.footer{
    background: #E1D5E7;
}
.footer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}
.social{
    display: flex;
}
.copyright{
    display: flex;
    align-items: center;
}
.copyright p{
    padding-right: 10px;
}
.disabled{
    border: none;
    background-image: none;
    opacity: 0.40;
    cursor: not-allowed;
    -webkit-box-shadow: none;
    box-shadow: none;
    pointer-events: none;
}
@media (max-width: 768px){
    .footer .container{
        flex-wrap: wrap;
    }
    .social{
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    }
    .copyright{
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    }
}
@media (max-width: 569px){
    .copyright{
        flex-wrap: wrap;
    }
    .copyright p, .copyright h2{
        padding: 5px 0;
    }
}
/* offcanvas 左右選單切換 */
.header-container{
    display: flex;
    position: relative;
}
.main{
    width: 100%;
    transition: 0.3s ease;
}
.aside{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 270px;
    height: 512px;
    background: slateblue;
    overflow: hidden;
    transform: translateX(-270px);
    z-index: 3;
    transition: 0.3s ease;
    opacity: 0;
}
/* offcanvas 關鍵語法 */
.open .main{
    transform: translateX(0px);
}
.open .aside{
    transform: translateX(0px);
    opacity: 1;
}
.bar-left{
    display: flex;
    align-items: center;
}
.bar-left .offcanvas{
    padding-left: 10px;
}
/* asideoff */
.asideoff{
    position: fixed;
    top: 5px;
    right: 5px;
    font-size: 32px;
}
.asideoff a{
    color: #222;
}
.asideoff a:active{
    color: crimson;
}
/* offcanvas icon */
.offcanvas{
    font-size: 32px;
    color: slateblue;
}
.offcanvas:active{
    color: crimson;
}
/* offcanvas 選單內容 */
.aside h2{
     font-size: 28px;
     text-align: center;
     padding-top: 60px;
}
.offcanvas-menu h3{
    text-align: center;
    font-size: 24px;
    padding: 30px 0;
}
.offcanvas-menu img{
    display: block;
    margin: 0 auto;
}
.offcanvas-menu p{
    text-align: center;
    padding: 10px 0;
}
.offcanvas-menu p a{
    text-decoration: none;
}
.offcanvas-menu p a:hover{
    color: crimson;
}
/* CSS LAYOUT END */

/* CSS INDEX START */
.banner{
    height: 420px;
    background-image: url(../img/star-big.jpg);
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner h2{
    font-size: 36px;
    color: #fff;
}
/* slogan */
.slogan{
    background: #9AC7BF;
    padding: 20px;
    margin: 5px 0;
}
.slogan h2{
    font-size: 20px;
}
.slogan p{
    padding-top: 10px;
}
/* title */
.title h2{
	text-align: center;
	padding: 20px 0;
	font-size: 32px;
}
.title ul{
	padding: 10px 0;
	font-size: 20px;
}
.title ul li:nth-child(1){
	background: #3399FF;
	color: #fff;
	padding: 20px;
}
.title ul li:nth-child(2){
	background: #007FFF;
	color: #fff;
	padding: 20px;
}
.title ul li:nth-child(3){
	background: #0066CC;
	color: #fff;
	padding: 20px;
}
.title ul li:nth-child(4){
	background: #004C99;
	color: #fff;
	padding: 20px;
}
.title ul li:nth-child(5){
	background: #003366;
	color: #fff;
	padding: 20px;
}
.title ul li:nth-child(6){
	background: #001933;
	color: #fff;
	padding: 20px;
}

/* 瓦特格雷斯的內容 */
.contentList > h3{
    text-align: center;
    font-size: 32px;
    padding: 20px 0;
}
.containerList{
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.itemList{
    width: 23%;
    background: slateblue;
    text-align: center;
    margin-bottom: 10px;
    padding: 20px;
}
.itemList h3{
    font-size: 28px;
    padding: 10px 0;
    font-weight: bold;
    color: #222;
}
.itemList ul{
    padding: 5px 0;
}
.itemList ul li{
    padding: 5px 0;
    font-size: 20px;
}
@media (max-width: 767px){
    .itemList{
        width: 46%;
    }
}
@media (max-width: 569px){
    .itemList{
        width: 92%;
    }
}

/* line商店 */
.linestoreCard > h3{
    text-align: center;
    font-size: 32px;
    padding: 20px 0;
}
.card ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #F8CECC;
    padding: 5px;
    margin-bottom: 20px;
}
.card ul li{
    width: 31.33333%;
    background: #ffffff;
}
.bg-card{
    background: slateblue;
}
.bg-card h2{
    font-size: 48px;
    text-align: center;
    color: #222;
    padding: 20px 0;
}
.card li h3{
    font-size: 28px;
    text-align: center;
    padding: 36px 0;
    color: slateblue;
}
.card li p{
    padding: 20px;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
}
@media (max-width: 767px){
    .card ul{
        display: block;
    }
    .card ul li{
        width: 93.99999%;
        margin: 0 auto;
    }
}
/* CSS INDEX END */

/* CSS ABOUT START */
.two-column-card{
    display: flex;
    justify-content: space-around;
}
.two-column-list{
    width: 48%;
    padding: 30px 0;
    background: #D4E1F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 8px;
}
.two-column-list:nth-child(2){
    padding-left: 30px;
}
.two-column-list img{
    display: block;
    margin: 10px auto;
}
.two-column-list h3{
    font-size: 24px;
    color: slateblue;
    font-weight: bolder;
}
.two-column-list p{
    font-size: 18px;
    padding: 20px 0;
    line-height: 1.5;
    color: #222;
}
.two-column-list h4{
    font-size: 20px;
    color: #222;
    padding-top: 10px;
}
.two-column-list ul{
    padding: 20px 0 5px 0;
}
.two-column-list ul li{
    padding-bottom: 10px;
}
@media (max-width: 767px){
    .two-column-card{
        display: block;
    }
    .two-column-list{
        width: 96%;
        margin: 5px auto;
    }
    .two-column-list:nth-child(2){
        padding-left: 1%;
        padding-right: 1%;
    }
}
/* CSS ABOUT END */

/* CSS LINESTORE START */
.swiper-container{
    height: 420px;
}
@media (max-width: 767px){
    .swiper-container{
        height: auto;
    }
}
.content-linestore h2{
    font-size: 32px;
    text-align: center;
    padding: 20px 0;
}
.linestoreList{
    display: flex;
    flex-wrap: wrap;
}
.linestoreList li{
    width: 31.33333%;
    margin-right: 1%;
    margin-left: 1%;
    margin-bottom: 1em;
    padding: 5px;
    box-shadow: 0px 0px 3px orangered;
}
.linestoreList li h3{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
@media (max-width: 767px){
    .linestoreList li{
        width: 48%;
    }
    .linestoreList li img{
        display: block;
        margin: 0 auto;
    }
}
@media (max-width: 569px){
    .linestoreList li{
        width: 98%;
    }
}

.linestorePic{
    width: 85%;
    margin: 0 auto;
}
.linestorePic h3{
    text-align: center;
    padding: 20px 0;
    font-size: 32px;
}
.linestorePic img{
    padding: 10px;
    box-shadow: 0px 0px 10px crimson;
}
.linestorePic a{
    display: block;
    width: 300px;
    padding: 20px 10px;
    text-align: center;
    background: slateblue;
    color: #fff;
    margin: 20px 0;
    border-radius: 5px;
}
.linestorePic a:hover{
    background: crimson;
}
@media (max-width: 767px){
    .linestorePic{
        width: 90%;
    }
    .linestorePic a{
        margin: 20px auto;
    }
}
@media (max-width: 569px){
    .linestorePic{
        width: 98%;
    }
}
/* CSS LINESTORE END */

/* CSS LEARN START */
.content-learn h2{
    font-size: 32px;
    text-align: center;
    padding: 30px;
}
.order{
    width: 100%;
}
.order th,.order td{
    border: 1px solid slateblue;
    padding: 5px;
    text-align: center;
}
.order th{
    background: slateblue;
    color: #fff;
}
.order td ul li{
    text-align: left;
    padding: 5px;
    list-style-type: disc;
    list-style-position: outside;
    margin-left: 15px;
}
@media screen and (max-width: 569px){
    .m-none{
        display: none;
    }
}
.courseList{
    display: flex;
    flex-wrap: wrap;
}
.courseList h3{
    color: #000;
    padding: .3em 0;
    font-size: 20px;
}
.courseList > li{
    width: 31.33333%;
    margin-right: 1%;
    margin-left: 1%;
    margin-bottom: 1em;
    background-color: rgba(106, 90, 205, 0.3);
}
@media (max-width: 767px){
    .courseList > li{
        width: 48%;
    }
}
@media (max-width: 569px){
    .courseList > li{
        width: 98%;
    }
}
.courseList ul li{
    display: flex;
}
/* SKILLS */
.skills img{
    padding: 5px;
}
/* TOOLS */
.tools p{
    color: #6c757d;
    font-size: 18px;
    padding: 10px 5px;
}
.tools ul{
    list-style-type: disc;
    list-style-position: inside;
}
.tools ul li{
    padding: 5px;
    color: #222;
}
/* SOURCES */
.sources p{
    color: #6c757d;
    font-size: 18px;
    padding: 10px 5px;
}
.sources h3{
    font-size: 24px;
    padding-bottom: 10px;
    padding-left: 5px;
}
.sources ul{
    list-style-type: square;
    list-style-position: inside;
    margin-bottom: 20px;
}
.sources ul li{
    padding: 5px;
    color: #222;
}
/* CSS LEARN END */

/* CSS WORKS START */
.content-works > h2{
    font-size: 32px;
    padding: 20px 0;
    text-align: center;
}
.banner-works{
    background: #A9C4EB;
    display: flex;
    padding: 50px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.banner-works h2{
    font-size: 20px;
    padding: 30px;
    font-weight: bold;
    color: slateblue;
}
.card-works{
    margin: 10px 0;
    background: #D4E1F5;
    display: flex;
    justify-content: space-around;
}
.item-works{
    text-align: center;
    padding: 50px 10px;
    width: 33.33333%;
}
.item-works img{
    border-radius: 50%;
    border: 1px solid slateblue;
}
.item-works h3{
    padding: 10px;
    color: #222;
    font-weight: bold;
    font-size: 24px;
}
.item-works p{
    padding-top: 10px;
    padding-bottom: 20px;
    line-height: 1.5;
    color: #222;
}
@media (max-width: 767px){
    .card-works{
        display: flex;
        flex-wrap: wrap;
    }
    .item-works{
        width: 100%;
    }
}
/* CSS WORKS END */

/* CSS CONTACT START */
.contact-social h2{
    font-size: 32px;
    text-align: center;
    padding: 20px 0;
}
.contact-social-icon .line,.contact-social-icon .messenger{
    background: #D4E1F5;
    margin-bottom: 10px;
    border: 2px solid slateblue;
}
.contact-social-icon img{
    display: block;
    margin: 20px auto;
}
.contact-social-icon a:hover{
    background: #A9C4EB;
    display: block;
}
.contact-social-icon h3{
    text-align: center;
    font-size: 28px;
    padding-bottom: 20px;
}
/* CONTACT FORM */
.contact-form h2{
    font-size: 32px;
    text-align: center;
    padding: 20px 0;
}
.contact-form-formBox{
	background: linear-gradient(left, slateblue, royalblue);
	background: -webkit-linear-gradient(left, slateblue, royalblue);
	background: -moz-linear-gradient(left, slateblue, royalblue);
	padding-top: 20px;
	padding-left: 5%;
	padding-right: 5%;
	padding-bottom: 30px;
	margin-bottom: 10px;
}
.contact-form-formBox h2{
    font-size: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}
.formBox{
    display: flex;
    justify-content: space-around;
}
.formBox .left{
    width: 35%;
}
.formBox .right{
    width: 55%;
}
.formBox .left label{
    display: block;
    width: 100%;
    padding: 5px 0;
    margin: 5px 0;
}
.formBox .left input{
    display: block;
    width: 100%;
    padding: 5px;
    margin: 5px 0;
}
.formBox .right label{
    display: block;
    width: 100%;
    padding: 5px 0;
    margin: 5px 0;
}
.formBox .right textarea{
    display: block;
    width: 100%;
    height: 300px;
    padding: 5px;
    margin: 5px 0;
}
.formBox .right input{
    display: block;
    padding: 5px 0;
    margin: 5px 0;
    margin-left: auto;
}
.formBox .right .btn{
    background: #9AC7BF;
    color: #222;
    border: 1px solid #67AB9F;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}
.formBox .right .btn:hover{
    background: #222;
    color: #9AC7BF;
}
@media (max-width: 569px){
    .formBox{
        display: block;
    }
    .formBox .left{
        width: 100%;
    }
    .formBox .right{
        width: 100%;
    }
}
/* CSS CONTACT END */