@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css");
body {
  margin: 0;
  color: rgb(74, 74, 74);
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
body:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../image/bg.jpg);
  z-index: -1;
}

* {
  font-family: "Noto Sans TC", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.8px;
  line-height: 1.5;
}

.bs {
  -webkit-box-shadow: 0 8px 10px rgba(42, 39, 39, 0.062745098);
  box-shadow: 0 8px 10px rgba(42, 39, 39, 0.062745098);
}

ul {
  list-style-type: circle;
}
ul li:not(:last-child) {
  margin-bottom: 12px;
}

.container {
  max-width: 1400px;
  width: 95%;
  margin: auto;
}

hr {
  background-color: #eda93d;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #eda93d;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h2 {
  display: inline-block;
  position: relative;
  text-align: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Noto Serif TC", sans-serif;
  z-index: 0;
  color: #a62f38;
}
h2 span {
  z-index: -1;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -28px;
  opacity: 0.4;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 2.4em;
  color: transparent;
  -webkit-text-stroke: 1px #eda93d;
}

@media (min-width: 992px) {
  h2 {
    font-size: 20px;
    margin-bottom: 60px;
  }
  h2 span {
    top: -44px;
  }
}
h3 {
  font-size: 20px;
  font-weight: 400;
}

p {
  line-height: 2em;
}

img {
  width: 100%;
}

.row:not(:last-child) {
  margin-bottom: 100px;
}

.slick-prev:before,
.slick-next:before {
  color: #eda93d;
  font-size: 24px;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  color: #eda93d;
}

.slick-dots li.slick-active button:before {
  color: #eda93d;
}

.btn {
  width: 100%;
  line-height: 40px;
  margin: 16px 8px;
  border: 1px solid #a62f38;
  background-color: #a62f38;
  border-radius: 50vh;
  color: white;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 1.4px;
  transition: all 0.3s;
  box-shadow: 0 6px 8px rgba(42, 39, 39, 0.062745098);
}
.btn i {
  transition: all 0.3s;
  position: relative;
  right: 0;
  line-height: 40px;
  font-size: 18px;
}

.btn span {
  display: block;
  width: 100px;
}

.btn.secondary {
  border: 1px solid white;
  background-color: transparent;
  color: white;
}

.link-btn {
  display: block;
  font-size: 16px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  color: white;
  background-color: #eda93d;
  border-radius: 50vh;
}

section:not(:first-child) {
  padding: 70px 0;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #FEF9F1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #eda93d;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #eda93d transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: white;
  -webkit-box-shadow: 0 2px 4px rgba(42, 39, 39, 0.062745098);
  box-shadow: 0 2px 4px rgba(42, 39, 39, 0.062745098);
}

.navbar a {
  display: block;
}

.navbar a img {
  width: 90px;
}
.navbar a img.main-logo {
  width: 80px;
}

.navbar .navbar-toggler {
  color: transparent;
}

.navbar .navbar-toggler i {
  color: #eda93d;
}

.navbar .navbar-collapse {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.navbar .navbar-collapse .navbar-nav {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar .navbar-collapse .navbar-nav {
  margin-left: auto;
}

.navbar .navbar-collapse .navbar-nav .nav-link {
  text-align: center;
  color: #eda93d;
  margin: 12px 0;
}

#banner {
  position: relative;
  padding-top: 100px;
}
#banner .img-content {
  padding: 20px;
}
#banner .img-content h1 {
  font-weight: 400;
  font-size: 1.8em;
  color: #a62f38;
  letter-spacing: 2px;
}
#banner .img-content h1 small {
  color: #eda93d;
  font-size: 0.7em;
  margin-bottom: 4px;
}
#banner .img-content small {
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #a62f38;
  letter-spacing: 2px;
}
#banner .img-content strong {
  font-weight: 300;
  margin-top: 8px;
  font-size: 12px;
  color: gray;
}
#banner .carousel {
  width: 90%;
}
#banner .carousel .img-box {
  background: url(../image/banner/img-01.jpg) no-repeat center/cover, #F8E0B9;
  background-blend-mode: screen;
}
#banner .carousel .img-box.i2 {
  background: url(../image/banner/img-02.jpg) no-repeat center/cover, #FFD4D9;
}
#banner .carousel .img-box.i3 {
  background: url(../image/banner/img-03.jpg) no-repeat center/cover, #E5DBD8;
}
#banner .carousel .img-box img {
  padding: 20px;
  height: 60vh;
  object-fit: cover;
}

