@charset "UTF-8";
/* Base */
html {
  font-family: var(--f-tiempos);
  color: var(--black);
  background: var(--white);
  font-size: 10px;
}

body {
  font-size: var(--fs-copy);
  line-height: var(--lh);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-x: none;
}

/* Typography */
@font-face {
  font-family: "Messina Regular";
  src: url("../fonts/MessinaSansWeb-Regular.woff") format("woff");
}
@font-face {
  font-family: "Messina Semi Bold";
  src: url("../fonts/MessinaSansWeb-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Tiempos Regular";
  src: url("../fonts/tiempos-text-web-regular.woff") format("woff");
}
@font-face {
  font-family: "Tiempos Regular Italic";
  src: url("../fonts/tiempos-text-web-regular-italic.woff") format("woff");
}
.large {
  font-family: var(--f-tiempos);
  font-size: var(--fs-large);
  letter-spacing: var(--ls-hl);
}

.headline {
  font-family: var(--f-tiempos);
  font-size: var(--fs-hl);
  letter-spacing: var(--ls-hl);
}

.copy {
  font-family: var(--f-messina);
  font-size: var(--fs-copy);
  letter-spacing: var(--ls-copy);
}

.small {
  font-family: var(--f-messina);
  font-size: var(--fs-small);
  letter-spacing: var(--ls-small);
}

/* Images */
figure {
  width: 20vw;
  height: 20vw;
  background: #cbcbcb;
}

img,
video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Layout */
.sp-outer {
  margin: var(--sp-3-5);
}

.sp-inner {
  padding: var(--sp-3-5);
}

.sp-removed {
  margin-left: calc(var(--sp-3-5) * -1);
  margin-bottom: calc(var(--sp-3-5) * -1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--g-cols), 1fr);
  gap: var(--sp-2);
}
.grid * {
  grid-column: 1/calc(var(--g-cols) + 1);
}

.dark {
  color: var(--c-bg);
  background: var(--c-text);
  transition: all 0.3s ease-out;
}

.light {
  color: var(--c-text);
  background: var(--c-bg);
  transition: all 0.3s ease-out;
}

.hidden {
  display: none;
}

.slider {
  display: flex;
}

.lock {
  touch-action: none;
  -ms-touch-action: none;
}

/** 
* Hover States
*/
.img-hover {
  transition: opacity 0.3s;
}
.img-hover:hover {
  opacity: 0.75;
}

