@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Neonderthaw&display=swap");
body {
  font-family: 'Noto Serif TC', serif;
  font-weight: bold;
  color: #665c4c;
}

@media (max-width: 576px) {
  body {
    background-attachment: unset;
  }
}

img {
  max-width: 100%;
  display: block;
}

p {
  font-size: 16px;
  line-height: 2;
}

.link-item {
  text-transform: uppercase;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-toggler {
  border: none;
}

section {
  padding: 7rem 0;
  overflow: hidden;
  position: relative;
}

h2 {
  font-size: 28px;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
  color: #e88947;
  padding-left: 2.5rem;
}

h2::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url("../img/dec.png") no-repeat center/contain;
}

@media (max-width: 992px) {
  h2 {
    font-size: 20px;
  }
}

.list-style {
  list-style: none;
  margin-bottom: 40px;
}

.list-style li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
  color: #ccc;
  transition: 0.4s;
}

.list-style li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #eee;
  border-radius: 50%;
  transform: rotate(45deg) translateY(-50%);
}

.list-style li::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 7px;
  width: 3px;
  height: 3px;
  background: #aaa;
  border-radius: 50%;
  transition: 1s;
}

.list-style li:hover {
  filter: brightness(2);
}

.sidebar {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 16px;
}

.sidebar ul li a {
  width: 50px;
  height: 50px;
  background: #4c6f00;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.75;
  text-decoration: none;
}

.sidebar ul li a:hover {
  opacity: 1;
}

.sidebar ul li a span {
  display: none;
  margin-left: 5px;
  font-size: 14px;
}

