@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
/* =====================
  General Styles
===================== */
*{ 
    box-sizing: border-box; 
    font-family: "Noto Sans TC";
}
html { 
    font-size: 110%; 
    padding-top: 140px;
}
@media (max-width: 760px) {
    html{
        padding-top: 81px;
    }
}

html, body {
    height: 100%; 
    width: 100%;
}
body {
    font-size: 1rem;
    font-weight: 200;
    margin:0;
    padding: 0 3rem;
}
@media (max-width: 650px) {
    body {
        padding: 0 0.5rem;
    }
}


:root {
    --main-color: #948979;
    --main-color2: #D2CFBA;
}
h1 {
    font-weight: 300;
    font-size: 2.5rem;
    margin: 0;
}
h2 {
    font-weight: 300;
    font-size: 2.0rem;
    margin: 0;
}
h3 {
    font-weight: 300;
    font-size: 1.5rem;
    margin: 0;
}
h4 {
    font-weight: 300;
    color: var(--main-color);
    font-size: 1.1rem;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.5;
    text-transform: uppercase;
}
h5{
    font-weight: 300;
}
a {
    color: var(--main-color);
    text-decoration: none;
}
hr {
    border-top: 2px dashed var(--main-color2);
}
.bb_20{
    width: 20%;
}

.bb_30{
    width: 30%;
}

.bb_40{
    width: 40%;
}

.bb_50{
    width: 50%;
}

.bb_60{
    width: 60%;
}

.bb_70{
    width: 70%;
}

.bb_80{
    width: 80%;
}

/* =====================
  pre loader Styles
===================== */

#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFF;
    z-index: 9999;
}

.load-icon { 
    position: absolute;
    width: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.load-icon #logo-bg{
    width: 100%;
    height: auto;
    position: relative;
    opacity:0;
    z-index: 1;
}

.load-icon #logo-cup{
    position: absolute;
    width: 46px;
    height: auto;
    top: 12px;
    left: calc(50% - 23px);
    z-index: 2;
}

.load-icon #logo-cloud{
    position: absolute;
    width: 64px;
    height: auto;
    top: -2px;
    right: -24px;
    opacity:0;
    z-index: 3;
}

.load-icon #logo-leaf{
    position: absolute;
    width: 22px;
    height: auto;
    top: 18px;
    left: calc(50% - 11px);
    opacity:0;
    z-index: 4;
}

.load-icon #logo-word{
    position: absolute;
    width: 53px;
    height: auto;
    bottom: -11px;
    left: calc(50% - (53px / 2));
    opacity:0;
    z-index: 5;
}

/* =====================
  Navbar Styles
===================== */
#main-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    padding: 2rem 3rem 1rem 3rem;
    background: #FFFFFF;
    z-index: 999;
}

#main-nav .logo{
    float: left;
    width: 20%;
}

#main-nav .logo-navbar{
    display: inline-block;
    width: 120px;
    height: 100%;
    position: relative;
}

#main-nav .logo-navbar img{
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: auto;
}

#main-nav .bar{
    float: left;
    width: 80%;
    height: 100%;
    text-align: right;
}

#nav-list {
    padding: 5px 0;
    display : flex;
    height: 100%;
    align-items : end;
    justify-content: right;
}

#nav-list ul{
    margin: 0;
    padding: 0;
}

#nav-list ul li {
    list-style: none;
    margin: 0 auto;
    display: inline-block;
    padding: 0 30px;
    position: relative;
    text-decoration: none;
    text-align: center;
    color: var(--main-color);
}
#nav-list li a:hover {
    color: var(--main-color2);
}
#nav-list li:hover {
    cursor: pointer;
}
#nav-list ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding-left: 0;
    left: 0;
    display: none;
    background: white;
}
#nav-list ul li:hover > ul,
#nav-list ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
    min-width: 250px;
    text-align: left;
    padding-top: 20px;
    box-shadow: 0px 3px 5px -1px rgb(8 33 30 / 15%);
}
#nav-list ul li ul li {
    clear: both;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
    border-style: none;
}
#nav-list ul li ul li a:hover {
    padding-left: 10px;
    border-left: 2px solid var(--main-color2);
    transition: all 0.2s ease;
}

#nav-list a {
    font-weight: 300;
    text-decoration: none;
}
#nav-list a:hover {
    color: var(--main-color);
}

