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;
}

html,
body {
  position: relative;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  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;
    outline: 0;
}

img{
  max-width: 100%;
  height: auto;
}

a{
  color: #000;
}

a:hover{
  text-decoration: none;
  color: #000;
}

/*webfonts*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@400;600&display=swap');


@font-face {
    font-family: 'YesevaOne';
    src: url(../webfonts/YesevaOne-Regular.ttf);
}

@font-face {
    font-family: 'Libre';
    src: url(../webfonts/LibreBaskerville-Regular.ttf);
}

@font-face {
    font-family: 'NotoSerifTC-Regular';
    src: url(../webfonts/NotoSerifTC-Regular.otf);
}

@font-face {
    font-family: 'NotoSerifTC-SemiBold';
    src: url(../webfonts/NotoSerifTC-SemiBold.otf);
}

body{
  font-family: 'NotoSerifTC-Regular',serif;
}

.swiper-container {
  width: 100%;
  height: 100%;
  margin-top: 58px;
}

.header-wrap{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  border-bottom: 1px solid rgb(0 0 0 / 30%);
  background: #256350;
  transition: .3s ease;
}


.header-wrap.active{
  background: #256350;
  border-bottom:0px solid rgb(255 255 255 / 0);
  transition: .5s ease;
}

.header-wrap.active .header-menu {
  transition: .5s ease;
}

/* hamburger */

#hamburger {
  width: 30px;
  height: 30px;
  margin: 10px;
  margin-left: 0;
  margin-top: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#hamburger span:nth-child(1) {
  top: 0px;
}

#hamburger span:nth-child(2),#hamburger span:nth-child(3) {
  top: 10px;
}

#hamburger span:nth-child(4) {
  top: 20px;
}

#hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}


.header-menu{
  max-width: 100%;
  position: relative;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.header-menu ul{
  width: 100%;
  height: 100vh;
  padding: 80px 50px;
  background: #256350;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: -100%;
  transition: all .8s;
}

.header-wrap.open ul.open-mo-list{
  right: 0;
  transition: all .8s;
}

.header-menu ul li a{
  position: relative;
  display: block;
  padding: 20px 10px;
  color: #fff;
  letter-spacing: 2px;
  font-size: 18px;
  text-align: center;
  border-bottom: 1px solid #fff3;
}

.header-menu ul li .social-menu-top{
  margin: 0 auto;
  text-align: center;
}

.header-menu ul li .social-menu-top a{
  display: inline-block;
  border-bottom: 0px solid #fff0;
  padding: 20px 8px;
}

@media (min-width: 1024px) {
  .swiper-container{
    margin-top: 0;
  }

  .header-wrap{
    display: block;
    background: transparent;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
  }

  #hamburger{
    display: none;
  }

  .header-menu ul{
    width: auto;
    height: auto;
    padding: 0;
    flex-direction: row;
    position: relative;
    top: 0;
    right: 0;
    background: transparent;
  }

  .header-menu ul li a{
      border-color: transparent;
      font-size: 14px;
  }

  .header-menu ul li a:after,
  .header-menu ul li a.active:after
  {
      content: '';
      width: 0%;
      height: 1px;
      margin: 0 auto;
      background-color: #fff;
      display: block;
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      transition: .3s ease;
  }

  .header-menu ul li a:hover:after{
      content: '';
      width: 30%;
      transition: .3s ease;
  }

  .header-menu ul li a.active:after{
      width: 30%;
  }
  
}

@media (min-width: 1024px) {

  .header-menu ul li a{
    padding: 20px 10px;
  }
  
}

/*about*/
.about_area {
  padding-top: 50px;
  padding-bottom: 100px;
}

/*about animation*/
.bg_move {
  overflow: hidden;
}

.bg_move:before {
    content: "";
    display: block;
    width: calc(100% + 1px);
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    transform: scaleX(1);
    transition-delay: 1s;
    transition: all 1s cubic-bezier(0.860, 0.000, 0.070, 1.000);    
}

.bg_black.bg_move:before,
.bg_white.bg_move:before
{
    background: #EDEDED;
    transform-origin: right;
    right: -1px;
}

.bg_white.bg_move:before{
    background: #fff;
}

.bg_black.bg_move.visible:before,
.bg_white.bg_move.visible:before
{
    transform: scaleX(0);
}

.bg_black,.bg_white{
  display: inline-block;
  background-color: transparent;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
}