.hl-hover {
  transition: opacity 0.3s;
}
.hl-hover:hover {
  opacity: 0.5;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

button,
input {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  text-transform: none;
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=radio] {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

textarea {
  border-radius: 0;
  background: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

button:focus,
input:focus,
div:focus,
textarea:focus {
  outline: 0px solid lightgray;
}

button:disabled {
  opacity: 0.5;
  cursor: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

:root {
  /* Colors */
  --white: #fff;
  --white-fix: #fff;
  --black-mobile: #000;
  --black-mobile-fix: #000;
  --black: #161616;
  --black-fix: #161616;
  --gray: #95918a;
  --blue-dark: #1e2633;
  --blue-light: #304c5a;
  --red: #ba614a;
  --green: #6c7b5a;
  /* Spacing */
  --sp-0: 0.8rem;
  --sp-1: 1.6rem;
  --sp-2: 2rem;
  --sp-6: 6rem;
  --sp-8: 8rem;
  --sp-18: 18rem;
  --sp-20: 20rem;
  /* Fonts */
  --f-messina: "Messina Regular", sans-serif;
  --f-messina-semi: "Messina Semi Bold", sans-serif;
  --f-tiempos: "Tiempos Regular", sans-serif;
  --f-tiempos-italic: "Tiempos Regular Italic", sans-serif;
  /* Font Sizes */
  --fs-large: 7.2rem;
  --fs-hl: 4.6rem;
  --fs-copy: 2.2rem;
  --fs-small: 1.6rem;
  /* Font Settings */
  --ls-small: -0.03rem;
  --ls-copy: -0.03rem;
  --ls-hl: -0.14rem;
  --lh: 1.2;
  /* Border */
  --brd: 1px solid var(--black);
  /* Layout */
  --g-cols: 2;
  --g-gap: var(--sp-3);
}

@media (max-width: 900px) {
  :root {
    --white: #000;
    --black: #fff;
    /* Spacing */
    --sp-1: 1rem;
    --sp-6: 4rem;
    --sp-8: 6rem;
    --sp-18: 8rem;
    --sp-20: 10rem;
    /* Font Sizes */
    --fs-large: 3.6rem;
    --fs-hl: 2.4rem;
    --fs-copy: 1.8rem;
    --fs-small: 1.4rem;
    /* Font Settings */
    --ls-small: 0rem;
    --ls-copy: 0rem;
    --ls-hl: 0rem;
    --lh: 1.2;
  }
}
/* Components */
.header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 2;
  padding-bottom: 2rem;
  transition: background 0.3s;
  height: 14rem;
}
@media (max-width: 800px) {
  .header {
    height: 7rem;
  }
}
.header h1 {
  display: none;
}
.header .logo {
  width: 40rem;
  margin-left: var(--sp-1);
  margin-top: 4rem;
  transition: margin 0.3s;
  transform-origin: 0% 0%;
  transform: scale(1);
  display: none;
}
@media (max-width: 900px) {
  .header .logo {
    margin-top: 3.1rem;
  }
}
@media (max-width: 800px) {
  .header .logo {
    margin-top: 2.1rem;
    width: 15.2rem;
  }
  .header .logo path {
    fill: var(--white-fix);
  }
}
.header .logo-small {
  transform: scale(0.45);
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
@media (max-width: 800px) {
  .header .logo-small {
    transform: scale(0.5);
  }
}
.header .nav-outside-modal {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: transparent;
  display: none;
  z-index: 1;
  pointer-events: none;
  cursor: pointer;
}
.header .nav-btn {
  position: absolute;
  right: 0;
  top: 0;
  margin-right: var(--sp-1);
  margin-top: 7rem;
  transition: 0.3s;
  color: var(--white);
}
.header .nav-btn.active {
  color: transparent;
}
.header .nav-btn:hover {
  opacity: 0.5;
}
@media (max-width: 900px) {
  .header .nav-btn {
    margin-top: 3.2rem;
    margin-right: 2rem;
  }
}
.header .nav-btn.desktop {
  display: block;
}
@media (max-width: 900px) {
  .header .nav-btn.desktop {
    display: none;
  }
}
.header .nav-btn.mobile {
  display: none;
}
@media (max-width: 900px) {
  .header .nav-btn.mobile {
    display: block;
    padding-left: 3rem;
    padding-bottom: 3rem;
  }
  .header .nav-btn.mobile svg {
    width: 2rem;
    fill: var(--white-fix);
    pointer-events: none;
  }
}

nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav {
  position: fixed;
  height: 101vh;
  margin-top: -1px;
  top: 0;
  right: 0;
  width: 36.2rem;
  background: var(--black-fix);
  color: var(--gray);
  padding-top: 7rem;
  padding-left: 5rem;
  transform: translateX(37rem);
  z-index: 2;
}
@media (max-width: 900px) {
  .nav {
    background: #000;
    color: var(--white-fix);
    transform: translateX(100%);
    width: 100vw;
    padding-top: 4rem;
    padding-left: var(--sp-2);
  }
}
.nav .headline {
  padding-bottom: var(--sp-1);
  transition: color 0.3s;
}
@media (max-width: 900px) {
  .nav .headline {
    font-size: var(--fs-large);
  }
}
.nav .headline:hover {
  color: var(--white-fix);
}

.close-btn {
  display: none;
}
@media (max-width: 900px) {
  .close-btn {
    position: absolute;
    right: 2rem;
    top: 3.2rem;
    display: block;
    z-index: 10;
  }
  .close-btn svg {
    width: 2rem;
    fill: var(--white-fix);
  }
}

.work-btn {
  cursor: pointer;
  transition: color 0.3s;
}
@media (max-width: 900px) {
  .work-btn {
    font-size: var(--fs-large);
    color: var(--white-fix);
  }
}
.work-btn.active {
  color: var(--white-fix);
}
.work-btn:hover {
  color: var(--white-fix);
}

.nav-work {
  overflow: hidden;
  height: 0;
}
.nav-work li {
  color: var(--gray);
  padding-left: var(--sp-1);
  padding-top: var(--sp-0);
  padding-bottom: var(--sp-0);
  transition: color 0.3s;
}
.nav-work li:hover {
  color: var(--white);
}
@media (max-width: 900px) {
  .nav-work li {
    color: var(--white-fix);
  }
  .nav-work li:hover {
    color: var(--white-fix);
  }
}

.contact-hide {
  overflow: hidden;
}

.nav-work > li:first-child {
  padding-top: 4rem;
}

.nav-work > li:last-child {
  padding-bottom: var(--sp-6);
}

.nav-contact {
  padding-bottom: 5rem;
  opacity: 0;
  transform: translateY(30px);
}
.nav-contact a {
  transition: color 0.3s;
}
.nav-contact a:hover {
  color: white;
}
@media (max-width: 900px) {
  .nav-contact {
    padding-bottom: 15rem;
  }
}
.nav-contact div {
  padding-bottom: 2rem;
}
.nav-contact div:last-child {
  padding-bottom: 0;
}
.nav-contact .overline {
  font-family: "Messina Semi Bold";
}

footer {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-0) var(--sp-1);
}
footer .top-btn .mobile {
  display: none;
}
@media (max-width: 900px) {
  footer {
    padding: var(--sp-1);
  }
  footer .top-btn .desktop {
    display: none;
  }
  footer .top-btn .mobile {
    display: block;
  }
}

.work-item {
  padding-right: var(--sp-1);
  width: 33.33%;
}
@media (max-width: 900px) {
  .work-item {
    width: 100%;
    padding-right: var(--sp-2);
  }
}
.work-item figure {
  margin-bottom: 1.4rem;
  width: 100%;
  height: calc(100vw / 3 * 0.65);
}
@media (max-width: 900px) {
  .work-item figure {
    height: calc(100vw * 0.65);
  }
}
.work-item .work-description {
  position: absolute;
  display: none;
}

.hl-wrapper {
  padding-top: var(--sp-6);
}
@media (max-width: 900px) {
  .hl-wrapper {
    padding-top: var(--sp-2);
  }
}
.hl-wrapper h2 {
  border-top: var(--brd);
  padding-left: var(--sp-1);
  padding-top: var(--sp-0);
}

.articles {
  display: flex;
  flex-wrap: wrap;
}
.articles .article {
  width: calc(100% / 3);
  padding-left: var(--sp-8);
  padding-right: var(--sp-8);
  padding-bottom: var(--sp-18);
}
@media (max-width: 1200px) {
  .articles .article {
    width: calc(100% / 2);
  }
}
@media (max-width: 900px) {
  .articles .article {
    padding-left: var(--sp-6);
    padding-right: var(--sp-6);
    padding-bottom: 6rem;
    width: 100vw;
  }
}
.articles .article figure {
  margin-bottom: 1.4rem;
  width: 100%;
  height: calc((100vw / 3 * 0.55));
}
@media (max-width: 1200px) {
  .articles .article figure {
    height: calc((100vw / 2 * 0.55));
  }
}
@media (max-width: 900px) {
  .articles .article figure {
    height: calc((100vw * 0.55));
  }
}

.img-sidebyside {
  display: flex;
  padding-left: var(--sp-1);
  padding-bottom: var(--sp-20);
}
@media (max-width: 900px) {
  .img-sidebyside {
    flex-direction: column;
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
    padding-bottom: 8rem;
  }
}
.img-sidebyside figure {
  width: calc(100vw / 2);
  margin-right: var(--sp-1);
  height: calc((100vw / 2) * 0.7);
}
@media (max-width: 900px) {
  .img-sidebyside figure {
    width: 100%;
    height: calc((100vw / 1) * 0.7);
    margin-bottom: var(--sp-2);
  }
}

/* Pages */
.intro-article {
  display: flex;
  margin-bottom: 20rem;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .intro-article {
    margin-bottom: 8rem;
    flex-direction: column;
  }
}
.intro-article figure,
.intro-article h2 {
  width: 50vw;
}
@media (max-width: 1024px) {
  .intro-article figure,
.intro-article h2 {
    width: 100vw;
  }
}
.intro-article figure {
  height: 100vh;
  margin-left: var(--sp-1);
}
@media (max-width: 1024px) {
  .intro-article figure {
    order: 1;
    height: calc(100vw * 1.2);
  }
}
.intro-article h2 {
  padding-left: var(--sp-1);
  padding-right: var(--sp-1);
  padding-bottom: var(--sp-1);
}
@media (max-width: 1024px) {
  .intro-article h2 {
    order: 2;
    padding: var(--sp-2);
  }
}

.content-article {
  border-bottom: var(--brd);
}
@media (max-width: 900px) {
  .content-article .img-copy p {
    padding-bottom: var(--sp-2);
  }
}
.content-article .img-copy a {
  display: inline-block;
  padding-top: var(--sp-6);
  text-decoration: underline;
}
@media (max-width: 900px) {
  .content-article .img-copy a {
    padding-top: 2rem;
  }
}
@media (max-width: 900px) {
  .content-article .img-sidebyside {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
    padding-bottom: 0;
  }
  .content-article .img-sidebyside figure {
    height: 60vw;
    margin-bottom: 8rem;
  }
}

.videoplayer {
  width: 100%;
  height: 0;
  padding-bottom: calc(100% / 16 * 9);
  position: relative;
  margin-bottom: 26rem;
  background: var(--black);
}
@media (max-width: 900px) {
  .videoplayer {
    margin-bottom: 12rem;
  }
}
.videoplayer .play {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  z-index: 2;
}
.videoplayer .video {
  position: absolute;
  opacity: 60%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
  display: block;
  z-index: 1;
}
.videoplayer .controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: var(--white);
  z-index: 2;
}
@media (max-width: 900px) {
  .videoplayer .controls {
    display: none;
  }
}
.videoplayer .controls .controls-wrapper {
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 var(--sp-1);
}
.videoplayer .controls .controls-wrapper:hover span {
  transform: scale(1);
}
.videoplayer .controls .progress {
  width: 97.5%;
  position: absolute;
  display: flex;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.videoplayer .controls .filled {
  background: var(--white);
  transition: width 0.1s;
  position: relative;
}
.videoplayer .controls .filled span {
  position: absolute;
  right: -8px;
  top: -4px;
  background: var(--white);
  border-radius: 50%;
  height: 10px;
  width: 10px;
  transform: scale(0);
  transition: transform 0.2s ease-out;
}
.videoplayer .controls .text {
  display: flex;
  justify-content: space-between;
  padding: 0 var(--sp-1);
  margin-bottom: var(--sp-0);
}
.videoplayer .controls .text .fullscreen {
  text-decoration: underline;
}

.intro {
  margin-bottom: 25rem;
}
@media (max-width: 900px) {
  .intro {
    margin-bottom: 18rem;
  }
}
.intro .fp-intro-img {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 137vh;
}
.intro .flickity-slider,
.intro .flickity-viewport {
  height: 100%;
}
.intro .intro-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro .intro-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.intro .intro-carousel-slide:first-child {
  opacity: 1;
}
.intro .intro-carousel-slide .intro-carousel-slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 900px) {
  .intro .intro-carousel-slide .intro-carousel-slide-img--mobile {
    display: none;
  }
}
.intro .intro-carousel-slide .intro-carousel-slide-img--desktop {
  display: none;
}
@media (min-width: 900px) {
  .intro .intro-carousel-slide .intro-carousel-slide-img--desktop {
    display: block;
  }
}

.work {
  border-top: var(--brd);
  padding-bottom: var(--sp-18);
  overflow-x: hidden;
}
.work h2 {
  padding-top: var(--sp-0);
  padding-left: var(--sp-1);
  padding-bottom: var(--sp-6);
}
.work .slider-wrapper .slider .work-item {
  will-change: transform;
  min-width: 33%;
  padding-right: 0;
  padding-left: var(--sp-1);
}
@media (max-width: 900px) {
  .work .slider-wrapper .slider .work-item:first-child {
    padding-left: var(--sp-1);
  }
}
@media (max-width: 900px) {
  .work .slider-wrapper .slider .work-item:last-child {
    padding-right: var(--sp-1);
  }
}
@media (max-width: 900px) {
  .work .slider-wrapper .slider .work-item {
    padding-left: var(--sp-2);
    padding-right: 0;
    min-width: 75%;
  }
}
.work .slider-wrapper .slider .work-item figure {
  height: calc(100vw / 3 * 0.67);
}
@media (max-width: 900px) {
  .work .slider-wrapper .slider .work-item figure {
    height: calc(100vw * 0.55);
  }
}

.news {
  background: var(--green);
  padding-top: var(--sp-6);
  margin-top: var(--sp-8);
  padding-bottom: var(--sp-8);
  color: var(--black-fix);
}
@media (max-width: 900px) {
  .news {
    padding-top: var(--sp-2);
  }
}
.news .border {
  display: inline-block;
  width: 100%;
  border-top: var(--brd);
  border-color: var(--black-fix);
}
.news h2 {
  padding-top: var(--sp-0);
  padding-left: var(--sp-1);
  padding-bottom: 10rem;
}
@media (max-width: 900px) {
  .news h2 {
    padding-bottom: 4.5rem;
  }
}

.news.light figure {
  opacity: 0.8;
}
.news.light figure:hover {
  opacity: 0.5;
}

.intro-studio {
  margin-bottom: var(--sp-20);
  position: relative;
}
@media (max-width: 900px) {
  .intro-studio {
    margin-bottom: 6rem;
  }
}
.intro-studio figure {
  width: 100vw;
  height: 100vh;
}
.intro-studio h2 {
  position: absolute;
  bottom: var(--sp-1);
  left: var(--sp-1);
  color: var(--white-fix);
  width: 50%;
}
@media (max-width: 900px) {
  .intro-studio h2 {
    bottom: var(--sp-2);
    left: var(--sp-2);
    width: 90%;
  }
}

.img-text {
  display: flex;
  padding-left: var(--sp-0);
  padding-right: var(--sp-0);
  padding-bottom: 26rem;
}
@media (max-width: 1020px) {
  .img-text {
    flex-direction: column;
    padding-left: 0;
    padding-bottom: var(--sp-2);
  }
}
@media (max-width: 1020px) {
  .img-text .img {
    margin-bottom: 0rem;
  }
}
.img-text .img,
.img-text .text {
  padding: 0 var(--sp-0);
  width: calc(100vw / 2);
}
@media (max-width: 1020px) {
  .img-text .img,
.img-text .text {
    width: 100vw;
    padding: 0;
  }
}
.img-text figure {
  margin: 0 auto;
  width: 30vw;
  height: 30vw;
}
@media (max-width: 1020px) {
  .img-text figure {
    margin: 0;
    width: 100vw;
    height: calc(100vw * 1.5);
  }
}
.img-text .text {
  height: auto;
  justify-content: center;
  transform: translateY(-15px);
}
@media (max-width: 1020px) {
  .img-text .text {
    transform: translateY(0px);
    padding: 4rem var(--sp-2);
  }
}
.img-text .text .large {
  font-family: var(--f-tiempos-italic);
  padding-bottom: var(--sp-6);
}
.img-text .text .copy {
  padding-bottom: var(--sp-6);
}
@media (max-width: 1020px) {
  .img-text .text .copy {
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
    padding-bottom: 4rem;
  }
}
.img-text .text .small {
  padding-top: var(--sp-0);
  border-top: 0.3px solid var(--white);
}
@media (max-width: 1020px) {
  .img-text .text .small {
    border-top: 0.3px solid var(--black-fix);
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
  }
}
.img-text .text .small p {
  width: 70%;
}
@media (max-width: 1020px) {
  .img-text .text .small p {
    width: 90%;
  }
}
.img-text .text * {
  width: 80%;
}
@media (max-width: 1020px) {
  .img-text .text * {
    width: 100%;
  }
}

.services {
  background: #f4f4f3;
  color: var(--black-fix);
}
.services h2 {
  padding-bottom: 14rem;
  border-color: var(--black-fix);
}
@media (max-width: 900px) {
  .services h2 {
    padding-bottom: 4rem;
    padding-left: var(--sp-2);
  }
}

.culture {
  background: var(--blue-light);
  color: var(--white-fix);
  margin-bottom: 26rem;
}
@media (max-width: 900px) {
  .culture {
    margin-bottom: 0;
  }
}
.culture h2 {
  padding-bottom: var(--sp-8);
  border-color: var(--white-fix);
}
@media (max-width: 900px) {
  .culture h2 {
    padding-bottom: 4rem;
  }
}
.culture .culture-imgs {
  display: flex;
  padding-bottom: var(--sp-18);
  padding-left: var(--sp-1);
}
@media (max-width: 900px) {
  .culture .culture-imgs {
    padding-bottom: 6rem;
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
    flex-direction: column;
  }
}
.culture .culture-imgs figure {
  margin-right: var(--sp-1);
  width: calc(100vw / 3 - var(--sp-1) * 1.3);
  height: calc((100vw / 3) * 0.7);
}
@media (max-width: 900px) {
  .culture .culture-imgs figure {
    margin-bottom: var(--sp-2);
    width: 100%;
    height: 70vw;
  }
}

.outside-modal {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: transparent;
  display: none;
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 900px) {
  .outside-modal {
    height: 10rem;
    z-index: 20;
  }
}
.outside-modal .overlay-close-btn {
  display: none;
}
@media (max-width: 900px) {
  .outside-modal .overlay-close-btn {
    position: absolute;
    top: 3.2rem;
    right: 2.2rem;
    padding-left: var(--sp-1);
    padding-bottom: var(--sp-1);
    display: block;
    z-index: 13;
  }
  .outside-modal .overlay-close-btn svg {
    position: sticky;
    width: 2rem;
    fill: var(--white-fix);
  }
}

.employees-category {
  border-top: var(--brd);
}
.employees-category .employees {
  display: flex;
  flex-wrap: wrap;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: var(--sp-0);
  padding-right: var(--sp-0);
}
@media (max-width: 900px) {
  .employees-category .employees {
    padding-left: 0;
    padding-right: 0;
  }
}
.employees-category .hl-wrapper,
.employees-category .employee-preview {
  cursor: pointer;
}
.employees-category .hl-wrapper h2,
.employees-category .employee-preview h2 {
  border-top: 0;
}
.employees-category .hl-wrapper {
  padding-top: 0;
  padding-bottom: var(--sp-8);
}
@media (max-width: 900px) {
  .employees-category .hl-wrapper {
    padding-bottom: 4rem;
  }
}
.employees-category .employee:last-child {
  margin-bottom: var(--sp-18);
}
.employees-category .employee {
  width: calc(100% / 6);
}
@media (max-width: 1024px) {
  .employees-category .employee {
    width: calc(100% / 4);
  }
}
@media (max-width: 900px) {
  .employees-category .employee {
    width: calc(100% / 2);
  }
}
.employees-category .employee-preview {
  padding-left: var(--sp-0);
  padding-right: var(--sp-0);
  padding-bottom: 5rem;
}
@media (max-width: 900px) {
  .employees-category .employee-preview {
    padding-left: var(--sp-1);
    padding-right: var(--sp-1);
    padding-bottom: 4rem;
  }
}
.employees-category .employee-preview .img {
  height: calc(100vw / 6 * 0.65);
}
@media (max-width: 1024px) {
  .employees-category .employee-preview .img {
    height: calc(100vw / 4 * 0.65);
  }
}
@media (max-width: 900px) {
  .employees-category .employee-preview .img {
    height: calc(100vw / 2 - (var(--sp-1) * 2));
  }
}
.employees-category .employee-preview figure {
  width: 100%;
  height: 100%;
}
.employees-category .employee-preview .employee-description {
  padding-top: var(--sp-0);
}
.employees-category .employee-overlay {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 0;
  margin-top: -1px;
  background: var(--black-fix);
  height: calc(100vh - 14rem);
  color: var(--white-fix);
  padding-top: 10rem;
  transform: translateY(calc(100vh - 14rem));
  overflow: scroll;
}
.employees-category .employee-overlay .text {
  color: var(--gray);
  background: var(--black);
}
@media (max-width: 900px) {
  .employees-category .employee-overlay .text {
    background: var(--black-mobile);
    color: var(--white-fix);
    padding-top: var(--sp-2);
    padding-bottom: 6rem;
  }
}
@media (max-width: 900px) {
  .employees-category .employee-overlay .text .headline {
    padding-bottom: 6rem;
  }
}
.employees-category .employee-overlay .text *,
.employees-category .employee-overlay .text .headline {
  color: var(--gray);
}
@media (max-width: 900px) {
  .employees-category .employee-overlay .text *,
.employees-category .employee-overlay .text .headline {
    color: var(--white-fix);
  }
}
.employees-category .employee-overlay .text .bio {
  font-family: var(--f-messina);
}
.employees-category .employee-overlay .text .bio p {
  padding-bottom: var(--sp-2);
}
@media (max-width: 900px) {
  .employees-category .employee-overlay .text .bio {
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
  }
}
.employees-category .employee-overlay .text .cv {
  margin-top: 10rem;
}
@media (max-width: 900px) {
  .employees-category .employee-overlay .text .cv {
    margin-top: 6rem;
  }
}
.employees-category .employee-overlay .text .cv .cv-item {
  padding-bottom: var(--sp-2);
}
@media (max-width: 900px) {
  .employees-category .employee-overlay {
    padding-top: 0;
    height: 100vh;
    transform: translateY(100vh);
  }
}
.employees-category .employee-overlay .img figure {
  position: sticky;
  top: 0;
  left: 0;
}
.employees-category .employee-overlay .large {
  color: var(--white-fix);
}
.employees-category .employee-overlay .img-text {
  padding-bottom: 10rem;
}
@media (max-width: 900px) {
  .employees-category .employee-overlay .img-text {
    padding-bottom: 0rem;
  }
}

.join {
  height: 70rem;
  background: #f4f4f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .join {
    height: 24rem;
    background: var(--blue-dark);
    margin-top: 4rem;
  }
}
.join p {
  padding-left: var(--sp-1);
}
.join a {
  font-family: var(--f-tiempos-italic);
  text-decoration: underline;
}

.work-page {
  padding-top: 26rem;
  padding-bottom: 19rem;
  padding-left: var(--sp-1);
  border-bottom: var(--brd);
}
@media (max-width: 900px) {
  .work-page {
    padding-top: 20rem;
    padding-bottom: 10rem;
  }
}
.work-page h2 {
  padding-bottom: var(--sp-6);
  padding-left: 0;
}
@media (max-width: 900px) {
  .work-page.work-overview .work-items {
    margin-left: -1rem;
    width: 103%;
  }
  .work-page.work-overview .work-items .work-item {
    padding-right: 0;
    padding-bottom: 0;
    margin-right: 3px;
    width: calc(33.33% - 3px);
  }
  .work-page.work-overview .work-items .work-item figure {
    margin-bottom: 3px;
    height: calc(100vw * 0.23);
  }
  .work-page.work-overview .work-items h3 {
    display: none;
  }
}
.work-page .work-items {
  display: flex;
  flex-wrap: wrap;
}
.work-page .work-items .work-item {
  padding-bottom: 16rem;
}
@media (max-width: 900px) {
  .work-page .work-items .work-item {
    padding-bottom: 6rem;
    padding-right: var(--sp-1);
    width: 100vw;
  }
  .work-page .work-items .work-item figure {
    width: 100%;
    height: calc(100vw * 0.7);
  }
}
.work-page .work-items .work-description {
  display: block;
  opacity: 0;
  padding-top: var(--sp-1);
}
@media (max-width: 900px) {
  .work-page .work-items .work-description {
    display: none;
  }
}

.content-workdetail figcaption {
  padding-top: var(--sp-0);
}

.intro-workdetail {
  height: 100vh;
}
.intro-workdetail .intro-img {
  width: 100vw;
  height: calc(100vh - 12rem);
  background-position: 50% 50%;
  overflow: hidden;
}
@media (max-width: 900px) {
  .intro-workdetail .intro-img {
    height: calc(100vh - 8rem);
  }
}
.intro-workdetail h2 {
  padding: 3rem var(--sp-1);
}
@media (max-width: 900px) {
  .intro-workdetail h2 {
    padding: var(--sp-2);
  }
}

.description {
  padding-left: var(--sp-1);
  padding-bottom: 10rem;
}
@media (max-width: 900px) {
  .description {
    padding-left: var(--sp-2);
    padding-bottom: 6rem;
  }
}

.statement {
  padding-left: var(--sp-1);
  padding-bottom: var(--sp-18);
  max-width: 85%;
}
@media (max-width: 900px) {
  .statement {
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
    max-width: 100%;
  }
}

.img-full {
  padding-bottom: var(--sp-20);
}
.img-full figure {
  overflow: hidden;
  width: 100vw;
  height: calc(100vw * 0.56);
}
@media (max-width: 900px) {
  .img-full figure {
    height: calc(100vw * 1.4);
  }
}
.img-full .full-img {
  width: 100vw;
  height: calc(100vw * 0.56);
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 900px) {
  .img-full .full-img {
    height: 100%;
  }
}
.img-full figcaption {
  padding-left: var(--sp-1);
}
@media (max-width: 900px) {
  .img-full figcaption {
    padding-left: var(--sp-2);
  }
}

.img-collage {
  display: flex;
  padding-left: var(--sp-1);
  padding-bottom: var(--sp-20);
}
@media (max-width: 900px) {
  .img-collage {
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
    flex-direction: column;
  }
}
.img-collage .left {
  height: calc((100vw / 2) * 1.4 + var(--sp-1));
}
@media (max-width: 900px) {
  .img-collage .left {
    margin-bottom: var(--sp-2);
    height: calc((100vw / 1) * 1.4);
  }
}
.img-collage .right {
  height: calc((100vw / 2) * 1.4);
}
@media (max-width: 900px) {
  .img-collage .right {
    height: calc((100vw / 1) * 1.4);
  }
}
.img-collage .right figure {
  width: 100%;
  height: 50%;
}
.img-collage .right-first {
  margin-bottom: var(--sp-1);
}
@media (max-width: 900px) {
  .img-collage .right-first {
    margin-bottom: var(--sp-2);
    width: 100%;
  }
}
.img-collage .left,
.img-collage .right {
  width: calc(100vw / 2);
  margin-right: var(--sp-1);
}
@media (max-width: 900px) {
  .img-collage .left,
.img-collage .right {
    width: 100%;
  }
}

.img-third {
  padding-left: var(--sp-1);
  padding-bottom: var(--sp-20);
}
.img-third figure {
  width: 80vw;
  height: 40vw;
}
@media (max-width: 900px) {
  .img-third {
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
  }
  .img-third figure {
    width: 100%;
    height: 50vw;
  }
}

.img-quote {
  display: flex;
  padding-bottom: var(--sp-20);
  padding-left: var(--sp-1);
}
@media (max-width: 1020px) {
  .img-quote {
    flex-direction: column;
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
  }
}
.img-quote figure,
.img-quote div {
  width: calc(100vw / 2);
  margin-right: var(--sp-1);
  height: calc((100vw / 2) * 0.7);
}
@media (max-width: 1020px) {
  .img-quote figure,
.img-quote div {
    width: 100%;
    height: calc((100vw / 1) * 0.7);
  }
}
.img-quote div {
  padding-left: 6.2rem;
  transform: translateY(-20px);
  height: auto;
}
@media (max-width: 1020px) {
  .img-quote div {
    padding-left: 0;
    padding-bottom: 8rem;
  }
}
.img-quote div p,
.img-quote div span {
  color: var(--red);
  font-family: var(--f-tiempos-italic);
}
.img-quote div p {
  width: 85%;
}
@media (max-width: 1020px) {
  .img-quote div p {
    width: 100%;
  }
}
.img-quote div span {
  transform: translateX(-3rem);
}
@media (max-width: 1020px) {
  .img-quote div span {
    transform: translateX(-1.5rem);
  }
}
.img-quote span {
  position: absolute;
}

.img-copy {
  display: flex;
  padding-bottom: var(--sp-20);
}
.img-copy .img,
.img-copy .copy {
  width: calc(100% / 2);
}
@media (max-width: 1020px) {
  .img-copy .img,
.img-copy .copy {
    width: 95%;
  }
}
@media (max-width: 1020px) {
  .img-copy {
    flex-direction: column;
  }
}
.img-copy .copy {
  margin-left: var(--sp-1);
}
@media (max-width: 1020px) {
  .img-copy {
    flex-direction: column;
    padding-bottom: 8rem;
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
  }
}
.img-copy .copy > p:last-child {
  padding-bottom: 0;
}
.img-copy figure {
  margin: 0 auto;
  width: 30vw;
  height: 30vw;
}
@media (max-width: 1020px) {
  .img-copy figure {
    width: 100vw;
    height: calc(100vw * 1.5);
    margin-left: calc(var(--sp-2) * -1);
  }
}
.img-copy div {
  width: calc(100vw / 2);
  margin-right: var(--sp-1);
  height: auto;
}
@media (max-width: 1020px) {
  .img-copy div {
    width: 100%;
  }
}
@media (max-width: 1020px) {
  .img-copy figure {
    margin-bottom: 8rem;
  }
}
.img-copy p {
  width: 85%;
  padding-bottom: var(--sp-1);
}
@media (max-width: 1020px) {
  .img-copy p {
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
    width: 100%;
    padding-bottom: var(--sp-2);
  }
}
@media (max-width: 1020px) {
  .img-copy a {
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
    width: 100%;
  }
}
.img-copy .copy-content {
  width: 87%;
  padding-left: 0;
  padding-right: var(--sp-2);
}
@media (max-width: 1020px) {
  .img-copy .copy-content {
    width: 100%;
    padding-left: var(--sp-2);
  }
}
.img-copy .read-btn {
  text-align: left;
  padding-top: var(--sp-2);
  padding-left: var(--sp-2);
  font-family: var(--f-messina);
  text-decoration: underline;
  display: none;
  margin-left: var(--sp-1);
}
@media (max-width: 900px) {
  .img-copy .read-btn {
    display: block;
  }
}

.timeline {
  color: var(--black-fix);
  overflow-x: hidden;
  margin-bottom: 20rem;
}
@media (max-width: 900px) {
  .timeline {
    margin-bottom: 8rem;
  }
}
.timeline h2 {
  border-color: var(--black-fix);
}
.timeline .timeline-slider {
  padding-top: 11rem;
  padding-bottom: 14rem;
  width: auto;
}
@media (max-width: 900px) {
  .timeline .timeline-slider {
    width: 100vw;
    padding-top: 4rem;
    padding-bottom: 8rem;
    margin-bottom: 0;
  }
}
.timeline .timeline-slider .timeline-slide {
  will-change: transform;
  padding-right: 14rem;
  align-self: flex-end;
}
@media (max-width: 900px) {
  .timeline .timeline-slider .timeline-slide {
    padding-right: var(--sp-2);
  }
}
.timeline .timeline-slider .slide-1 figure,
.timeline .timeline-slider .slide-3 figure,
.timeline .timeline-slider .slide-5 figure,
.timeline .timeline-slider .slide-7 figure {
  height: 25rem;
}
.timeline .timeline-slider figure {
  width: 100%;
  height: 40rem;
}
@media (max-width: 900px) {
  .timeline .timeline-slider figure {
    height: 25rem;
  }
}
.timeline .timeline-slider .timeline-slide-image {
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden;
}
.timeline .timeline-slider .timeline-slide-image svg {
  width: auto;
  height: 100%;
}
.timeline .timeline-slider .timeline-slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .timeline .timeline-slider .timeline-slide:first-child {
    padding-left: var(--sp-2);
  }
}
@media (max-width: 900px) {
  .timeline .timeline-slider .timeline-slide:last-child {
    padding-right: 0;
  }
}