#nav-list ul li ul li a {
    transition: all 0.5s ease;
}

.hamburger {
    display: none;
    position: absolute;
    right: 9px;
    top: 18px;
    width: 42px;
    cursor: pointer;
    padding: 0.4em 0;
    background-color: #FFF;
}

.hamburger .ham-bar {
    display: block;
    width: 1.6em;
    height: 0.12em;
    margin: 0.3em auto;
    transition: all 0.4s ease-in-out;
    background-color: #000;
}

.navbar-links {
    display: none;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    display: block;
    font-size: 1.1rem;
    font-weight: 300;
}

.navbar-links li .navlink {
    color: white;;
    display: block;
    padding: 0.8em 1.875em;
    transition: 0.4s ease;
    text-decoration:none;
    cursor: pointer;
}

@media (max-width: 840px) {
    #nav-list ul li {
        padding: 0 25px;
    }

}

@media (max-width: 760px) {
    #main-nav {
        height: 81px;
        padding-top: 10px;
    }

    #main-nav .logo{
        width: 100%;
    }

    #main-nav .logo-navbar {
        width: 95px;
        height: 60px;
    }

    .bar{
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .ham-bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .ham-bar:nth-child(1) {
        transform: translateY(0.5em) rotate(45deg);
    }

    .hamburger.active .ham-bar:nth-child(3) {
        transform: translateY(-0.36em) rotate(-45deg);
    }

    .navbar-links {
        display: inline-block;
        position: fixed;
        left: -100%;
        top: 81px;
        flex-direction: column;
        background-color: var(--main-color);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: 0em 0.125em 0.125em rgba(42, 39, 39, 0.4);
    }

    .navbar-links.active {
        left: 0;
    }
}

@media (max-width: 760px) {
    #main-nav {
        padding: 0.5rem 0.5rem 1rem 0.5rem;
    }
}

/* =====================
  top Styles
===================== */
#top {
    background: url("../img/image1.jpg") center center fixed;
    background-repeat: no-repeat;
    background-size: cover; 
    margin-top: 140px;
    height: calc(100% - 2rem);
    margin: 0;
    position: relative;
    width: 100%;
}
#top a {
    position: absolute;
    left: calc(50% - 112px);
    bottom: 40px;
    display: inline-block;
    width: 224px;
    padding: 14px 36px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    vertical-align: middle;
    border: 2px solid #FFF;
    color: #FFF;
    text-transform: uppercase;
    transition: background-color 0.5s ease-in-out;
}

#top a:focus,
#top a:hover {
    background-color: #FFFFFF;
    opacity: 0.8;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

@media (max-width: 1024px) {
    #top {
        background: url("../img/image1.jpg") center center;
        background-size: cover;
    }
}

/* =====================
  content Styles
===================== */
#content {
    width: 100%;
    min-height: 100%;
}

/* =====================
  credo Styles
===================== */
#credo {
    width: 100%;
    padding: 5rem 0;
    background-color: #FFF;
}

#credo:after{
    content:'';
    display:table;
    clear:both;
}

.credo-left{
    width: 50%;
    float: left;
    padding: 0;
}

.credo-right{
    width: 50%;
    float: left;
    padding: 5rem;
}

.credo-left img{
    width: 100%;
    height: auto;
}

.credo-right span{
    display: block;
    margin-bottom: 50px;
}

.credo-right p{
    margin: 6px 0;
    font-size: 1.1rem;
    font-weight: 300;
    color: #969696;
}

.credo-right a {
    display: inline-block;
    float: right;
    padding: 8px 24px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    vertical-align: middle;
    border: 1px solid #969696;
    color: #969696;
    text-transform: uppercase;
    transition: background-color 0.5s ease-in-out;
}

.credo-right a:focus,
.credo-right a:hover {
    color: #FFF;
    background-color: var(--main-color);
    border: 2px solid var(--main-color);
}


@media (max-width: 1100px) {
    .credo-right{
        padding: 2rem;
    }
}


@media (max-width: 1024px) {
    .credo-left,.credo-right {
        width: 100%;
    }
}

@media (max-width: 650px) {
    #credo {
        padding: 2rem 0 0 0;
    }

    .credo-right{

    }
}


