@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 Sans TC", sans-serif;
  background-color: #f7f1ec;
  color: rgb(90, 64, 64);
}
@media (max-width: 576px) {
  body {
    background-attachment: unset;
  }
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

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;
  font-weight: normal;
  position: relative;
  display: inline-block;
}
h2::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: rgb(90, 64, 64);
}
h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0%;
  width: 80%;
  height: 1px;
  background: rgb(90, 64, 64);
}
@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: 60px;
  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: #a48473;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.75;
  text-decoration: none;
}
@media (max-width: 992px) {
  .sidebar ul li a {
    background: #755c4e;
  }
}
.sidebar ul li a:hover {
  opacity: 1;
}
.sidebar ul li a span {
  display: none;
  margin-left: 5px;
  font-size: 14px;
}
.sidebar ul li:last-child a {
  border: none;
}
@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%;
  -o-object-fit: cover;
     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: 0.6;
}
@media (max-width: 992px) {
  .dec_box {
    background-attachment: unset;
  }
}

header .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  transition: 0.4s;
  z-index: 99;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
header .navbar .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
}
header .navbar .navbar-brand img {
  display: inline-block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 150px;
  mix-blend-mode: multiply;
}
header .navbar .navbar-brand span {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 3px;
  font-weight: normal;
  color: #a48473;
}
header .navbar .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .logo {
  width: 100px;
  display: inline-block;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.35rem 1.5rem;
  position: relative;
  color: #a48473;
  letter-spacing: 0.15rem;
  z-index: 10;
}
@media (max-width: 992px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    margin-bottom: 1rem;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .text_box {
  overflow: hidden;
  height: 24px;
  text-align: center;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .text_box .d-flex {
  transition: 0.5s;
  transform: translateY(0%);
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #a48473;
  width: 0%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #fff;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover .text_box .d-flex {
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
}
header .navbar .navbar-collapse .navbar-nav .m-0.navbar-brand {
  width: 100px !important;
}
header .navbar .navbar-collapse .navbar-nav .m-0.navbar-brand img {
  transition: 0.5s;
}
header .scrolled .m-0.navbar-brand {
  height: 60px !important;
  overflow: hidden;
}
header .scrolled .m-0.navbar-brand img {
  width: 0px !important;
  height: 0px !important;
}

@media (max-width: 768px) {
  header .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    transition: 0.4s;
    z-index: 99;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  header .navbar .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .navbar .navbar-brand img {
    display: inline-block;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 80px;
    mix-blend-mode: multiply;
  }
  header .navbar .navbar-brand span {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: normal;
    color: #a48473;
  }
  header .navbar .navbar-collapse .navbar-nav {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .logo {
    width: 100px;
    display: inline-block;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .logo img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.35rem 1.5rem;
    position: relative;
    color: #a48473;
    letter-spacing: 0.15rem;
    z-index: 10;
  }
}
@media (max-width: 768px) and (max-width: 992px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .text_box {
    overflow: hidden;
    height: 24px;
    text-align: center;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link .text_box .d-flex {
    transition: 0.5s;
    transform: translateY(0%);
  }
}
@media (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #a48473;
    width: 0%;
    height: 100%;
    transition: 0.5s;
    z-index: -1;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
    width: 100%;
  }
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover .text_box .d-flex {
    transform: translateY(-50%);
  }
}
@media (max-width: 768px) and (max-width: 1200px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 768px) {
  header .navbar .navbar-collapse .navbar-nav .m-0.navbar-brand {
    width: 100px !important;
  }
  header .navbar .navbar-collapse .navbar-nav .m-0.navbar-brand img {
    transition: 0.5s;
  }
  header .scrolled .m-0.navbar-brand {
    height: 60px !important;
    overflow: hidden;
  }
  header .scrolled .m-0.navbar-brand img {
    width: 0px !important;
    height: 0px !important;
  }
}
.hero {
  color: #fff;
  position: relative;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  overflow-y: hidden;
  background: #000;
}
.hero .txt-content {
  position: absolute;
  text-align: left;
  width: 100%;
  height: 100%;
  text-shadow: 0 3px 8px #111;
  display: flex;
  align-items: center;
  z-index: 10;
}
.hero .txt-content h1 {
  font-size: 80px;
  letter-spacing: 0.5rem;
  line-height: 1.3;
}
.hero .txt-content h1 small {
  font-size: 0.5em;
  letter-spacing: 0.2rem;
}
.hero .txt-content span {
  margin: 20px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  padding: 5px 10px;
  border: 1px solid #aaa;
  background: rgba(255, 255, 255, 0.1333333333);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media (max-width: 1200px) {
  .hero {
    height: calc(100vh - 50px);
  }
  .hero .txt-content h1 {
    font-size: 40px;
  }
}
.hero .bg_hero {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 2s;
  z-index: 0;
  opacity: 0.7;
  background: #000;
}
.hero:hover .bg_hero {
  transform: scale(1.1);
}

section .scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translateX(-50%);
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
  padding-top: 80px;
}
section .scroll-down:hover {
  opacity: 0.5;
}
section .scroll-down .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px 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: 0.15s;
}
section .scroll-down .arrow:nth-of-type(3) {
  top: 32px;
  animation-delay: 0.3s;
}

@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.masonry-store {
  -moz-column-width: 300px;
       column-width: 300px;
  -moz-column-gap: 10px;
       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 {
    -moz-column-width: 150px;
         column-width: 150px;
  }
  .masonry-store a img {
    filter: brightness(1);
  }
}

.about .dec_box {
  top: 0;
}
.about .dec_box.bottom {
  top: 100%;
  right: 0;
  transform: translate(50%, -20%);
  opacity: 0.2;
}
.about li {
  margin-bottom: 0.25rem;
}

.services p {
  margin-bottom: 0.5rem !important;
}
.services small {
  color: #a48473;
}
.services .img_bg {
  background: url("../img/about/img-1.jpg") no-repeat center bottom/cover;
  transform: translateY(-50%);
  z-index: 0;
}
@media (max-width: 768px) {
  .services .img_bg {
    transform: translateY(0%);
  }
}
.services .service_box {
  margin-right: -100px;
  background: #fff;
  padding: 2rem;
  padding-bottom: 0;
  text-align: center;
}
.services .service_box ul {
  display: inline-block;
  padding: 1rem 2rem 2rem;
  text-align: start;
}
@media (max-width: 1200px) {
  .services .service_box {
    margin-right: 0;
  }
}
.services .service_box img {
  margin-bottom: 0.5rem;
  width: 100%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .services p {
    margin-bottom: 0.5rem !important;
  }
  .services small {
    color: #a48473;
  }
  .services .img_bg {
    display: none;
    background: url("../img/about/img-1.jpg") no-repeat center bottom/cover;
    transform: translateY(-50%);
    z-index: 0;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .services .img_bg {
    transform: translateY(0%);
  }
}
@media (max-width: 768px) {
  .services .service_box {
    margin-right: -100px;
    background: #fff;
    padding: 2rem;
    padding-bottom: 0;
    text-align: center;
  }
  .services .service_box ul {
    display: inline-block;
    padding: 1rem 2rem 2rem;
    text-align: start;
  }
}
@media (max-width: 768px) and (max-width: 1200px) {
  .services .service_box {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .services .service_box img {
    margin-bottom: 0.5rem;
    width: 100%;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
    opacity: 0.5;
  }
}
#process * {
  margin-bottom: 0.5rem;
}
#process i {
  opacity: 0.3;
}
@media (max-width: 768px) {
  #process i {
    transform: rotate(90deg);
  }
}
@media (max-width: 768px) {
  #process .process_box {
    flex-direction: column;
  }
}
#process a {
  color: #b4998b;
}