@media (max-width: 767px) {
   .about_area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .about_area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section_title h3{
    font-size: 2rem;
    font-weight: 400;
    color: #c4a048;
    font-family: "YesevaOne", serif;
    margin-bottom: 21px; 
}

.section_title p {
    color: #000000;
    line-height: 2;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
  .section_title h3{
    font-size: 3rem;
  }

  .section_title p {
    font-size: 1.1rem;
  }
  
}

.about_area .about_info {
  padding-left: 30px;
}

@media (max-width: 767px) {
  .about_area .about_info {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_info {
    padding-left: 0;
  }
}

.about_area .about_info .opening_hour {
  font-family: "YesevaOne", cursive;
  font-size: 30px;
  font-weight: 400;
  color: #252219;
  margin-bottom: 55px;
  margin-top: 37px;
}

.about_area .about_info .opening_hour span {
  color: #252219;
  font-size: 20px;
  margin-left: 6px;
  display: inline-block;
}

@media (max-width: 767px) {
  .about_area .about_info .opening_hour span {
    margin-left: 0;
  }
}

.about_area .about_thumbs {
  position: relative;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_thumbs {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .about_area .about_thumbs {
    margin-bottom: 30px;
  }
}

.about_area .about_thumbs img {
  width: 100%;
}

.about_area .about_thumbs .large_img_1 {
  padding-right: 10px;
}

@media (max-width: 767px) {
  .about_area .about_thumbs .large_img_1 {
    padding-right: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_thumbs .large_img_1 {
    padding-right: 0px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .about_area .about_thumbs .large_img_1 {
    padding-right: 100px;
  }
}

.about_area img{
  width: auto!important;
}

.about_area .about_thumbs .small_img_1 {
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  top: 79px;
}

@media (max-width: 767px) {

  .about_area .about_thumbs .small_img_1 {
    position: absolute;
    right: 0;
    bottom: 0;
    border-top: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    background: #fff;
    top: auto;
    width: 50%;
    height: 60%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .about_area .about_thumbs .small_img_1 {
    bottom: -30px;
  }
}

.about_area .about_thumbs .small_img_1 img {
  width: 100%;
  height: 100%;
}

/*view more btn - ÃƒÆ’Ã‚Â¤Ãƒâ€šÃ‚Â½Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã‚Â§ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒâ€šÃ‚Â¨max-width*/
.btn--primary {
    border: 1px solid #111;
    text-align: left;
    letter-spacing: 1px;
    font-size: .9rem;
    position: relative;
    padding: 0;
    background-color: transparent
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0);
}

.btn--primary-w{
    border: 1px solid #fff;
}

.btn--primary:before,.btn--primary-w:before {
    content: "";
    position: absolute;
    width: 50px;
    border-top: 1px solid #111;
    right: -30px;
    top: 22px;
    -webkit-transition: all .4s cubic-bezier(.165, .84, .44, 1);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.btn--primary-w:before{
  border-top: 1px solid #fff;
}

.btn--primary:after,.btn--primary-w:after {
    content: "";
    position: absolute;
    width: 0;
    border-top: 1px solid #666;
    left: 65%;
    top: 22px;
    -webkit-transition: all .4s cubic-bezier(.165, .84, .44, 1);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.btn--primary-w:after{
  border-top: 1px solid #fff;
}
.btn--primary span,.btn--primary-w span {
    position: relative;
    color: #111;
    background-color: transparent;
    display: block;
    min-width: 150px;
    padding: 12px 20px;
    -webkit-transition: all .4s cubic-bezier(.165, .84, .44, 1);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    transition-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.btn--primary-w span{
  color: #fff;
}

.btn--primary:hover:before {
    width: 0
}

.btn--primary:hover:after {
    width: 50px;
    left: calc(100% - 20px);
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.btn--primary:hover span {
    color: #666;
    background-color: #fafafa
}


@media (max-width:767px) {
    .btn--primary:before {
        top: 23px
    }

    .btn--primary:after {
        top: 20px
    }
}

@media (max-width:575px) {
    .btn--primary:hover:after {
        width: 35px;
        left: calc(100% - 25px)
    }

    .btn--primary:before {
        width: 40px;
        right: -10px
    }
}



/*mobile menu*/

.min-header{display: none;}

@media (max-width: 767px) {
.min-header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transition: all 0.5s ease-out, background 1s ease-out;
  transition-delay: 0.2s;
  z-index: 1030;
}
.min-header .burger-container {
  position: relative;
  display: inline-block;
  height: 50px;
  width: 50px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.min-header .burger-container #burger {
  width: 18px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 50%;
}
.min-header .burger-container #burger .bar {
  width: 100%;
  height: 1px;
  display: block;
  position: relative;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0s;
}
.min-header .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(0px) rotate(0deg);
          transform: translateY(0px) rotate(0deg);
}
.min-header .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(6px) rotate(0deg);
          transform: translateY(6px) rotate(0deg);
}
.min-header .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.min-header .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.65s;
}
.min-header ul.menu {
  position: relative;
  display: block;
  padding: 0px 48px 0;
  list-style: none;
}
.min-header ul.menu li.menu-item {
  border-bottom: 1px solid #333;
  margin-top: 5px;
  -webkit-transform: scale(1.15) translateY(-30px);
          transform: scale(1.15) translateY(-30px);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99), -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.min-header ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.49s;
}
.min-header ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.42s;
}
.min-header ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.35s;
}
.min-header ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.28s;
}
.min-header ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.21s;
}
.min-header ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.14s;
}
.min-header ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.07s;
}

.min-header ul.menu li.menu-item:nth-child(8) {
  transition-delay: 0.03s;
}

.min-header ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  line-height: 2;
  width: 100%;
  text-align: center;
}
.min-header.menu-opened {
  width: 100%;
  height: 100vh;
  background-color: #000;
  transition: all 0.3s ease-in, background 0.5s ease-in;
  transition-delay: 0.25s;
}
.min-header.menu-opened .burger-container {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.min-header.menu-opened .burger-container #burger .bar {
  transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}
.min-header.menu-opened .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(4px) rotate(45deg);
          transform: translateY(4px) rotate(45deg);
}
.min-header.menu-opened .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(3px) rotate(-45deg);
          transform: translateY(3px) rotate(-45deg);
}
.min-header.menu-opened ul.menu li.menu-item {
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
  opacity: 1;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(1) {
  transition-delay: 0.27s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(2) {
  transition-delay: 0.34s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(3) {
  transition-delay: 0.41s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(4) {
  transition-delay: 0.48s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(5) {
  transition-delay: 0.55s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(6) {
  transition-delay: 0.62s;
}
.min-header.menu-opened ul.menu li.menu-item:nth-child(7) {
  transition-delay: 0.69s;
}

.min-header.menu-opened ul.menu li.menu-item:nth-child(8) {
  transition-delay: 0.73s;
}

.min-header.menu-opened .icon.icon-bag {
  -webkit-transform: translateX(75px);
          transform: translateX(75px);
  transition-delay: 0.3s;
}

.min-header ul.menu li.menu-item .mo-logo-fit{
  padding-bottom: 1em;
}

}
/*mobile menu end*/

.bg-cover{
  background-repeat: no-repeat;
  background-position: center;
    background-size: cover;
}

/*scale*/
.image-scale {
    -webkit-animation: image-scale 3s;
    animation: image-scale 3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes image-scale
{
    0%
    {
        -webkit-transform: scale(1.2, 1.2);
    }
    100%
    {
        -webkit-transform: scale(1, 1);
    }
}
@keyframes image-scale
{
    0%
    {
        transform: scale(1.2, 1.2);
    }
    100%
    {
        transform: scale(1, 1);
    }
}

/*scroll down*/
#scrollDown-wrap{
  position: absolute;
  bottom: -5%;
  right: 10%;
  width: auto;
}

#scrollDown-wrap a {
    padding-bottom: 25px;
    position: relative;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font: normal 12px/1 'Libre',serif;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity .3s;
    -webkit-writing-mode: vertical-rl;
    writing-mode: tb-rl;
    direction: rtl;
}

#scrollDown-wrap a span {
    position: absolute;
    bottom: -40px;
    right: 40%;
    content: '';
    width: 1px;
    height: 60px;
    border: 1px solid #fff;
    -webkit-animation: sdb 2s infinite;
    animation: sdb 2s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@media (min-width: 768px) {
  #scrollDown-wrap{
    bottom: 5%;
    right: 5%;
  }

  #scrollDown-wrap a{
    padding-bottom: 55px;
  }

  #scrollDown-wrap a span {
    height: 85px;
  }
}

@media (min-width: 1024px){
  #scrollDown-wrap {
    bottom: 2%;}
}