.img-compare {
  display: flex;
  padding-left: var(--sp-1);
  padding-right: var(--sp-1);
  padding-bottom: var(--sp-20);
}
@media (max-width: 900px) {
  .img-compare {
    padding-bottom: var(--sp-18);
    flex-direction: column;
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
  }
}
.img-compare .right,
.img-compare .left {
  width: calc(100vw / 2);
}
@media (max-width: 900px) {
  .img-compare .right,
.img-compare .left {
    width: 100%;
  }
}
.img-compare .left {
  padding-right: var(--sp-1);
}
@media (max-width: 900px) {
  .img-compare .left {
    padding-right: 0;
    padding-bottom: 8rem;
  }
}
.img-compare figure {
  width: 100%;
  height: calc((100vw / 2) * 0.7);
}
@media (max-width: 900px) {
  .img-compare figure {
    height: calc((100vw / 1) * 0.6);
  }
}
.img-compare .right {
  position: relative;
}
.img-compare .right .then {
  transition: opacity 0.6s ease-out;
}
.img-compare .right .then.hide {
  opacity: 0;
}
.img-compare .right .now {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease-out;
}
.img-compare .right .now.active {
  opacity: 1;
}

.footer-workdetail {
  background: var(--red);
  display: flex;
  padding-left: var(--sp-0);
  padding-right: var(--sp-0);
  padding-bottom: 26rem;
  color: var(--black-fix);
}
@media (max-width: 900px) {
  .footer-workdetail {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 6rem;
    flex-direction: column;
  }
}
.footer-workdetail h4 {
  font-family: var(--f-messina-semi);
  border-top: var(--brd);
  border-color: var(--black-fix);
  padding-top: var(--sp-0);
  padding-bottom: var(--sp-1);
}
@media (max-width: 900px) {
  .footer-workdetail h4 {
    padding-top: var(--sp-2);
  }
}
.footer-workdetail ul li {
  margin-left: 1rem;
  margin-top: -2px;
}
.footer-workdetail ul li::before {
  content: "• ";
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}
@media (max-width: 900px) {
  .footer-workdetail ul li {
    margin-left: 3rem;
    padding-bottom: 1rem;
    margin-top: 0;
  }
}
.footer-workdetail .press a {
  margin-top: -1px;
}
@media (max-width: 900px) {
  .footer-workdetail .press a {
    padding-bottom: 1rem;
    margin-top: 0;
  }
}
.footer-workdetail p {
  margin-top: -2px;
}
@media (max-width: 900px) {
  .footer-workdetail p {
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .footer-workdetail h4,
.footer-workdetail a,
.footer-workdetail p {
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
  }
}
.footer-workdetail .credits,
.footer-workdetail .related {
  padding-left: var(--sp-0);
  padding-right: var(--sp-0);
  padding-top: 10rem;
  width: calc(100vw / 2);
}
@media (max-width: 900px) {
  .footer-workdetail .credits,
.footer-workdetail .related {
    padding-top: 2rem;
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
}
.footer-workdetail .related figure {
  opacity: 0.8;
}
.footer-workdetail .related figure:hover {
  opacity: 0.5;
}
@media (max-width: 900px) {
  .footer-workdetail .related {
    order: 1;
  }
}
@media (max-width: 900px) {
  .footer-workdetail .credits {
    order: 2;
  }
}
.footer-workdetail .credits h4 {
  width: 75%;
}
@media (max-width: 900px) {
  .footer-workdetail .credits h4 {
    width: 100%;
  }
}
.footer-workdetail .credits div {
  padding-bottom: var(--sp-6);
}
.footer-workdetail .credits a {
  text-decoration: underline;
  display: block;
}
.footer-workdetail .related-work {
  display: flex;
}
@media (max-width: 900px) {
  .footer-workdetail .related-work {
    padding-right: var(--sp-2);
    padding-bottom: 8rem;
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  .footer-workdetail .related-work a {
    padding-right: 0;
  }
}
.footer-workdetail .related-work figure {
  margin-right: var(--sp-1);
  width: calc((100vw / 2) / 3 - var(--sp-2));
  height: calc(((100vw / 2) / 3 - var(--sp-1)) * 0.65);
}
@media (max-width: 900px) {
  .footer-workdetail .related-work figure {
    margin-right: 0;
    width: 70vw;
    height: calc(70vw * 0.65);
  }
}

.work-index-page {
  position: relative;
  padding-top: 26rem;
  padding-bottom: 26rem;
  border-bottom: var(--brd);
  overflow: hidden;
}
@media (max-width: 900px) {
  .work-index-page {
    padding-bottom: 10rem;
    padding-top: 20rem;
  }
}
.work-index-page h2 {
  padding-left: var(--sp-1);
  padding-bottom: var(--sp-6);
}
.work-index-page table {
  border-collapse: collapse;
  width: 100vw;
}
.work-index-page table tr {
  width: 500px;
}
.work-index-page table th,
.work-index-page table td {
  border-bottom: var(--brd);
  width: calc(100vw / 5);
  padding: var(--sp-1);
}
@media (max-width: 1300px) {
  .work-index-page table th,
.work-index-page table td {
    width: calc(100vw / 4);
  }
}
@media (max-width: 1024px) {
  .work-index-page table th,
.work-index-page table td {
    width: calc(100vw / 3);
  }
}
@media (max-width: 900px) {
  .work-index-page table th,
.work-index-page table td {
    width: calc(100vw / 2);
  }
}
@media (max-width: 500px) {
  .work-index-page table th,
.work-index-page table td {
    width: 100vw;
  }
}
@media (max-width: 900px) {
  .work-index-page table td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.work-index-page table a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.work-index-page table thead {
  text-align: left;
}
.work-index-page table thead th {
  cursor: pointer;
}
@media (max-width: 900px) {
  .work-index-page table thead th {
    width: 100vw;
    pointer-events: none;
    padding-bottom: 1.5rem;
  }
}
.work-index-page table thead span {
  display: inline-block;
  transform: translateY(-4px);
}
.work-index-page table tbody .link td {
  transition: 0.3s;
}
.work-index-page table tbody .link:hover td {
  opacity: 0.25;
}
@media (max-width: 900px) {
  .work-index-page table tbody tr td {
    width: 100vw;
  }
}
@media (max-width: 900px) {
  .work-index-page table tbody tr td.mobile {
    display: none;
  }
}
.work-index-page table tbody .overlay-img-row {
  padding: 0 !important;
  margin: 0;
  width: 0 !important;
  opacity: 1 !important;
}
.work-index-page table tbody .overlay-img {
  border-bottom: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .work-index-page table tbody .overlay-img {
    position: fixed;
    opacity: 0;
    left: 50%;
    top: 50%;
  }
}
.work-index-page table tbody .overlay-img figure {
  width: calc((100vw / 3 * 0.7));
  height: calc((100vw / 3 * 0.55));
}
@media (max-width: 1200px) {
  .work-index-page table tbody .overlay-img figure {
    width: calc((100vw / 2 * 0.7));
    height: calc((100vw / 2 * 0.55));
  }
}
@media (max-width: 900px) {
  .work-index-page table tbody .overlay-img figure {
    width: calc((100vw / 1.5 * 0.7));
    height: calc((100vw / 1.5 * 0.55));
  }
}
@media (max-width: 1300px) {
  .work-index-page table .year {
    display: none;
  }
}
@media (max-width: 1024px) {
  .work-index-page table .location {
    display: none;
  }
}
@media (max-width: 900px) {
  .work-index-page table .typology {
    display: none;
  }
}
@media (max-width: 500px) {
  .work-index-page table .size {
    display: none;
  }
}

.news-page {
  padding-top: 26rem;
  padding-bottom: var(--sp-6);
  border-bottom: var(--brd);
}
@media (max-width: 900px) {
  .news-page {
    padding-top: 20rem;
  }
}
.news-page h2 {
  padding-bottom: var(--sp-8);
  padding-left: var(--sp-1);
}

.header.unfixed {
  position: absolute;
  transform: translate3d(0px, 0px, 0px) !important;
  background: transparent !important;
}

.header._transparent {
  background: transparent !important;
}

.header._transparent svg path {
  fill: white !important;
}

.lazy-mobile {
  display: none;
}

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

@media (max-width: 900px) {
  .intro-workdetail .intro-img {
    height: auto !important;
    /* min-height: 300px; */
  }

  .intro-workdetail .intro-img img {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .lazy-mobile {
    display: block;
  }

  .lazy-desktop {
    display: none;
  }
}

/*# sourceMappingURL=/index.css.map */