* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans TC', sans-serif;
}
body {
    background-image: url("../images/bg.png"), linear-gradient(90deg, #ffffde , #ffffde);
    background-size: 100%;
}
body i{
    margin: 0 10px;
}

@media (max-width: 860px){
    body {
        background-size: auto;
    }
}

.wrapper {
    width: 100%;
    overflow: hidden;
}

/*title use*/
.title{
    text-align: center;
    max-width: 700px;
    margin: auto;
}
.title h1{
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #c76149, #42137a);
    font-size: 36px;
    font-weight: bold;
    line-height: 48px;
    letter-spacing: 2px;
    margin: 50px auto 0px;
    padding: 30px 15px 10px;
}
.title h3{
    display: inline-block;
    margin: 10px 0 20px;
    color: #c76149;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 32px;
    font-size: 22px;
    padding: 10px 50px;
    border: 1px solid #c76149;
    border-radius: 50px;
}
.title h5{
    display: inline-block;
    color: #fff;
    background: linear-gradient(90deg, #c76149, #42137a);
    padding: 5px 20px;
    border-radius: 25px;
    line-height: 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
}
.title h6{
    margin: 10px 0 20px;
    color: #c76149;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 32px;
    font-size: 24px;
}
.title .remark{
    display: flex;
    justify-content: center;
    align-items: center;
}
.title .remark .item{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 20px;
}
.title .remark .item img{
    margin: 0 10px 0 0;
}
.title .remark .item p{
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: auto;
}
.title .remark .item:nth-child(1) p{
    color: #008015;
}
.title .remark .item:nth-child(2) p{
    color: #ff3229;
}
.title .remark .item:nth-child(3) p{
    color: #c76149;
}

@media (max-width: 860px){
    .title h1{
        font-size: 32px;
        line-height: 40px;
    }
    .title h5{
        font-size: 16px;
        line-height: 24px;
    }
    .title h3{
        font-size: 20px;
    }
}
@media (max-width: 450px){
    .title h1{
        font-size: 28px;
        line-height: 34px;
        padding: 15px 0 0;
        margin: 30px auto 10px;
    }
    .title h5{
        font-size: 16px;
        line-height: 24px;
        padding: 5px 0;
        border-radius: 0;
    }
    .title h3{
        font-size: 16px;
        padding: 5px 30px;
    }
    .title .remark{
        flex-wrap: wrap;
    }
    .title .remark .item{
        margin: 5px auto;
        flex-direction: column;
    }
    .title .remark .item img{
        width: 40px;
    }
    .title .remark .item p{
        font-size: 18px;
    }
}

/*navgation*/
.gray{
    width: 100%;
    height: 100%;
    background-color: #000000;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
}
.header{
    position: fixed;
    top: 0px;
    height: 70px;
    width: 100%;
    z-index: 100;
    transition: 0.6s;
}
.header.sticky{
    background-color: #fff;
    box-shadow: 0 5px 10px #3c3c3c;
    transition: 0.7s;
}
.header.sticky .menu-open i{
    color: #c76149;
}
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}
.logo img{
    width: 500px;
}

.menu-open i{
    font-size: 30px;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    transition: 0.5s;
}
.menu-open i:hover{
    border: 1px solid #fff;
    transition: 0.5s;
}
.header.sticky .menu-open :hover{
    border: 1px solid #c76149;
    transition: 0.5s;
}
.menu{
    background: #fff;
    box-shadow: -5px 0 20px #3c3c3c;
    height: 100%;
    width: 350px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    display: none;
}
.menu-block{
    width: 100%;
    height: 50%;
    padding: 70px 0 0;
    margin: auto;
    text-align: left;
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.menu-close i{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: #c76149;
    border-radius: 5px;
    padding: 5px 10px;
    transition: 0.5s;
}
.menu-close i:hover{
    border: 1px solid #c76149;
    transition: 0.5s;
}

.menu-block a{
    width: 80%;
    color: #c76149;
    font-weight: 400;
    letter-spacing: 2px;
    text-decoration: none;
    margin: auto;
    font-size: 18px;
    border-bottom: 1px solid #c76149;
    padding: 20px 0 20px 20px;
    transition: 0.5s;
}
.menu-block a:hover{
    color: #fecf30;
    transition: 0.5s;
}

@media (max-width: 450px){
    .nav{
        width: 90%;
        margin: 0 auto;
        padding: 10px 0 0;
    }
    .logo img{
        width: 250px;
    }
    .menu{
        width: 100%;
    }
    .menu-block{
        text-align: center;
    }
    .menu-block a{
        padding: 20px 0;
    }
}

/*banner*/
.banner{
    background-image: url(../images/banner-bg-desktop.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 1000px;
    position: relative;
    object-fit: cover;
}
.banner #bnimg3{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}
.banner #bnimg4{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}
.banner #bnimg3 img , .banner #bnimg4 img{
    width: 100%;
}
.banner .content{
    position: relative;
    max-width: 1500px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.banner .content #bnimg1{
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 350px;
}
.banner .content #bnimg2{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 350px;
}
.banner .content #bnimg1 img , .banner .content #bnimg2 img{
    width: 100%;
}
.banner .content .bn-title{
    max-width: 780px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 15;
}
.banner .content .bn-title img{
    width: 100%;
    margin: auto;
    animation: updown 3s infinite;
}
@keyframes updown{
    0%{
        transform: translateY(15px);
    }
    50%{
        transform: translateY(-15px);
    }
    100%{
        transform: translateY(15px);
    }
}
.banner .content .bn-title p{
    width: 100%;
    color: #ffffff;
    padding: 70px 30px;
    line-height: 32px;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 18px;
    border-radius: 15px;
    margin: auto;
    text-align: center;
}