.case-card {
  background: #fff;
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.case-card:hover .img-box img {
  transform: scale(1.08);
}
.case-card .comparison-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.case-card .comparison-wrapper .img-box {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.case-card .comparison-wrapper .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.case-card .comparison-wrapper .img-box .badge-label {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: #333;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.case-card .comparison-wrapper .img-box:first-child {
  border-right: 1px solid #fff;
}
.case-card .card-body {
  padding: 1.5rem;
}
.case-card .card-body .case-index {
  font-size: 0.8rem;
  color: #a48473;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 2px;
}
.case-card .card-body .btn-view-more {
  background: #a48473;
  border: 1px solid #a48473;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}
.case-card .card-body .btn-view-more:hover {
  background: transparent;
  color: #a48473;
}

.contact {
  background: #f0e8e4;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contact address ul li a {
  color: #a48473;
  transition: 0.4s;
}
.contact address ul li a:hover {
  color: rgb(31, 76, 81) !important;
}
.contact address ul li a span {
  display: block;
  width: 100%;
  text-align: center;
}
.contact address ul li a i {
  font-size: 18px;
  line-height: 24px;
  display: none;
}
.contact .sns {
  padding-left: 20px;
}
.contact .sns a {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #a48473;
  color: #a48473;
  text-decoration: none;
  font-size: 20px;
  transition: 0.5s;
}
.contact .sns a:hover {
  border: 1px solid rgb(31, 76, 81);
  color: rgb(31, 76, 81);
}
@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: #a48473;
  margin-bottom: 0px;
}
@media (max-width: 992px) {
  footer {
    margin-bottom: 50px;
  }
}

.text_dark {
  color: rgb(192, 98, 98);
}

.img_bg {
  width: 100%;
  height: 50vh;
  min-height: 200px;
  background: url("../img/about/img-1.jpg") no-repeat center/cover;
}
@media (max-width: 992px) {
  .img_bg {
    max-height: 200px;
  }
}/*# sourceMappingURL=all.css.map */