<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*=====
 Theme Name: Carlos Segura
 Author: weco.digital
 Author URI: https://weco.digital/
 Version: 2.0.2
 Description: 
 =======*/
/* FONTS */
@font-face {
  font-family: "Suisse";
  font-weight: 500;
  src: local("Suisse"), url("/wp-content/themes/carlossegura/assets/fonts/SuisseIntl-Medium-WebM.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Libre Baskerville";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local("Libre Baskerville"), url("/wp-content/themes/carlossegura/assets/fonts/Libre-Baskerville-Regular.woff2") format("woff2");
}
/* BASIC */
:root {
  --font-family-Suisse: "Suisse", sans-serif;
  --font-family-LBaskerville: "Libre Baskerville", serif;
  --font-size-xsmall: clamp(13px, 1.5vw, 15px);
  --font-size-small: clamp(14px, 2vw, 16px);
  --font-size-base: clamp(16px, 1.2vw, 18px);
  --font-size-medium: clamp(25px, 3vw, 40px);
  --font-size-large: clamp(40px, 5.1vw, 120px);
  --font-size-xl: clamp(100px, 10vw, 300px);
  --line-height-standard: 110%;
  --letter-spacing-small: calc(var(--font-size-small) * -0.03);
  --letter-spacing-standard: calc(var(--font-size-base) * -0.03);
  --letter-spacing-medium: calc(var(--font-size-medium) * -0.03);
  --letter-spacing-large: calc(var(--font-size-large) * -0.03);
  --letter-spacing-xl: calc(var(--font-size-xl) * -0.03);
  --black: #0d0d0d;
  --black-transparent: rgba(0, 0, 0, 0.85);
  --white: #f2f2f2;
  --white-transparent: rgba(255, 255, 255, 0.85);
  --gray-50: #dedede;
  --gray-100: #b3b3b3;
  --gray-200: #8c8c8c;
  --gray-300: #666;
  --radius-big: 20px;
  --radius-med: 15px;
  --radius-small: 10px;
  --gap-small: 10px;
  --gap-med: 16px;
  --gap-large: 20px;
  --gap-xl: 40px;
  --gap-xxl: 100px;
  --padding-standard: 14px 24px;
  --padding-mobile: 14px 20px;
  --blur-backdrop: blur(10px);
  --cubic-bezier: cubic-bezier(0.4, 0, 0.2, 1);
}
::-moz-selection {
  color: var(--white);
  background: var(--black);
}
::selection {
  color: var(--white);
  background: var(--black);
}
::-webkit-scrollbar {
  display: none;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--white) inset !important;
}
* {
  /* border: 1px solid blue; */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body, html {
  overflow-x: hidden;
}
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-family-Suisse);
  text-wrap: pretty;
  color: var(--black);
  background-color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: var(--line-height-standard);
  margin: 0;
  padding: 0;
}
@media (max-width: 650px) {
  body {
    font-size: 15px;
  }
}
.nojq {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: var(--font-family-LBaskerville);
}
h1 {
  font-size: 50px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 26px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}
