#app {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #dedede;
}

.cursor {
  position: relative;
}

.cursor__inner--text {
  width: 80px;
  text-align: center;
  mix-blend-mode: difference;
  color: #fff;
  top: 44px;
  left: -20px;
  font-size: 12px;
  line-height: 1.5;
}

html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: Syne, sans-serif;
}

header,
footer {
  user-select: none;
}

header {
  position: fixed;
  top: 40px;
  z-index: 101;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 42px 0 40px;
}

@media (max-width: 560px) {
  header {
    top: 30px;
    padding: 0 20px;
  }
}

header .links {
  display: flex;
  overflow-y: hidden;
}

header .links a {
  overflow-y: hidden;
}

@media (max-width: 560px) {
  header .links {
    flex-direction: column-reverse;
    align-items: center;
  }
}

header .lang-btn,
header .fb-link {
  margin-right: 24px;
}

[lang='en'] header .lang-btn {
  font-family: 'Noto Sans TC', sans-serif;
}

@media (max-width: 560px) {
  header .lang-btn,
  header .fb-link {
    margin-right: 0px;
    margin-top: 16px;
  }
}

header .lang-btn {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
}

@media (max-width: 560px) {
  header .lang-btn {
    font-size: 16px;
    line-height: 24px;
  }
}

footer {
  position: fixed;
  bottom: 46px;
  z-index: 101;
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  padding: 0 42px 0 40px;
  color: #fff;
}

@media (max-width: 996px) {
  footer {
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media (max-width: 560px) {
  footer {
    bottom: 12px;
    padding: 0 20px;
  }
}

footer a {
  color: #fff;
}

footer .address,
footer .contact {
  display: flex;
  overflow-y: hidden;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
}

@media (max-width: 996px) {
  footer .address,
  footer .contact {
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 560px) {
  footer .address,
  footer .contact {
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
  }
}

footer .address {
  margin-bottom: 8px;
}

footer .address a,
footer .divider,
footer .contact a,
footer .divider {
  margin-right: 8px;
}

@media (max-width: 560px) {
  footer .contact a:last-child,
  footer .address a:last-child {
    margin-right: 0;
  }
}

footer .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 996px) {
  footer .btns {
    margin-bottom: 20px;
  }
}

footer .service,
footer .projects {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 27px;
  width: 180px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 18px;
  font-family: 'Noto Sans TC', sans-serif;
  line-height: 24px;
  letter-spacing: 6px;
  transition: background 0.4s, border-color 0.4s;
}

footer .service path,
footer .projects path {
  transition: fill 0.4s;
}

@media (min-width: 996px) {
  footer .service:hover,
  footer .projects:hover {
    background: #000;
    border-color: #000;
  }
}

@media (max-width: 560px) {
  footer .service,
  footer .projects {
    width: 151px;
    height: 40px;
    font-size: 16px;
    line-height: 24px;
    padding: 0 16px 0 20px;
  }

  footer .projects img {
    width: 18px;
  }
}

[lang='en'] footer .service,
[lang='en'] footer .projects {
  font-family: 'Syne', sans-serif;
  letter-spacing: unset;
  font-size: 20px;
  line-height: 24px;
}

footer .service {
  margin-right: 36px;
}

@media (max-width: 560px) {
  footer .service {
    margin-right: 10px;
  }
}

canvas {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}

.slides {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  width: 100%;
  max-width: 100%;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
  mix-blend-mode: difference;
}

.slide {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 42vh;
  transform: translateY(-50%);
  transition: transform 1300ms cubic-bezier(0.2, 1, 0.3, 1), opacity 500ms cubic-bezier(0.2, 1, 0.3, 1);
}

.slide-meta {
  margin: 0;
  font-size: 1.35rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slide-meta,
.slide-more {
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.2, 1, 0.3, 1);
}

.show-meta .slide-meta,
.show-meta .slide-more {
  opacity: 1;
  transition: opacity 1500ms 300ms cubic-bezier(0.2, 1, 0.3, 1);
}

.slide-more {
  border-bottom: 1px solid;
}

.slide-more:hover {
  border-bottom: 1px solid transparent;
}

.slide-title {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 70px;
  line-height: 84px;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
  font-family: Syne, sans-serif;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 996px) {
  .slide-title {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 560px) {
  .slide-title {
    font-size: 24px;
    line-height: 29px;
    transform: translate3d(0, -20px, 0);
  }
}

.prev,
.next {
  opacity: 0;
}

.prev {
  transform: translateY(-85%);
}

.next {
  transform: translateY(-15%);
}

.scrolling > .slide {
  transform: translateY(-50%);
  opacity: 1;
}

/* 雜訊特效 */
.with-noise {
  position: relative;
}
.with-noise:before {
  content: ' ';
  height: 100%;
  width: 100%;
  box-shadow: inset 0 0 2vw rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
}
.with-noise:after {
  -webkit-animation: grain 8s steps(10) infinite;
  animation: grain 8s steps(10) infinite;
  background: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/15309/noise.png');
  content: ' ';
  display: block;
  height: 300%;
  left: -100%;
  position: fixed;
  top: -100%;
  width: 300%;
  opacity: 0.6;
  transform: translate3d(0, 0, 0);
}

@-webkit-keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -8%);
  }
  10% {
    transform: translate(-5%, -8%);
  }
  20% {
    transform: translate(-10%, 3%);
  }
  30% {
    transform: translate(7%, -15%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 10%);
  }
  60% {
    transform: translate(10%, 0%);
  }
  70% {
    transform: translate(0%, 15%);
  }
  80% {
    transform: translate(3%, 11%);
  }
  90% {
    transform: translate(-8%, 10%);
  }
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -8%);
  }
  10% {
    transform: translate(-5%, -8%);
  }
  20% {
    transform: translate(-10%, 3%);
  }
  30% {
    transform: translate(7%, -15%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 10%);
  }
  60% {
    transform: translate(10%, 0%);
  }
  70% {
    transform: translate(0%, 15%);
  }
  80% {
    transform: translate(3%, 11%);
  }
  90% {
    transform: translate(-8%, 10%);
  }
}


/*# sourceMappingURL=dist/styles.1b2fbfaf.css.map */