@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;
  color: #665c4c;
}
@media (max-width: 576px) {
  body {
    background-attachment: unset;
  }
}

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

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

h1, h2, h3, h4, h5, h6, span, p, .link-item, strong, small, a {
  transform: scaleX(0.9);
  letter-spacing: 0.5rem;
}

.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;
}
@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
}

h2 {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: rgb(137, 137, 137);
  padding-bottom: 70px;
  letter-spacing: 0.8rem;
}
h2 .h2_dec {
  position: absolute;
  bottom: 0px;
  left: 50px;
  width: 50px;
  height: 50px;
  background: url(../public/icon/home.png) no-repeat center/contain;
}
.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 * {
  transform: scaleX(1);
  letter-spacing: 0.15rem;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar ul li {
  margin-bottom: 16px;
}
.sidebar ul li a {
  width: 50px;
  height: 50px;
  background: #929292;
  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;
}
.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%;
  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;
  }
}

body {
  background: url(../public/bg.jpg) no-repeat center/cover fixed;
  background-color: #fff;
  background-blend-mode: multiply;
}

header .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: 0.4s;
  z-index: 99;
}
@media (max-width: 992px) {
  header .navbar {
    background: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.212);
  }
}
header .navbar .navbar-brand {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  transition: 0.5s;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand {
    margin-top: unset;
  }
}
header .navbar .navbar-brand span {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand span {
    color: #333;
  }
}
header .navbar .navbar-brand small {
  color: #fff;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand small {
    color: #333;
  }
}
header .navbar .navbar-brand .logo-en {
  width: 60px;
  margin-right: 0.5rem;
  transition: 0.3s;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand .logo-en {
    filter: unset;
    width: 40px;
    margin-right: unset;
  }
}
header .navbar .navbar-brand .logo-tc {
  width: 130px;
  margin-right: 0.5rem;
  transition: 0.3s;
}
@media (max-width: 992px) {
  header .navbar .navbar-brand .logo-tc {
    filter: unset;
    width: 110px;
    margin-right: unset;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
}
@media (max-width: 992px) {
  header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: rgb(55, 55, 55);
    margin-top: 1rem;
    text-align: center;
  }
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  background: #fff;
  width: 100%;
  height: 0px;
  transition: 0.5s;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  height: 8px;
}
header .scrolled {
  background: #ffffff;
}
header .scrolled .navbar-brand {
  margin-top: unset;
}
header .scrolled .navbar-brand span {
  color: rgb(55, 55, 55);
}
@media (max-width: 992px) {
  header .scrolled .navbar-brand span {
    color: #333;
  }
}
header .scrolled .navbar-brand small {
  color: rgb(55, 55, 55);
}
@media (max-width: 992px) {
  header .scrolled .navbar-brand small {
    color: #333;
  }
}
header .scrolled .navbar-brand .logo-en {
  width: 50px;
}
@media (max-width: 992px) {
  header .scrolled .navbar-brand .logo-en {
    width: 30px;
  }
}
header .scrolled .navbar-brand .logo-tc {
  width: 130px;
}
@media (max-width: 992px) {
  header .scrolled .navbar-brand .logo-tc {
    width: 110px;
  }
}
header .scrolled .nav-link {
  color: rgb(55, 55, 55) !important;
}
header .scrolled .nav-link::before {
  background: rgb(55, 55, 55) !important;
  bottom: -19px !important;
}
header .scrolled .nav-link:hover::before {
  height: 8px;
}

.hero {
  color: #fff;
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow-y: hidden;
}
.hero .hero_fade img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.hero .txt-content {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero .txt-content h1 {
  font-size: 2rem;
  letter-spacing: 1rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.hero .txt-content h1 small {
  font-size: 1rem;
}
@media (max-width: 992px) {
  .hero .txt-content h1 {
    letter-spacing: 0.5rem;
    font-size: 1.5rem;
  }
  .hero .txt-content h1 small {
    font-size: 14px;
    line-height: 3rem;
  }
}
.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);
  backdrop-filter: blur(5px);
}