@media screen and (max-width:1450px){
    .banner{
        height: 800px;
    }
    .banner .content #bnimg1 , .banner .content #bnimg2{
        max-width: 300px;
    }
}

@media (max-width: 860px){
    .banner{
        background-image: url(../images/banner-bg-pad.png);
        background-size: cover;
        background-repeat: no-repeat;
        height: 1200px;
    }
    .banner #bnimg3 , .banner #bnimg4{
        display: none;
    }
    .banner .content{
        max-width: unset;
        width: 100%;
    }
    .banner .content #bnimg1 , .banner .content #bnimg2{
        max-width: 300px;
    }
    .banner .content #bnimg1{
        left: -70px;
    }
    .banner .content #bnimg2{
        right: -70px;
    }
    .banner .content .bn-title{
        padding: 0;
    }
    .banner .content .bn-title p{
        width: 80%;
    }
}

@media (max-width: 450px){
    .banner{
        background-image: url(../images/banner-bg-phone.png);
        background-size: cover;
        background-repeat: no-repeat;
        height: 800px;  
    }
    .banner .content #bnimg1 , .banner .content #bnimg2{
        max-width: 200px;
    }
    .banner .content .bn-title{
        margin: 100px 0 0;
    }
    .banner .content .bn-title p{
        margin: 0 auto;
        font-size: 14px;
        font-weight: 400;
        line-height: 26px;
    }
}

/*introduce*/
.introduce{
    width: 100%;
    padding: 200px 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/bg-3.png);
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
}
.introduce .wordbox p span br{
    display: none;
}
.introduce .imgbox{
    max-width: 300px;
}
.introduce .imgbox img{
    width: 100%;
}
.introduce .wordbox{
    max-width: 670px;
    text-align: justify;
}
.introduce .wordbox h2{
    margin: 0 0 0 -100px;
    color: #42137a;
    font-size: 52px;
    font-weight: bold;
    letter-spacing: 2px;
}
.introduce .wordbox h2 span{
    padding: 0 0 0 150px;
}
.introduce .wordbox p span{
    color: #c76149;
    font-size: 20px;
    font-style: italic;
    letter-spacing: 2px;
    line-height: 26px;
    font-weight: 600;
    margin: 10px 0 0;
}
.introduce .wordbox p{
    color: #3c3c3c;
    font-size: 16px;
    letter-spacing: 1px;
    width: 80%;
    margin: auto;
    font-weight: 400;
    line-height: 24px;
    padding: 20px 0;
}

@media (max-width: 860px){
    .introduce{
        max-width: unset;
        width: 100%;
    }
    .introduce .imgbox{
        max-width: unset;
        width: 30%;
    }
    .introduce .wordbox{
        max-width: unset;
        width: 70%;
        text-align: left;
    }
    .introduce .wordbox h2{
        font-size: 46px;
    }
    .introduce .wordbox p span{
        font-size: 18px;
    }
    .introduce .wordbox p{
        font-size: 14px;
        width: 80%;
    }
}
@media (max-width: 450px){
    .introduce{
        flex-direction: column;
    }
    .introduce .wordbox p span br{
        display: initial;
    }
    .introduce .imgbox{
        width: 70%;
        order: 2;
    }
    .introduce .wordbox h2{
        font-size: 28px;
        margin: 0 0 0 -200px;
    }
    .introduce .wordbox{
        width: 100%;
        text-align: center;
    }
}

/*computer*/
.computer{
    width: 100%;
    margin: auto;
    text-align: center;
    overflow: hidden;
}
.computer h3{
    color: #c76149;
    font-size: 70px;
    letter-spacing: 3px;
    font-weight: bold;
    padding: 20px 10px 20px;
    white-space: nowrap;
    transform: translateX(1000px);
}
@media (max-width: 860px){
    .computer h3{
        font-size: 50px;
    }
}
@media (max-width: 450px){
    .computer h3{
        font-size: 35px;
    }
}