/* =====================
  center-img Styles
===================== */
#center-img {
    background: url("../img/image3.jpg") top center fixed;
    background-repeat: no-repeat;
    background-size: cover; 
    margin-top: 140px;
    height: 100%;
    margin: 0;
    position: relative;
    width: 100%;
}

#center-img .center-img-area{
    position: absolute;
    left: calc(50% - 112px);
    bottom: 40px;
    display: inline-block;
    width: 224px;
}

#center-img a {
    display: inline-block;
    width: 100%;
    padding: 14px 36px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
    background-color: transparent;
    vertical-align: middle;
    border: 2px solid #FFF;
    color: #FFF;
    text-transform: uppercase;
    transition: background-color 0.5s ease-in-out;
}

#center-img a:focus,
#center-img a:hover {
    background-color: #FFFFFF;
    opacity: 0.8;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

@media (max-width: 1024px) {
    #center-img {
        background: url("../img/image3.jpg") center center;
        background-size: cover;
    }
}

/* =====================
  center-img Styles
===================== */
#center-word {
    width: 100%;
    padding: 3rem 0;
    background-color: #FFF;
    color: #969696;
    font-weight: 300;
    text-align: center;
    font-family: "Noto Serif TC";
}

/* =====================
  contact Styles
===================== */
#contact-info {
    width: 100%;
    padding: 5rem 0;
    background-color: #FFF;
    color: #969696;
    font-weight: 300;
}

#contact-info p {
    font-size: 13px;
}

#contact-info a {
    display: inline-block;
}

#contact-info i {
    color: #CCCCCC;
    font-size: 22px;
    margin-right: 8px;
    border: #CCCCCC solid 1px;
    border-radius: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

#contact-info i:focus,
#contact-info i:hover {
    background-color: #CCCCCC;
    color: #FFF;
}

#contact-info .fa-facebook-f{
    padding: 10px 14px;
}

#contact-info .fa-instagram{
    padding: 10px 12px;
}

#contact-info .fa-line{
    padding: 10px 12px;
}

#contact-info:after{
    content:'';
    display:table;
    clear:both;
}

.contact-info-left{
    width: calc(100% / 3);
    float: left;
    padding: 0 0 0 5rem;
}

.contact-info-middle{
    width: calc(100% / 3);
    float: left;
    padding: 0 0 0 5rem;
}

.contact-info-right{
    width: calc(100% / 3);
    float: left;
    padding: 0 0 0 5rem;
}

@media (max-width: 1024px) {
    .contact-info-left{
        padding: 0 0 0 3rem;
    }

    .contact-info-middle{
        padding: 0 0 0 3rem;
    }

    .contact-info-right{
        padding: 0 0 0 3rem;
    }
}

@media (max-width: 790px) {
    #contact-info{
        padding: 2rem 0;
    }

    .contact-info-left{
        width: 100%;
        padding: 0;
    }

    .contact-info-middle{
        width: 100%;
        padding: 0;
    }

    .contact-info-right{
        width: 100%;
        padding: 0;
    }
}


/* =====================
  footer Styles
===================== */
footer {
    padding: 5px 20px;
    background: #FFF;
    text-align: center;
    font-size: 12px;
    color: #969696;
}

@media (max-width: 650px) {
    footer {
        font-size: 10px;
    }
}

/* =====================
  error Styles
===================== */
#error{
    padding: 20px;
}

#error span {
    display: block;
    font-size: 65px;
    font-weight: 300;
    color: var(--main-color2);
    text-align: center;
}

#error p {
    color: #555555;
    text-align: center;
}

/* =====================
  Loader Styles
===================== */
.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.66);
    z-index: 1000;
}
.loader{
    position: relative;
    top: calc(50% - 9px);
    margin: 0 auto;
    z-index: 1001;
}
.loader h1{
    font-family: 'Actor', sans-serif;
    color:#FFF;
    font-size:16px;
    letter-spacing:1px;
    font-weight: 300;
    text-align:center;
}
.loader span{
    width:16px;
    height:16px;
    border-radius:50%;
    display:inline-block;
    position:absolute;
    left:50%;
    margin-left:-10px;
    -webkit-animation:3s infinite linear;
    -moz-animation:3s infinite linear;
    -o-animation:3s infinite linear;
    z-index: 1002;
    
}
.loader span:nth-child(2){
    background:#FFFFFF;
    -webkit-animation:kiri 1.2s infinite linear;
    -moz-animation:kiri 1.2s infinite linear;
    -o-animation:kiri 1.2s infinite linear;
    
}
.loader span:nth-child(3){
    background:var(--main-color);
}
.loader span:nth-child(4){
    background:var(--main-color2);
    -webkit-animation:kanan 1.2s infinite linear;
    -moz-animation:kanan 1.2s infinite linear;
    -o-animation:kanan 1.2s infinite linear;
}