section .scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translateX(-50%);
  color: #fff;
  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: 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: 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 {
  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 .dec_box {
  top: 0;
}
.about .dec_box.bottom {
  top: 100%;
  right: 0;
  transform: translate(50%, -20%);
  opacity: 0.2;
}
.about a {
  background-color: #fff;
  color: #93856d;
  border: 2px solid #93856d;
  margin-top: 20px;
  width: fit-content;
  padding: 10px 10px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.5s;
}
.about a:hover {
  background-color: #93856d;
  border: 2px solid transparent;
  color: #fff;
  transition: 0.5s;
}

.services .dec_box {
  right: 0;
  top: 0;
  opacity: 0.25;
  transform: translateX(50%);
}
.services img {
  margin-bottom: 1rem;
  width: 100%;
  height: 60px;
  object-fit: contain;
  object-position: center;
  opacity: 0.4;
}
.services h5 {
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
}

#process * {
  transform-origin: left;
}
#process p {
  letter-spacing: 0.4rem;
  padding-left: 3rem;
}
#process h5 {
  transform: scaleX(1);
  flex: 1;
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  #process h5 {
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
  }
}
#process h5 small {
  font-size: 16px;
  letter-spacing: 0.3rem;
  opacity: 0.7;
}
#process .step {
  display: flex;
  flex-direction: column;
}
#process .step h3 {
  letter-spacing: 0.25rem;
  font-style: italic;
  display: inline-block;
  width: 160px;
  height: fit-content;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  #process .step h3 {
    width: 100px;
  }
}
#process .step .line {
  width: 40px;
  flex: 1;
  border-right: dotted 3px #bc9e6c;
  opacity: 0.5;
}
#process .item:not(:last-child) {
  margin-bottom: 0.5rem;
}
#process .item:not(:last-child) h5 {
  margin-bottom: 2rem;
}
#process .pay {
  background: #a1998c;
  padding: 2rem;
  padding-top: 0;
  margin-top: 3rem;
  border-radius: 5px;
}
#process .pay * {
  color: #fff;
}
#process .pay * {
  transform-origin: center;
}
#process .pay h5 {
  width: fit-content;
  white-space: nowrap;
}
@media (max-width: 992px) {
  #process .pay h5 {
    text-align: center;
    margin-top: 2rem;
  }
}
#process .pay .line {
  flex: 1;
}
@media (max-width: 992px) {
  #process .pay .line {
    display: none;
  }
}
#process .pay .dotted {
  position: relative;
}
#process .pay .dotted::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 50%;
  top: 0;
  right: 0;
  width: 100%;
  border-bottom: dotted 3px #fff;
  opacity: 0.5;
}
#process .pay p {
  padding-left: unset;
  border: solid 1px #fff;
  border-radius: 50%;
  padding: 1rem;
  width: 70%;
  min-width: 150px;
  margin-left: auto;
  margin-right: auto;
}
#process .pay h3 {
  padding-bottom: 1.5rem;
  padding-top: 1rem;
  padding-left: 3rem;
  padding-right: 2.5rem;
  color: #a1998c;
  background: #fff;
  width: fit-content;
  border-radius: 0 0 5px 5px;
}

.portfolio * {
  transform-origin: left;
}
.portfolio .awards {
  margin-top: 2rem;
}
.portfolio .awards li {
  margin-bottom: 1rem;
  opacity: 0.8;
  font-size: 14px;
}
.portfolio .awards a {
  padding: 0 !important;
}
.portfolio .awards_logo img {
  height: 100px;
  object-fit: contain;
  width: fit-content;
}
.portfolio span {
  display: inline-block;
  background: #bc9e6c;
  padding: 0.2rem 1rem 0.2rem 1.25rem;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.portfolio span.silver {
  background: rgb(155, 155, 155);
}
.portfolio h5 {
  line-height: 2rem;
}
.portfolio img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.portfolio .row a {
  padding: 0.5rem;
  display: block;
}
.portfolio .slick_box a {
  padding: 0;
  width: 100%;
  transform: scaleX(1);
}
.portfolio .slick_box img {
  width: 100%;
  height: 65vh;
}
.portfolio .slick_box .slick-arrow {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  transition: 0.5s;
}
.portfolio .slick_box .slick-arrow::before {
  color: #fff;
  opacity: 0.8;
  font-size: 1.5rem;
}
.portfolio .slick_box .slick-prev {
  left: 0px;
}
.portfolio .slick_box .slick-next {
  right: 0px;
}
.portfolio .slick_box .slick-disabled {
  opacity: 0;
}
.portfolio .slick_box .slick-dots {
  bottom: 0px;
  transform: translateY(100%);
}

.contact {
  background: rgb(80, 80, 80);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.contact * {
  transform: scaleX(1);
  letter-spacing: 0.2rem;
}
.contact .container > .row {
  border-bottom: solid 1px rgb(99, 99, 99);
}
.contact address ul li a {
  color: #d6d6d6;
  transition: 0.4s;
}
.contact address ul li a:hover {
  color: #ffffff !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 #d6d6d6;
  color: #d6d6d6;
  text-decoration: none;
  font-size: 20px;
  transition: 0.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 {
  filter: grayscale(1);
  transition: 0.5s;
  opacity: 0.7;
}
.contact .map:hover {
  filter: grayscale(0.5);
  opacity: 1;
}
@media (max-width: 992px) {
  .contact .map {
    margin-bottom: 3rem;
  }
}

footer {
  background: rgb(80, 80, 80);
  margin-bottom: 0px;
}
footer * {
  transform: scaleX(1);
  letter-spacing: 0.15rem;
  color: #aaa;
}
@media (max-width: 992px) {
  footer {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=all.css.map */