/*cooperate*/
.cooperate{
    width: 100%;
    margin: 100px auto 20px;
}
.cooperate .content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cooperate .content .wordbox , .cooperate .content .imgbox{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: auto;
}
.cooperate .content .wordbox{
    width: 60%;
}
.cooperate .content .wordbox img{
    margin: auto;
}
.cooperate .content .wordbox h3{
    color: #c76149;
    font-size: 60px;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 70px;
    font-style: italic;
    margin: 10px auto 20px;
}
.cooperate .content .wordbox p{
    color: #42137a;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 500;
    line-height: 34px;
    margin: 20px auto;
}
.cooperate .content .imgbox{
    width: 40%;
}
.cooperate .content .imgbox img{
    margin: auto;
    animation: img-rotate 5s infinite ;
}
@keyframes img-rotate{
    0%{
        rotate: 5deg;
    }
    50%{
        rotate: -10deg;
    }
    100%{
        rotate: 5deg;
    }
}
.cooperate .content .imgbox a{
    color: #fff;
    background-color: #c76149;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: auto;
    z-index: 10;
    transform: translateY(-20px);
    cursor: pointer;
    transition: 0.4s ease-out;
}
.cooperate .content .imgbox a:hover{
    scale: 1.07;
    transition: 0.4s ease-in-out;
    color: #fff;
    background-color: #ffdb95;
    box-shadow: 0 0 10px #c76149;
}
.cooperate .content .imgbox a br{
    display: none;
}
.cooperate .content .imgbox a i:nth-of-type(1){
    animation: arrow-right 2s infinite;
}
.cooperate .content .imgbox a i:nth-of-type(2){
    animation: arrow-left 2s infinite;
}
@keyframes arrow-right{
    0%{
        transform: translateX(-15px);
    }
    20%{
        transform: translateX(5px);
    }
    100%{
        transform: translateX(-15px);
    }
}
@keyframes arrow-left{
    0%{
        transform: translateX(15px);
    }
    20%{
        transform: translateX(-5px);
    }
    100%{
        transform: translateX(15px);
    }
}

@media (max-width: 860px){
    .cooperate .content{
        max-width: unset;
        width: 90%;
    }
    .cooperate .content .wordbox img{
        width: 90%;
    }
    .cooperate .content .wordbox h3{
        font-size: 44px;
        line-height: 56px;
    }
    .cooperate .content .wordbox p{
        font-size: 20px;
        line-height: 30px;
    }
    .cooperate .content .imgbox img{
        width: 100%;
    }
    .cooperate .content .imgbox a{
        padding: 10 30px;
    }
    .cooperate .content .imgbox a br{
        display: initial;
    }
    .cooperate .content .imgbox a span{
        display: none;
    }
}
@media (max-width: 450px){
    .cooperate .content{
        flex-direction: column;
    }
    .cooperate .content .wordbox , .cooperate .content .imgbox{
        width: 100%;
    }
    .cooperate .content .wordbox h3{
        font-size: 32px;
        line-height: 44px;
    }
    .cooperate .content .wordbox p{
        font-size: 18px;
        line-height: 28px;
    }
    .cooperate .content .imgbox img{
        width: 80%;
    }
    .cooperate .content .imgbox a{
        font-size: 20px;
    }
}