@-webkit-keyframes kanan {
    0% {-webkit-transform:translateX(20px);
    }
   
    50%{-webkit-transform:translateX(-20px);
    }
    
    100%{-webkit-transform:translateX(20px);
    z-index:1002;
    }
}
@-moz-keyframes kanan {
    0% {-moz-transform:translateX(20px);
    }
   
    50%{-moz-transform:translateX(-20px);
    }
    
    100%{-moz-transform:translateX(20px);
    z-index:1002;
    }
}
@-o-keyframes kanan {
    0% {-o-transform:translateX(20px);
    }
   
    50%{-o-transform:translateX(-20px);
    }
    
    100%{-o-transform:translateX(20px);
    z-index:1002;
    }
}
@-webkit-keyframes kiri {
    0% {-webkit-transform:translateX(-20px);
    z-index:1002;
    }
    50%{-webkit-transform:translateX(20px);
    }
    100%{-webkit-transform:translateX(-20px);
    }
}

@-moz-keyframes kiri {
    0% {-moz-transform:translateX(-20px);
    z-index:1002;
    }
    50%{-moz-transform:translateX(20px);
    }
    100%{-moz-transform:translateX(-20px);
    }
}
@-o-keyframes kiri {
    0% {-o-transform:translateX(-20px);
    z-index:1002;
    }
    50%{-o-transform:translateX(20px);
    }
    100%{-o-transform:translateX(-20px);
    }
}
/* =====================
  Modal Styles
===================== */
.btn-close {
    color: #FFFFFF;
    font-size: 15px;
    text-decoration: none;
    padding:5px;
    position: absolute;
    right: 7px;
    top: 0;
    cursor: pointer;
}
.btn-close:hover {
    color: #919191;
}
.modale:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
}
.opened:before {
    display: block;
}
.opened .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    top: 40%;
}
.modal-dialog {
    background: #fefefe;
    border: #333333 solid 0px;
    border-radius: 8px;
    text-align:center;
    position: fixed;
    left: calc(50% - 200px);
    top: -100%;
    width: 400px;
    box-shadow:0 5px 10px rgba(0,0,0,0.66);
    -webkit-transform: translate(0, -500%);
    -ms-transform: translate(0, -500%);
    transform: translate(0, -500%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    z-index: 1002;
}
.modal-body {
    padding: 20px;
}
.modal-body span{
    font-weight: 300;
}
.modal-header {
    padding: 15px;
    background-color: var(--main-color);
    border-bottom: #eeeeee solid 1px;
    border-radius: 5px 5px 0 0;
}
.modal-header h2 {
    font-size: 20px;
}

/* =====================
  about Styles
===================== */
.about-img-bg1 {
    background: url("../img/about-image1.jpg") center center fixed;
}

.about-img-bg2 {
    background: url("../img/about-image2.jpg") top center fixed;
}

.about-img-bg1,.about-img-bg2 {
    background-repeat: no-repeat;
    background-size: cover; 
    margin-top: 140px;
    height: calc(100% - 5rem);
    margin: 0;
    position: relative;
    width: 100%;
}

.about-img-bg1 div,.about-img-bg2 div {
    position: absolute;
    left: calc(50% - 150px);
    bottom: 40px;
    display: inline-block;
    width: 300px;
    padding: 14px 36px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}

.about-img-bg1 div{
    color: #7F7F7F;
}

.about-img-bg2 div{
    color: #FFFFFF;
}

.about-word {
    width: 100%;
    padding: 2rem 0;
    background-color: #FFF;
}

.about-word h5{
    font-size: 1.3rem;
    font-weight: 450;
    color: var(--main-color);
    margin: 0 0 30px 0;
}

.about-word p{
    margin: 0 0 10px 0;
}

.about_bottom {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}

.about_bottom .bottom {
    overflow: hidden;
}

.about_bottom .bottomLeft {
    display: inline-block;
    float: left;
}

.about_bottom .bottomRight {
    display: inline-block;
    float: left;
}

.about_bottom .people{
    display: inline-block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    padding-right: 10px;
}

.about_bottom .people .text p {
    margin: 0 0 10px 0;
}

.about_bottom .bottomLeft h3 {
    display: inline-block;
    margin-right: 20px;
    float: left;
    font-size: 1rem;
    font-weight: 300;
}

.about_bottom .bottomLeft h5 {
    font-size: 1.3rem;
    font-weight: 450;
    color: var(--main-color);
    margin: 0 0 30px 0;
}

.about_bottom .bottomLeft .text {
    display: inline-block;
    float: left;
}

.bottomRight img{
    width: 100%;
    height: auto;
}

.about_bottom .box {
    width: 100%;
    display: inline-block;
    float: left;
    margin-bottom: 10px;
}

.about_bottom .box .boxLeft {
    width: 80px;
    float: left;
}

.about_bottom .box .boxRight {
    width: calc(100% - 80px);
    float: left;
}

@media (max-width: 1024px) {
    .about-img-bg1 {
        background: url("../img/about-image1.jpg") center center;
        background-size: cover;
    }

    .about-img-bg2 {
        background: url("../img/about-image2.jpg") center center;
        background-size: cover;
    }

    .about_bottom {
        margin-bottom: 0;
    }

    .about_bottom .bottomLeft {
        width: 100%;
        padding-top: 10px;
    }

    .about_bottom .bottomRight {
        width: 100%;
    }

    .about_bottom .swap {
        display: flex;
        flex-flow: column-reverse wrap;
    }
}

/* =====================
  faq Styles
===================== */
.faq-img-bg1 {
    background: url("../img/faq-image1.jpg") center center fixed;
    background-repeat: no-repeat;
    background-size: cover; 
    margin-top: 140px;
    height: calc(100% - 5rem);
    margin: 0;
    position: relative;
    width: 100%;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faq{
    margin-bottom: 2rem;
}

.faq-content h3 {
    font-family: "Noto Serif TC";
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.faq-list {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    padding-left: 2rem;
}

.faq-list-item {
    position: relative;
    margin: 0 0 1.5rem 0;
    padding-left: 1.5rem;
    cursor:pointer;
    text-align: left;
}

.faq-list-item h5 {
    font-size: 1rem;
    font-weight: 200;
    margin: 0 0 1rem 0;
}

.faq-list-item span{
    position:absolute;
    top:0px;
    left:0px;
    font-size: 1rem;
}

.question{
    font-family: "Noto Sans TC";
    margin-bottom: 10px;
}

.answer {
    font-size: 1rem;
    padding: 0px 0px;
    margin: 0 0 5px 0;
    display:none;
}

.answer p{
    font-size: 1rem;
    margin: 0 0 5px 0;
    color: #A6A6A6;
}

.answer img{
    display: block;
    max-width: 850px;
    height: auto;
}

.faq ol{
    padding: 0 16px;
    color: #A6A6A6;
}

.faq li{
    margin-bottom: 1rem;
}

.faq .child {
    padding: 0 24px;
    list-style-type: none;
    counter-reset: sectioncounter;
}

.faq .child > li {
    text-indent: -1.4em;
}

.faq .child > li:before {
    content: "("counter(sectioncounter)") ";
    counter-increment: sectioncounter;
}

.faq .child ul{
    padding: 0 24px;
    list-style-type: disc;
}

.faq .child ul li{
    text-indent: -0.5em;
}

@media (max-width: 1024px) {
    .faq-img-bg1 {
        background: url("../img/faq-image1.jpg") center center;
        background-size: cover;
    }
}


/* =====================
  contact Styles
===================== */
#contact {
    width: 100%;
}

#contact:after{
    content:'';
    display:table;
    clear:both;
}

.contact-title{
    text-align: left;
    margin-bottom: 20px;
    color: #000;
}

.contact-title h1:after {
    content: "";
    display: block;
    width: 150px;
    height: 3px;
    margin: 3px 0 0 0;
    background: #000;
}

#contact input {
    font-size: 1rem;
    line-height: 35px;
    background-color: transparent;
    color: var(--main-color2);
    border: 0;
    border-bottom: solid 1px #AEAEAE;
    width: 100%;
    margin-top: 50px;
    border-radius: 0;
    outline: none;
    cursor: pointer;
}

