@charset "UTF-8";
:root {
  --bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.work-category-list {
  color: var(--text-color);
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0;
  list-style-type: none;
  justify-content: center;
  max-width: var(--wp--style--global--content-size);
  padding-top: var(--wp--preset--spacing--narrow);
  margin-bottom: 0 !important;
}
.work-category-list li {
  text-transform: uppercase;
  padding-right: 0.75em;
  position: relative;
  text-decoration-line: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 4px !important;
  text-decoration-color: transparent !important;
  transition: all 0.3s ease;
  /*
        &::before{
            content:'';
            display:block;
            height:2px;
            width: calc(100% - 1.75em);
            position:absolute;
            bottom: 0;
            transform:scaleX(0);
            transition:transform 0.3s ease;
            transition-delay:0.15s;
            background:var(--text-color);
        }
        &:last-child::before{
            width: calc(100% - 0.75em);
        }
            */
}
.work-category-list li:not(:last-child)::after {
  content: "•";
  display: inline-block;
  padding-left: 0.75em;
  font-weight: 400 !important;
}
.work-category-list li.active {
  font-weight: 800;
}
.work-category-list li:hover, .work-category-list li:focus {
  cursor: pointer;
  text-decoration-color: var(--text-color) !important;
}
.work-category-list li:hover::before, .work-category-list li:focus::before {
  transform: scaleX(1);
}
.work-grid__wrapper {
  position: relative;
}
.work-grid__wrapper .work-grid__loader {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: "Climate Crisis";
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: none;
}
.work-grid__wrapper.loading .work-grid, .work-grid__wrapper.loading .work-grid-other {
  opacity: 0.1;
  filter: blur(2px);
}
.work-grid__wrapper.loading .work-grid__loader {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0em 0.5em;
}
.work-grid__wrapper.loading .work-grid__loader span {
  font-family: "Montserrat";
  font-weight: 800;
}
.work-grid__wrapper.loading .work-grid__loader .ad-lib__verb, .work-grid__wrapper.loading .work-grid__loader .ad-lib__noun {
  font-size: 0.5em;
}
.work-grid__wrapper.loading .work-grid__loader .ad-lib__adjective {
  font-family: "Climate Crisis";
  font-weight: 400;
  text-align: center;
  line-height: 0.9em;
}
.work-grid__wrapper.loading .work-grid__loader .dots {
  padding-top: 1em;
}
.work-grid__wrapper.loading .work-grid__loader .dot {
  width: 0.7em;
  height: 0.7em;
  display: inline-block;
  margin: 0 0.25em;
  background: var(--logo-fill);
  border-radius: 30px;
  transform: translateY(-1em);
  animation: bounceIn 0.6s ease-in infinite alternate;
  animation-delay: 0s;
}
.work-grid__wrapper.loading .work-grid__loader .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.work-grid__wrapper.loading .work-grid__loader .dot:nth-child(3) {
  animation-delay: 0.4s;
}
.work-item__gallery .gallery_video_embed {
  display: none;
}
.work-quote {
  display: flex;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  font-weight: 700;
}
.work-quote.bottom svg, .work-quote.bottom .before {
  display: none;
}
.work-quote.bottom .after {
  display: block;
}
.work-quote:not(.bottom) .after {
  display: none;
}
.work-quote svg {
  width: 4rem;
  height: auto;
}
.work-quote svg #arrow {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.work-quote svg #head {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}
.work-quote svg.loaded #arrow {
  animation: dash 1s linear forwards;
}
.work-quote svg.loaded #head {
  animation: dash 1s linear forwards;
  animation-delay: 0.25s;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.work-grid {
  color: var(--text-color);
  max-width: 90rem;
  margin: 1rem auto;
  transition: opacity 0.3s ease-in-out;
  gap: var(--wp--preset--spacing--wide);
  opacity: 1;
}
.work-grid.single .work-grid-item {
  align-items: center;
}
.work-grid.single .work-grid-item:has(.work-item__gallery img) {
  align-items: start !important;
}
.work-grid.single .work-grid-item:not(:has(.work-item__gallery img)) .work-grid-item__details {
  gap: 0 !important;
}
.work-grid.single .work-grid-item:not(:has(.work-item__gallery img)) .work-item__gallery {
  margin: 0 !important;
}
.work-grid.single .work-grid-item .work-item__gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--wp--preset--spacing--narrow);
}
.work-grid.single .work-grid-item .work-item__gallery a, .work-grid.single .work-grid-item .work-item__gallery button {
  width: 100%;
  max-width: calc((100% - (var(--wp--preset--spacing--narrow) * 2)) / 3);
  margin: 0 !important;
}
.work-grid.single .work-grid-item .work-item__gallery a img, .work-grid.single .work-grid-item .work-item__gallery button img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.7777777778;
  object-fit: cover;
}
.work-grid > * {
  opacity: 1 !important;
}
.work-grid .work-grid-item {
  display: grid;
  grid-template-columns: 9fr 7fr;
  grid-template-rows: auto;
  gap: var(--wp--preset--spacing--medium);
  width: 100%;
  align-items: center;
}
.work-grid .work-grid-item .work-grid-item__image {
  min-width: 50%;
  margin: 0 !important;
  view-transition-name: work-image;
}
.work-grid .work-grid-item .work-grid-item__image img {
  aspect-ratio: 1.768115942;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease-in-out;
}
.work-grid .work-grid-item .work-grid-item__details {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--narrow);
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__meta {
  text-transform: uppercase;
  font-weight: 600;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__meta .work-grid-item__meta-label {
  font-family: var(--wp--preset--font-family--display);
  font-size: 0.85rem;
  letter-spacing: 0.075em;
  font-weight: 400 !important;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__meta a {
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
  transition: text-decoration-color 0.3s ease-in-out;
  text-decoration-thickness: 4px !important;
  text-underline-offset: 2px;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__meta a:after {
  display: none !important;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__meta a:hover {
  text-decoration-color: var(--text-color) !important;
  color: var(--text-color) !important;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__callout {
  text-transform: uppercase;
  font-family: var(--wp--preset--font-family--display);
  font-size: 1.7rem;
  line-height: 1.2;
  text-wrap: balance;
  letter-spacing: 0.025em;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__callout a {
  display: inline-block;
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
  text-decoration-thickness: 1.5em !important;
  text-underline-offset: -1em;
  transition: all 0.3s ease-in-out;
  /*
                    &::before{
                        content:'→';
                        display:block;
                        color:transparent;
                        position:absolute;
                        right: -1.5em;
                        top: 50%;
                        transform: translate(-100%, -50%);
                        transition: color 0.3s ease-in-out, transform 0.3s var(--bounce);
                        width: fit-content;
                        transition-delay:0s;
                        
                    }
                        */
  /*
                    &:hover::before{
                        transform: translate(0, -50%);
                        color:var(--text-color);
                        transition-delay:0.2s;
                    }
                        */
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__callout a::after {
  background-color: color-mix(in srgb, var(--logo-fill) 20%, white 80%);
  height: 100% !important;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease !important;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__callout a:hover {
  color: var(--text-color) !important;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__callout a:hover::after {
  transform: scaleY(1);
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__link {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  width: fit-content;
  text-decoration: underline !important;
  text-decoration-color: transparent !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 2px !important;
  transition: all 0.3s ease;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__link::after {
  display: none !important;
  /*
                    content:'';
                    display:block;
                    height:2px;
                    width: 100%;
                    background:var(--logo-fill);
                    transform:scaleX(0);
                    transition: transform 0.3s ease-in-out;
                    */
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__link:hover {
  color: var(--text-color) !important;
  text-decoration-color: var(--text-color) !important;
}
.work-grid .work-grid-item .work-grid-item__details .work-grid-item__link:hover::after, .work-grid .work-grid-item .work-grid-item__details .work-grid-item__link:focus::after {
  transform: scaleX(1);
}
.work-item__back {
  text-transform: uppercase;
  font-weight: 500;
  display: block;
}
.work-item__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.9em;
  padding-bottom: 1em;
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--wp--preset--spacing--narrow);
}
.work-item__video-btn {
  padding: 0;
  border: 4px solid transparent;
  background: none;
}
.work-item__video-btn img {
  margin: 0;
  line-height: 1;
  display: block;
}
.work-item__video-btn.active {
  border: 4px solid var(--logo-fill);
}
.post-navigation {
  margin: 0;
  width: max-content;
}
.post-navigation .nav-links {
  display: block !important;
}
.post-navigation .nav-next {
  display: block !important;
  width: max-content;
  height: auto;
}
.post-navigation a {
  text-transform: uppercase;
  font-weight: 500;
}
.work-item__nav .work-item__back, .work-item__nav .post-navigation .nav-links a {
  position: relative;
  display: block;
  padding: 0.25em 0;
  line-height: 1.1;
  height: fit-content;
}
.work-item__nav .work-item__back::after, .work-item__nav .post-navigation .nav-links a::after {
  content: "" !important;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block !important;
  width: 100%;
  height: 2px !important;
  background: var(--logo-fill);
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 0.3s ease;
}
.work-item__nav .work-item__back:hover, .work-item__nav .work-item__back:focus, .work-item__nav .post-navigation .nav-links a:hover, .work-item__nav .post-navigation .nav-links a:focus {
  color: var(--text-color);
}
.work-item__nav .work-item__back:hover::after, .work-item__nav .work-item__back:focus::after, .work-item__nav .post-navigation .nav-links a:hover::after, .work-item__nav .post-navigation .nav-links a:focus::after {
  transform: scaleX(1);
}
.fancybox-navigation button {
  background: #fff;
  transition: transform 0.2s ease-in-out !important;
  transform: scale(1);
}
.fancybox-navigation button::before {
  background: transparent !important;
}
.fancybox-navigation button:hover, .fancybox-navigation button:focus {
  cursor: pointer;
  transform: scale(1.15);
}
.fancybox-navigation button svg path {
  fill: var(--logo-fill);
  stroke: var(--logo-fill);
}
.fancybox-toolbar .fancybox-button {
  background: var(--logo-fill) !important;
  color: #fff;
}
.fancybox-infobar, .project_link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--text-color) !important;
  mix-blend-mode: normal !important;
}
.work-item__footer + p {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--narrow);
  align-items: center;
}
.project_link {
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 600;
  display: flex;
  align-items: end;
  width: max-content;
  gap: calc(var(--wp--preset--spacing--narrow) / 3);
}
.project_link svg {
  width: 1rem;
  height: 1rem;
}
.post-navigation {
  position: relative !important;
  transform: none !important;
  top: 0 !important;
  left: 0 !important;
}
.work-grid-item__industries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--narrow);
}
 .work-grid-item__industry {
  display: block;
  width: fit-content;
  color: var(--background-color) !important;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
}
.work-grid-other {
  max-width: var(--wp--style--global--content-size);
  margin: var(--wp--preset--spacing--narrow) auto;
  padding-top: var(--wp--preset--spacing--normal);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.work-grid-other > article {
  max-width: calc((100% - 4rem) / 3);
}
.work-item__footer {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--narrow);
  text-transform: uppercase;
  font-weight: 800;
}
@media screen and (max-width: 900px) {
  .work-grid .work-grid-item {
    grid-template-columns: 1fr 1fr;
  }
  .work-grid .work-grid-item .work-grid-item__image img {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 700px) {
  .work-grid .work-grid-item {
    display: block !important;
  }
  .work-grid .work-grid-item .work-grid-item__image img {
    aspect-ratio: 1.768 !important;
  }
  .work-grid .work-grid-item .work-grid-item__details {
    padding: var(--wp--preset--spacing--narrow);
  }
}
@keyframes bounceIn {
  0% {
    transform: translateY(-1em);
  }
  100% {
    transform: translateY(0);
  }
}