/*course*/
.course{
    width: 100%;
    margin: 50px auto 0;
}
.course .content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.course .content .item{
    max-width: 300px;
    margin: 20px 30px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.5s;
    box-shadow: 0 0 15px #ffdb95;
}
.course .content .item:hover{
    transform: translateY(-15px);
    box-shadow: 0 7px 15px #c76149;
    transition: 0.5s;
}
.course .content .item .imgbox img{
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.course .content .item .wordbox{
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 20px 5px;
    width: 100%;
    text-align: center;
} 
.course .content .item .wordbox h5{
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 36px;
    animation: limit 3s infinite;
}
/*@keyframes limit{
    0%{
        color: #FF2D2D;
    }
    50%{
        color: #f9f900;
        text-shadow: 0 0 5px #4B0091;
    }
    100%{
        color: #FF2D2D;
    }
}*/
.course .content .item .wordbox p{
    color: #FF2D2D;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
    margin: 10px 0 0;
    height: 140px;
}
.course .content .item .wordbox p span{
    color: #c76149;
}
.course .content .item .wordbox .discount{
    color: #fff;
    background-color: #009286;
    padding: 10px 10px 10px 0px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.5s;
}
.course .content .item .wordbox a{
    color: #fff;
    background-color: #c76149;
    padding: 10px 10px 10px 0px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.5s;
}
.course .content .item .wordbox .discount:hover{
    background-color: #a6dad5;
    box-shadow: 0 0 10px #009286;
    transition: 0.5s;
}
.course .content .item .wordbox a:hover{
    background-color: #ffdb95;
    box-shadow: 0 0 10px #c76149;
    transition: 0.5s;
}

@media (max-width: 860px){
    .course .content .item .wordbox{
        padding: 10px;
    }
    .course .content .item .wordbox p{
        font-size: 14px;
        line-height: 24px;
        height: 90px;
    }
    .course .content .item .wordbox a{
        font-size: 14px;
        padding: 5px 0;
        width: 100%;
        display: block;
        margin: 5px 0;
    }
    .course .content .item .wordbox .discount{
        font-size: 14px;
        padding: 5px 0;
        width: 100%;
        display: block;
        margin: 5px 0;
    }
}

@media (max-width: 450px){
    .course .content .item{
        margin: 15px auto;
    }
    .course .content .item .wordbox{
        display: none;
    }
    .course .content .item .wordbox p{
        height: auto;
    }
}
/*modal*/
.modal h5{
    -moz-background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #c76149, #42137a);
    font-weight: bold;
    font-style: italic;
    font-size: 25px;
    letter-spacing: 2px;
}
.modal h5 br{
    display: none;
}
.modal form{
    width: 90%;
    margin: auto;
}
.modal form p{
    color: #FF2D2D;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 26px;
}
.modal form .modal_row{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin: 20px 0;
}
.modal form input{
    border-radius: 5px;
    border: 1px solid #D0D0D0;
    font-size: 18px;
    padding: 3px 10px;
    margin: 0 0 0 10px;
    width: 300px;
}
.modal form #extra{
    width: 30px;
}
.modal form #extra + label{
    color: #00A600;
}
.modal form select{
    border-radius: 5px;
    border: 1px solid #D0D0D0;
    font-size: 18px;
    padding: 3px 10px;
    margin: 0 0 0 10px;
}
.modal form label{
    font-size: 18px;
    padding: 3px 10px;
    color: #3c3c3c;
    font-weight: 400;
    letter-spacing: 1px;
}
.modal .ok{
    visibility: hidden;
    font-size: 16px;
    color: #00A600;
    transition: 0.5s;
    opacity: 0;
}
.modal input:valid + .ok{
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}
.modal select:valid + .ok{
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
}
.modal form button:nth-child(1){
    color: #fff;
    background-color: #009286;
    padding: 5px 40px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.5s;
    border: 0;
}
.modal form button:nth-child(1):hover{
    background-color: #a6dad5;
    box-shadow: 0 0 10px #009286;
    transition: 0.5s;
}
.modal form button:nth-child(2){
    color: #fff;
    background-color: #c76149;
    padding: 5px 40px;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.5s;
    border: 0;
}
.modal form button:nth-child(2):hover{
    background-color: #ffdb95;
    box-shadow: 0 0 10px #c76149;
    transition: 0.5s;
}
@media (max-width: 860px){
    .modal form{
        width: 100%;
        margin: auto;
    }
    .modal form select:nth-child(1){
        width: 100%;
    }
}
@media (max-width: 450px){
    .modal h5 br{
        display: initial;
    }
    .modal form .modal_row{
        margin: 0 10px;
    }
    .modal form input, .modal form select{
        width: 100%;
        font-size: 16px;
    }
    .modal form label{
        font-size: 16px;
    }
}

/*reward*/
.reward{
    max-width: 1100px;
    margin: auto;
}
.reward .slider_img img{
    width: 100%;
}

@media (max-width: 450px){
    .reward{
        width: 100%;
    }
}

/*camp feature*/
.feature{
    width: 100%;
}
.feature .content{
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-wrap: wrap;
}
.feature .content .item{
    max-width: 270px;
    margin: 50px 20px;
    border-radius: 20px;
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0 0 20px #ffdb95;
    transition: 0.7s;
}
.feature .content .item:hover{
    box-shadow: 0 5px 5px #c76149;
    transform: translateY(-15px);
    transition: 0.7s;
}
.feature .content .item h3{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    line-height: 30px;
    padding: 10px 0;
    width: 100%;
    margin: auto;
    border-bottom: 1px solid #c76149;
    color: #c76149;
}

