:root {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
*,
html,
body,
footer {
  font-family: "Cera Pro", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0px;
  padding: 0px;
  border: 0px;
  font: inherit;
  vertical-align: top;
}

html {
  margin: 0px;
  padding: 0px;
  border: 0px;
  vertical-align: auto;
  box-sizing: border-box;
  font-variation-settings: "wght" 400;
  -webkit-font-smoothing: antialiased;
}
html .scroll-container {
  width: 100vw !important;
  max-width: 100%;
  flex-direction: column;
}
html .scroll-container section {
  flex-grow: 1;
}
html.horizontal .scroll-container {
  flex-direction: row;
  perspective: 100px;
  perspective-origin: 50% center;
  /* desktop/tablet horizontal free-scroll */
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* ===== Scrollbars ===== */
/* Default (light) */
html {
  scrollbar-width: thin;
  scrollbar-color: #1d1d1d #e1e1e1;
}

/* WebKit default */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #e1e1e1;
}

::-webkit-scrollbar-thumb {
  background-color: #1d1d1d;
  border-radius: 10px;
  border: 2px solid #e1e1e1;
}

::-webkit-scrollbar-thumb:hover {
  filter: brightness(0.9);
}

/* Dark theme overrides (class is on body) */
body.theme-dark {
  /* Firefox: still set it on html, but only when body is dark */
  /* WebKit: scoped overrides */
}
html:has(body.theme-dark) {
  scrollbar-color: #e1e1e1 #1d1d1d;
}

body.theme-dark::-webkit-scrollbar-track {
  background: #1d1d1d;
}
body.theme-dark::-webkit-scrollbar-thumb {
  background-color: #e1e1e1;
  border: 2px solid #1d1d1d;
}
body.theme-dark::-webkit-scrollbar-thumb:hover {
  filter: brightness(0.9);
}

@media (any-pointer: fine) {
  * {
    cursor: none !important;
  }
}
@media (any-pointer: coarse) {
  * {
    cursor: auto !important;
  }
}
body {
  position: relative;
  background-color: #ffffff;
}

.rotate-left {
  -webkit-animation: rotate-left 50s infinite linear;
  -moz-animation: rotate-left 50s infinite linear;
  animation: rotate-left 50s infinite linear;
  transform-origin: center center;
}

.rotate-right {
  -webkit-animation: rotate-right 50s infinite linear;
  -moz-animation: rotate-right 50s infinite linear;
  animation: rotate-right 50s infinite linear;
  transform-origin: center center;
}

body .placeholder {
  background: transparent !important;
  position: relative;
  z-index: 1;
}
body a:not(.nav-link):not(.no-decoration) {
  color: inherit;
  text-decoration: none;
  font-variation-settings: "wght" 400;
  will-change: font-variation-settings;
  transition: font-weight 200ms ease 0s;
  font-weight: bold;
}
body a:not(.nav-link):not(.no-decoration):hover {
  color: inherit;
  font-variation-settings: "wght" 900;
  font-weight: normal;
}
body a:not(.nav-link):not(.no-decoration)::before {
  content: "/";
  margin: 0 2px;
  font-weight: normal;
}
body #cursor .circ-inside,
body .slide-footer .circ-inside {
  fill: none;
}
body #cursor .circ-around,
body .slide-footer .circ-around {
  opacity: 0;
  transform-origin: center;
  transform: scale(0);
  fill: #e1e1e1;
  transition: all 450ms;
}
body #cursor .cross-light,
body .slide-footer .cross-light {
  fill: #e1e1e1;
}
body #cursor .cross-dark,
body .slide-footer .cross-dark {
  fill: #1d1d1d;
}
body #cursor .circ-color-inside,
body .slide-footer .circ-color-inside {
  fill: none;
  stroke: #000000;
  stroke-width: 2;
  transform-origin: center;
  transition: all 200ms;
}
body #cursor .circ-color-outside,
body .slide-footer .circ-color-outside {
  fill: none;
  stroke: #000000;
  transform-origin: center;
  transition: all 150ms;
}
body #cursor .txt-around,
body .slide-footer .txt-around {
  opacity: 0;
  fill: #1d1d1d;
  transition: all 250ms;
  transform-origin: center center;
  transform: scale(0);
}
body #cursor #arrow,
body #cursor #footer-arrow,
body .slide-footer #arrow,
body .slide-footer #footer-arrow {
  transition: transform 250ms cubic-bezier(0.15, 0, 0, 2);
  transform: translateX(0);
  fill: black;
}
body #cursor #arrow.offset-left,
body #cursor #footer-arrow.offset-left,
body .slide-footer #arrow.offset-left,
body .slide-footer #footer-arrow.offset-left {
  transform: translateX(-70%);
}
body #cursor.active .txt-around,
body .slide-footer.active .txt-around {
  opacity: 1;
  transform: scale(1);
}
body #cursor.active .circ-around,
body .slide-footer.active .circ-around {
  opacity: 0.85;
  transform: scale(1);
}
body #cursor.pressed .circ-color-inside,
body .slide-footer.pressed .circ-color-inside {
  transform: scale(0.8);
  stroke-width: 3;
}
body #cursor.pressed .circ-color-outside,
body .slide-footer.pressed .circ-color-outside {
  transform: scale(0.5);
  stroke-width: 3;
}
body #cursor.codebits .circ-color-inside,
body #cursor.codebits .circ-color-outside,
body .slide-footer.codebits .circ-color-inside,
body .slide-footer.codebits .circ-color-outside {
  stroke: #9386fb;
}
body #cursor.halti .circ-color-inside,
body #cursor.halti .circ-color-outside,
body .slide-footer.halti .circ-color-inside,
body .slide-footer.halti .circ-color-outside {
  stroke: #a9dcfd;
}
body #cursor.cover .circ-color-inside,
body #cursor.cover .circ-color-outside,
body .slide-footer.cover .circ-color-inside,
body .slide-footer.cover .circ-color-outside {
  stroke: #c7a188;
}
body #cursor.flyer .circ-color-inside,
body #cursor.flyer .circ-color-outside,
body .slide-footer.flyer .circ-color-inside,
body .slide-footer.flyer .circ-color-outside {
  stroke: #79fc6a;
}
body #cursor {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  transform: translate3d(50vw, 50vh, 0);
  box-sizing: border-box;
  pointer-events: none;
  will-change: transform;
  width: 150px;
  height: 150px;
}
@media (any-pointer: coarse) {
  body #cursor {
    display: none !important;
  }
}
body main {
  position: relative;
  transition: background-color 300ms;
  background-color: #e1e1e1;
  z-index: 1;
}
body main svg {
  transition: all 1250ms ease;
}
body main nav {
  position: relative !important;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  body main nav {
    position: absolute !important;
  }
}
body main nav.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.8);
}
body main nav.navbar-light .navbar-nav .nav-link.active {
  color: rgb(0, 0, 0);
}
body main nav.navbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  z-index: 10;
  overflow: visible;
  color: rgba(0, 0, 0, 0.9);
  position: absolute !important;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 95vw;
  background-color: #e1e1e1;
  border-radius: 25px;
}
body main nav.navbar.navbar-default {
  background-color: unset;
  border-radius: unset;
}
@media (min-width: 576px) {
  body main nav.navbar {
    top: unset;
    left: unset;
    transform: unset;
    border-radius: unset;
    background-color: transparent;
    width: 100%;
  }
}
@media (min-width: 576px) {
  body main nav.navbar .navbar-nav:not(.slide-pagination) {
    margin-top: 35px;
    margin-left: 55px;
  }
}
body main nav.navbar .navbar-nav:not(.slide-pagination).nav-bottom {
  position: fixed;
  bottom: 0;
  margin-top: unset;
  margin-bottom: 50px;
}
body main nav.navbar .navbar-nav:not(.slide-pagination) .nav-item {
  white-space: nowrap;
}
body main nav.navbar .navbar-nav:not(.slide-pagination) .nav-item:not(:first-of-type) .nav-link::before {
  content: "/";
  margin: 0 2px;
  font-weight: normal !important;
}
body main nav.navbar .navbar-nav:not(.slide-pagination) .nav-item .nav-link {
  padding: 0;
  font-variation-settings: "wght" 400;
  will-change: font-variation-settings;
  transition: font-weight 200ms, color 1250ms;
}
body main nav.navbar .navbar-nav:not(.slide-pagination) .nav-item .nav-link:hover {
  font-variation-settings: "wght" 900;
  font-weight: bold;
}
body main nav.navbar .navbar-nav:not(.slide-pagination) .nav-item .nav-link.active {
  font-weight: bold;
}
body main nav.navbar .color-switcher {
  width: 30px;
  height: 100%;
  line-height: 100%;
  cursor: pointer;
}
@media (min-width: 576px) {
  body main nav.navbar .color-switcher {
    margin-right: 50px;
  }
}
body main nav.navbar .color-switcher svg path {
  stroke: rgb(0, 0, 0);
}
body main nav .slide-pagination {
  z-index: 100;
  position: fixed;
  bottom: 20px;
  right: 25px;
  list-style: none;
}
@media (min-width: 576px) {
  body main nav .slide-pagination {
    bottom: 50px;
    right: 65px;
  }
  body main nav .slide-pagination li {
    display: inline;
    margin: 0 0 0 5px !important;
  }
  body main nav .slide-pagination li .nav-link {
    display: inline;
    transform: rotate(0);
  }
}
body main nav .slide-pagination li {
  margin: 0 0 5px 5px !important;
}
body main nav .slide-pagination li .nav-link {
  padding: 0 !important;
  transform: rotate(90deg);
}
body main nav .slide-pagination li .nav-link svg {
  width: 30px;
  height: 28px;
}
body main nav .slide-pagination li .nav-link svg .cls-2 {
  fill: transparent;
}
body main nav .slide-pagination li .nav-link svg .cls-3 {
  fill: #1d1d1d;
  transition: all 1250ms;
}
body main nav .slide-pagination li .nav-link:hover svg .cls-3 {
  stroke: #1d1d1d;
}
body main section {
  position: relative;
}
body main section h1,
body main section h2,
body main section h3 {
  text-transform: uppercase;
}
body main section > div::before {
  transition: all 300ms;
}
body main section > div {
  transition: background-color 300ms;
  padding: 30px;
  min-height: 100%;
}
@media (min-width: 1200px) {
  body main section > div {
    padding: 60px;
  }
}
body main section > div h1,
body main section > div p,
body main section > div span,
body main section > div ul {
  transition: color 1250ms;
}
body main .bg-light {
  background-color: #e1e1e1 !important;
}
body main.proj-detail .scroll-container {
  min-height: 100vh;
}
body main.proj-detail .scroll-content section > div {
  padding-top: 0;
  padding-bottom: 0;
}
body main.proj-detail .scroll-content section > div img {
  outline: solid 1px #ffffff;
}
body main .scroll-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
  min-height: var(--doc-height, 100vh);
  box-sizing: border-box;
}
body main .scroll-container .portfolio-bottom-left {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -100%);
  font-size: 25px;
  z-index: 1;
}
@media (min-width: 576px) {
  body main .scroll-container .portfolio-bottom-left {
    top: auto;
    bottom: 45px;
    left: 60px;
    transform: unset;
    font-size: 1rem;
  }
}
body main .scroll-container .slide1 {
  width: 100vw !important;
  background-image: linear-gradient(180deg, #ffffff 50%, #e1e1e1 50%);
  z-index: 1;
}
@media (min-width: 576px) {
  body main .scroll-container .slide1 {
    background-image: linear-gradient(90deg, #ffffff 50%, #e1e1e1 50%);
  }
}
body main .scroll-container .slide1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(180deg, #000000 50%, #1d1d1d 50%);
  z-index: -1;
  opacity: 0;
}
@media (min-width: 576px) {
  body main .scroll-container .slide1::before {
    background-image: linear-gradient(90deg, #000000 50%, #1d1d1d 50%);
  }
}
body main .scroll-container .slide1 span {
  left: 50% !important;
  transform: translateX(-50%) rotate(-90deg) !important;
}
@media (min-width: 576px) {
  body main .scroll-container .slide1 span {
    transform: translateX(-50%) !important;
  }
}
body main .scroll-container .slide1,
body main .scroll-container .slide2,
body main .scroll-container .slide3,
body main .scroll-container .slide4,
body main .scroll-container .slide5 {
  position: relative;
  width: 100vw;
  min-height: var(--doc-height);
  background-color: #e1e1e1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
@media (min-width: 768px) {
  body main .scroll-container .slide1,
  body main .scroll-container .slide2,
  body main .scroll-container .slide3,
  body main .scroll-container .slide4,
  body main .scroll-container .slide5 {
    width: 150vw;
  }
}
body main .scroll-container .slide1 .btn-proj-detail,
body main .scroll-container .slide2 .btn-proj-detail,
body main .scroll-container .slide3 .btn-proj-detail,
body main .scroll-container .slide4 .btn-proj-detail,
body main .scroll-container .slide5 .btn-proj-detail {
  position: absolute;
  bottom: 25px;
}
@media (min-width: 576px) {
  body main .scroll-container .slide1 .btn-proj-detail,
  body main .scroll-container .slide2 .btn-proj-detail,
  body main .scroll-container .slide3 .btn-proj-detail,
  body main .scroll-container .slide4 .btn-proj-detail,
  body main .scroll-container .slide5 .btn-proj-detail {
    display: none;
  }
}
body main .scroll-container .slide1 .btn-proj-detail a,
body main .scroll-container .slide2 .btn-proj-detail a,
body main .scroll-container .slide3 .btn-proj-detail a,
body main .scroll-container .slide4 .btn-proj-detail a,
body main .scroll-container .slide5 .btn-proj-detail a {
  display: flex;
  align-items: center;
  font-weight: initial;
}
body main .scroll-container .slide1 .btn-proj-detail a::before,
body main .scroll-container .slide2 .btn-proj-detail a::before,
body main .scroll-container .slide3 .btn-proj-detail a::before,
body main .scroll-container .slide4 .btn-proj-detail a::before,
body main .scroll-container .slide5 .btn-proj-detail a::before {
  content: unset;
}
body main .scroll-container .slide1 .btn-proj-detail svg,
body main .scroll-container .slide2 .btn-proj-detail svg,
body main .scroll-container .slide3 .btn-proj-detail svg,
body main .scroll-container .slide4 .btn-proj-detail svg,
body main .scroll-container .slide5 .btn-proj-detail svg {
  width: 100%;
  max-width: 30px;
  max-height: 30px;
}
body main .scroll-container .slide1 .btn-proj-detail span,
body main .scroll-container .slide2 .btn-proj-detail span,
body main .scroll-container .slide3 .btn-proj-detail span,
body main .scroll-container .slide4 .btn-proj-detail span,
body main .scroll-container .slide5 .btn-proj-detail span {
  margin-left: 5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transform: initial !important;
}
body main .scroll-container .slide1 span:not(.btn-proj-detail span),
body main .scroll-container .slide2 span:not(.btn-proj-detail span),
body main .scroll-container .slide3 span:not(.btn-proj-detail span),
body main .scroll-container .slide4 span:not(.btn-proj-detail span),
body main .scroll-container .slide5 span:not(.btn-proj-detail span) {
  position: absolute;
  left: 50%;
  padding-top: inherit;
  font-family: "Dharma Gothic C Heavy", sans-serif;
  font-size: 70vw;
  transform: translateX(-50%) rotate(-90deg);
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: calc(100vw - 60px);
}
@media (min-width: 576px) {
  body main .scroll-container .slide1 span:not(.btn-proj-detail span),
  body main .scroll-container .slide2 span:not(.btn-proj-detail span),
  body main .scroll-container .slide3 span:not(.btn-proj-detail span),
  body main .scroll-container .slide4 span:not(.btn-proj-detail span),
  body main .scroll-container .slide5 span:not(.btn-proj-detail span) {
    left: 0;
    font-size: 45vw;
    transform: initial;
  }
}
body main .scroll-container .slide1 img,
body main .scroll-container .slide2 img,
body main .scroll-container .slide3 img,
body main .scroll-container .slide4 img,
body main .scroll-container .slide5 img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain;
  height: 60vw;
  max-width: calc(100vw - 60px);
}
@media (min-width: 576px) {
  body main .scroll-container .slide1 img,
  body main .scroll-container .slide2 img,
  body main .scroll-container .slide3 img,
  body main .scroll-container .slide4 img,
  body main .scroll-container .slide5 img {
    right: 0;
    left: unset;
    transform: unset;
    max-height: 60vh;
  }
}
body main .scroll-container .slide div {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body main .scroll-container .slide div span {
  display: block;
  font-family: "Dharma Gothic C Regular", sans-serif;
  font-size: 45vw;
}
@media (max-width: 360px) {
  body main .scroll-container .slide div span {
    font-size: 40vw;
  }
}
@media (min-width: 576px) {
  body main .scroll-container .slide div span {
    font-size: 25vw;
  }
}
@media (min-width: 992px) {
  body main .scroll-container .slide div span {
    font-size: 18vw;
  }
}
body main .scroll-container .slide6 {
  background-color: #e1e1e1;
  display: flex;
  flex-direction: column;
  align-content: start;
  justify-content: start;
  align-items: start;
  padding-top: 120px;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  body main .scroll-container .slide6 {
    align-content: center;
    justify-content: center;
    align-items: center;
  }
}
body main .scroll-container .slide6 div {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body main .scroll-container .slide6 div span {
  display: block;
  font-family: "Dharma Gothic C Regular", sans-serif;
  font-size: 45vw;
}
@media (max-width: 360px) {
  body main .scroll-container .slide6 div span {
    font-size: 40vw;
  }
}
@media (min-width: 576px) {
  body main .scroll-container .slide6 div span {
    font-size: 25vw;
  }
}
@media (min-width: 992px) {
  body main .scroll-container .slide6 div span {
    font-size: 18vw;
  }
}
body main .scroll-container .slide6 p {
  flex-grow: 0;
}
body main .scroll-container .slide7 {
  position: relative;
  max-width: 100vw;
  padding-bottom: 60px;
  background-color: #e1e1e1;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  margin: auto;
}
@media (min-width: 576px) {
  body main .scroll-container .slide7 {
    max-width: 50vw;
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  body main .scroll-container .slide7 {
    max-width: 33.3333333333vw;
    padding-bottom: 60px;
  }
}
body main .scroll-container .slide7 div:first-of-type {
  position: relative;
}
body main .scroll-container .slide7 div:first-of-type p:first {
  font-size: 1.1rem;
}
body main .scroll-container .slide7 div:first-of-type h1 {
  font-size: 2.125rem;
  font-weight: bold;
  text-transform: initial;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  body main .scroll-container .slide7 div:first-of-type h1 {
    margin-bottom: 60px;
  }
}
body main .scroll-container .slide7 div:first-of-type p,
body main .scroll-container .slide7 div:first-of-type ul {
  margin-top: 0;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  body main .scroll-container .slide7 div:first-of-type p,
  body main .scroll-container .slide7 div:first-of-type ul {
    margin-bottom: 60px;
  }
}
body main .scroll-container .slide7 div:first-of-type ul {
  margin-top: 20px;
  list-style: none;
}
body main .scroll-container .slide7 div:first-of-type ul li {
  line-height: 1.3rem;
}
body main .scroll-container .slide7 div:first-of-type .point-out {
  display: block;
  font-size: 32pt;
}
body main .scroll-container .slide7 div:first-of-type .slight-out {
  display: block;
  font-size: 13pt;
}
body main .scroll-container .slide7 div:first-of-type a {
  font-weight: bold;
  font-size: 7vw;
}
@media (min-width: 576px) {
  body main .scroll-container .slide7 div:first-of-type a {
    font-size: 2.125rem;
    line-height: 2.125rem;
  }
}
body main .scroll-container .slide7 div:first-of-type a:hover {
  font-weight: 400;
}
body main .scroll-container .slide-footer {
  position: relative;
  min-width: 30vw;
  background-color: #ffffff;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main .scroll-container .slide-footer.active {
  background-color: #e1e1e1;
}
body main .scroll-container .slide-footer > svg {
  width: 200px;
}
@media (min-width: 576px) {
  body main .scroll-container .slide-footer .footer-bottom-container {
    position: absolute;
    height: 100%;
    width: 100%;
  }
}
body main .scroll-container .slide-footer .footer-bottom-container div {
  height: 50%;
}
body main .scroll-container .slide-footer .footer-bottom-container div:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body main .scroll-container .slide-footer .footer-bottom-container div .lst-footer-main {
  list-style: none;
  width: 100%;
  font-weight: 300;
}
body main .scroll-container .slide-footer .footer-bottom-container div .lst-footer-main li {
  text-align: center;
  min-height: 10px;
}
body main .scroll-container .slide-footer .footer-bottom-container p {
  font-size: 0.75rem;
  margin-top: 20px;
  text-align: center;
}
@media (min-width: 576px) {
  body main .scroll-container .slide-footer .footer-bottom-container p {
    font-size: 0.9rem;
    position: absolute;
    width: 100%;
    bottom: 30px;
    margin-top: 0;
  }
}
body main .scroll-container .lst-footer {
  position: relative;
  list-style: none;
  font-size: 1.4rem;
}
body main .scroll-container .lst-footer a {
  font-weight: bold;
  font-size: 1.4rem;
}
body main .scroll-container .lst-footer a:hover {
  font-weight: 400;
}
body main .cls-2 {
  fill: black;
}
body main .next-proj-footer {
  padding: 80px !important;
}
body main .next-proj-footer > div {
  height: 200px;
}
body main .write-mail a {
  display: block;
  width: 200px;
  height: 200px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body main .write-mail a svg .circ-around {
  transform: scale(0);
}
body main .write-mail a svg:hover .circ-around {
  transform: scale(1);
  fill: #ffffff;
}
body main.cobi svg #bg-proj,
body main.cobi svg .cls-1,
body main .cobi svg #bg-proj,
body main .cobi svg .cls-1 {
  fill: #9386fb;
}
body main.halti svg #bg-proj,
body main.halti svg .cls-1,
body main .halti svg #bg-proj,
body main .halti svg .cls-1 {
  fill: #a9dcfd;
}
body main.cover svg #bg-proj,
body main.cover svg .cls-1,
body main .cover svg #bg-proj,
body main .cover svg .cls-1 {
  fill: #c7a188;
}
body main.flyer svg #bg-proj,
body main.flyer svg .cls-1,
body main .flyer svg #bg-proj,
body main .flyer svg .cls-1 {
  fill: #79fc6a;
}
body footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  padding: 40px 60px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-color: #ffffff;
}
@media (min-width: 576px) {
  body footer {
    flex-direction: row;
    justify-content: end;
    align-items: flex-end;
    gap: 80px;
    padding: 40px 60px;
  }
}
body footer p {
  text-align: center;
  font-size: 0.8rem;
}
body footer p:first-of-type {
  display: none;
}
@media (min-width: 576px) {
  body footer p {
    text-align: initial;
    display: none;
    font-size: 1rem;
  }
  body footer p:first-of-type {
    display: block;
  }
}
body footer ul {
  list-style: none;
  text-align: center;
}
@media (min-width: 576px) {
  body footer ul {
    text-align: initial;
  }
}
body.theme-dark {
  background-color: #000000;
}
body.theme-dark .slide-footer .circ-color-inside,
body.theme-dark .slide-footer .circ-color-outside,
body.theme-dark #cursor .circ-color-inside,
body.theme-dark #cursor .circ-color-outside {
  stroke: #e1e1e1;
}
body.theme-dark .slide-footer .circ-around,
body.theme-dark #cursor .circ-around {
  fill: #1d1d1d !important;
}
body.theme-dark .slide-footer .txt-around,
body.theme-dark #cursor .txt-around {
  fill: #e1e1e1 !important;
}
body.theme-dark .slide-footer .cross-light,
body.theme-dark #cursor .cross-light {
  fill: #1d1d1d !important;
}
body.theme-dark .slide-footer .cross-dark,
body.theme-dark #cursor .cross-dark {
  fill: #e1e1e1 !important;
}
body.theme-dark .slide-footer.codebits .circ-color-inside,
body.theme-dark .slide-footer.codebits .circ-color-outside,
body.theme-dark #cursor.codebits .circ-color-inside,
body.theme-dark #cursor.codebits .circ-color-outside {
  stroke: #6552FF;
}
body.theme-dark .slide-footer.halti .circ-color-inside,
body.theme-dark .slide-footer.halti .circ-color-outside,
body.theme-dark #cursor.halti .circ-color-inside,
body.theme-dark #cursor.halti .circ-color-outside {
  stroke: #24738E;
}
body.theme-dark .slide-footer.cover .circ-color-inside,
body.theme-dark .slide-footer.cover .circ-color-outside,
body.theme-dark #cursor.cover .circ-color-inside,
body.theme-dark #cursor.cover .circ-color-outside {
  stroke: #9B6F52;
}
body.theme-dark .slide-footer.flyer .circ-color-inside,
body.theme-dark .slide-footer.flyer .circ-color-outside,
body.theme-dark #cursor.flyer .circ-color-inside,
body.theme-dark #cursor.flyer .circ-color-outside {
  stroke: #15CE00;
}
body.theme-dark .slide-footer #arrow,
body.theme-dark .slide-footer #footer-arrow,
body.theme-dark #cursor #arrow,
body.theme-dark #cursor #footer-arrow {
  fill: white !important;
}
body.theme-dark .slide-footer .write-mail svg:hover .circ-around,
body.theme-dark #cursor .write-mail svg:hover .circ-around {
  fill: #000000 !important;
}
body.theme-dark main,
body.theme-dark footer {
  background-color: #000000;
  color: #e1e1e1;
}
body.theme-dark main svg,
body.theme-dark footer svg {
  fill: #e1e1e1;
}
body.theme-dark main svg .cls-2,
body.theme-dark footer svg .cls-2 {
  fill: #e1e1e1;
}
body.theme-dark main nav,
body.theme-dark footer nav {
  color: #e1e1e1;
  background-color: #1d1d1d;
}
@media (min-width: 576px) {
  body.theme-dark main nav,
  body.theme-dark footer nav {
    background-color: transparent;
  }
}
body.theme-dark main nav .nav-item .nav-link,
body.theme-dark footer nav .nav-item .nav-link {
  color: #e1e1e1;
  opacity: 0.8;
}
body.theme-dark main nav .nav-item .nav-link:hover,
body.theme-dark footer nav .nav-item .nav-link:hover {
  color: #e1e1e1;
  opacity: 1;
}
body.theme-dark main nav .nav-item .nav-link.active,
body.theme-dark footer nav .nav-item .nav-link.active {
  color: #e1e1e1;
  opacity: 1;
}
body.theme-dark main nav .slide-pagination a svg .cls-3,
body.theme-dark footer nav .slide-pagination a svg .cls-3 {
  fill: #e1e1e1;
}
body.theme-dark main nav .slide-pagination a:hover svg .cls-3,
body.theme-dark footer nav .slide-pagination a:hover svg .cls-3 {
  stroke: #e1e1e1;
}
body.theme-dark main .slide1::before,
body.theme-dark footer .slide1::before {
  opacity: 1;
}
body.theme-dark main .slide1,
body.theme-dark main .slide2,
body.theme-dark main .slide3,
body.theme-dark main .slide4,
body.theme-dark main .slide5,
body.theme-dark main .slide6,
body.theme-dark main .slide7,
body.theme-dark footer .slide1,
body.theme-dark footer .slide2,
body.theme-dark footer .slide3,
body.theme-dark footer .slide4,
body.theme-dark footer .slide5,
body.theme-dark footer .slide6,
body.theme-dark footer .slide7 {
  background-color: #1d1d1d;
}
body.theme-dark main .slide-footer,
body.theme-dark footer .slide-footer {
  background-color: #000000;
}
body.theme-dark main .slide-footer.active,
body.theme-dark footer .slide-footer.active {
  background-color: #1d1d1d;
}
body.theme-dark main .scroll-info span svg,
body.theme-dark footer .scroll-info span svg {
  fill: #e1e1e1;
}
body.theme-dark main .fjtooltip::before,
body.theme-dark footer .fjtooltip::before {
  color: #e1e1e1;
}
body.theme-dark main.cobi svg #bg-proj,
body.theme-dark main.cobi svg .cls-1,
body.theme-dark main .cobi svg #bg-proj,
body.theme-dark main .cobi svg .cls-1,
body.theme-dark footer.cobi svg #bg-proj,
body.theme-dark footer.cobi svg .cls-1,
body.theme-dark footer .cobi svg #bg-proj,
body.theme-dark footer .cobi svg .cls-1 {
  fill: #6552FF;
}
body.theme-dark main.halti svg #bg-proj,
body.theme-dark main.halti svg .cls-1,
body.theme-dark main .halti svg #bg-proj,
body.theme-dark main .halti svg .cls-1,
body.theme-dark footer.halti svg #bg-proj,
body.theme-dark footer.halti svg .cls-1,
body.theme-dark footer .halti svg #bg-proj,
body.theme-dark footer .halti svg .cls-1 {
  fill: #24738E;
}
body.theme-dark main.cover svg #bg-proj,
body.theme-dark main.cover svg .cls-1,
body.theme-dark main .cover svg #bg-proj,
body.theme-dark main .cover svg .cls-1,
body.theme-dark footer.cover svg #bg-proj,
body.theme-dark footer.cover svg .cls-1,
body.theme-dark footer .cover svg #bg-proj,
body.theme-dark footer .cover svg .cls-1 {
  fill: #9B6F52;
}
body.theme-dark main.flyer svg #bg-proj,
body.theme-dark main.flyer svg .cls-1,
body.theme-dark main .flyer svg #bg-proj,
body.theme-dark main .flyer svg .cls-1,
body.theme-dark footer.flyer svg #bg-proj,
body.theme-dark footer.flyer svg .cls-1,
body.theme-dark footer .flyer svg #bg-proj,
body.theme-dark footer .flyer svg .cls-1 {
  fill: #15CE00;
}
body.theme-dark .proj-detail .scroll-content section > div img {
  border: solid 1px #ffffff;
}
body.theme-dark main {
  background-color: #1d1d1d;
}
body.theme-dark footer {
  background-color: #000000;
}

lottie-player {
  height: 28px;
}

.fjtooltip {
  position: relative;
  transition: all 320ms ease;
}
.fjtooltip::before {
  content: attr(data-text);
  position: absolute;
  transition: all 320ms ease;
  top: 50%;
  transform: translate(-120%, -50%);
  left: 0;
  color: #000000;
  text-align: right;
  text-transform: uppercase;
  visibility: hidden;
  opacity: 0;
}
.fjtooltip:hover::before {
  visibility: visible;
  opacity: 1;
}

@keyframes rotate-left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rotate-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}