b, strong {
  font-weight: 500;
}
img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  -webkit-transform: translateZ(0);
}
a {
  color: var(--black);
}
.word {
  display: inline-block;
  white-space: nowrap;
}
.space {
  display: inline-block;
}
nav {
  position: fixed;
  inset: 0 0 auto 0;
  margin: auto;
  width: fit-content;
  background-color: var(--white-transparent);
  backdrop-filter: var(--blur-backdrop);
  -webkit-backdrop-filter: var(--blur-backdrop);
  display: flex;
  flex-direction: row;
  gap: var(--gap-med);
  padding: var(--padding-standard);
  border-radius: 0 0 var(--radius-big) var(--radius-big);
  z-index: 9999;
}
nav #nav-underline {
  position: absolute;
  bottom: 10px;
  height: 2px;
  background-color: var(--gray-50);
  width: 0;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
}
nav .linkHomeMobile {
  display: none;
}
nav a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-standard);
  position: relative;
  transition: color 0.3s var(--cubic-bezier);
}
@media (min-width: 900px) {
  nav a:hover {
    color: var(--black);
  }
}
@media (max-width: 900px) {
  nav {
    inset: auto 0 0 0;
    border-radius: var(--radius-med) var(--radius-med) 0 0;
    gap: 12px;
    padding: var(--padding-mobile);
  }
  nav .linkHome {
    display: none;
  }
  nav .linkHomeMobile {
    display: block;
  }
}
.button {
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  outline: none;
  border: none;
  padding: 14px 22px;
  border-radius: var(--radius-small);
  background-color: var(--gray-50);
  text-decoration: none;
  transition: background-color 0.2s;
}
.button.black {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-family-LBaskerville);
  letter-spacing: -0.1px;
}
.button.big {
  padding: 28px 30px;
}
@media (min-width: 900px) {
  .button:hover {
    background-color: var(--gray-100);
  }
  .button.black:hover {
    background-color: var(--gray-300);
  }
}
/* COOKIES */
.cookiesPopup {
  position: fixed;
  inset: auto 1rem 2rem 1rem;
  margin: auto;
  width: fit-content;
  max-width: 470px;
  background-color: var(--white-transparent);
  backdrop-filter: var(--blur-backdrop);
  -webkit-backdrop-filter: var(--blur-backdrop);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--gap-med);
  padding: var(--padding-standard);
  border-radius: var(--radius-big);
  z-index: 99999;
  opacity: 0;
  transform: translateY(50%);
  transition: opacity 0.3s 3.5s, transform 0.3s 3.5s var(--cubic-bezier);
}
.cookiesPopup p {
  text-wrap: balance;
  line-height: var(--line-height-standard);
  font-size: var(--font-size-xsmall);
  font-family: var(--font-family-LBaskerville);
}
.cookiesPopup.visible {
  opacity: 1;
  transform: translateY(0%);
}
@media (max-width: 900px) {
  .cookiesPopup {
    inset: 2rem 1rem auto 1rem;
    transform: translateY(-50%);
  }
}
/* 404 */
.error404 {
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xxl);
  padding: 10rem 0;
}
@media (max-width: 900px) {
  .error404 {
    gap: var(--gap-large);
  }
}
.error404 h1 {
  font-size: var(--font-size-medium);
  letter-spacing: var(--letter-spacing-medium);
  line-height: var(--line-height-standard);
  text-align: center;
  text-wrap: balance;
  color: var(--white);
  mix-blend-mode: difference;
  white-space: normal;
}
.error404 h1 .word:first-of-type {
  font-size: var(--font-size-xl);
  letter-spacing: var(--letter-spacing-xl);
  line-height: var(--line-height-standard);
}
.error404 h2 {
  font-family: var(--font-family-Suisse);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 120%;
  color: var(--gray-300);
  text-align: center;
}
/* LOADING */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--gap-large);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader h2 {
  opacity: 0;
  font-size: var(--font-size-medium);
  letter-spacing: var(--letter-spacing-medium);
  color: var(--gray-300);
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* HOME */
.home .container {
  overflow: hidden;
  cursor: grab;
  opacity: 0;
  width: 100vw;
  height: 100vh;
}
.home .container .canvas {
  transform-origin: center;
  position: absolute;
  top: 50%;
  left: 50%;
}
.home .container .canvas .item {
  width: 120px;
  height: 180px;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.25s var(--cubic-bezier);
}
.home .container .canvas .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  transition: opacity 0.25s;
}
.home .container .canvas .item .postInfo {
  width: 100%;
  color: var(--black);
  padding: 5px 0;
  font-size: 14px;
  font-family: var(--font-family-LBaskerville);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--gap-small);
  transition: transform 0.25s var(--cubic-bezier);
}
.home .container .canvas .item .postInfo .item-id {
  color: var(--gray-300);
}
.home .container .canvas .item .postInfo .item-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 900px) {
  .home .container .canvas .item:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
  .home .container .canvas .item:hover .postInfo {
    transform: scale(0.9);
  }
  .home .container .canvas .item:hover img {
    opacity: 0.7;
  }
}
/* ARCHIVE */
.archive {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: var(--gap-small);
  padding: 0 10px;
}
.archive .progressIndicator {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: calc((100vw - 20px) / 28);
  width: 1px;
  height: 0%;
  background-color: var(--gray-200);
  mix-blend-mode: difference;
  transition: 0.5s ease-out;
}
.archive .archiveCarrusel {
  opacity: 0;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: fit-content;
  padding: calc(50svh - ((100vw - 20px) / 28 / 4 * 3) + 4px) 0;
}
.archive .archiveCarrusel .post {
  cursor: pointer;
  border: 1px solid var(--gray-100);
  transition: border 0.2s 0.9s;
}
.archive .archiveCarrusel .post img {
  aspect-ratio: 1.3333333333;
  opacity: 0;
  clip-path: inset(50% 50% 50% 50%);
  transform: scale(0.7);
  transition: opacity 0.2s, clip-path 0.3s var(--cubic-bezier), trasform 0.3s var(--cubic-bezier);
}
.archive .archiveCarrusel .post.loaded {
  border: 1px solid transparent;
}
.archive .archiveCarrusel .post.loaded img {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
  transform: scale(1);
}
.archive .archiveCarrusel .post.filtering {
  border: 1px solid var(--gray-100) !important;
}
.archive .archiveCarrusel .post.filtering img {
  opacity: 0 !important;
  clip-path: inset(50% 50% 50% 50%) !important;
  transform: scale(0.7) !important;
}
.archive .archiveCarrusel .post.active {
  opacity: 0.5;
  transform: scale(1.1);
}
@media (min-width: 900px) {
  .archive .archiveCarrusel .post:hover {
    opacity: 0.5;
  }
}
.archive .currentImageIndicator {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: calc((100vw - 40px) / 14 + 1px);
  width: calc((100vw + 10px) / 14 + 11px);
  aspect-ratio: 1.2903225806;
  border: 1px solid var(--gray-100);
  border-radius: 0.25vw;
  z-index: 10;
}
.archive .currentImageIndicator .info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 50%;
  left: 125%;
  transform: translate(0, -50%);
  text-align: left;
  width: calc((100vw - 190px) / 28 * 3.5);
  height: calc(1rem * 2 + 4px);
  font-family: var(--font-family-LBaskerville);
  font-size: var(--font-size-small);
}
.archive .currentImageIndicator .info #currentID {
  color: var(--gray-300);
}
.archive .currentImageIndicator .info #currentTitle {
  color: var(--black);
}
.archive .staticImageWrapper {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  align-items: center;
  gap: var(--gap-small);
  padding: 0 10px;
}
.archive .staticImageWrapper .staticImage {
  grid-column: 5 / 13;
  height: 100%;
  max-height: 80svh;
}
.archive .staticImageWrapper .staticImage img, .archive .staticImageWrapper .staticImage video {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1400px) {
  .archive {
    grid-template-columns: repeat(10, 1fr);
    gap: var(--gap-large);
    padding: 0 20px;
  }
  .archive .progressIndicator {
    grid-column: 1;
    left: calc((100vw - 190px) / 20 + 10px);
  }
  .archive .archiveCarrusel {
    grid-column: 2;
    padding: calc(50svh - (100vw - 190px) / 20 / 4 * 3 + 1px) 0;
  }
  .archive .archiveCarrusel .post img {
    aspect-ratio: 1.3333333333;
  }
  .archive .currentImageIndicator {
    left: calc((100vw - 235px) / 10 + 30.5px);
    width: calc((100vw - 100px) / 20 * 2 + 10px);
    aspect-ratio: 1.3333333333;
    border-radius: 0.5vw;
  }
  .archive .currentImageIndicator .info {
    width: calc((100vw - 190px) / 28 * 4.5);
  }
  .archive .staticImageWrapper {
    grid-template-columns: repeat(10, 1fr);
    gap: var(--gap-large);
    padding: 0 20px;
  }
  .archive .staticImageWrapper .staticImage {
    grid-column: 5 / 11;
  }
}
@media (max-width: 900px) {
  .archive {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-small);
    padding: 1rem 0;
    height: 100svh;
  }
  .archive .progressIndicator {
    position: static;
    inset: 1rem auto auto 0;
    order: 1;
    left: 0;
    align-self: flex-start;
    height: 1px;
  }
  .archive .archiveFilter {
    position: static;
    order: 2;
    inset: 0;
    padding: 12px 18px;
    margin: 0;
    border-radius: var(--radius-small);
  }
  .archive .archiveFilter .filter {
    font-size: 16px;
  }
  .archive .staticImageWrapper {
    order: 3;
    position: static;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 10px 35px;
  }
  .archive .staticImageWrapper .staticImage {
    grid-column: 1;
    height: 55svh;
    max-height: 400px;
  }
  .archive .archiveCarrusel {
    position: static;
    order: 4;
    flex-direction: row;
    grid-column: 1 / 7;
    padding: 0 calc(50vw - 33px) 80px;
    align-items: center;
    gap: var(--gap-small);
    overflow-x: scroll;
    width: 100vw;
  }
  .archive .archiveCarrusel .post {
    height: 50px;
    aspect-ratio: 1.3333333333;
  }
  .archive .archiveCarrusel .post img {
    aspect-ratio: 1.3333333333;
  }
  .archive .currentImageIndicator {
    order: 5;
    left: 50vw;
    transform: translate(-50%, 50%);
    width: calc(50px / 3 * 4 + 16px);
    top: auto;
    bottom: calc(1rem + 104px);
    aspect-ratio: 1.3793103448;
  }
  .archive .currentImageIndicator .info {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 20px);
    height: auto;
    gap: 90px;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}