#contact input::placeholder {
    color: #AEAEAE;
    font-size: 0.9rem;
}

#contact select {
    width: 100%;
    margin-top: 50px;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #AEAEAE;
    border:none;
    border-bottom: solid 1px #AEAEAE;
}

#contact select:focus,
#contact option:focus {
    outline: none;
}

#contact textarea {
    margin-top: 50px;
    font-size: 1rem;
    line-height: 35px;
    background-color: transparent;
    border: 0;
    border-bottom: solid 1px #AEAEAE;
    height: 150px;
    border-radius: 0;
    color: var(--main-color2);
    width: 100%;
    margin-right: 20px;
    padding: 2px;
    outline: none;
    resize:none;
    cursor: pointer; 
}

#contact textarea::placeholder {
    color: #AEAEAE;
    font-size: 0.9rem;
}

#contact button {
    float: right;
    margin-top: 58px;
    background-color: transparent;
    padding: 8px 30px;
    color: #AEAEAE;
    border: 1px solid #AEAEAE;
    cursor: pointer;
    transition: all 0.2s ease;
}

#contact button:hover {
    color: #000;
    border: 1px solid #000;
}

.contact-left{
    width: 50%;
    float: left;
    padding: 2rem 30px;
}

.contact-left .contact-us{
    display: inline-block;
    margin-bottom: 30px;
}

