<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  overflow: auto;
  align-items: center;
  justify-content: center;
}

.gallery {
  z-index: 1000;
  width: 90%;
  max-width: 80vw;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1440px) {
  .gallery {
    max-width: 90vw;
  }
}
.gallery .work-image {
  overflow-y: auto;
}
.gallery .work-image:hover {
  transform: none;
}
@media (max-width: 576px) {
  .gallery .work-image {
    height: auto;
    aspect-ratio: initial;
  }
}
.gallery .work-image .work-link {
  display: none;
}
.gallery .video_wrap {
  width: 100%;
  aspect-ratio: 16/9;
}

.galleryOn {
  overflow: hidden;
  height: 100vh;
}

.close {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 2rem;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
}
.close::before, .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  width: 0.2rem;
  height: 90%;
  border-radius: 0.2rem;
  background-color: #5b657b;
}

header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  top: 1rem;
  position: relative;
}
.hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 2rem 0 0;
    background-image: none !important;
  }
}
.hero .container {
  position: relative;
  z-index: 1;
  width: calc(100% - 4rem);
  height: 100%;
  margin: 5rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  padding: 0;
}
@media (max-width: 768px) {
  .hero .container {
    margin: 0 auto;
    padding: 2rem;
  }
}
.hero .project-logo {
  margin: 0 auto;
  width: 10rem;
}
@media (max-width: 576px) {
  .hero .project-logo {
    margin: 0 auto 0 0;
  }
}
.hero .pathomatic-logo {
  width: 15rem;
}
.hero .page-title {
  text-align: center;
  padding: 2rem 0 4rem;
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  width: 100%;
  border-bottom: 1px solid rgba(64, 149, 191, 0.2);
}
@media (max-width: 768px) {
  .hero .page-title {
    padding: 1rem 0 2rem;
  }
}
@media (max-width: 576px) {
  .hero .page-title {
    text-align: left;
  }
}
.hero .page-title h2 {
  color: hsl(221, 15%, 22%);
  line-height: 1.2;
  font-weight: 800;
}
.hero .page-title p {
  font-weight: 400;
  margin-top: 1rem;
}
.hero .project-info_wrap {
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: space-between;
  padding: 2rem 0 0;
  gap: 2rem;
}
@media (max-width: 576px) {
  .hero .project-info_wrap {
    flex-direction: column;
    text-align: left;
  }
}
.hero .project-info-item {
  flex: 1;
}
.hero .project-info-item h5 {
  color: hsl(200, 50%, 50%);
  font-weight: 800;
}
.hero .project-info-item p {
  line-height: 1.4;
}

.page-title h3 span {
  font-weight: 400;
}
@media (max-width: 576px) {
  .page-title h3 {
    line-height: 1.2;
    margin-bottom: 2rem;
  }
}
.page-title h5 {
  margin-top: 1rem;
  font-weight: 300;
}
@media (max-width: 576px) {
  .page-title h5 {
    font-weight: 400;
  }
}