#news {
  padding-top: 200px;
}
#news .box {
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2509803922);
  background-color: #fff;
  max-width: 700px;
  margin: auto;
  padding: 20px;
  border: 4px solid #eda93d;
  position: relative;
  z-index: 0;
}
#news .box:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-top: 40px solid transparent;
  border-left: 40px solid transparent;
  border-bottom: 40px solid #eda93d;
  border-right: 40px solid #eda93d;
}
#news .box a {
  text-decoration: underline;
  color: #a62f38;
  text-underline-offset: 4px;
}
#news .box a:hover {
  color: #eda93d;
}

#about hr {
  background-color: #eda93d;
}

#about p {
  margin-top: 10px;
  font-size: 18px;
}

#services h2 {
  margin-bottom: 40px;
}
#services .row:nth-child(odd) .img-box {
  position: relative;
  left: -10px;
}
#services .row:nth-child(odd) .img-box:after {
  content: "";
  position: absolute;
  left: -10px;
  right: 10px;
  bottom: -10px;
  top: 10px;
  border-radius: 40px;
}
#services .row:nth-child(even) {
  flex-direction: row-reverse;
}
#services .row:nth-child(even) .img-box {
  position: relative;
  right: -10px;
}
#services .row:nth-child(even) .img-box:after {
  content: "";
  position: absolute;
  left: 10px;
  right: -10px;
  bottom: 10px;
  top: -10px;
  border-radius: 40px;
}
#services .row {
  padding: 30px 0;
  background: url(../image/services/bg.jpg) no-repeat center/cover;
  background-color: #f1b442;
  background-blend-mode: screen;
}
#services .row .img-box:after {
  border: 1px solid #f1b442;
}
#services .row h3 {
  color: #f1b442;
}
#services .row:nth-child(2) {
  background: url(../image/services/bg.jpg) no-repeat center/cover;
  background-color: #b4784b;
}
#services .row:nth-child(2) .img-box:after {
  border: 1px solid #b4784b;
}
#services .row:nth-child(2) h3 {
  color: #b4784b;
}
#services .row:nth-child(3) {
  background: url(../image/services/bg.jpg) no-repeat center/cover;
  background-color: #487bb8;
}
#services .row:nth-child(3) .img-box:after {
  border: 1px solid #487bb8;
}
#services .row:nth-child(3) h3 {
  color: #487bb8;
}
#services .row:nth-child(4) {
  background: url(../image/services/bg.jpg) no-repeat center/cover;
  background-color: #f15158;
}
#services .row:nth-child(4) .img-box:after {
  border: 1px solid #f15158;
}
#services .row:nth-child(4) h3 {
  color: #f15158;
}
#services .img-box {
  top: -50px;
}
#services .img-box img {
  border-radius: 40px;
}
#services h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
#services p {
  margin-bottom: 0;
  font-weight: 300;
}

#activity .box-border {
  position: relative;
}
#activity .box-border:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  border-bottom: 1px solid #DFD1E3;
}
#activity .activity-box {
  padding: 40px 20px;
  background: url(../image/activity/bg.jpg) no-repeat center/cover;
  background-color: #eda93d;
  background-blend-mode: lighten;
}
#activity .activity-box .img-box {
  width: 80%;
  height: 0;
  padding-bottom: 80%;
  margin-bottom: 28px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
#activity .activity-box .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#activity .activity-box h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 12px;
}
#activity .activity-box p {
  margin: 0;
}