.contact-left .form-below{
    margin: 0;
}

.contact-left p {
    color: #AEAEAE;
    margin: 0 0 20px 0;
}

.contact-left a {
    color: #AEAEAE;
}

.contact-left .boxs{
    display: inline-block;
    overflow: hidden;
}

.contact-left .box{
    display: inline-block;
    float: left;
}

.contact-left .box:first-child {
    padding-right: 10px;
}

.contact-left .box:last-child {
    padding-left: 10px;
}

.contact-right{
    width: 50%;
    float: left;
    padding: 2rem 30px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-right img{
    width: 100%;
    height: auto;
}

.required{
    display: none;
    font-size: 12px;
    color: red;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .contact-left{
        width: 100%;
    }

    .contact-right{
        width: 100%;
    }
}

@media (max-width: 650px) {
    .contact-left{
        padding: 2rem 0;
    }

    .contact-right{
        padding: 2rem 0;
    }
}

/* =====================
  contact Styles
===================== */
#attractions {
    display: inline-block;
    width: 100%;
}

#attractions .boxs {
    display: inline-block;
    float: left;
    width: 100%;
    overflow: hidden;
}

#attractions .box:nth-child(3n + 1) {
    margin-left: 0;
}
#attractions .box:nth-child(3n + 3) {
    margin-right: 0;
}

#attractions .box {
    display: inline-block;
    float: left;
    width: calc(100% / 3 - (8rem / 3));
    min-height: 200px;
    margin: 2rem;
    padding: 2rem;
    border: solid 1px #BFBFBF;
}

#attractions .box a{
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

#attractions .box img {
    width: 100%;
    height: auto;
    transform:scale(1,1);
    transition: all 0.6s ease-out;
}

#attractions .box img:hover{
    transform:scale(1.2,1.2);
}

#attractions .box .word {
    display: inline-block;
    width: 100%;
    padding-top: 2rem;
    text-align: center;
}


#attractions .box .word h3{
    font-family: "Noto Serif TC";
    display: inline-block;
    margin-right: 10px;
    color: var(--main-color);
    font-weight: 600;
}

#attractions .box .word p{
    font-family: "Noto Serif TC";
    display: inline-block;
    margin: 0 0 1rem 0;
    color: var(--main-color);
    font-weight: 400;
}

#attractions .box .word span{
    display: block;
    color: #7F7F7F;
    font-weight: 300;
}

#attractions .nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 2rem;
    list-style: none;
}

#attractions .nav-item{
    display: block;
    min-width: 200px;
    padding: .5rem 1rem;
    margin-right: 2px;
    text-align: center;
    background-color: #BFBFBF;
}

#attractions .nav-item:first-child {
    background-color: #FFF;
}

#attractions .nav-link {
    color: #878787;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 1189px) {
    #attractions .box .word h3{
        margin-right: 0;
    }
}