.para_wrap {
  position: relative;
  margin-bottom: 8rem;
  border-bottom: 1px solid rgba(64, 149, 191, 0.2);
}
.para_wrap:last-child {
  margin: 0;
  border: 0;
}
@media (max-width: 576px) {
  .para_wrap {
    flex-direction: column;
    gap: 0rem;
  }
}
.para_wrap .video_wrap {
  width: 100%;
}
.para_wrap p, .para_wrap li {
  margin-bottom: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
.para_wrap p:last-child, .para_wrap li:last-child {
  margin-bottom: 0;
}
.para_wrap h3 {
  line-height: 1.2;
}
.para_wrap .title {
  margin-bottom: 2rem;
}
@media (max-width: 576px) {
  .para_wrap .title:first-child {
    margin-top: 0;
  }
}
.para_wrap .title h2 {
  font-weight: 900;
  line-height: 1.2;
}
.para_wrap .title p {
  color: hsl(200, 50%, 50%);
  font-weight: 500;
  margin: 0;
}
@media (max-width: 576px) {
  .para_wrap .title p {
    font-size: 1.4rem;
  }
}
.para_wrap .title h4 {
  margin-bottom: 1rem;
}

.row {
  display: flex;
  gap: 6rem;
}
@media (max-width: 576px) {
  .row {
    flex-direction: column;
    gap: 3rem;
  }
}
.row .col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.row .col:first-child .char-image {
  margin-right: auto;
}
.row .col:last-child .char-image {
  margin-left: auto;
}
.row .char-image {
  max-width: 30rem;
  margin-top: auto;
}
.row .img-sq {
  aspect-ratio: 1/1;
  margin-top: 3rem;
}
.row.col-50 &gt; div, .row.col-50 &gt; figure, .row.col-50 .image-text_wrap {
  flex: 1;
}

@media (max-width: 576px) {
  .row .col:has(+ .char-image),
  .row .col:has(~ .char-image) {
    order: 2;
  }
}

.video-text_wrap {
  margin-bottom: 2rem;
}
.video-text_wrap .video_wrap {
  width: 600px;
  margin: 3rem 0 1rem;
}
@media (max-width: 576px) {
  .video-text_wrap .video_wrap {
    width: 100%;
  }
}

.vid-caption {
  font-size: 1.2rem;
  font-style: italic;
}

.text {
  margin-bottom: 4rem;
}
.text:last-child {
  margin-bottom: 0;
}
.text h5 {
  margin: 1rem 0;
}
.text p a, .text li a {
  color: #ff1d69;
}
.text p b, .text li b {
  font-weight: 600;
}
.text ul, .text ol {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.text ul ~ ul, .text ul ol, .text ol ~ ul, .text ol ol {
  margin-bottom: 2rem;
}
.text ul:first-child, .text ol:first-child {
  margin-top: 2rem;
}
.text ul:last-child, .text ol:last-child {
  margin-bottom: 0;
}
.text li {
  margin-bottom: 1rem;
  margin-left: 2rem;
  list-style-type: unset;
}
.text li a {
  text-decoration: underline;
}
.text li a:hover {
  color: #b6003d;
  text-decoration: none;
}
.text li::marker {
  font-weight: bold;
  font-size: 120%;
}
.text blockquote {
  margin-top: 2rem;
}

.video_wrap {
  position: relative;
  aspect-ratio: 16/9;
  width: 800px;
}
@media (max-width: 576px) {
  .video_wrap {
    width: 100%;
  }
}
.video_wrap video {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  top: 0;
  left: 0;
}

blockquote {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  font-style: italic;
}

.branding p {
  margin-bottom: 2rem;
}
.branding figure {
  padding: 3rem 4rem;
  width: 25rem;
  box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2), 0 0 3rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .nav-icon {
    order: 2;
    margin-left: 3rem;
  }
}

footer {
  margin: 5rem auto;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.2s ease-out;
  border-radius: 3rem;
  box-shadow: 0 0 20px 0 rgba(48, 53, 65, 0.2);
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem 4rem;
}
@media (max-width: 576px) {
  footer {
    width: calc(100% - 2rem);
    bottom: 1rem;
  }
  footer .work-nav {
    width: 100%;
    justify-content: space-between;
  }
}
footer .work-nav {
  gap: 4rem;
}

.work-nav {
  display: flex;
  gap: 2rem;
}
header .work-nav {
  margin-left: auto;
  padding-left: 4rem;
}
@media (max-width: 576px) {
  .work-nav {
    padding: 0;
  }
}
.work-nav &gt; div {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  transition: 0.3s ease;
  color: hsl(200, 50%, 50%);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.work-nav &gt; div span {
  position: relative;
}
.work-nav &gt; div a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .work-nav span:not(.nav-arrow) {
    font-size: 1.4rem;
  }
}

.nav-prev:hover span,
.nav-next:hover span {
  color: #b6003d;
  transition: 0.2s ease;
}
.nav-prev:hover span:before, .nav-prev:hover span:after,
.nav-next:hover span:before,
.nav-next:hover span:after {
  background-color: #b6003d;
  transition: 0.2s ease;
}

.nav-arrow {
  transition: 0.2s ease;
}
.nav-arrow:before, .nav-arrow:after {
  content: "";
  position: absolute;
  width: 0.2rem;
  height: 0.8rem;
  background-color: hsl(200, 50%, 50%);
  border-radius: 0.2rem;
}
@media (max-width: 576px) {
  .nav-arrow:before, .nav-arrow:after {
    height: 1rem;
  }
}
.nav-arrow:before {
  top: -0.15rem;
}
.nav-arrow:after {
  bottom: -0.15rem;
}
.nav-prev .nav-arrow {
  margin-right: 1rem;
}
.nav-prev .nav-arrow:before {
  transform: rotate(-45deg);
}
.nav-prev .nav-arrow:after {
  transform: rotate(45deg);
}
.nav-next .nav-arrow {
  margin-left: 1rem;
}
.nav-next .nav-arrow:after {
  transform: rotate(-45deg);
}
.nav-next .nav-arrow:before {
  transform: rotate(45deg);
}
.nav-arrow a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.work-text {
  margin-bottom: 10rem;
}

.case_image {
  padding: 2rem 0;
  display: flex;
  gap: 2rem;
}
.case_image .captions {
  margin-top: 2rem;
  font-size: 1.6rem;
  text-align: center;
}

.work-image_wrap {
  gap: 3rem;
  margin-top: 2rem;
  margin-bottom: 6rem;
}
@media (max-width: 576px) {
  .work-image_wrap {
    flex-direction: column;
    gap: 2rem;
  }
}
.work-image_wrap .work-image,
.work-image_wrap .video_wrap {
  aspect-ratio: 16/9;
}

.work-images {
  margin: 6rem auto 8rem;
}
@media (max-width: 1024px) {
  .work-images {
    max-width: 60rem;
  }
}
.work-images p {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

.captions {
  margin-top: 2rem;
  font-size: 1.4rem;
}
.image-text_wrap {
  margin-bottom: 8rem;
  text-align: center;
}
.image-text_wrap p {
  margin-top: 1rem;
}

.roll-image {
  aspect-ratio: 4/0.6;
}

.ux-image {
  margin-top: 2rem;
}

.work-image-title {
  margin-bottom: 2rem;
}
.work-image-title h5 {
  margin-bottom: 2rem;
}
.work-image-title .sub-title {
  margin: 2rem 0 1rem;
}

.brands_wrap {
  margin-bottom: 5rem;
}

.brand-logo {
  width: 20rem;
}

.brand-title {
  margin-bottom: 1rem;
  font-weight: 500;
}

.scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

.num-indicator {
  background-color: hsl(200, 50%, 50%);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  color: #fff;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.work-image-1 .num-indicator {
  position: absolute;
}
.work-image-1 .num-1 {
  top: 37%;
  left: 16%;
}
.work-image-1 .num-2 {
  top: 88%;
  left: 16%;
}

.highlight {
  position: relative;
  /* Ripple Effect */
}
.highlight::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  box-shadow: 0 0 0 2px hsl(200, 50%, 50%), 0 0 10px 0 rgba(48, 53, 65, 0.5);
  animation: ripple 1s ease-in;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
  }
  50% {
    width: 120%;
    height: 120%;
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.section-frame {
  border-top: 1px solid rgba(64, 149, 191, 0.2);
  background: linear-gradient(180deg, rgba(64, 149, 191, 0.1), rgba(64, 149, 191, 0));
}
.section-frame .container {
  width: 100%;
  max-width: 111rem;
  margin: 0 auto;
  padding: 5rem 5rem 10rem;
}
@media (max-width: 576px) {
  .section-frame .container {
    padding: 5rem 2rem;
  }
}
.section-frame .container h1 {
  font-weight: 900;
  color: hsl(200, 50%, 50%);
}

.work-page .nav-icon {
  display: flex;
  position: fixed;
  top: 2rem;
  right: 2rem;
}

.sec-work {
  max-width: 111rem;
  margin: 0 auto;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 5rem;
}
@media (max-width: 576px) {
  .sec-work {
    padding: 0 2rem;
  }
}
.sec-work ul {
  padding-left: 1rem;
}
.sec-work ul li {
  list-style-type: none;
  text-indent: -2.5rem;
  margin-bottom: 2rem;
}
.sec-work ul li::before {
  content: "";
  background-image: url(../images/chevron-right.svg);
  background-size: cover;
  margin-right: 0.5rem;
  font-weight: 900;
  position: relative;
  bottom: -3px;
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
}
.sec-work .container {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.sec-work h2, .sec-work h3 {
  font-weight: 900;
}
.sec-work .sec-title {
  margin-bottom: 4rem;
  margin-left: -3rem;
}
@media (max-width: 576px) {
  .sec-work .sec-title {
    margin: 0 0 4rem;
  }
}
.sec-work .sec-title p, .sec-work .sec-title h2, .sec-work .sec-title h3 {
  line-height: 1.2;
}
.sec-work .sec-title h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sec-work .sec-title h3::before, .sec-work .sec-title h3::after {
  content: "-";
  font-size: 5rem;
  font-weight: 100;
  color: hsl(200, 50%, 50%);
}
@media (max-width: 576px) {
  .sec-work .sec-title h3::before, .sec-work .sec-title h3::after {
    display: none;
  }
}
.sec-work .content {
  position: relative;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding-bottom: 10rem;
}
.sec-work .row .char-image {
  max-width: 30rem;
}
.sec-work .char-image {
  width: auto;
  min-width: 20rem;
  align-self: flex-end;
}
@media (max-width: 576px) {
  .sec-work .char-image {
    min-width: initial;
    width: 50vw;
    order: 1;
    margin: auto;
  }
}
.sec-work .work-images {
  margin: 0;
  flex: 2;
}
.sec-work .text .title {
  margin-bottom: 2rem;
  color: hsl(200, 50%, 50%);
}
.sec-work .text .num-indicator {
  position: relative;
  bottom: 0.3rem;
  margin-left: 0.5rem;
}
.sec-work .text p {
  margin-bottom: 2rem;
}
.sec-work .work-image {
  border-radius: 1rem;
}
.sec-work.hero {
  padding: 15rem 0;
}
@media (max-width: 576px) {
  .sec-work.hero {
    padding: 5rem 0;
  }
}
.sec-work.hero .container {
  height: 100%;
}
.sec-work p.procon {
  margin-bottom: 1rem;
  font-weight: 600;
}
.sec-work p.procon:before {
  margin-right: 0.8rem;
}
.sec-work p.procon ~ li {
  margin-left: 5rem;
}
.sec-work .pro::before {
  content: "✅";
}
.sec-work .con::before {
  content: "❌";
}

.pre-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: hsl(200, 50%, 50%);
  margin-left: 2.8rem;
}
@media (max-width: 576px) {
  .pre-title {
    margin: 0;
  }
}

main {
  height: 100vh;
}
main blockquote {
  margin-top: 2rem;
}

.sidebar-page header {
  display: none;
}
.sidebar-page .sidebar {
  display: block;
}
.sidebar-page main {
  padding-left: 20rem;
}

.sidebar {
  display: none;
  position: fixed;
  width: 22rem;
  height: 100%;
  padding: 2rem;
}
.sidebar .container {
  height: 100%;
  padding: 2rem 0;
  border-radius: 2rem;
  box-shadow: 0 0 0 1px hsl(200, 50%, 50%), 0 0 1rem 0 rgba(0, 0, 0, 0.1);
}
.sidebar .yr-logo {
  padding: 1rem 2rem;
}
.sidebar .inner-links {
  margin-top: 2rem;
}
.sidebar .inner-link:hover {
  background-color: rgba(64, 149, 191, 0.1);
}
.sidebar .inner-link a {
  display: block;
  padding: 1rem 2rem;
  color: hsl(221, 15%, 22%);
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebar .inner-link.active a {
  color: hsl(200, 50%, 50%);
  font-weight: 900;
}
.sidebar header {
  display: none;
}

.img-hover {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0.3rem;
  transition: 0.2s ease;
}
.img-hover-2 {
  width: 84rem;
  left: 340px;
  bottom: 115px;
}

.work-image.img-show {
  overflow: visible;
  position: relative;
}
.work-image.img-show:hover .img-hover {
  opacity: 1;
  transition: 0.2s ease;
}

.ct-img-interview {
  max-width: 30rem;
}

.hover-text {
  position: absolute;
  top: 0;
  left: 0;
}/*# sourceMappingURL=pages.css.map */</pre></body></html>