.archiveFilter {
  opacity: 0;
  position: fixed;
  inset: auto 0 0 0;
  margin: auto;
  width: fit-content;
  background-color: var(--white-transparent);
  backdrop-filter: var(--blur-backdrop);
  -webkit-backdrop-filter: var(--blur-backdrop);
  display: flex;
  flex-direction: row;
  gap: var(--gap-med);
  padding: var(--padding-standard);
  border-radius: var(--radius-big) var(--radius-big) 0 0;
  z-index: 9999;
}
.archiveFilter .filter-underline {
  position: absolute;
  bottom: 10px;
  height: 2px;
  background-color: var(--gray-50);
  width: 0;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}
.archiveFilter .filter {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 18px;
  position: relative;
  transition: color 0.3s var(--cubic-bezier);
  cursor: pointer;
}
.archiveFilter .filter span {
  display: inline-block;
  font-family: var(--font-family-LBaskerville);
  font-size: 12px;
  transform: translateY(-8px);
}
.archiveFilter .filter.active {
  color: var(--black);
}
@media (max-width: 900px) {
  .archiveFilter {
    inset: 0 0 auto 0;
    border-radius: 0 0 var(--radius-med) var(--radius-med);
    gap: 12px;
    padding: var(--padding-mobile);
  }
  .archiveFilter .filter {
    font-size: 17px;
  }
}
/* COMMISSIONED */
.commissioned {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  padding: 0 10px;
}
.commissioned .staticImageWrapper {
  position: fixed;
  inset: 0;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2vw;
  padding: 0 10px;
  z-index: -1;
}
.commissioned .staticImageWrapper .staticImage {
  clip-path: inset(50% 50% 50% 50%);
  height: fit-content;
  grid-column: 1 / 2;
  aspect-ratio: 0.75;
  position: absolute;
}
.commissioned .imageSpacer {
  grid-column: 1 / 2;
}
.commissioned .commissionedList {
  grid-column: 2 / 4;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: calc(50svh - var(--font-size-xl) + 10px) 0;
}
.commissioned .commissionedList .post {
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-large);
  padding: 5vw 5vw 5vw 0;
  text-decoration: none;
  width: fit-content;
  color: var(--gray-100);
  transition: color 0.2s linear;
}
.commissioned .commissionedList .post:hover ~ .post {
  color: var(--gray-100);
}
.commissioned .commissionedList .post.active, .commissioned .commissionedList .post:hover {
  color: var(--black);
}
.commissioned .commissionedList .post img {
  display: none;
}
.commissioned .commissionedList .post h2 {
  font-size: var(--font-size-large);
  letter-spacing: var(--letter-spacing-large);
  line-height: var(--line-height-standard);
}
.commissioned .commissionedList .post .externalInfo {
  display: flex;
  flex-direction: row;
  gap: var(--gap-large);
  justify-content: space-between;
}
@media (max-width: 900px) {
  .commissioned {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--gap-xl);
    padding: 0 10px;
  }
  .commissioned .staticImageWrapper, .commissioned .imageSpacer {
    display: none;
  }
  .commissioned .commissionedList {
    grid-column: 1;
    padding: 80px 0 125px;
    align-items: center;
    gap: 0;
  }
  .commissioned .commissionedList .post {
    padding: 50px 20px;
    color: var(--black);
  }
  .commissioned .commissionedList .post img {
    display: block;
    width: 30vw;
    margin: auto;
  }
  .commissioned .commissionedList .post h2 {
    text-align: center;
  }
}
.singleCommissioned .progressIndicator {
  position: fixed;
  inset: auto auto 1.5rem 0;
  transform-origin: left;
  margin: auto;
  width: 0%;
  height: 2px;
  background-color: var(--gray-200);
  z-index: 9999;
  mix-blend-mode: difference;
}
@media (max-width: 900px) {
  .singleCommissioned .progressIndicator {
    inset: 1rem auto auto 0;
  }
}
.singleCommissioned .floatingTitle {
  position: fixed;
  inset: auto 0 3rem 0;
  margin: auto;
  width: fit-content;
  padding: 13px;
  opacity: 0;
  z-index: 9999;
  cursor: pointer;
}
.singleCommissioned .floatingTitle:not(a) {
  padding: 13px;
  border-radius: var(--radius-small);
  font-family: var(--font-family-LBaskerville);
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-standard);
  text-align: center;
  background-color: var(--white-transparent);
  backdrop-filter: var(--blur-backdrop);
  -webkit-backdrop-filter: var(--blur-backdrop);
}
.singleCommissioned .floatingTitle:has(a) {
  padding: 0;
  border-radius: 0;
  font-size: var(--font-size-base);
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.singleCommissioned .floatingTitle:has(a) a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--gap-small);
}
.singleCommissioned .floatingTitle:has(a) a .floatingTitle-text {
  padding: 13px;
  border-radius: var(--radius-small);
  font-family: var(--font-family-LBaskerville);
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-standard);
  text-align: center;
  color: var(--white);
  background-color: var(--black);
}
.singleCommissioned .floatingTitle:has(a) a .floatingTitle-text .word {
  padding: 0 !important;
  border-radius: 0;
  font-size: var(--font-size-base);
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.singleCommissioned .floatingTitle svg {
  height: 47px;
  width: 47px;
  padding: 6px;
  border-radius: 100%;
  background-color: var(--black);
}
.singleCommissioned .floatingTitle svg circle, .singleCommissioned .floatingTitle svg path {
  stroke: var(--white);
}
@media (max-width: 900px) {
  .singleCommissioned .floatingTitle {
    padding: 12px;
    inset: 2rem 0 auto 0;
  }
  .singleCommissioned .floatingTitle:has(a) {
    font-size: var(--font-size-small);
    letter-spacing: var(--letter-spacing-small);
  }
  .singleCommissioned .floatingTitle:not(a) {
    padding: 10px 12px;
    font-size: var(--font-size-small);
    letter-spacing: var(--letter-spacing-small);
  }
  .singleCommissioned .floatingTitle svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }
}
.singleCommissioned .galleryAnimation {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-100);
  gap: var(--gap-large);
  padding: 0 10px;
  z-index: -1;
}
.singleCommissioned header {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding: 10rem 1rem 8rem;
}
@media (max-width: 900px) {
  .singleCommissioned header {
    gap: var(--gap-xl);
    padding: 6rem 10px;
  }
}
.singleCommissioned header .mainBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xl);
}
.singleCommissioned header .mainBox img {
  width: 25svh;
  max-width: 300px;
  clip-path: inset(50% 50% 50% 50%);
}
@media (max-width: 900px) {
  .singleCommissioned header .mainBox img {
    width: 20svh;
    max-width: 200px;
  }
}
.singleCommissioned header .mainBox h1 {
  opacity: 0;
  font-size: var(--font-size-large);
  letter-spacing: var(--letter-spacing-large);
  text-align: center;
  line-height: var(--line-height-standard);
}
.singleCommissioned header .mainBox .singleColumn, .singleCommissioned header .mainBox .dualColumn {
  color: var(--gray-300);
}
.singleCommissioned header .mainBox .singleColumn {
  opacity: 0;
  max-width: 600px;
  text-align: center;
}
.singleCommissioned header .mainBox .dualColumn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-small);
  max-width: 1000px;
}
.singleCommissioned header .mainBox .dualColumn .column {
  opacity: 0;
}
@media (max-width: 650px) {
  .singleCommissioned header .mainBox .dualColumn {
    grid-template-columns: 1fr;
  }
}
.singleCommissioned header .technicalInfo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 10px;
}
.singleCommissioned header .technicalInfo .category {
  opacity: 0;
  padding: 2px 0;
  text-align: right;
  color: var(--gray-300);
}
.singleCommissioned header .technicalInfo .partner {
  opacity: 0;
  padding: 2px 0;
}
.gallery {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-bottom: calc(10svh + 40px);
}
@media (max-width: 900px) {
  .gallery {
    gap: 70px 0;
  }
}
.gallery .two_hb_vs, .gallery .two_vm_vm, .gallery .three_vm_vs_hm, .gallery .one_big, .gallery .two_vs_vm, .gallery .two_hm_vm {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: var(--gap-small);
  height: fit-content;
  padding: 0 10px;
}
.gallery .two_hb_vs img, .gallery .two_vm_vm img, .gallery .three_vm_vs_hm img, .gallery .one_big img, .gallery .two_vs_vm img, .gallery .two_hm_vm img {
  object-fit: contain;
}
@media (max-width: 900px) {
  .gallery .two_hb_vs, .gallery .two_vm_vm, .gallery .three_vm_vs_hm, .gallery .one_big, .gallery .two_vs_vm, .gallery .two_hm_vm {
    grid-template-columns: repeat(6, 1fr);
    gap: 70px 10px;
    padding: 0 10px;
  }
}
.gallery .two_hb_vs {
  align-items: center;
}
.gallery .two_hb_vs .horizontal_big {
  grid-column: 1 / 9;
}
.gallery .two_hb_vs .vertical_small {
  grid-column: 11 / 14;
}
@media (max-width: 900px) {
  .gallery .two_hb_vs .horizontal_big {
    grid-column: 1 / 6;
  }
  .gallery .two_hb_vs .vertical_small {
    grid-column: 3 / 6;
  }
}
.gallery .two_vm_vm .vertical_medium_left {
  grid-column: 3 / 7;
}
.gallery .two_vm_vm .vertical_medium_right {
  grid-column: 9 / 13;
  margin-top: calc(5svh + 40px);
}
@media (max-width: 900px) {
  .gallery .two_vm_vm .vertical_medium_left {
    grid-column: 1 / 5;
  }
  .gallery .two_vm_vm .vertical_medium_right {
    grid-column: 3 / 7;
    margin-top: 0;
  }
}
.gallery .three_vm_vs_hm .vertical_medium {
  grid-column: 2 / 6;
  margin-bottom: calc(10svh + 80px);
}
.gallery .three_vm_vs_hm .vertical_small {
  grid-column: 6 / 9;
  align-self: end;
}
.gallery .three_vm_vs_hm .horizontal_medium {
  grid-column: 10 / 15;
  margin-top: calc(5svh + 40px);
}
@media (max-width: 900px) {
  .gallery .three_vm_vs_hm .vertical_medium {
    grid-column: 1 / 5;
    margin-bottom: 0;
  }
  .gallery .three_vm_vs_hm .vertical_small {
    grid-column: 2 / 5;
  }
  .gallery .three_vm_vs_hm .horizontal_medium {
    grid-column: 2 / 7;
    margin-top: 0;
  }
}
.gallery .one_big .big {
  grid-column: 3 / 13;
  max-height: 80svh;
}
@media (max-width: 900px) {
  .gallery .one_big .big {
    grid-column: 1 / 7;
  }
}
.gallery .two_vs_vm .vertical_small {
  grid-column: 3 / 6;
}
.gallery .two_vs_vm .vertical_medium {
  grid-column: 8 / 12;
  margin-top: calc(5svh + 40px);
}
@media (max-width: 900px) {
  .gallery .two_vs_vm .vertical_small {
    grid-column: 2 / 5;
  }
  .gallery .two_vs_vm .vertical_medium {
    grid-column: 2 / 7;
    margin-top: 0;
  }
}
.gallery .two_hm_vm .horizontal_medium {
  grid-column: 1 / 8;
  align-self: end;
}
.gallery .two_hm_vm .vertical_medium {
  grid-column: 9 / 14;
  margin-bottom: calc(5svh + 40px);
}
@media (max-width: 900px) {
  .gallery .two_hm_vm .horizontal_medium {
    grid-column: 1 / 6;
  }
  .gallery .two_hm_vm .vertical_medium {
    grid-column: 2 / 6;
    margin-bottom: 0;
  }
}
.about header {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 10rem 1rem 8rem;
}
.about header .mainInfoWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  text-align: center;
}
.about header .mainInfoWrapper img {
  clip-path: inset(50% 50% 50% 50%);
  width: 20svh;
  max-width: 200px;
}
.about header .mainInfoWrapper h1 {
  opacity: 0;
  font-size: var(--font-size-large);
  letter-spacing: var(--letter-spacing-large);
  line-height: var(--line-height-standard);
  text-wrap: balance;
  max-width: 32ch;
}
.about header .mainInfoWrapper p {
  opacity: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 120%;
  color: var(--gray-300);
  text-wrap: balance;
  max-width: 1000px;
}
.about header .linksWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.about header .linksWrapper a {
  opacity: 0;
  padding: 16px 22px;
  border-radius: var(--radius-small);
  background-color: var(--gray-50);
  text-decoration: none;
  transition: background-color 0.2s;
}
.about header .linksWrapper a.black {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-family-LBaskerville);
  letter-spacing: -0.3px;
}
@media (min-width: 900px) {
  .about header .linksWrapper a:hover {
    background-color: var(--gray-100);
  }
  .about header .linksWrapper a.black:hover {
    background-color: var(--gray-300);
  }
}
@media (max-width: 900px) {
  .about header {
    min-height: auto;
    gap: var(--gap-xl);
    padding: 6rem 10px;
    justify-content: flex-start;
  }
  .about header .mainInfoWrapper {
    gap: var(--gap-xl);
  }
  .about header .mainInfoWrapper img {
    width: 20svh;
    max-width: 200px;
  }
  .about header .linksWrapper {
    flex-direction: column;
  }
  .about header .linksWrapper a {
    padding: 16px 18px;
  }
}
.about .publications {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  align-items: center;
  padding: 80px 10px;
  gap: var(--gap-small);
}
.about .publications .publicationsList {
  grid-column: 3 / 7;
  display: flex;
  flex-direction: column;
  position: relative;
}
.about .publications .publicationsList .hover-pill {
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  background: var(--black);
  border-radius: var(--radius-med);
  pointer-events: none;
  opacity: 0;
  transform: translate(0, 0) scale(0.7);
  z-index: -1;
  will-change: transform, opacity, width, height;
}
.about .publications .publicationsList span {
  opacity: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 10px;
}
.about .publications .publicationsList span.spacer {
  border-bottom: none;
  padding-bottom: 0;
  height: 20px;
}
.about .publications .publicationsList .post {
  opacity: 0;
  font-family: var(--font-family-LBaskerville);
  font-size: clamp(1.3rem, 1.75vw, 2rem);
  letter-spacing: calc(clamp(1.3rem, 1.75vw, 2rem) * -0.03);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-small);
  border-radius: var(--radius-small);
  padding: 4px 22px 4px 0;
  color: var(--black);
  transition: padding 0.3s var(--cubic-bezier), background-color 0.3s ease-out, color 0.05s ease-out;
}
.about .publications .publicationsList .post svg {
  width: 18px;
  opacity: 0;
  transform: translate(-50%, 50%) scale(0.7);
  transform-origin: center;
  transition: opacity 0.2s, transform 0.3s var(--cubic-bezier);
}
@media (min-width: 1200px) {
  .about .publications .publicationsList .post:hover {
    padding: 4px 22px;
    color: var(--white);
  }
  .about .publications .publicationsList .post:hover svg {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.about .publications .publicationImageWrapper {
  grid-column: 9 / 14;
  aspect-ratio: 0.75;
}
.about .publications .publicationImageWrapper img {
  clip-path: inset(50% 50% 50% 50%);
}
@media (max-width: 1200px) {
  .about .publications {
    grid-template-columns: repeat(10, 1fr);
    gap: var(--gap-large);
  }
  .about .publications .publicationsList {
    gap: 5px;
    grid-column: 1 / 6;
  }
  .about .publications .publicationsList a {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    width: fit-content;
  }
  .about .publications .publicationsList a svg {
    width: 10px;
    height: 10px;
  }
  .about .publications .publicationsList a svg path {
    stroke: var(--black);
  }
  .about .publications .publicationImageWrapper {
    grid-column: 6 / 11;
  }
}
@media (max-width: 750px) {
  .about .publications {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap-large);
    padding: 0 10px 60px;
  }
  .about .publications .publicationsList {
    order: 2;
    grid-column: 1 / 7;
  }
  .about .publications .publicationImageWrapper {
    order: 1;
    grid-column: 1 / 7;
    aspect-ratio: 1.3333333333;
  }
}
.about .contact {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  align-items: center;
  gap: var(--gap-small);
  min-height: 125svh;
  padding: 0 10px;
  position: relative;
}
.about .contact .contactForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xl);
  grid-column: 5 / 11;
  position: relative;
  height: fit-content;
  z-index: 1;
  justify-self: center;
  align-self: center;
  width: 100%;
}
.about .contact .contactForm h2 {
  font-size: var(--font-size-medium);
  letter-spacing: var(--letter-spacing-medium);
  line-height: var(--line-height-standard);
  text-align: center;
  width: 80%;
  max-width: 500px;
  text-wrap: balance;
}
.about .contact .contactForm .screen-reader-response {
  display: none;
}
.about .contact .contactForm form {
  display: flex;
  flex-direction: column;
  gap: var(--gap-large);
  width: 100%;
}
.about .contact .contactForm .dualColumn p, .about .contact .contactForm p {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.about .contact .contactForm .dualColumn p label, .about .contact .contactForm p label {
  position: relative;
  display: block;
  width: 100%;
  cursor: text;
}
.about .contact .contactForm .dualColumn p label span:not(.wpcf7-form-control-wrap), .about .contact .contactForm p label span:not(.wpcf7-form-control-wrap) {
  position: absolute;
  inset: 0 0 auto 0;
  margin: auto;
  transition: transform 0.3s var(--cubic-bezier);
  transform-origin: left top;
}
.about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap, .about .contact .contactForm p label .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap input, .about .contact .contactForm p label .wpcf7-form-control-wrap input, .about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap textarea, .about .contact .contactForm p label .wpcf7-form-control-wrap textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--gray-100);
  background-color: transparent;
  height: 30px;
  font-family: var(--font-family-Suisse);
  font-size: clamp(1rem, 1.25vw, 1.5rem);
  letter-spacing: calc(clamp(1rem, 1.25vw, 1.5rem) * -0.03);
  line-height: var(--line-height-standard);
}
.about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap input:focus, .about .contact .contactForm p label .wpcf7-form-control-wrap input:focus, .about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap textarea:focus, .about .contact .contactForm p label .wpcf7-form-control-wrap textarea:focus {
  outline: none;
}
.about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap:focus-within + span:not(.wpcf7-form-control-wrap), .about .contact .contactForm p label .wpcf7-form-control-wrap:focus-within + span:not(.wpcf7-form-control-wrap), .about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap:has(input:not(:placeholder-shown)) + span:not(.wpcf7-form-control-wrap), .about .contact .contactForm p label .wpcf7-form-control-wrap:has(input:not(:placeholder-shown)) + span:not(.wpcf7-form-control-wrap), .about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap:has(textarea:not(:placeholder-shown)) + span:not(.wpcf7-form-control-wrap), .about .contact .contactForm p label .wpcf7-form-control-wrap:has(textarea:not(:placeholder-shown)) + span:not(.wpcf7-form-control-wrap) {
  transform: translate(0, -70%) scale(0.7);
}
.about .contact .contactForm .dualColumn p label .wpcf7-form-control-wrap .wpcf7-not-valid-tip, .about .contact .contactForm p label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  inset: 0 0 0 auto;
  color: var(--gray-200);
}
.about .contact .contactForm .dualColumn p .wpcf7-submit, .about .contact .contactForm p .wpcf7-submit {
  font-family: var(--font-family-LBaskerville);
  margin-left: auto;
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 22px;
  border-radius: var(--radius-small);
  cursor: pointer;
}
.about .contact .contactForm .dualColumn p {
  gap: 5px;
}
@media (max-width: 1100px) {
  .about .contact .contactForm {
    grid-column: 2 / 6;
  }
}
@media (max-width: 550px) {
  .about .contact .contactForm {
    grid-column: 1 / 7;
  }
}
.about .contact #sb_instagram {
  position: absolute;
  inset: 0;
  margin: auto;
}
.about .contact #sb_instagram #sbi_images {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  align-items: center;
  gap: var(--gap-small);
  padding: 0 10px;
  height: 100%;
}
.about .contact #sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo .sbi-screenreader, .about .contact #sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo svg {
  display: none;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(1) {
  grid-column: 2;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(2) {
  grid-column: 6;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(3) {
  grid-column: 9;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(4) {
  grid-column: 14;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(5) {
  grid-column: 3;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(6) {
  grid-column: 12;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(7) {
  grid-column: 2;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(8) {
  grid-column: 8;
}
.about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(9) {
  grid-column: 13;
}
@media (max-width: 1100px) {
  .about .contact {
    grid-template-columns: repeat(6, 1fr);
  }
  .about .contact #sb_instagram #sbi_images {
    grid-template-columns: repeat(6, 1fr);
  }
  .about .contact #sb_instagram #sbi_images .sbi_item {
    max-width: 150px;
  }
  .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(1) {
    grid-column: 1;
    transform: translateY(-8svh);
  }
  .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(2) {
    grid-column: 4;
    transform: translateY(-14svh);
  }
  .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(4) {
    grid-column: 6;
    transform: translateY(-6svh);
  }
  .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(7) {
    grid-column: 1;
    transform: translateY(4svh);
  }
  .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(8) {
    grid-column: 3;
    transform: translateY(10svh);
  }
  .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(9) {
    grid-column: 6;
    transform: translateY(8svh);
  }
  .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(3), .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(5), .about .contact #sb_instagram #sbi_images .sbi_item:nth-of-type(6) {
    display: none;
  }
}
footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap-large);
  padding: 2rem 10px;
}
footer a {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-decoration: none;
}
footer a span {
  font-size: 12px;
}
footer a svg {
  width: clamp(8px, 2vw, 12px);
  transition: transform 0.3s var(--cubic-bezier);
}
@media (min-width: 900px) {
  footer a:hover svg {
    transform: translate(25%, -25%);
  }
}
@media (max-width: 900px) {
  footer {
    flex-direction: column;
    gap: var(--gap-small);
    padding-bottom: 5rem;
  }
}
.legal {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xxl);
  padding: 10rem 1rem 8rem;
}
.legal .legalBlock {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: var(--gap-small);
  padding: 0 10px;
  width: 100%;
  height: fit-content;
}
.legal .legalBlock .title {
  grid-column: 2 / 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: fit-content;
}
.legal .legalBlock .title h2 {
  font-size: var(--font-size-medium);
  letter-spacing: var(--letter-spacing-medium);
  line-height: var(--line-height-standard);
}
.legal .legalBlock .title h3 {
  font-size: var(--font-size-base);
  letter-spacing: var(--letter-spacing-standard);
  line-height: var(--line-height-standard);
}
.legal .legalBlock .content {
  grid-column: 5 / 11;
}
.legal .legalBlock .content p, .legal .legalBlock .content ul {
  margin-bottom: 2rem;
}
.legal .legalBlock .content ul {
  padding-left: 1rem;
}
.legal .legalBlock .content h3 {
  margin: 0 0 2rem;
  line-height: var(--line-height-standard);
}
.legal .legalBlock .content h3:first-of-type {
  margin-top: 0;
}
@media (max-width: 900px) {
  .legal {
    padding: 6rem 10px;
    gap: var(--gap-xl);
  }
  .legal .legalBlock {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--gap-large);
  }
  .legal .legalBlock .title, .legal .legalBlock .content {
    grid-column: 1 / 7;
    max-width: 400px;
    margin: auto;
    width: 100%;
  }
}
.placeholder {
  height: 100svh;
}
</pre></body></html>