@media (max-width: 1095px) {
    #attractions .box{
        width: calc(100% / 3 - (4rem / 3));
        margin: 1rem;
        padding: 1rem;
    }

    #attractions .box .word h3{
        font-size: 16px;
    }

    #attractions .box .word p{
        font-size: 14px;
    }

    #attractions .box .word span{
        font-size: 14px;
    }
}


@media (max-width: 730px) {
    #attractions .nav-item {
        min-width: 100px;
        font-size: 14px;
    }
}

@media (max-width: 650px) {
    #attractions .box{
        width: 100%;
        margin: 1rem 0 0 0;
    }
}

/* =====================
  center-img Styles
===================== */
#product{
    display: inline-block;
    width: 100%;
}

#product .top{
    display: inline-block;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

#product .top .top-left{
    display: inline-block;
    width: 40%;
    float: left;
    border: solid 1px #BFBFBF;
    text-align: center;
    padding: 2rem;
}

#product .top .top-left img{
    width: 100%;
    height: auto;
}

#product .top-left .dots{
    display: inline-block;
    width: 100%;
    padding-top: 20px;
}

#product .top-left .dot{
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #000;
    opacity: 0.2;
    border-radius: 50%;
    margin-right: 5px;
    cursor: pointer;
}

#product .top-left .active {
    opacity: 0.5;
}

#product .top .top-right{
    display: inline-block;
    width: 60%;
    float: left;
    padding: 2rem;
}

#product .top-right h3{
    font-family: "Noto Serif TC";
    color: var(--main-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

#product .top-right .boxs{
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: 300;
    overflow: hidden;
}

#product .top-right .box{
    display: inline-block;
    width: 50%;
    float: left;
}

#product .top-right .box:first-child{
    font-family: "Noto Serif TC";
    font-size: 1rem;
    font-weight: 400;
}

#product .top-right .box:last-child{
    text-align: right;
}

#product .top-right .item{
    display: inline-block;
    width: 100%;    
    overflow: hidden;
}

#product .top-right span{
    display: inline-block;
    float: left;
    width: 100px;
    color: #7F7F7F;
    font-weight: 300;
}

#product .top-right p {
    display: inline-block;
    width: calc(100% - 100px);
    margin: 0 0 8px 0;
    color: #7F7F7F;
    font-weight: 300;
}

#product .top-right .describe {
    margin-bottom: 2rem;
}

#product .top-right .element {
    margin-bottom: 2rem;
}

#product .top-right .shipfee {
    margin-bottom: 2rem;
}

#product .top-right .buy {
    display: inline-block;
    width: 100%;
    text-align: right;
}

#product .top-right a.button {
    display: inline-block;
    padding: 8px 24px;
    color: #FFF;
    font-weight: 300;
    background-color: #BFBFBF;
    border: solid 1px #FFF;
    transition: 0.5s ease-in-out;
}

#product .top-right a.button:hover{
    color: #BFBFBF;
    background-color: #FFF;
    border: solid 1px #BFBFBF;
}

#product .center{
    display: inline-block;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

#product .center .center-left{
    display: inline-block;
    width: 60%;
    float: left;
    padding: 2rem;
}

#product .center .center-left .title{
    display: inline-block;
    font-family: "Noto Serif TC";
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: 600;
    margin: 0 0 16px 0;
}

#product .center-left .item{
    display: inline-block;
    width: 100%;    
    overflow: hidden;
}

#product .center-left span{
    display: inline-block;
    float: left;
    width: 100px;
    color: #7F7F7F;
    font-weight: 300;
}

#product .center-left p {
    display: inline-block;
    width: 100%;
    margin: 0 0 8px 0;
    color: #7F7F7F;
    font-size: 16px;
    font-weight: 300;
}

#product .center-left .item p {
    width: calc(100% - 100px);
}

#product .center-left .view {
    display: inline-block;
    width: 100%;
    text-align: right;
    margin-top: 1rem;
}

#product .center-left .view a{
    display: inline-block;
    color: #7F7F7F;
    border: solid 1px #7F7F7F;
    padding: 8px 24px;
    line-height: 22px;
    transition: 0.5s ease-in-out;
}

#product .center-left .view a:hover{
    color: #FFF;
    background-color: #7F7F7F;
}

#product .center .center-right{
    display: inline-block;
    width: 40%;
    float: left;
    text-align: center;
    padding: 2rem 0 2rem 2rem;
}