.feature .content .item .highlight{
    color: #009286;
    font-weight: 400;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    margin: auto;
    cursor: pointer;
    padding: 10px 0;
}
.feature .content .item .highlight span{
    animation: more 3s infinite;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 15px 0 0 0 ;
}
@keyframes more{
    0%{
        color: #FF2D2D;
    }
    50%{
        color: #c76149;
    }
    100%{
        color: #FF2D2D;
    }
}
.feature .content .item .word{
    text-align: center;
    color: #3c3c3c;
    line-height: 28px;
    font-size: 14px;
    width: 90%;
    margin: auto;
    font-weight: 300;
    letter-spacing: 1px;
    display: none;
}
.feature .content .tab{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.feature .content .tab input{
    display: none
}

.feature .content .tab label{
    margin: 0 5px 5px 0;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    background: #c76149;
    color: #fff;
    opacity: 0.5;
    letter-spacing: 2px;
    font-size: 22px;
    animation: label 2s infinite;
}
@keyframes label{
    0%{
        background: #c76149;
        color: #fff;
    }
    50%{
        background: #ffffa6;
        color: #c76149;
    }
    100%{
        background: #c76149;
        color: #fff;
    }
}
.feature .content .tab_content{
    order: 1;
    display: none;
    width: 100%;
    line-height: 1.6;
    font-size: .9em;
    border-radius: 5px;
    margin: 10px auto;
    text-align: center;
}
.feature .content .tab_content img{
    width: 70%;
}
.feature .content .tab_content img:nth-child(2){
    display: none;
}

.feature .content .tab input:checked+label,
.feature .content .tab label:hover {
    opacity: 1;
    font-weight: bold;
    animation: none;
    transition: 0.7s;
}

.feature .content .tab input:checked+label+.tab_content {
    display: initial;
}

@media (max-width: 860px){
    .feature .content{
        max-width: unset;
        width: 90%;
    }
    .feature .content .item{
        margin: 10px auto;
        max-width: unset;
        width: 45%;
    }
    .feature .content .tab_content img{
        width: 90%;
    }
}
@media (max-width: 450px){
    .feature .content .item{
        width: 90%;
        margin: 10px auto;
        padding: 5px 20px;
    }
    .feature .content .item h3{
        font-size: 18px;
    }
    .feature .content .tab label{
        font-size: 20px;
    }
    .feature .content .tab_content img:nth-child(1){
        display: none;
    }
    .feature .content .tab_content img:nth-child(2){
        display: initial;
    }
}


/*information*/
.information{
    max-width: 1000px;
    margin: 100px auto 0;
    background-image: url(../images/bg-2.png);
    background-size: cover;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px #ffdb95;
}
.information .title{
    max-width: unset;
    width: 100%;
}
.information .title h1{
    font-size: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: linear-gradient(90deg, #c76149, #42137a);
    color: #fff;
    padding: 7px 0;
    margin: auto;
    -webkit-text-fill-color: unset;
    -moz-text-fill-color: unset;
}
.information .item{
    width: 90%;
    margin: auto;
    text-align: left;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 20px 0;
}
.information .item p:nth-child(1){
    color: #42137a;
    font-weight: 500;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 2px;
    border-right: 1px solid #42137a;
    padding: 0 15px;
}
.information .item p:nth-child(2){
    font-size: 18px;
    line-height: 28px;
    color: #3c3c3c;
    font-weight: 300;
    padding: 0 20px;
}
.information p a{
    text-decoration: none;
    animation: aword 3s infinite;
    font-size: 20px;
    font-weight: 500;
}
@keyframes aword{
    0%{
        color: #42137a;
    }
    50%{
        color: #c76149;
    }
    100%{
        color: #42137a; 
    }
}
.information p span{
    color: #c76149;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 860px){
    .information{
        width: 80%;
    }
    .information .title h1{
        font-size: 24px;
    }
    .information .item{
        flex-direction: column;
        padding: 10px 0;
        text-align: center;
    }
    .information .item p:nth-child(1){
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 2px;
        border: 0;
    }
    .information .item p:nth-child(2){
        font-size: 16px;
        line-height: 26px;
    }
    .information p a{
        font-size: 18px;
    }
}

@media (max-width: 450px){
    .information{
        width: 90%;
    }
    .information .title h1{
        font-size: 22px;
    }
    .information .itme p:nth-child(2){
        font-size: 14px;
        line-height: 24px;
    }
}

/*course time*/
.course_calendar{
    max-width: 800px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.course_calendar img{
    height: 600px;
    margin: 20px 5px;
    border-radius: 5px;
    transition: 0.5s;
    box-shadow: 0 0 15px #ffdb95;
}
.course_calendar img:hover{
    transform: scale(1.02);
    transition: 0.5s;
}
@media (max-width: 860px){
    .course_calendar img{
        height: 400px;
    }
}
@media (max-width: 450px){
    .course_calendar img{
        height: 200px;
        margin: 10px 5px;
    }
}

/*sales*/
.sales{
    background-image: url(../images/bg-4.png);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
}
.sales .content{
    padding: 60px 0 30px;
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sales .content .item{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px #ffdb95;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 300px;
    height: 300px;
    margin: 0 5px;
    transition: 0.4s;
}
.sales .content .item:hover{
    transform: scale(1.05);
    transition: 0.4s ease-in-out;
}
.sales .content a > .item:hover{
    transform: scale(1.15);
    transition: 0.4s ease-in-out;
}
.sales .content .item .wordbox{
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 30px 0;
}
.sales .content .item .wordbox h4 span{
    font-size: 28px;
    color: #42137a;
    border-bottom: 2px solid #42137a;
    padding: 0 15px 5px;
    font-weight: bold;
}
.sales .content .item .wordbox p{
    padding: 30px 0;
    font-size: 18px;
    color: #3c3c3c;
    line-height: 28px;
    font-weight: 400;
}
.sales .content .item .wordbox p span{
    color: #FF9224;
    font-size: 22px;
}
.sales .content .item .wordbox h5{
    font-size: 18px;
    color: #220544;
    font-weight: 400;
}
.sales .content .item .wordbox h5 span{
    font-size: 14px;
}
.sales .content .item .wordbox h5 span .import{
    color: #FF9224;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 2px;
    font-style: italic;
}
.sales .content a{
    text-decoration: none;
}
.sales .content a > .item{
    transform: scale(1.1);
    border: 2px solid #FF9224;
    position: relative;
    transition: 0.4s;
    z-index: 50;
}
.sales .content a > .item h6{
    font-size: 16px;
    letter-spacing: 2px;
    font-style: italic;
    border-radius: 5px;
    display: inline-block;
    padding: 7px 15px 7px 0;
    position: absolute;
    top: -10px;
    left: 75px;
    animation: shine 5s infinite;
}
.sales .additional{
    text-align: center;
    width: 100%;
    margin: auto;
    color: #f4ffcd;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 10px 0 150px;
    font-style: italic;
}
@keyframes shine{
    0%{
        background-color: #FF9224;
        color: #fff;
    }
    80%{
        background-color: #FF9224;
        color: #fff;
    }
    90%{
        background-color: #fff;
        box-shadow: 0 0 10px #FF9224, 0 0 20px #FF9224;
        color: #FF9224;
    }
    100%{
        background-color: #FF9224;
        color: #fff;
    }
}

@media (max-width: 860px){
    .sales .content{
        max-width: 800px;
    }
    .sales .content .item{
        width: 250px;
        height: 280px;
    }
    .sales .content .item .wordbox h4 span{
        font-size: 24px;
    }
    .sales .content .item .wordbox p{
        font-size: 16px;
        line-height: 26px;
        padding: 15px 0;
    }
    .sales .content .item .wordbox h5 span .import{
        font-size: 15px;
        line-height: 25px;
    }
    .sales .content a > .item h6{
        font-size: 12px;
        left: 65px;
    }
}
@media (max-width: 450px){
    .sales .content{
        max-width: unset;
        width: 80%;
        flex-direction: column;
    }
    .sales .content .item{
        width: 100%;
        height: auto;
        margin: 10px 0;
    }
    .sales .content a{
        width: 100%;
        order: -1;
    }
    .sales .content a > .item{
        transform: unset;
    }
    .sales .content .item .wordbox h4 span{
        font-size: 20px;
    }
    .sales .content .item .wordbox p{
        font-size: 14px;
    }
    .sales .content .item .wordbox h5{
        font-size: 16px;
    }
    .sales .content .itme .wordbox h5 span{
        font-size: 16px;
    }
    .sales .content a > .item h6{
        left: 90px;
    }
    .sales .additional{
        font-size: 16px;
    }
}

/*form*/
.ask{
    width: 100%;
    margin: -10px auto 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: auto;
    padding: 60px 0;
    background-image: url(../images/form-bg1.png);
    animation: formbg 10s infinite;
}
@keyframes formbg{
    0%{
        background-image: url(../images/form-bg1.png);
    }
    25%{
        background-image: url(../images/form-bg1.png);
    }
    50%{
        background-image: url(../images/form-bg2.png);
    }
    75%{
        background-image: url(../images/form-bg1.png);
    }
    100%{
        background-image: url(../images/form-bg1.png);
    }
}
.ask .form_title{
    max-width: 800px;
    margin: auto;
}
.ask .form_title img{
    width: 100%;
    display: block;
    margin: auto;
    padding: 15px 0 0;
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent) , to(rgba(250, 250, 250, 0.4)));
    -moz-box-reflect: below 0px -moz-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent) , to(rgba(250, 250, 250, 0.3)));
}
.ask .form_title img:nth-child(2){
    display: none;
}
.ask form{
    margin: 50px auto 30px;
    max-width: 600px;
}
.ask form .row label{
    width: 100%;
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 30px auto 0px;
    text-align: center;
}
.ask form .row input{
    width: 100%;
    display: block;
    padding: 5px 5px;
    font-size: 20px;
    letter-spacing: 3px;
    background-color: unset;
    outline: unset;
    border: unset;
    border-bottom: 1px solid #e0af4c;
    color: #e0af4c;
    margin: 10px auto;
}
.ask form .row input::placeholder{
    color: #5f5442;
}
.ask form .row  select{
    width: 100%;
    display: block;
    padding: 5px 5px;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    background-color: unset;
    outline: unset;
    border: unset;
    border-bottom: 1px solid #e0af4c;
    color: #e0af4c;
    margin: 15px auto 0px;
}
.ask form .row option{
    width: 100%;
    font-size: 14px;
}
.ask form .mpmform{
    display: flex;
    justify-content: center;
    padding: 20px 0 0 0;
}
.ask form .mpmform #mpm{
    width: 22px;
    margin: 0 20px;
}
.ask form .mpmform #mpm + label{
    color: #ffff4a;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 3px;
}
.ask form .row .button{
    max-width: 350px;
    margin: 30px auto;
    border-radius: 25px;
    color: #1d1513;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 3px;
    border: 0px;
    cursor: pointer;
    background-color: #e0af4c;
    box-shadow: 0 5px 10px #1d1513;
    transition: 0.5s;
}
.ask form .button:hover{
    transition: 0.5s;
    transform: translateY(7px);
    background-color: #fff;
    box-shadow: unset;
    color: #1d1513;
}

