@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 {
  overflow-x: hidden;
  font-family: 'Noto Sans TC', sans-serif;
  background: #000;
  color: #fff;
  background: url(../assets/images/bg-metal-black.jpg) repeat-y center/100% fixed;
}

@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 {
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

section {
  padding: 75px 0;
}

.section_title {
  font-size: 28px;
  letter-spacing: 4px;
  font-weight: normal;
  position: relative;
  display: inline-block;
}

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

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

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

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

@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;
  -webkit-transition: 0.4s;
  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%;
  -webkit-transform: rotate(45deg) translateY(-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%;
  -webkit-transition: 1s;
  transition: 1s;
}

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

.sidebar {
  position: fixed;
  bottom: 70px;
  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: #354542;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  -webkit-transition: 0.3s;
  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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sidebar ul li {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            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: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  overflow: hidden;
}

.section_dec {
  width: 100%;
  height: 3rem;
  bottom: 0;
}

.bg_main {
  background: #88b3aa;
}

.banner_bg_main {
  background: #575046;
}

.banner_bg_main span {
  background: url("../assets/images/banner-2.jpg") center/cover, rgba(87, 80, 70, 0.5);
  background-blend-mode: color;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 20rem;
  font-weight: 900;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(90deg) translateY(100%);
          transform: rotate(90deg) translateY(100%);
  mix-blend-mode: color-dodge;
  opacity: .7;
}

.hero-img {
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
  -o-object-fit: cover;
     object-fit: cover;
}

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

header .navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {
  header .navbar {
    background: #fff;
  }
}

header .navbar .navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navbar .navbar-brand img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}

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

header .navbar .navbar-collapse .navbar-nav .nav-link:hover {
  color: #88b3aa;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding-left: 30px;
  position: relative;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 18px;
  -webkit-transform: translate(-150%, -50%) rotate(45deg);
          transform: translate(-150%, -50%) rotate(45deg);
  background: #88b3aa;
  width: 8px;
  height: 8px;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  -webkit-transform: translate(-30%, -50%) rotate(45deg);
          transform: translate(-30%, -50%) rotate(45deg);
  opacity: 1;
}

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

.hero .txt-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 40vh 20vw;
  width: 100%;
  text-shadow: 0 3px 15px #111;
}

.hero .txt-content h1 {
  font-size: 80px;
  font-weight: 500;
  letter-spacing: 1.2rem;
  line-height: 3rem;
}

@media (max-width: 992px) {
  .hero .txt-content h1, .hero .txt-content h2 {
    text-align: center;
  }
}

.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;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

@media (max-width: 1200px) {
  .hero {
    height: 70vh;
  }
  .hero .txt-content {
    padding: 20vh 0;
  }
  .hero .txt-content h1 {
    font-size: 40px;
  }
}

section .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: .1em;
  text-decoration: none;
  -webkit-transition: opacity .3s;
  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;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-animation: sdb07 2s infinite;
          animation: sdb07 2s infinite;
  opacity: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

.masonry-store {
  -webkit-column-width: 300px;
          column-width: 300px;
  -webkit-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 {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

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

.about {
  background: #fff;
  color: #88b3aa;
}

.about p {
  color: #354542;
}

.process {
  background: #88b3aa;
}

.process h2.section_title::before, .process h2.section_title::after {
  background: #fff;
}

.process .time-line {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process .time-line li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
}

.process .time-line li::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 25px;
  width: 1px;
  height: calc(100% - 50px);
  background: #eee;
}

.process .time-line li:last-child::before {
  height: 0;
}

.process .time-line li .icon {
  -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #aaa;
  border-radius: 50%;
  font-size: 20px;
  margin-right: 10px;
}

.process .time-line li .txt {
  width: calc(100% - 60px);
}

.process .time-line li .txt h3 {
  line-height: 50px;
  color: #fff;
  font-style: italic;
}

.process .time-line li .txt h3 span {
  font-size: 40px;
  font-weight: 300;
  font-family: serif;
  margin-right: 15px;
}

.process .time-line li .txt h3 strong {
  font-size: 30px;
  vertical-align: top;
  font-weight: 400;
}

.process .time-line li .txt small {
  color: #f88;
  display: inline-block;
  padding: 2px 3px;
  border: 1px solid #f88;
  margin-bottom: 15px;
}

.process .time-line li .txt p {
  color: #354542;
}

@media (max-width: 992px) {
  .process .time-line li .txt h3 span {
    font-size: 28px;
  }
  .process .time-line li .txt h3 strong {
    font-size: 18px;
  }
}

.process .container-fiuld {
  background: #fff;
}

.process .container-fiuld .col-lg-6 {
  color: #354542;
}

.process .container-fiuld .col-lg-6 .section_dec {
  top: 0px;
  background: #88b3aa;
}

.portfolio {
  background: #575046;
}

.portfolio h2.section_title::before, .portfolio h2.section_title::after {
  background: #fff;
}

.portfolio a {
  padding: 1rem;
}

.portfolio img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: center;
  width: 100%;
  height: 250px;
  outline: solid 6px #fff;
  -webkit-box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
}

.portfolio .position-sticky {
  top: 100px;
}

@media (max-width: 1200px) {
  .portfolio .position-sticky {
    top: 0px;
  }
}

.portfolio .blog-post {
  padding-top: 80px;
}

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

@media (max-width: 992px) {
  .portfolio .masonry-portfolio {
    -webkit-column-width: 150px;
            column-width: 150px;
  }
}

.contact {
  background: #fff;
}

.contact .navbar-brand {
  color: #88b3aa;
}

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

.contact address ul li a {
  color: #354542;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  background: #88b3aa;
  -webkit-transition: .5s;
  transition: .5s;
}

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

@media (max-width: 992px) {
  .contact .sns {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.contact .map {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

footer {
  background: #88b3aa;
  margin-bottom: 0px;
}

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

.banner_works {
  background: #88b3aa;
  width: 100%;
  height: 200px;
  bottom: 0px;
}
/*# sourceMappingURL=all.css.map */