@media (max-width: 992px) {
  .sidebar {
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .sidebar ul {
    display: flex;
  }
  .sidebar ul li {
    flex-grow: 1;
    margin-bottom: 0;
  }
  .sidebar ul li a {
    opacity: 1;
    width: 100%;
    border-right: 1px solid #eee;
  }
  .sidebar ul li a span {
    display: inline-block;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parallax-object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.dec_box {
  position: absolute;
  width: 10vw;
  height: 30vh;
  background: url("https://images.unsplash.com/photo-1528458909336-e7a0adfed0a5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1048&q=80") no-repeat center/cover fixed;
  opacity: .6;
}

@media (max-width: 992px) {
  .dec_box {
    background-attachment: unset;
  }
}

header .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  transition: 0.4s;
  z-index: 99;
}

header .navbar .navbar-brand {
  display: flex;
  align-items: center;
}

header .navbar .navbar-brand span {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 3px;
  font-weight: bold;
  color: #e88947;
}

header .navbar .navbar-brand img {
  height: 55px;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: .35rem 1.5rem;
  position: relative;
  color: #e88947;
  letter-spacing: .15rem;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  background: #e88947;
  width: 100%;
  height: 0px;
  transition: .5s;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  height: 8px;
}

header .scrolled {
  background: #f6f4f0;
}

.hero {
  color: #fff;
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow-y: hidden;
}

.hero .txt-content {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  text-shadow: 0 3px 8px #111;
  display: flex;
  align-items: center;
}

.hero .txt-content h1 {
  font-size: 80px;
  letter-spacing: 3px;
  line-height: 1.3;
}

.hero .txt-content h1 small {
  font-size: 0.5em;
}

.hero .txt-content span {
  margin: 20px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  padding: 5px 10px;
  border: 1px solid #aaa;
  background: #ffffff22;
  backdrop-filter: blur(5px);
}

.hero .txt-content img {
  filter: brightness(120);
}

.hero .txt-content img.d-md-none {
  height: 40vh;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .hero {
    height: calc(100vh - 50px);
  }
  .hero .txt-content h1 {
    font-size: 40px;
  }
}

section .scroll-down {
  background: #15993e;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translateX(-50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
  padding: 80px 40px 30px;
  transition: .5s;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

section .scroll-down:hover {
  background: #09712a;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

section .scroll-down .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: 10px;
  margin-left: -12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

section .scroll-down .arrow:nth-of-type(1) {
  animation-delay: 0s;
}

section .scroll-down .arrow:nth-of-type(2) {
  top: 16px;
  animation-delay: .15s;
}

section .scroll-down .arrow:nth-of-type(3) {
  top: 32px;
  animation-delay: .3s;
}

@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.masonry-store {
  column-width: 300px;
  column-gap: 10px;
}

.masonry-store a {
  display: inline-block;
  padding: 5px;
  border: 1px solid #aaa;
  margin-bottom: 5px;
}

.masonry-store a img {
  filter: brightness(0.8);
  transition: 0.4s;
}

.masonry-store a img:hover {
  filter: brightness(1);
}

@media (max-width: 576px) {
  .masonry-store {
    column-width: 150px;
  }
  .masonry-store a img {
    filter: brightness(1);
  }
}

.about {
  background: #fff8f3;
}

.about .about_img {
  min-height: 40vh;
  height: auto;
  background: url("../img/about/about.png") no-repeat bottom left/contain;
}

@media (max-width: 768px) {
  .about .about_img {
    background: url("../img/about/about.png") no-repeat bottom center/contain;
  }
}

.about .content {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media (max-width: 768px) {
  .about .content {
    padding-top: 0;
    padding-bottom: 3rem;
  }
}

.about .slick_portfolio img {
  height: 100%;
  border: solid 5px #fff;
}

.about .slick-dots {
  left: 0;
}

.services {
  background: #f2e4d3;
}

.services img {
  padding: px;
  margin: auto;
  margin-bottom: 1rem;
  width: fit-content;
  height: 80px;
  object-fit: contain;
  object-position: center;
  border-radius: 15px;
  background: white;
  border: solid 10px white;
}

.services .info {
  line-height: 1.5rem;
  color: #fff;
  background: #e1ba85;
  border-radius: 15px;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.services .info2 {
  line-height: 2rem;
  color: unset;
  background: transparent;
  margin-top: 1rem;
  border-left: solid 7px #e1ba85;
  border-right: solid 7px #e1ba85;
}

.services .img_box {
  padding: 1rem;
}

.services .img_box img {
  margin: 0 auto;
  border-radius: 0;
  height: 60vh;
}

.services .btn_group a {
  width: fit-content;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: 15px;
  letter-spacing: .1rem;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: .5s;
}

.services .btn_group a:first-child {
  background: #da3720;
  border: solid 1px #da3720;
}

.services .btn_group a:nth-child(2) {
  background: #e88947;
  border: solid 1px #e88947;
}

.services .btn_group a:nth-child(3) {
  background: #6a950f;
  border: solid 1px #6a950f;
}

.services .btn_group a:hover {
  filter: brightness(0.9);
}

.portfolio {
  position: relative;
}

.portfolio h4 {
  letter-spacing: .5rem;
}

.portfolio img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.portfolio .row a {
  padding: 1rem;
  display: block;
}

.portfolio .slick_box {
  padding: 0px 30px 30px !important;
  position: relative;
}

.portfolio .slick-arrow {
  height: 100%;
  width: 30px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio .slick-arrow::before {
  color: #000;
  opacity: .3;
}

.portfolio .slick-dots {
  bottom: 0px;
  transform: translateY(100%);
}

.portfolio .dec svg {
  position: absolute;
  bottom: 0;
  display: block;
  height: 140px;
  width: 100vw;
  z-index: -1;
  object-fit: contain;
  object-position: center bottom;
}

.portfolio .sec_title {
  background: #e1ba85;
  padding: .5rem 2rem;
  border-radius: 15px;
}

.contact {
  background: #6a950f;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.contact address ul li a {
  color: #ffffff;
  transition: 0.4s;
}

.contact address ul li a:hover {
  color: #fff !important;
}

.contact address ul li a i {
  font-size: 18px;
  line-height: 24px;
}

.contact .sns {
  padding-left: 20px;
}

.contact .sns a {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: .5s;
}

.contact .sns a:hover {
  border: 1px solid #fff;
  color: #fff;
}

@media (max-width: 992px) {
  .contact .sns {
    padding-left: 0;
    padding-top: 1rem;
  }
}

.contact .map {
  transition: 0.4s;
}

.contact .map:hover {
  filter: brightness(1);
}

footer {
  background: #4c6f00;
  margin-bottom: 0px;
}

@media (max-width: 992px) {
  footer {
    margin-bottom: 50px;
  }
}
/*# sourceMappingURL=all.css.map */