@media (max-width: 860px){
    .ask form{
        width: 90%;
    }
}
@media (max-width: 450px){
    .ask{
        padding: 10px 0 30px;
    }
    .ask .form_title{
        width: 90%;
        max-width: unset;
    }
    .ask .form_title img:nth-child(1){
        display: none;
    }
    .ask .form_title img:nth-child(2){
        display: initial;
    }
    .ask form{
        width: 100%;
    }
    .ask form .row label{
        font-size: 16px;
    }
    .ask form option{
        font-size: 14px;
    }
    .ask form .mpmform #mpm + label{
        font-size: 16px;
    }
    .ask form .row .button{
        max-width: unset;
        width: 70%;
        font-size: 16px;
    }
}

/*addline*/
.addline a{
    font-size: 26px; 
    color: #06C755;  
    font-weight: 500; 
    letter-spacing: 2px; 
    padding: 10px 20px; 
    border-radius: 15px;
    display: block; 
    margin: auto; 
    text-align: center; 
    text-decoration: none;
    transition: 0.5s;
}
.addline a:hover{
    color: #06C755;
}
.addline a br{
    display: none;
}

@media (max-width: 450px){
    .addline a{
        width: 100%;
        font-size: 18px;
        line-height: 22px;
    }
    .addline a br{
        display: initial;
    }
}