#photo h3 {
  writing-mode: vertical-lr;
  color: #f15158;
  letter-spacing: 8px;
  font-size: 24px;
  font-family: "Noto Serif TC", sans-serif;
}
#photo a {
  position: relative;
}
#photo a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-top: 25px solid #f15158;
  border-left: 25px solid #f15158;
  border-bottom: 25px solid transparent;
  border-right: 25px solid transparent;
}
#photo .slick-prev:before, #photo .slick-next:before {
  color: #f15158;
}
#photo .slick-dots li button:before {
  color: #f15158;
}
#photo .slick-dots li.slick-active button:before {
  color: #f15158;
}
#photo .box:nth-child(2) h3 {
  color: #eda93d;
}
#photo .box:nth-child(2) a:after {
  border-top: 25px solid #eda93d;
  border-left: 25px solid #eda93d;
  border-bottom: 25px solid transparent;
  border-right: 25px solid transparent;
}
#photo .box:nth-child(2) .slick-prev:before, #photo .box:nth-child(2) .slick-next:before {
  color: #eda93d;
}
#photo .box:nth-child(2) .slick-dots li button:before {
  color: #eda93d;
}
#photo .box:nth-child(2) .slick-dots li.slick-active button:before {
  color: #eda93d;
}
#photo .box:nth-child(3) h3 {
  color: #487bb8;
}
#photo .box:nth-child(3) a:after {
  border-top: 25px solid #487bb8;
  border-left: 25px solid #487bb8;
  border-bottom: 25px solid transparent;
  border-right: 25px solid transparent;
}
#photo .box:nth-child(3) .slick-prev:before, #photo .box:nth-child(3) .slick-next:before {
  color: #487bb8;
}
#photo .box:nth-child(3) .slick-dots li button:before {
  color: #487bb8;
}
#photo .box:nth-child(3) .slick-dots li.slick-active button:before {
  color: #487bb8;
}

#photo .multiple-items .photo-box a {
  display: block;
  -webkit-box-shadow: 0 4px 6px rgba(42, 39, 39, 0.062745098);
  box-shadow: 0 4px 6px rgba(42, 39, 39, 0.062745098);
  margin: 10px 4px;
  height: 240px;
}
#photo .multiple-items .photo-box a img {
  height: 100%;
  object-fit: cover;
  transition: all 0.6s;
}

#photo .multiple-items .slick-next,
#photo .multiple-items .slick-prev {
  width: 40px;
  line-height: 40px;
}

.slick-dots {
  bottom: -40px;
}

#photo .multiple-items .slick-prev {
  left: -38px;
}

#photo .multiple-items .slick-next {
  right: -38px;
}

#photo .multiple-items .slick-next:before,
#photo .multiple-items .slick-prev:before {
  font-size: 24px;
}

#contact {
  background-color: white;
}
#contact iframe {
  display: block;
}
#contact .contact-box {
  border: 1px solid #C73945;
  border-radius: 50vh 50vh 0 0;
  padding: 120px 20px 20px;
  text-align: center;
  background: url(../image/contact/bg.jpg) no-repeat center/cover;
  background-color: #DA7B83;
  background-blend-mode: screen;
  overflow: hidden;
}
#contact .contact-box h3 {
  color: #a62f38;
  font-size: 24px;
}
#contact .contact-box hr {
  background-color: #a62f38;
  width: 50%;
  margin: 1.5rem auto;
}
#contact .contact-box ul.text {
  list-style-type: none;
  padding: 0;
}
#contact .contact-box ul.text span {
  color: #C73945;
  text-transform: uppercase;
  display: block;
}
#contact .contact-box ul.text a {
  color: #C73945;
  display: inline-block;
}
#contact .contact-box ul.link-group {
  list-style-type: none;
  padding: 0;
  margin-bottom: 40px;
}
#contact .contact-box ul.link-group li {
  margin: 12px;
}
#contact .contact-box ul.link-group li a {
  border: 1px solid #C73945;
  width: 44px;
  line-height: 44px;
  border-radius: 50%;
  color: #C73945;
  font-size: 20px;
}
#contact .contact-box.xinzhu {
  border: 1px solid #F2C173;
  background-color: #eda93d;
}
#contact .contact-box.xinzhu h3 {
  color: #eda93d;
}
#contact .contact-box.xinzhu hr {
  background-color: #eda93d;
}
#contact .contact-box.xinzhu ul.text span {
  color: #F2C173;
}
#contact .contact-box.xinzhu ul.text a {
  color: #F2C173;
}
#contact .contact-box.xinzhu ul.link-group {
  list-style-type: none;
  padding: 0;
}
#contact .contact-box.xinzhu ul.link-group li a {
  border: 1px solid #F2C173;
  color: #F2C173;
}