/*ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â Ãƒâ€šÃ‚ÂÃƒÆ’Ã‚Â¨Ãƒâ€šÃ‚Â¼Ãƒâ€šÃ‚ÂªÃƒÆ’Ã‚Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢Ãƒâ€šÃ‚Â­ÃƒÆ’Ã‚Â¥Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“*/

.swiper-pagination-bullet-active{
  outline: none;
}

.index-slider .swiper-container .swiper-slide{
  height: 45vh;
  width: 100vw!important;
  position: relative;
  display: flex;
  align-items: center;
}

.index-slider .swiper-container .swiper-slide:before{
  content: '';
  background: #0003;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}


.index-slider .swiper-container .swiper-slide .title{
  position: relative;
  z-index: 99;
  color: #fff;
  font-size: 1.3rem;
  text-transform:uppercase;
  font-family: 'YesevaOne','NotoSerifTC-Regular',serif;
  letter-spacing: 2px;
  line-height: 1.5;
}

.index-slider .swiper-container .swiper-pagination{
  z-index: 99;
}

.logo{
  display: block;
  padding-top: 0;
}


/*index-product*/

.swiper-container-sm {
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}

.swiper-container-sm .swiper-slide {
  text-align: center;
  font-size: 18px;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-container-sm .swiper-pagination{
  position: relative;
  z-index: 8;
  bottom: -40px;
}

.swiper-container-sm .swiper-pagination-bullet-active {
    outline: none;
    background: #000;
}

.index-product-wrap{
  background: #ededed;
  padding: 40px 0;
}

.products-content h4{
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'NotoSerifTC-SemiBold',serif;
  letter-spacing: 2px;
  padding: 15px;
}

.products-content p {
    color: #575757;
    line-height: 1.5;
    font-size: .9rem;
    letter-spacing: 1px;
}

@media (min-width: 568px) {
  .index-slider .swiper-container .swiper-slide{
    height: 70vh;
  }
}

@media (min-width: 768px) {

  .index-product-wrap{
    padding: 150px 0;
  }

  .index-slider .swiper-container .swiper-slide .title{
    font-size: 1.5rem;
  }

  .products-content p {
      font-size: 1rem;
  }

  .swiper-container .swiper-slide .title{
      font-size: 2rem;
  } 
}

@media (min-width: 812px) {
  .index-slider .swiper-container .swiper-slide{
    height: 100vh;
  }  
}



/*news layout*/
.service_area {
  padding-top: 150px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {  
  .service_area {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .service_area .col-6:nth-child(odd),
  .project-wrap .col-6:nth-child(odd){
    padding-right: 5px;
  }

  .service_area .col-6:nth-child(even),
  .project-wrap .col-6:nth-child(even){
    padding-left: 5px;
  }
}

.service_area .single_service .service_thumb {
  overflow: hidden;
}

@media (min-width: 1300px) {
  .service_area .single_service .service_thumb {
    height: 360px;
  }
  
}

.service_area .single_service .service_thumb img {
  width: 100%;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.service_area .single_service .service_content {
  display: block;
  position: relative;
  padding: 15px;
  border: 1px solid rgba(0,0,0,.1);
  border-top: none;
  margin-bottom: 30px;
}

.service_area .single_service .service_content .date{
  line-height: 1.5;
  font-size: 14px;
  padding-bottom: 5px;
  letter-spacing: 1px;
}


@media (min-width: 992px) and (max-width: 1200px) {
  .service_area .single_service .service_content {
    padding: 40px 30px 30px 30px;
  }
}

.service_area .single_service .service_content .icon {
  width: 55px;
  height: 55px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
  box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.28);
  color: #eb592d;
  text-align: center;
  line-height: 55px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -25px;
  z-index: 0;
  background: #fff;
  top: 0;
  font-size: 25px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service_area .single_service .service_content h3{
  display: block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 10px;
  color: #141419;
  transition: .3s ease;
}

.service_area .single_service .service_content:hover h3{
  color: #C9A063;
  transition: .3s ease;
}

.service_area .single_service .service_content p {
  font-size: 16px;
  line-height: 1.3;
  color: #575757;
  font-weight: 400;
  margin-bottom: 0;
  transition: .3s ease;
}

.service_area .single_service .service_content:hover p{
  opacity: .5;
  transition: .3s ease;
}

.service_area .single_service:hover .service_thumb img {
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.service_area .single_service:hover .service_content .icon {
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
}






.footer{
  background: #256350;
}

.footer-box{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 15px 0;
  font-size: 14px;
  letter-spacing: 1px;
}

.menu_links{
  display: none;
}

.menu_links ul{
  display: flex;  
  flex-direction: column;
}

.menu_links ul li{
  
}

.menu_links ul li a{
  display: inline-block;
  color: #fff;
  transition: .3s ease;
}

.menu_links ul li a:hover{
  opacity: .6;
  transition: .3s ease;
}

.menu_links ul li a:last-child{
  padding-right: 0;
}

.social_links{
  display: flex;
  color: #fff;

}

.social_links span{
  display: inline-block;
  padding-right: 15px;
  margin-right: 15px;
  margin: 15px 0;
  border-right: 1px solid #96bdb1;
}

.social_links ul{
  display: flex;
  padding-left: 15px;
  align-items: center;
}

.social_links ul li{
  margin: 0 5px;
}

.social_links a{
  display: inline-block;
  color: #fff;
  transition: .3s ease;
}

.social_links a:hover{
  opacity: .6;
  transition: .3s ease;
}

.copyright{
  color: #ffffff;
  line-height: 1.5;
}

.copyright a{
  color: #fff;
}

.copyright a:hover{
  color: #ccddd4;
}

.border-top{
  border-color: #96bdb1!important;
}

.footer-contact{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding-left: 10px;
}

.footer-contact li{
  display: block;
  color: #fff;
  margin-bottom: 15px;
}

@media (min-width: 1024px) {

  .footer-box,.menu_links ul{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .menu_links {
    display: block;
    width: 70%;
  }

  .menu_links li+li:before {
      margin: 0 .5rem;
      font-size: 1.1rem;
      color: #96bdb1;
      content: "/";
  }

  .copyright{
    line-height: 3;
  }

  .footer-contact{
    display: none;
  }
}

@media (min-width: 1200px){
  .container{
      max-width: 1300px;
  }

  .container-s{
      max-width: 1100px;
  }

  .menu_links {
    display: block;
    width: 62%;
}

}

/*---------------------
  Gallery Section
-----------------------*/
.gallery-section {
  padding-bottom: 80px;
}
.gallery-section .section-title {
  margin-bottom: 38px;
}
.gallery-item {
  position: relative;
  width: 100%;
  height: 279px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.gallery-item:hover:after {
  opacity: 1;
}
.gallery-item:hover .gi-text {
  opacity: 1;
}
.gallery-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 26, 0.3);
  content: "";
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.gallery-item.large-item {
  height: 576px;
}
.gallery-item .gi-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.gallery-item .gi-text h3 {
  color: #ffffff;
}

.banner {
  height: 18rem;
  overflow:hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner:after{
  content: '';
  background: #0004;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.banner h2{
  color: #fff;
  position: relative;
  z-index: 3;
  font-family: 'YesevaOne',serif;
  font-size: 2.5rem;
  letter-spacing: 3px;
  margin-top: 35px;
}

.banner p{
  display: block;
  color: #fff;
  position: relative;
  z-index: 3;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-top: 15px;
}

.banner .image-scale{
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.banner .image-scale img {
    min-width: 500px;
    position: absolute;
    right: 0;
    bottom: 0;  
}

.product-banner-custom img{
  right: -100px;
}

@media (min-width: 450px){
  .product-banner-custom img{
    right: 0;
  }
}

@media (min-width: 768px){
  .banner {
      height: 22rem;
  }
}

@media (min-width: 1024px){
  .banner {
    height: 30rem;
  }
}

@media (min-width: 1140px) {
  .banner .image-scale img {
    width: 100%;/*
    min-width: 1900px;*/
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;    
  }
}

.about-section h3{
  font-size: 28px; 
  font-family: 'NotoSerifTC-SemiBold'; 
  line-height: 1.3;
}

.about-section h4{
  font-size: 22px;
  color: #256350;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.5;
}

.about-section img{
  width: 100%!important;
}

.about-section.join-set img{
  width: auto!important;
}

.about-section p{
  margin-bottom: 20px;
  color: #000;
}

span.point{
  color:#28a981;
}

.history-wrap{
    margin-bottom: 50px;
}

.history-box{
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.history-title{
    font-size: 22px;
    font-weight: bold;
    color: #9a5c00;
    line-height: 1.3;
    text-align: left;
    border-right: 1px solid #9a5c00;
    width: 15%;
    letter-spacing: 1px;
}

.history-list{
   width: 83%;
}

.history-list h3{
    font-size: 18px;
    padding: 0;
    text-align: left;
    color: #000;
    letter-spacing: 1px;
}

.history-list p{
    font-size: 18px;
    line-height: 1.8;
    color: #545454;
    text-align: left;
    letter-spacing: 1px;
}

@media (max-width: 768px){
    .history-box{
        flex-direction: column;
        justify-content: left;
    }

    .history-title,.history-list{
        width: 100%;
    }

    .history-title{
        border: 0;
    }

}

.about-section ul{
  display: block;
}

.about-section ul li{
  padding-left: 15px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #000;
  font-size: 1.1rem;
}

.about-section ul li:before{
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 100%;
  display: block;
  background: #cc9a2a;
  position: absolute;
  left: 0;
  top: 10px;
}

/*project*/
.project-wrap,.project-in-wrap,.contact-big-wrap{
  padding-top: 60px;
  padding-bottom: 80px;
}

.news-wrap{
  padding-top: 60px;
  padding-bottom: 80px;
}

@media (max-width: 768px){
  .project-wrap,.project-in-wrap,.news-wrap,.contact-big-wrap {
      padding-top: 40px;
      padding-bottom: 40px;
  }
}

.project-in-wrap .swiper-container .swiper-slide{
  width: auto;
}

.project-img{
  width: 100%;
  display: block;
  overflow:hidden;
  position: relative;
}

.project-img:before{
  content: url(../images/viewmore.png);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  z-index: 2;
  width: 45px;
  height: 45px;
  opacity: 0;
  transition: .3s ease;
}

.project-img:after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #0005;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: .3s ease;
}

.project-img:hover:before{
  opacity: 1;
  transition: .3s ease;
}

.project-img:hover:after{
  opacity: 1;
  transition: .3s ease;
}

.project-img img{
  width: 100%;
  transform: scale(1.1);
  transition: 3s ease;
}

.project-img:hover img{
  transform: scale(1.3);
  transition: 3s ease;
}

.project-title{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 15px 0 50px 0;
}

.project-title h3{
  margin: 0;
  text-align: left;
}

.project-title span{
  font-family: Jomolhari,serif;
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;  
  letter-spacing: 2px;
  color: #c9caca;
}

.project-title h3 a,.project-title h3{
  font-family: 'NotoSerifTC-SemiBold',serif;
  font-size: 1rem;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #000;
  transition: .3s ease-out;
}

.project-title h3{
  font-size: 1.2rem;
}

.project-title h3 a:hover{
  color: #C9A063;
  transition: .3s ease-out;
}

.project-title p{
  display: block;
  margin-top: 7px;
  line-height: 1.5;
  font-size: 1rem;
  text-align: left;
}

@media (min-width: 768px) {

  .project-title{
    flex-direction: column;
  }

  .project-title h3 a {
    font-size: 1.1rem;
    letter-spacing: 2px;
    line-height: 1.5;
  }
  
}

@media (min-width: 1024px) {

  .project-title{
    flex-direction: row;
    align-items: flex-end;
  }
  
}


.more-btn{
  display: none;
  font-size: 1rem;
  width: 45px;
  height: 20px;
  color:#565656;
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 15px;
}

.more-btn:before{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 104%;
    height: 1px;
    background-color: #e8caa4ad;
    transform: scale(1, 1);
    transform-origin: left top;
    transition: -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
    transition: transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1),
    -webkit-transform 0.4s cubic-bezier(0.08, 0.92, 0.35, 1);
}

.more-btn:hover:before{
    transform-origin: right top;
    transform: scale(0, 1);
}

@media (min-width: 768px) {
  .more-btn{
    display: inline-block;
    margin-bottom: 0;
  }
  
}

/*ÃƒÆ’Ã‚Â¥Ãƒâ€¹Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â©Ãƒâ€šÃ‚Â Ãƒâ€šÃ‚Â*/
.page-wrap ul{
  justify-content: center;
  flex-wrap: wrap;
}

.page-wrap li{
  margin: 10px;
}

.page-link{
  font-size: .8rem;
  color: #000;
  border: 1px solid #fff;
}

.page-item.active .page-link{
  font-size: .8rem;
  color: #fff;
  border-color: #fff;
  background: #ced4da;
  transition: .3s ease;
}

.page-link:hover {
    color:  #fff;
    text-decoration: none;
    background-color: #ced4da;
    border-color: #ced4da;
    transition: .3s ease;
}

.page-link span{
  color: #6c757d;
}

.page-link:hover span{
  color: #fff;
}

.project-list ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.project-list ul li{
  color: #000;  
  letter-spacing: 2px;
  position: relative;
  padding-left: 20px;
  margin: 10px 5px;
}

.project-list ul li a:before{
  content: '';
  display: none;
  opacity: .5;
  width: 8px;
  height: 8px;
  background: #000;
  position: absolute;
  left: calc(30% + 3px);
  top: 20px;
}

.project-list ul li a{
  font-size: 18px;
  letter-spacing: 2px;
  opacity: .5;
}

.project-list ul li a.current{
  opacity: 1;
}

.project-list ul li a.current:before{
  opacity: 1;
}

.project-list ul li a:hover{
  opacity: 1;
  transition: .3s ease;
}

.project-list ul li:hover a:before{
  opacity: 1;
  transition: .3s ease;
}

.project-in-img img{
  width: 100%;
}


.project-in-wrap .swiper-button-next,
.project-in-wrap .swiper-button-prev {
  color: #000;
  outline: 0;
}

.swiper-button-next{
    left: 45px;
}

.project-in-wrap .swiper-button-next:after,
.project-in-wrap .swiper-button-prev:after {
    font-size: 10px;
    color: #a5a5a5;
}

.project-in-wrap .swiper-arrow-position{
  position: relative;
}

.project-in-wrap .swiper-button-next,.project-in-wrap .swiper-button-prev {
    position: absolute;
    bottom: 0;
    top: 35px;
    left: auto;
    border: 1px solid #c3c3c3;
    width: 30px;
    height: 30px;
}

.swiper-button-prev{
    right: 40px;
}

.swiper-button-next{
    right: 0px;
}

.project-in-wrap .col-md-4{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 1024px ) {
  .project-list ul li a:before{
    display: inline-block;
  }  
}

@media (min-width: 642px ) {
  .project-list ul li a:before{
    left: 7px;
    top: 6px;
  }  
}


@media (min-width: 768px) {

  .project-list ul li{
    margin: 10px;
  }

  .project-in-wrap .swiper-button-next,.project-in-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    border: 1px solid #c3c3c3;
    width: 41px;
    height: 41px;
    margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    background: #fff;
  }

  .project-in-wrap .swiper-arrow-position {
      position: absolute;
      right: 15px;
      bottom: 19px;
  }
  
}

.gallery-top {
  width: 100%;
}

.gallery-thumbs {
  display: none;
  box-sizing: border-box;
}

.gallery-thumbs .swiper-slide {
  height: 100%;
  opacity: 0.5;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}




.project_info{
  /* height: 100%; */
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: space-between; */
  /* margin-top: 65px; */
  /* word-break: break-all; */
}

.project_info .section_title h3{
    font-size: 2rem;
    font-weight: 400;
    color: #222222;
    font-family: 'YesevaOne','NotoSerifTC-Regular',serif;;
    margin-bottom: -0px;
}

.project_info .section_title p {
    color: #be9e48;
    line-height: 1.5;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-top: 20px;
}

@media (min-width: 768px) {
  .gallery-thumbs{
    display: block;
  }

  .project_info{
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .project_info .section_title h3{
    font-size: 3rem;
  }

  .project_info .section_title p {
    font-size: 1.05rem;
  }  
}

.project_info .section_title h4 {
  font-size: 25px;
  margin-top: 10px;
  line-height: 1.3;
}

.section_info {
  display: flex;
}

.project_img{
  width: 220px;
}

.project_img img{
  width: 100%;
}

.project-in-wrap .btn-wrap{
  margin-top: 3em;
}

.project-etc{
  position: relative;
  margin-top: 8em;
  border-top: 1px solid #aaa5;
}

.project-etc-txt{
  position: absolute;
  top: -50px;
  left: 0;
  padding: 15px;
  font-size: 18px;
  letter-spacing: 2px;
  display: inline-block;
  border-bottom: 2px solid #C9A063;
}

.project-content img{
  width: 100%;
}

.project-content p{
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 20px 0;
}

.project-content h3{
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  font-weight: bold;
  margin-top: 20px;
}

.breadcrumb{
  font-size: 14px;
  padding: 1em 0;
  background-color: #fff;
  line-height: 1.5;
}

.breadcrumb.inside{
  padding: 0;
}

@media (min-width: 1024px) {
  .breadcrumb.inside{
    padding: 1em 0;
  }

  .project-in-wrap .btn-wrap{
    margin-top: 6em;
  }

  .project_info .section_title h4{
    margin-top: 0;
  }
}


.news-title span{
  display: block;
  color: #aaa;
  margin: 20px 0;
  font-size: 14px;
  letter-spacing: 2px;
}

.news-title h2{
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.news-info img{
  width: 100%;
}

.news-info p{
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 20px 0;
}

.news-info h3{
  font-size: 22px;
  line-height: 1.3;
  color: #000;
  font-weight: bold;
  margin-top: 20px;
}



.contact-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info{
  padding: 30px;
  padding-left: 0;
  margin-top: 15px;
}

.contact-info a{
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  height: 150px;
  margin: 0 15px;
}

.contact-info .info-text{
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-size: 1rem;
  line-height: 1.5;
}


.contact-info .info-text ul{
  display: flex;
  margin-top: 10px;
  height: 50px;
}

.contact-info .info-text ul li a{
   width: auto;
   font-size:20px;
   margin: 0 10px 0 0;
}

.contact-info .info-text ul li a:hover{
  opacity: .5;
}



.contact-info .info-text span{
  color: #767676;
  font-size: 13px;
  display: block;
  letter-spacing: 1px;
  margin-top: 20px;
}

.contact-info .info-text span:first-child{
  margin-top: 0;
}

.contact-info .info-text b{
  letter-spacing: 1px;
}

.contact-item{
  margin: 15px 0;
  height: 400px;
}

.contact-title{

  border-top: 1px solid #aaa5;
}

.contact-title h2{
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 40px;
}

.contact-title p{
  line-height: 1.8;
  letter-spacing: 1px;
  margin: 20px 0;
}

.form-row .robotbtn{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.form-row .robotbtn .btn{
  height: 40px;
}

.form-row .robotbtn img{
  width: 100%;
  height: 100%;
}

.contact-form{
  justify-content: space-between;
}

.contact-form button{
  color: #fff;
  margin: 20px 0;
}

.contact-form label{
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 1px;
}

.contact-form .btn-purple{
  background: #000;
  margin-bottom: 0;
  transition: .5s ease;
}

.contact-form .btn-violet{
  background: #C9A063;
  transition: .5s ease;
}

.contact-form .btn:hover {
    color: #fff;
    letter-spacing: 6px;
    text-decoration: none;
    transition: .5s ease;
}

.contact-form .btn-purple:hover {
    opacity: .8;
    transition: .5s ease;
}

.contact-form .btn-violet:hover {
    opacity: .8;
    transition: .5s ease;
}

@media (min-width: 768px) {
  .form-row .robotbtn{
    justify-content: flex-start;
    align-items: flex-end;
  }

  .contact-form .btn-purple{
    margin-bottom: 20px;
  }
  .contact-info a{
    width: 120px;
    height: 120px;
  }

  .contact-title{
    border-top: 0px solid transparent;
  }

  .contact-title h2 {
    margin-top: 0px;
  }

}

@media (min-width: 1200px) {
    .contact-info a{
      width: 150px;
      height: 150px;
    }
}



/*classlink*/
.m_classLink{
  display:none;
  text-align: center;
  margin-bottom: 30px;/*
  margin-left: 15px;
  margin-right: 15px;*/
}

.classLink{
  display: block;
}  


/*640*/
@media (max-width: 640px){

  ul.classLink{
    display:none;
  }

  .m_classLink{
    display:block;
    position:relative;
  }

  .m_classLink a.main{
    display:block;
    font-size:18px;
    text-align:center;  
    color:#b79355;
    border:1px solid #b79355;
    position:relative;
    padding:10px;
    background: #fff; /* Old browsers */

  }

  .m_classLink a.main i{
    display:block;
    font-size:15px;  
    position:absolute;
    right:10px;
    top:50%;
    margin-top:-6px;
  }

  .m_classLink ul{
    padding:0;
    list-style:none;  
    display:none;
    width:100%;
    background:#FFF;
    border:1px solid #d1d1d1;
    position:absolute;
    left:0;
    top:100%;
    z-index:999;  
    box-sizing:border-box;
  }

  .m_classLink ul li{
    padding:0;
  }

  .m_classLink ul li a{
    display:block;
    color:#000;
    padding: 15px;
    border-top:1px solid #d1d1d1;
    opacity: 1;
  }

  .m_classLink ul li:first-child a{
    border:none;
  }
  .m_classLink ul li:hover a{
    color: #929292;
    background: #ffffff;
  }

  .project-list ul li a {
    font-size: 16px;
  }

  .project-list ul li{
    margin: 0;
  }

  .project-list ul li:before{
    display: block;
  }

  .project-list ul li:before{
    display: none;
  }

}

/*album*/
.modal-dialog{
  width: 100% !important;
}

.modal-header .close {
    outline: 0;
}

.project-title.projects-album{
  margin-top: 0;
  padding: 5px 8px;
  border: 1px solid #aaa5;
  border-top: 0;
}

 .project-title.projects-about{
    border: 0;
  }

  .project-title.projects-about .txt-box{
    margin: 0 auto;
  }

@media (min-width: 768px) {
  .project-title.projects-album {
    padding: 10px;
  }  
}

/*new card list*/ 

.card {
  max-width: 700px;
  margin: 0 auto;
}

.card-title{
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  color: #9a5c00;
  margin-bottom: 15px;
}

.card-text{
  font-size: 18px;
  line-height: 1.5;
}

.about--wrap .txt--box{
  margin-bottom: 20px;
}

.about--wrap .txt--box h2{
  width: 150px;
  padding: 10px;
  border: 1px solid #C4A048;
  color: #C4A048;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}

.about--wrap .txt--box p{
  font-size: 17px;
  line-height: 1.8;
  margin-top: 5px;
}

/*select*/
.project-wrap .col-lg-3.select-box,
.project-wrap .col-6.select-box{
  padding-left: 15px;
  padding-right: 15px;
}


.select-box .date-txt,.select-box .date-serch-txt{
  margin-bottom: 15px;
  color: #fff;
}

.select-box div{
  margin-bottom: 15px;
}


@media (min-width: 1024px) {



 .select-box .date-txt{
    padding: 0;
  }

  .select-box div{
    margin-bottom: 0
  }
}

.img-full img{
  width: 100%;
}

.search-box{
  padding: 20px 15px;
  margin-bottom: 30px;
  background: #256350;
}

.btn-light{
  background: #C4A048;
  border: #C4A048;
  color: #fff;
  width: 100%;
}

.btn-light:hover {
    color: #212529;
    background-color: #e8d1a5;
    border-color: #e8d1a5;
}

.btn-light i + span{
  display: inline-block;
  padding-left: 10px;
  font-size: 18px;
}

@media (min-width: 1024px) {
  .btn-light{
    width: auto;
  }

  .btn-light i + span{
    display: none
  }

  .pr-lg-auto{
    padding-right: auto;
  }
}

/*table*/
/*rwd-table-ÃƒÂ¨Ã‚Â¡Ã‚Â¨ÃƒÂ¦Ã‚Â Ã‚Â¼ÃƒÂ¨Ã‚Â¨Ã‚Â­ÃƒÂ¥Ã‚Â®Ã…Â¡*/
.over-auto{
  overflow-x: auto;
  overflow-y: hidden;
}
.table-bordered {
    border: 1px solid #fff;
}

.table-responsive > .table-bordered {
    border: 1px solid #fff;
}

.table-bordered tbody{
  border: 1px solid #dee2e6;
}

.table-bordered th{
  text-align: center;
}

.table thead th {
    border-bottom: 1px solid #ffffff;
    padding: 1.5rem .75rem;
}

.table-responsive {
    width:auto;
}

.thead-green{
  background: #256350;
  color:#fff;
}

.project-table-wrap table{
  width: 100%;
  letter-spacing: 1px;
  line-height: 2;
  margin-bottom: 3em;
  margin-top: 30px;
  white-space: nowrap;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #c4a048;
}

.ma-download-box{
  display: flex;
  flex-direction: column;
}

.manage-box{
  display: inline-block;
  margin-bottom: 30px;
  padding-left: 15px;
}

.manage-box img{
  display: block;
  width: 350px;
}

.manage-box span{
  display: block;
  margin-top: 10px;
  line-height: 1.2;
}

.about-section .ma-download{
  margin-top: 30px;
  width: 200px;
  display: inline-block;
  padding: 10px;
}

.about-section .ma-download li:before{
  display: none;
}

.about-section .ma-download li:first-child{
  background: #cc9a2a;
  color: #fff;
  padding: 10px 15px;
}

.about-section .ma-download li a i{
  display: inline-block;
  padding-right: 10px;
}

.about-section .ma-download li a:hover{
  opacity: .5;
}

@media (min-width: 768px) {
  .ma-download-box{
    display: flex;
    align-items: top;
    flex-direction: row;
  }
  
}

.member-login-txt{  
  text-align: center;
}

.member-login-txt h2{
  font-size: 25px;
  font-weight: bold;
  color: #256350;
  letter-spacing: 2px;
  background: #cccccc;
  padding: 15px;
  line-height: 1.5;
}

.member-login-txt span{
  font-size: 18px;
  line-height: 1.5;
  color: #666;
  margin: 10px 0;
  display: block;
}

.member-login-txt .login-txt{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.login-txt span{
  margin-bottom: 0;
}

.login-txt span.fill-tax{
  display: inline-block;
  padding-left: 15px;
  margin-top: 0;
}

.login_form input{
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .member-login-txt .login-txt{
    flex-direction: row;
    justify-content: space-between;
  }
  
}

.custom-control-label::before {
    top: 0.05rem;
}

.custom-control-label::after {
    top: 0.05rem;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #256350;
    background-color: #256350;
}

.custom-control a{
  color: #C4A048;
  display: inline-block;
  padding-left: 15px;
}

.custom-control a:hover{
  opacity: .5;
}

/*member-menu*/
.side_menu {
  margin-bottom: 50px;
}

.side_menu li:last-child {
    border-bottom: 1px solid #fff;
}

.side_menu li>a {
  display: block;
  padding: 15px;
  font-size: 17px;
  color: #434343;
  letter-spacing: .05em;
}

.side_menu li>a.current,
.side_menu li>a:hover {
  color: #fff;
}

.side_menu dl {
  display: none;
  padding-left: 20px;
}

.side_menu dl.active{
    display: block;
}

.side_menu li dl a {
  display: block;
  padding: 5px 15px;
  font-size: 16px;
}

.side_menu li dl a.current {
  color: #00c569;
}

.side_menu li dl a:hover {
  color: #06bd30;
}

.m_classLink{
  display:none;
  text-align: center;
  margin-bottom: 30px;
}

.sideLink{
  display: block;
  border: 1px solid #6666;
  padding: 15px;
  box-shadow: 0px 0px 5px 0 #6663;
  background: #fff;
}  

.left-menu-box .menu-title{
  color: #000;
  font-size: 18px;
  text-align: left;
  padding: 10px;
  padding-left: 20px;
  padding-top: 0;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border-bottom:1px solid #aaa;
  position: relative;
}

.left-menu-box .menu-title:after{
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: 5px;
  top: 6px;
}

.left-menu-box li a{
  outline: 0;
  position: relative;
  display: block;
  text-align: left;
  line-height: 1.5;
  color: #6d6d6d;
  letter-spacing: 1px;
  padding: 10px 0;
  padding-right: 30px;
  transition: .3s ease;
}

.left-menu-box li a.current{
  color: #278659;
}

.left-menu-box li a.click-menu:after{
  content: '\f107';
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
}

.left-menu-box li a:hover{
  color: #c4a048;
  transition: .3s ease;
}

.product-list{
    padding-left: 30px;
}


ul.sideLink dl {
display: none;
}

ul.sideLink dl.current {
display: block;
}


/*640*/
@media (max-width: 768px){

  ul.sideLink{
    display:none;
  }

  .m_classLink{
    display:block;
    position:relative;
  }

  .m_classLink a.main{
    display: block;
    font-size: 18px;
    text-align: center;
    color: #ffffff;
    border: 1px solid #c4a048;
    position: relative;
    padding: 10px;
    background: #c4a048;
  }

  .m_classLink a.main b{
    font-weight: 300;
  }

  .m_classLink a.main i{
    display:block;
    font-size:15px;  
    position:absolute;
    right:10px;
    top:50%;
    margin-top:-6px;
  }

  .m_classLink ul{
    padding:0;
    list-style:none;  
    display:none;
    width:100%;
    background:#FFF;
    border:1px solid #d1d1d1;
    position:absolute;
    left:0;
    top:100%;
    z-index:800;  
    box-sizing:border-box;
  }

  .m_classLink ul li{
    padding:0;
  }

  .m_classLink ul li a{
    display:block;
    color:#000;
    padding: 15px;
    opacity: 1;
    line-height: 1.5;
  }

  .m_classLink ul li:first-child a{
    border:none;
  }

  .left-menu-box .menu-title{
    display: none;
  }

  .product-list {
    padding-left:0;
  }


  ul.sideLink {
    max-height: 400px;
    overflow-y: auto;
  }

  /*ul.sideLink li > a::after {
    content: '\f107';
    position: absolute;
    right: 7px;
    top: 11px;
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: 17px;
    transition: all .5s;
  }*/

  ul.sideLink li > a.click-menu::after {
    content: '\f107';
    position: absolute;
    right: 7px;
    top: 11px;
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: 17px;
    transition: all .5s;
  }

  ul.sideLink li > a.click-menu.current::after {
    transform: scaleY(-1);
  }

}

.member-table-wrap table{
  width: 1100px;
}

.member-table-wrap .table thead th {
    padding: 15px;
}

.table-bordered td, .table-bordered th {
    border: 1px solid #b6b6b6;
}
.table-bordered td{
  line-height: 1.5;
}

.member-table-wrap table a{
  color: #28a745;
  margin-bottom: 10px;
  display: inline-block;
}

.member-table-wrap table a:hover{
  color: #C4A048;
  text-decoration: underline;
}

.member-table-wrap .table-header{
  text-align: center;
  font-size: 22px;
}

.tr-header {
  background: #b1b1b1;
  text-align: center;
  color: #000;
}

@media (min-width: 768px) {
  .member-table-wrap table{
    width: 100%;
  }
  
}



@media (min-width: 1024px) {
  .fixed {
    position: sticky;
    top: 80px;
    left:0;
  }  
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
    color: inherit;
}

/*刪除鍵*/

.contact-form button.remove{
  color: #28a745;
  transition: .3s ease;
}

.contact-form button.remove:hover{
  color: #e20000;
  letter-spacing: 0;
  transition: .3s ease;
}
.contact-form button.remove span{
  padding-left: 5px;
  letter-spacing: 0;
}

.contact-form button.remove{
  margin: 0;
}

@media (min-width: 768px) {
  .contact-form button.remove{
    font-size: 16px;
  }
}

/*新增鍵*/
.contact-form .btn-info{
  background: #256350;
}
.contact-form .btn-info:hover {
    color: #fff;
    background: #C4A048;
    border: 1px solid #C4A048;
    letter-spacing: 0;
    text-decoration: none;
    transition: .5s ease;
}

.title-box{
  width: 100%;
  background: #c3d7d1;
  border: 1px solid #86a69c;
  padding: 12px;
  color: #136e53;
  display: flex;
  justify-content: space-between;
}

.title-box .main-title{
  padding-right: 10px;
}

.title-box .main-title i{
  font-size: 25px;
}

.title-box .main-title span{
  font-size: 18px;
}

.title-box .main-title h5{
  display: inline-block;
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
}

.title-box .sm-type{
  font-size: 16px;
  line-height: 1.5;
}

.question-box p{
  display: block;
  font-size: 18px;
  padding: 15px;
  border: 1px solid #86a69c;
}

.border-line{
  border-top: 1px solid #666;
}

.bg-answer{
  background: #dedede;
  color: #136e53;
}

.fs-4{
  font-size: 20px;
}

.check-box{
  padding: 15px;
  margin-top: 15px;
  background: #256350;
  color: #fff;
}

input[type=checkbox]:checked {
    background-color: #c4a048;;
}

.form-check-input[type=checkbox]::before {
    left: 0;
    top: 0;
}

.form-check {
    justify-content: center;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 5px;
  margin-top: 5px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
}
.styled-checkbox:hover + label:before {
  background: #c4a048;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #c4a048;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