/*photowall*/
.photo{
    width: 100%;
    height: 700px;
    background-image: url(../images/photo-bg.png);
    background-size: cover;
    background-position: center , center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.photo .content{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.photo .content h5{
    color: #c76149;
    font-size: 48px;
    letter-spacing: 2px;
    font-weight: bold;
    line-height: 60px;
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent) , to(rgba(250, 250, 250, 0.3)));
    -moz-box-reflect: below 0px -moz-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent) , to(rgba(250, 250, 250, 0.3)));
}
.photo .content h5 span{
    color: #42137a;
    font-size: 60px;
}

@media screen and (max-width: 450px){
    .photo .content h5{
        font-size: 36px;
        line-height: 50px;
    }
    .photo .content h5 span{
        font-size: 48px;
    }
}

/*camp trivia*/
.trivia{
    display: block;
    max-width: 1000px;
    margin: auto;
}
.trivia img{
    width: 280px;
    padding: 10px;
    margin-bottom: 50px;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent) , to(rgba(250, 250, 250, 0.3)));
    -moz-box-reflect: below 0px -moz-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent) , to(rgba(250, 250, 250, 0.3)));
}
.trivia iframe{
    margin: 30px auto 0px;
    width: 100%;
}
.trivia .swiper-slide{
    padding: 0 50px;
}
.trivia .more{
    width: 100%;
    padding: 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.trivia .more a{
    text-align: center;
    display: inline-block;
    padding: 5px 25px 5px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    margin: 0 15px;
    letter-spacing: 2px;
    font-weight: 500;
}
.trivia .more a:nth-child(1){
    background-color: #0065e9;
    color: #fff;
    box-shadow: 0 5px 10px #003060;
    transition: 0.4s ease-in;
}
.trivia .more a:nth-child(1):hover{
    transform: translateY(5px);
    box-shadow: unset;
    background-color: #a8ebff;
    color: #003060;
    transition: 0.4s ease-out;
}
.trivia .more a:nth-child(2){
    background-color: #ff3e3e;
    color: #fff;
    box-shadow: 0 5px 10px #8a0000;
    transition: 0.4s ease-in;
}
.trivia .more a:nth-child(2):hover{
    transform: translateY(5px);
    box-shadow: unset;
    background-color: #ffecec;
    color: #8a0000;
    transition: 0.4s ease-out;
}

@media (max-width: 860px){
    .trivia{
        width: 90%;
    }
    .trivia iframe{
        width: 100%;
    }
}
@media (max-width: 450px){
    .trivia{
        width: 90%;
    }
    .trivia iframe{
        width: 100%;
        height: 250px;
    }
    .trivia .more a{
        font-size: 16px;
    }
}

/*other-course*/
.other{
    width: 100%;
    background: #ffffcb;
    padding: 20px 0 60px;
}
.other .content{
    max-width: 1200px;
    margin: auto;
    padding: 10px 0 20px;
}
.other .content .item{
    width: 350px;
}
.other .content .item .imgbox{
    position: relative;
    width: 100%;
}
.other .content .item .imgbox img{
    width: 100%;
    border-radius: 5px;
}
.other .content .item .wordbox{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: 0.5s ease-in;
    background: rgba(48, 48, 48, 0.8);
    z-index: 10;
}
.other .content .item:hover .wordbox{
    visibility: visible;
    opacity: 1;
    transition: 0.5s ease-out;
}
.other .content .item .wordbox h3{
    display: inline-block;
    padding: 7px 20px;
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 30px;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 600;
}
.other .content .item .wordbox p{
    margin: 20px;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 24px;
    color: #fff;
    font-weight: 300;
}
.other .content .item .wordbox a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 30px;
    border-radius: 20px;
    border: 1px solid #fff;
    color: #fff;
    letter-spacing: 2px;
    transition: 0.4s ease-in;
}
.other .content .item .wordbox a:hover{
    background-color: #fff;
    transition: 0.4s ease-out;
    color: #3c3c3c;
}
.other .studymap{
    text-align: center;
    width: 100%;
    margin-top: -15px;
}
.other .studymap a{
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 30px 5px 15px;
    color: #fff;
    border-radius: 50px;
    background: #c76149;
    box-shadow: 0 5px 7px #1d1513;
    transition: 0.4s ease-in;
}
.other .studymap a:hover{
    box-shadow: unset;
    transform: translateY(5px);
    transition: 0.4s ease-out;
    background: #ffedc7;
    color: #002a30;
}
.other .mpm-content{
    max-width: 800px;
    margin: auto;
}
.other .mpm-content img{
    width: 100%;
}