footer {
  padding: 10px 5px 80px;
  background-color: #FEF9F1;
}

footer p,
footer a {
  margin: 0;
  font-size: 12px;
  color: #eda93d;
}

.top {
  color: #eda93d;
}

@media screen and (min-width: 768px) {
  .navbar a img.main-logo {
    width: 120px;
  }
  #banner {
    padding-top: 150px;
  }
  #services h2 {
    margin-bottom: 60px;
  }
  #activity .box-border:not(:last-child):after {
    bottom: 40px;
    top: 40px;
    left: unset;
    right: 0;
    border-right: 1px solid #DFD1E3;
  }
  #activity .activity-box {
    padding: 20px 40px;
    color: #604068;
  }
  #photo .multiple-items .photo-box a {
    height: 500px;
  }
}
@media screen and (min-width: 992px) {
  section:not(:first-child) {
    padding: 100px 0;
  }
  .link-btn i {
    transition: all 0.3s;
  }
  .btn:hover {
    color: #FEF9F1;
    letter-spacing: 3px;
  }
  .btn:hover i {
    right: -12px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link {
    margin: 0 12px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-link:hover {
    color: #a62f38;
  }
  .navbar a img {
    width: 130px;
  }
  #banner {
    position: relative;
    padding-top: 65px;
  }
  #banner .img-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 35%;
  }
  #banner .img-content h1 {
    font-size: 3em;
  }
  #banner .img-content h1 small {
    text-align: center;
    margin-bottom: 12px;
  }
  #banner .img-content small {
    margin-top: 20px;
    font-size: 1em;
  }
  #banner .img-content strong {
    margin-top: 20px;
    font-size: 1em;
  }
  #banner .carousel {
    width: 65%;
  }
  #banner .carousel .img-box img {
    padding: 100px;
    height: calc(100vh - 65px);
  }
  #about {
    position: relative;
    z-index: 0;
  }
  #about p,
  #about h2 {
    padding: 0;
    margin-top: 0;
  }
  #about p::after,
  #about h2::after {
    width: 0;
  }
  #about hr {
    width: 30%;
    margin: 2rem auto;
  }
  #services h2 {
    margin-bottom: 200px;
  }
  #services .row:nth-child(odd) .img-box:after {
    left: -20px;
    right: 20px;
    bottom: -20px;
    top: 20px;
  }
  #services .row:nth-child(even) .img-box:after {
    left: 20px;
    right: -20px;
    bottom: 20px;
    top: -20px;
  }
  #services .img-box {
    top: -120px;
  }
  #services h3 {
    font-size: 36px;
  }
  #services p {
    font-size: 18px;
  }
  #activity .activity-box {
    padding: 40px 80px;
  }
  #activity .activity-box .img-box img {
    transition: all 0.6s;
  }
  #activity .activity-box:hover {
    background-color: #eda93d;
  }
  #activity .activity-box:hover .img-box img {
    transform: scale(1.05);
  }
  #photo .container {
    max-width: unset;
    width: 100%;
    padding: 0 80px;
  }
  #photo .multiple-items .photo-box a {
    margin: 10px;
    height: 650px;
    overflow: hidden;
  }
  #photo .multiple-items .photo-box a img {
    transform: scale(1.05);
    transition: all 1s;
  }
  #photo .multiple-items .photo-box a:hover img {
    transform: scale(1);
  }
  #contact .contact-box ul.text a:hover {
    color: #a62f38;
  }
  #contact .contact-box ul.link-group li a:hover {
    color: white;
    background-color: #C73945;
  }
  #contact .contact-box.xinzhu ul.text a:hover {
    color: #eda93d;
  }
  #contact .contact-box.xinzhu ul.link-group li a:hover {
    color: white;
    background-color: #F2C173;
  }
  footer {
    padding: 20px 0;
  }
  footer a:hover {
    color: #a62f38;
  }
  .top {
    transition: 0.8s;
    position: relative;
    top: 0;
    font-size: 20px;
  }
  .top:hover {
    top: -10px;
    cursor: pointer;
  }
}
/*# sourceMappingURL=style.css.map */