#product .center .center-right img{
    width: 100%;
    height: auto;
}

#product .bottom{
    display: inline-block;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

#product .bottom .bottom-left{
    display: inline-block;
    width: 40%;
    float: left;
    text-align: center;
    padding: 2rem 2rem 2rem 0;
}

#product .bottom .bottom-left img{
    width: 100%;
    height: auto;
}

#product .bottom .bottom-right{
    display: inline-block;
    width: 60%;
    float: left;
    padding: 2rem;
}

#product .bottom .bottom-right .title{
    display: inline-block;
    font-family: "Noto Serif TC";
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: 600;
    margin: 0 0 16px 0;
}

#product .bottom-right .item{
    display: inline-block;
    width: 100%;    
    overflow: hidden;
}

#product .bottom-right span{
    display: inline-block;
    float: left;
    width: 100px;
    color: #7F7F7F;
    font-weight: 300;
}

#product .bottom-right .num span{
    width: 40px;
}

#product .bottom-right p {
    display: inline-block;
    width: calc(100% - 100px);
    margin: 0 0 8px 0;
    color: #7F7F7F;
    font-size: 16px;
    font-weight: 300;
}

#product .bottom-right .num p {
    width: calc(100% - 40px);
}   

#product .bottom .bottom-right .warning{
    margin-bottom: 1.5rem;
}

#product .recommend{
    display: inline-block;
    width: 100%;
    margin-top: 2rem;
}

#product .recommend h3{
    font-family: "Noto Serif TC";
    color: var(--main-color);
    font-weight: 600;
}

#product .recommend .boxs {
    display: inline-block;
    float: left;
    width: 100%;
    overflow: hidden;
}

#product .recommend .box:nth-child(3n + 1) {
    margin-left: 0;
}
#product .recommend .box:nth-child(3n + 3) {
    margin-right: 0;
}

#product .recommend .box {
    display: inline-block;
    float: left;
    width: calc(100% / 3 - (8rem / 3));
    min-height: 200px;
    margin: 2rem;
    padding: 2rem;
    border: solid 1px #BFBFBF;
}

#product .recommend .box a{
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

#product .recommend .box img {
    width: 100%;
    height: auto;
    transform:scale(1,1);
    transition: all 0.6s ease-out;
}

#product .recommend .box img:hover{
    transform:scale(1.2,1.2);
}

#product .recommend .box .word {
    display: inline-block;
    width: 100%;
    padding-top: 2rem;
    text-align: center;
}

#product .recommend .box .word h3{
    font-family: "Noto Serif TC";
    display: inline-block;
    margin-right: 10px;
    color: var(--main-color);
    font-weight: 600;
}

#product .recommend .box .word p{
    font-family: "Noto Serif TC";
    display: inline-block;
    margin: 0 0 1rem 0;
    color: var(--main-color);
    font-weight: 400;
}

#product .recommend .box .word span{
    display: block;
    color: #7F7F7F;
    font-weight: 300;
}

@media (max-width: 1220px) {
    #product .recommend .box .word h3{
        margin-right: 0;
    }
}

@media (max-width: 1095px) {
    #product .top .top-left{
        width: 50%;
    }
    #product .top .top-right{
        width: 50%;
    }
    #product .center .center-left{
        width: 50%;
    }
    #product .center .center-right{
        width: 50%;
    }
    #product .bottom .bottom-left{
        width: 50%;
    }
    #product .bottom .bottom-right{
        width: 50%;
    }
    #product .recommend .box{
        width: calc(100% / 3 - (4rem / 3));
        margin:1rem;
        padding: 1rem;
    }
}

@media (max-width: 890px) {
    #product .top .top-left{
        width: 100%;
    }
    #product .top .top-right{
        width: 100%;
    }
    #product .center .center-left{
        width: 100%;
    }
    #product .center .center-right{
        width: 100%;
    }
    #product .bottom .bottom-left{
        width: 100%;
        padding: 0;
    }
    #product .bottom .bottom-right{
        width: 100%;
    }
}

@media (max-width: 890px) {
    #product .recommend .box{
        width: 100%;
        margin:1rem 0 0 0;
        padding: 2rem;
    }

    #product .swap {
        display: flex;
        flex-flow: column-reverse wrap;
    }
}