@media (max-width: 860px){
    .other .content{
        width: 90%;
        max-width: unset;
        padding: 30px 0;
    }
    .other .content .item{
        width: 350px;
    }
    .other .mpm-content{
        width: 90%;
    }
}
@media (max-width: 450px){
    .other .content{
        padding: 10px 0 20px;
    }
    .other .content .item{
        width: 100%;
    }
    .other .studymap a{
        font-size: 16px;
    }
    .other .mpm-content{
        width: 100%;
    }
}

/*footer*/
.footer{
    width: 100%;
    background-color: #c76149;
}
.footer .content{
    max-width: 1200px;
    padding: 60px 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer .content .item:nth-child(1){
    width: 100%;
    margin: auto;
}
.footer .content .item:nth-child(1) p a+br{
    display: none;
}
.footer .content .item{
    width: 300px;
    margin: 20px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}
.footer .content .item h6{
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
}
.footer .content .item p{
    font-size: 14px;
    line-height: 25px;
}
.footer .content .item a{
    text-decoration: none;
    font-weight: 400;
    animation: link 2s infinite;
}
.footer .content .copyright{
    color: #fff;
    font-size: 16px;
    text-align: center;
}

@keyframes link{
    0%{
        color: #fff;
    }
    50%{
        color: #FFFF37;
    }
    100%{
        color: #fff;
    }
}

@media (max-width: 860px){
    .footer .content{
        width: 90%;
    }
    .footer .content .item{
        width: 200px;
    }
    .footer .content .item h6{
        font-size: 16px;
        line-height: 22px;
        font-weight: 500;
    }
    .footer .content .item p{
        font-size: 12px;
        line-height: 22px;
    }
}
@media (max-width: 450px){
    .footer .content .item:nth-child(1){
        width: 200px;
    }
    .footer .content .item:nth-child(1) p a+br{
        display: none;
    }
}

/*left timer & right form hidden control*/
#hiddenForm{
    visibility: hidden;
    opacity: 0;
    transition: 1s;
}
#initialForm{
    visibility: initial;
    opacity: 1;
    transition: 1s;
}

/*countdown*/
.timer{
    position: fixed;
    bottom: 60px;
    left: 20px;
    z-index: 98;
    background-image: url(../images/timer-bg.png);
    background-size: 100%;
    border-radius: 5px;
    width: 170px;
    height: 170px;
    padding: 10px 5px;
    cursor: pointer;
    transition: 0.6s;
    animation: timer 3s infinite;
}
@keyframes timer{
    0%{
        transform: rotate(-3deg);
    }
    50%{
        transform: rotate(3deg);
    }
    100%{
        transform: rotate(-3deg);
    }
}
.timer:hover{
    transform: scale(1.04);
    transition: 0.6s;
}
.timer h2{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    line-height: 30px;
    animation: timerword 1s infinite;
}
@keyframes timerword{
    0%{
        color: #fff;
        text-shadow: 0 0 7px #0c80b6, 0 0 15px #0c80b6;
    }
    50%{
        color: #fff;
        text-shadow: 0 0 7px #FF0080, 0 0 15px #FF0080;
    }
    100%{
        color: #fff;
        text-shadow: 0 0 7px #0c80b6, 0 0 15px #0c80b6;
    }
}
.timer .countdown{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: -3px 0 0;
}
.timer .countdown p{
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}
.timer .countdown .date{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.timer .countdown .date span{
    font-family: 'Averia Gruesa Libre';
    color: #FFFF37;
    font-size: 24px;
    font-weight: 600;
    margin: 0 5px;
}
.timer .countdown .date p{
    margin: 0 5px;
}
.timer .timeover{
    color: #FFFF37;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    letter-spacing: 2px;
    margin-top: 20px;
}

@media (max-width: 450px){
    .timer{
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 80px;
        background-image: url(../images/timer-bg-phone.png);
        animation: unset;
    }
    .timer h2{
        letter-spacing: 2px;
        text-align: left;
        padding-left: 20px;
    }
    .timer h2 br{
        display: none;
    }
    .timer .countdown{
        margin-top: -10px;
        padding-left: 10px;
        justify-content: start;
    }
    .timer .countdown .date{
        flex-direction: row;
    }
    .timer .timeover{
        margin: -5px 0 0;
        padding-left: 20px;
        text-align: left;
    }
    .timer .countdown .date span{
        margin: -5px 5px 0;
    }
}

/*go to top*/
#btn-back-to-top{
    position: fixed;
    bottom: 200px;
    right: 10px;
    display: none;
    background-color: #c76149;
    border: 0px;
    clip-path: circle(40%);
    opacity: 0.5;
    transition: 0.6s;
    z-index: 99;
  }
#btn-back-to-top:hover{
    opacity: 1;
    transition: 0.6s;
    transform: translateY(-5px);
}