@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=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;
  color: #664c4c;
  background: url("https://images.unsplash.com/photo-1566041510394-cf7c8fe21800?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2787&q=80") repeat-y center/100% fixed;
}

@media (max-width: 992px) {
  body {
    background: none;
  }
}

.main_body_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1566041510394-cf7c8fe21800?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2787&q=80") no-repeat center/cover;
  z-index: -1;
}

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;
}

@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
}

h2 {
  font-size: 28px;
  letter-spacing: 4px;
  font-weight: normal;
  position: relative;
  display: inline-block;
  color: #bc6c6c;
}

h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #bc6c6c;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0%;
  width: 80%;
  height: 1px;
  background: #bc6c6c;
}

@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: #ffa3a3;
  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;
}

header .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffa3a3d7;
  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;
  color: #fff;
}

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

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: .5s;
}

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

header .scrolled {
  background: #ffa3a3;
}

.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);
}

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

section .scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translateX(-50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
  padding-top: 80px;
}

section .scroll-down:hover {
  opacity: .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: .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 {
  position: relative;
  background: black;
}

@media (max-width: 992px) {
  .about {
    background: transparent;
    background-blend-mode: color;
  }
}

.about .content {
  background: url("https://images.unsplash.com/photo-1558346648-9757f2fa4474?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80") no-repeat center/cover, #ffffff99;
  background-blend-mode: color;
  z-index: 1;
}

@media (max-width: 992px) {
  .about .content {
    background: transparent;
  }
}

.about .dec_bg {
  top: 0;
  left: 0;
  position: absolute;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, #000 0%, transparent 10%), url("https://images.unsplash.com/photo-1460904577954-8fadb262612c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2890&q=80") no-repeat center/cover;
}

.about .img_box {
  min-height: 300px !important;
}

.services img {
  margin-bottom: 1rem;
  width: 100%;
  height: 80px;
  object-fit: contain;
  object-position: center;
  opacity: .4;
}

.services h6 {
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: .1rem;
}

#feature .img_box {
  display: inline-block;
  border-radius: 50%;
  border: solid 1px black;
  padding: 20px;
  opacity: .5;
}

@media (max-width: 992px) {
  #feature .img_box {
    margin-bottom: 1rem;
  }
}

#feature .img_box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

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

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

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

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

.portfolio .slick_portfolio img {
  padding-left: 4px;
  padding-right: 4px;
}

.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%);
}

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

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

.contact address ul li a:hover {
  color: #2b2b2b !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 #cc6262;
  color: #cc6262;
  text-decoration: none;
  font-size: 20px;
  transition: .5s;
}

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

@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: #cc6262;
  margin-bottom: 0px;
}

@media (max-width: 992px) {
  footer {
    margin-bottom: 50px;
  }
}

.slick-disabled {
  opacity: 0 !important;
}
/*# sourceMappingURL=all.css.map */