@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");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sevillana&display=swap");
body {
  background: #202020;
  color: white;
  letter-spacing: .15rem;
}

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

main {
  background: transparent;
}

section {
  padding: 75px 0;
}

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

.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: #333;
  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: 991px) {
  .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 black;
  }
  .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%;
}

.fix_bg_main {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: url("https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2940&q=80") no-repeat center/cover;
  z-index: -1;
}

section {
  overflow-x: hidden;
}

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

.border_dec {
  position: absolute;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: solid 3px #fff;
  z-index: 1;
  top: 5px;
  left: 5px;
}

section:not(:first-child) .row > * {
  margin-bottom: 1rem;
  padding: 1rem;
}

section:not(:first-child) .row > h2 {
  color: #3d3d3d;
}

h2 {
  letter-spacing: 6px;
  color: goldenrod;
  position: relative;
  padding-left: 1.5rem;
  border-left: solid 5px goldenrod;
}

.dec {
  color: silver;
  position: absolute;
  right: 6rem;
  transform: translateY(100%);
}

@media (max-width: 1199px) {
  .dec {
    right: 1rem;
  }
}

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

header .navbar .navbar-brand {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: goldenrod;
  border-bottom: solid 1px goldenrod;
  border-top: solid 1px goldenrod;
}

header .navbar .navbar-brand img {
  width: 80px;
  object-fit: contain;
  margin-right: 10px;
  transition: .5s;
}

@media (max-width: 991px) {
  header .navbar .navbar-brand img {
    width: 60px;
  }
}

header .navbar .navbar-brand span {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 3px;
  padding: .3rem 0;
}

header .navbar.scrolled .navbar-brand img {
  width: 60px;
}

header .navbar .navbar-collapse .navbar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  color: #ffffff;
  opacity: .4;
  transition: .5s;
}

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

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  opacity: .7;
}

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

.hero {
  background: black;
  position: relative;
  width: 100%;
  height: 90vh;
  object-fit: cover;
  overflow-y: hidden;
  display: flex;
  align-items: center;
}

.hero .row {
  width: 100%;
  height: 100vh;
  padding-left: 5rem;
  padding-right: 5rem;
}

@media (max-width: 1199px) {
  .hero .row {
    padding-right: 0rem;
    padding-left: 0rem;
  }
}

@media (max-width: 767px) {
  .hero .row {
    padding-bottom: 30%;
  }
}

.hero .row > div {
  height: 100%;
}

@media (max-width: 767px) {
  .hero .row > div {
    background: url("../img/banner.jpg") no-repeat center/cover;
  }
}

.hero .row .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .title {
  height: fit-content !important;
  z-index: 1;
  font-weight: 900;
}

.hero .title p {
  font-weight: 700;
  color: #ffd1d1;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.646);
}

.hero .title h1 {
  color: white;
  letter-spacing: .6rem;
  line-height: 70px;
  font-weight: bold;
  text-shadow: 2px 2px 10px #000;
}

.hero .title h1 span:last-child {
  font-size: 3rem;
}

.hero .title h1 small {
  font-size: 1.5rem;
}

.hero .hero_fade {
  margin-top: 40px;
  background: #000;
  position: absolute;
  overflow: hidden;
}

.hero .hero_fade img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  transition: 2s;
  transform: scale(1);
  filter: grayscale(0.6) brightness(0.8) contrast(1.2);
}

@media (max-width: 991px) {
  .hero .hero_fade img {
    object-position: 66% 50%;
  }
}

.hero .hero_fade:hover img {
  transform: scale(1.1);
}

@media (max-width: 1199px) {
  .hero {
    height: 90vh;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero h1 span:last-child {
    font-size: 35px !important;
    letter-spacing: .25rem;
  }
}

.hero .linear_dec {
  position: absolute;
  top: 0;
  left: 0;
  height: 150px !important;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  z-index: 1;
}

.about {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 9rem;
  background: #202020;
}

@media (max-width: 991px) {
  .about {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: transparent;
  }
}

.about .img_bg {
  width: 60%;
  background: url("https://images.unsplash.com/photo-1547078902-2911dfaaa53a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80") no-repeat center/cover, #eee;
  background-blend-mode: luminosity;
  opacity: 1;
  height: 65%;
  min-height: 300px;
}

@media (max-width: 991px) {
  .about .img_bg {
    width: 100%;
  }
}

.about .content {
  z-index: 1;
  background-color: #202020;
  background-blend-mode: luminosity;
  padding: 4rem 6rem !important;
}

@media (max-width: 991px) {
  .about .content {
    padding: 1rem  !important;
    background-color: transparent;
  }
}

.about h2 {
  color: goldenrod;
  border-left: solid 5px goldenrod;
}

section .scroll-down {
  position: absolute;
  bottom: 0px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translate(-50%, 0%);
  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: 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);
  }
}

.services img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  margin: auto;
  margin-bottom: 1rem;
  opacity: .3;
  filter: invert(1);
}

.services .service_box {
  position: relative;
}

.services h4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-left: solid 5px #3d3d3d;
  border-right: solid 5px #3d3d3d;
}

.services .content > p:first-child {
  color: #c16969;
  font-weight: bold;
}

.process {
  background: linear-gradient(to left, #ececec 0%, #ececec 20%, transparent 20%);
}

@media (max-width: 991px) {
  .process {
    background: transparent;
  }
}

.process h5 {
  color: #1b4254;
}

.process span {
  font-style: italic;
  font-size: 2rem;
  font-weight: bold;
}

.process p {
  line-height: 1.5rem;
}

.process .content {
  width: calc(100% - 50px - 1rem);
  margin-left: 1rem;
}

.process .img_box {
  position: relative;
  height: 100%;
}

.process .img_box img {
  width: 50px !important;
  height: 50px;
  object-fit: contain;
  object-position: center;
}

.process .img_box::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 25px;
  height: calc(100% - 50px + 1rem);
  border-left: dotted 3px silver;
  bottom: -2rem;
  left: 25px;
}

.process .item:last-child .img_box::before {
  display: none;
}

@media (max-width: 767px) {
  .process .item:last-child .img_box.item4::before {
    display: inline-block;
  }
}

.portfolio {
  overflow: hidden;
}

.portfolio img {
  background: #fff;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-fit: center;
  filter: grayscale(0.5);
  transition: .5s;
  transform: scale(1);
  border: solid 4px #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  z-index: 0;
}

@media (max-width: 767px) {
  .portfolio img {
    height: 60vh;
    object-fit: contain;
  }
}

.portfolio img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
  z-index: 9999;
}

.price img {
  height: 55vh;
  object-fit: contain;
}

.contact {
  position: relative;
  padding: 0px;
  background: rgba(0, 0, 0, 0.5);
}

.contact .logo {
  width: 80px;
  filter: grayscale(1);
}

.contact .brown_bg_h50, .contact .cross_bg_h50 {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 100%;
  z-index: -1;
}

.contact .brown_bg_h50 {
  background: silver;
}

.contact .contact_box {
  height: 100%;
}

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

@media (max-width: 991px) {
  .contact address ul li a {
    color: #868686;
  }
}

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

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

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

.contact .sns a:hover {
  border: 1px solid #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.483);
}

footer {
  background: black;
  margin-bottom: 0px;
}

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

.slick-arrow::before {
  color: #fff;
}

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

.slick-dots button::before {
  color: #fff !important;
}
/*# sourceMappingURL=all.css.map */