:root {
  --pad: 1rem;
  --white: #FAFAFA;
  --black: #111111;
}

/* GLOBAL
------------------------------ */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}:focus{outline:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-results-button,input[type=search]::-webkit-search-results-decoration{-webkit-appearance:none;-moz-appearance:none}input[type=search]{-webkit-appearance:none;-moz-appearance:none;-webkit-box-sizing:content-box;box-sizing:content-box}textarea{overflow:auto;vertical-align:top;resize:vertical}audio,canvas,video{display:inline-block;max-width:100%}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}a:focus{outline:thin dotted}a:active,a:hover{outline:0}img{border:0;-ms-interpolation-mode:bicubic}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}button,html,input,select,textarea{color:#090909}::-moz-selection{color:#fff;background:rgba(250,250,250,.4);text-shadow:none}::selection{color:#fff;background:rgba(250,250,250,.4);text-shadow:none}img{vertical-align:middle}fieldset{border:0;margin:0;padding:0}textarea{resize:vertical}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent!important;
}

a, div, img{
    outline: 0!important;
}

@font-face {
    font-family: 'Medium';
    src: url('../font/HelveticaNeueLTCom-Md.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Regular';
    src: url('../font/HelveticaNeueRoman.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, html{
    color: var(--black);
    height: 100%;
    background: var(--white);
    font-family: 'Regular', Arial;
    line-height: 1;
    font-size: 1rem;
    letter-spacing: -0.02rem;
}

html{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}


::-moz-selection { color: var(--white);  background: var(--black); }
::selection      { color: var(--white);  background: var(--black); }

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.medium, strong {
    font-family: 'Medium', Arial;
}

.relative {
    position: relative;
}

.bottom {
    bottom: 0;
}

.left {
    left: 0;
}

.right{
    right: 0;
}

.top{
    top: 0;
}

.pad-b-0{
    padding-bottom: calc(var(--pad) / 2);
}

.pad-t-0{
    padding-top: calc(var(--pad) / 2);
}

.pad-r-0{
    padding-right: calc(var(--pad) / 2);
}

.pad-l-0{
    padding-left: calc(var(--pad) / 2);
}

.pad-0{
    padding: calc(var(--pad) / 2);
}

.pad-b{
    padding-bottom: var(--pad);
}

.pad-t{
    padding-top: var(--pad);
}

.pad-r{
    padding-right: var(--pad);
}

.pad-l{
    padding-left: var(--pad);
}

.pad{
    padding: var(--pad);
}

.pad-b-1{
    padding-bottom: calc(3.5 * var(--pad));
}

.pad-t-1{
    padding-top: calc(3.5 * var(--pad));
}

.pad-r-1{
    padding-right:calc(3.5 * var(--pad));
}

.pad-l-1{
    padding-left: calc(3.5 * var(--pad));
}

.pad-1{
    padding: calc(3.5 * var(--pad));
}

.pad-t-2 {
    padding-top: 4rem;
}

.mag-auto{
    margin: 0 auto;
}

.block{
    display: block;
}

.w-100 {
    width: 100%;
}

.h-30 {
    height: 30%;
}

.h-40 { 
    height: 40%;
}

.h-50 {
    height: 50%;
}

.h-80 {
    height: 80%;
}

.h-80-vh {
    height: 80vh;
}

.h-100{
    height: 100%;
}

.h-100-vh{
    height: 100dvh;
}

.min-100-vh{
    min-height: 100dvh;
}

.max-100-vh {
    max-height: 100dvh;
}

a:link {
    text-decoration: none;
    color: inherit;
}

a:visited {
    color: inherit;
}

.flex, .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.end-justify{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.evenly{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.align-center{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.column-r{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

.between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.between-m{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.around{
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.jus-center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.z--1 {
    z-index: -1;
}

.z-9{
    z-index: 9;
}

.z-99{
    z-index:  99;
}

.z-999{
    z-index: 999;
}

.z-9999{
    z-index: 9999;
}

.z-1{
    z-index: 1;
}

.z-2{
    z-index: 2;
}

.w-20 {
    width: 20%;
}

.w-25{
    width: 25%;
}

.w-33{
    width: 33.33%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-66 {
    width: 66%;
}

.w-75 {
    width: 75%;
}

.w-80 {
    width: 80%;
}

.hide-scroll{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.mobile, .mobile-flex{
    display: none;
}

.wrap{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.center{
    text-align: center;
}

.justify{
    text-align: justify;
}

.t-right{
    text-align: right;
}

.ab-center{
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

.ab-x{
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.none{
    pointer-events: none;
}

.auto{
    pointer-events: auto;
}

.none-s{
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.inline-block{
    display: inline-block;
}

.inline {
    display: inline;
}

.block{
    display: block;
}

.hide{
    display: none !important;
}

.hide-op{
    opacity: 0;
    -webkit-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
}

.hide-op-op{
    opacity: 0;
    -webkit-transition: opacity 0.1s linear;
    -o-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
}

.op{
    opacity: 1;
-webkit-transition: opacity 0.7s ease-in;
    -o-transition: opacity 0.7s ease-in;
    transition: opacity 0.7s ease-in;
}

.show{
    display: block;
}

.hidden{
    overflow: hidden;
}

.cover{
    -o-object-fit: cover;
       object-fit: cover;
}

.contain {
    -o-object-fit: contain;
       object-fit: contain;
}

.underline{
    text-decoration: underline;
}

.sticky, .sticky-bar{
    position: sticky;
}

.flex-end{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.a-self{
    -ms-flex-item-align: start;
        align-self: flex-start
}

.nw{
    white-space: nowrap;
}

.b {
    border: solid black 2px;
}

.b-b{
    border-bottom: solid black 1px;
}

.b-t{
    border-top: solid black 1px;
}

ul, li {
  list-style-type: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.white-bk {
    background: white;
}

.white{
    color: white;
}

.grey-bk {
    background: var(--grey);
}

.upper{
    text-transform: uppercase;
}

.round{
    border-radius: 2rem;
}

.round-half {
    border-radius: 0.8rem;
}

.line {
    width: 16px;
    height: 2px;
    background: var(--black);
    margin-bottom: var(--pad);
}

.gap-0 {
    gap: calc(var(--pad) / 2);
}

.gap {
    gap: var(--pad);
}

.gap-1 {
    gap: 1rem;
}

.grey-btn, .blue-btn {
    padding: 3px 6px;
}

footer img {
    width: 600px;
}

.mobile {
    display: none;
}

.circle {
    background: var(--blue);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 16.6666666%;
}

.balance {
    text-wrap: balance;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadein {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* ---------------------------
            MORPH
------------------------------ */

#morph {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

#morph.show {
    opacity: 1;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    transition: opacity 0.5s ease-out;
}

.ascii-element {
    overflow: hidden;
}


/* ---------------------------
            MENU
------------------------------ */

.gradient-left {
    -webkit-mask: linear-gradient(90deg, rgba(245, 245, 245, 1) 0%, rgba(245, 245, 245, 0) 100%);
    background: var(--white);
}

.gradient-right {
    -webkit-mask: linear-gradient(-90deg, rgba(245, 245, 245, 1) 0%, rgba(245, 245, 245, 0) 100%);
    background: var(--white);
}

.w-33-vw {
    width: 40vw;
}

.gradient-helper {
    width: 11vw;
    background: var(--white);
}

.gradient-left, .gradient-right {
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
}

.space-0 div:first-child {
    padding-right: 2.2rem;
    margin-left: 1.7rem;
}

.space-1 div:first-child {
    padding-right: 2.2rem;
    margin-left: 0.7rem;
}

.space-1 div:last-child {
    padding-left: 3rem;
}

.space-2 div:first-child {
    padding-right: 2.2rem;
}

.space-2 div:last-child {
    padding-left: 4.7rem;
}

.nav-menu a {
    opacity: 60%;
}

.current {
    opacity: 100% !important;
}

.logo-background svg {
    width: 100%;
    fill: #F7F7F7;
}

/* ---------------------------
            ABOUT
------------------------------ */

.content-wrapper {
    width: 50%;
    margin: 0 auto;
    padding-top: 25vh;
    padding-bottom: 25vh;
}

.text-format p {
    padding-bottom: var(--pad);
}

.text-format p:last-child {
    padding-bottom: 0;
}

.about-images {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 80%;
    margin: 0 auto;
}

.about-images img {
    width: 100%;
    height: auto;
}

/* ---------------------------
            HOME
------------------------------ */

.home-item img {
    width: auto;
    position: relative;
}

.home-item:nth-child(1) img, .home-item:nth-child(4) img , .home-item:nth-child(5) img, .home-item:nth-child(7) img, .home-item:nth-child(8) img {
    height: 60vh;
}

.home-item:nth-child(2) img, .home-item:nth-child(3) img, .home-item:nth-child(6) img {
    height: 27vh;
}

.home-item:nth-child(1) img{
    left: 10%;
}

.home-item:nth-child(2) img{
    left: 60%;
    margin-top: -3%;
}

.home-item:nth-child(3) img{
    left: 40%;
    margin-top: -1%;
}

.home-item:nth-child(4) img{
    left: 60%;
    margin-top: -3%;
}

.home-item:nth-child(5) img{
    left: 10%;
    margin-top: -15%;
}

.home-item:nth-child(6) img{
    left: 50%;
    margin-top: -3%;
}

.home-item:nth-child(7) img{
    left: 20%;
    margin-top: 5%;
}

.home-item:nth-child(8) img{
    left: 35%;
    margin-top: 7%;
}

.js-reveal {
  opacity: 0;
  transform: translateY(60px);
}

.home-gallery, .studio-gallery {
    padding: calc(var(--pad) * 5);
}

main {
    overflow-x: hidden;
}

/* ---------------------------
           SERVICES
------------------------------ */

.service-gallery-wrap {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
}

.service-gallery-wrap.is-open {
  pointer-events: auto;
}

.service-image {
  flex: 0 0 auto;
  height: 30vh;
}

.service-img {
  display: block;
  width: auto;
  height: 100%;
  user-select: none;
}

.service-title {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  padding: 0;
  text-align: center;
  cursor: pointer;
  padding-top: calc(var(--pad) * 2);
  padding-bottom: calc(var(--pad) * 2);
}

.services-list .service-block:first-child .service-title {
    padding-top: 0;
}

.service-gallery-track{
display:flex;
gap: 10vh;
width:max-content;
cursor:grab;
}

.is-ready {
    transition: transform 1s linear;
}

.service-gallery-track:active{
cursor:grabbing;
}

.services,
.services-list,
.service-block{
  min-width:0;
}

.service-gallery-wrap{
  width:100%;
  max-width:100%;
  min-width:0;
}

.service-gallery-track{
  width:max-content;
}

/* ---------------------------
            STUDIO
------------------------------ */

.studio-gallery{
position:relative;
width:100%;
display:grid;
grid-template-columns:repeat(5,1fr);
gap: calc(var(--pad) * 4);
}

.studio-item{
width:100%;
}

.studio-img{
width:100%;
height:auto;
display:block;
max-height: 25vh;
object-fit: contain;
}

.studio-item--placeholder{
visibility:hidden;
pointer-events:none;
}

/* ---------------------------
            CONTACT
------------------------------ */

.logo-contact svg {
    width: 60px;
    height: 100%;
    fill: var(--black);
}

.header-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(var(--pad) * 2);
}

.header-contact img{
    width: 100%;
    height: 40vh;
    -o-object-fit: contain;
       object-fit: contain;
}

/* ---------------------------
            TEXT
------------------------------ */

.font-S {
    font-size: 1.1rem;
    line-height: 1.15;
}

.line-1 {
    line-height: 1;
}

@media screen and (max-width: 2500px) {

    .content-wrapper {
        width: 40%;
    }

}

@media screen and (max-width: 1600px) {

    .w-20 {
        width: 25%;
    }

    .font-S {
        font-size: 0.95rem;
    }

}

@media screen and (max-width: 1024px) {

/* MENU */

    .w-50, .w-33, .w-20, .w-33-vw {
        width: 100%;
    }

    .gradient-wrapper {
        height: 30%;
    }

    .desktop {
        display: none;
    }

    .gradient-left {
        -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 35%, rgba(0, 0, 0, 0) 100%);
        background: var(--white);
    }

    .gradient-right {
        -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 35%, rgba(0, 0, 0, 0) 100%);
        background: var(--white);
    }

    .column-m {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .site-header .w-20 {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        padding: var(--pad);
    }

    .logo-background svg {
        -webkit-transform: scale(1.5);
            -ms-transform: scale(1.5);
                transform: scale(1.5);
    }

/* ABOUT */

    .content-wrapper {
        width: 80%;
    }

/* HOME */

    .home-item:nth-child(1) img, .home-item:nth-child(4) img , .home-item:nth-child(5) img, .home-item:nth-child(7) img, .home-item:nth-child(8) img {
        height: 40vw;
    }

    .home-item:nth-child(2) img, .home-item:nth-child(3) img, .home-item:nth-child(6) img {
        height: 18vw;
    }

    .home-gallery {
        padding: 25vh calc(var(--pad) * 1);
    }

    .studio-gallery {
        padding: var(--pad);
    }

    .home-item:nth-child(1) img{
        left: 0%;
    }

    .home-item:nth-child(2) img{
        left: 60%;
        margin-top: -3%;
    }

    .home-item:nth-child(3) img{
        left: 30%;
        margin-top: -1%;
    }

    .home-item:nth-child(4) img{
        left: 60%;
        margin-top: -3%;
    }

    .home-item:nth-child(5) img{
        left: 0%;
        margin-top: -15%;
    }

    .home-item:nth-child(6) img{
        left: 50%;
        margin-top: -3%;
    }

    .home-item:nth-child(7) img{
        left: 10%;
        margin-top: 3%;
    }

    .home-item:nth-child(8) img{
        left: 35%;
        margin-top: 5%;
    }

/* OTHER */

    .studio-gallery{
        grid-template-columns:repeat(4,1fr);
    }

    .service-gallery-track.is-ready {
        transition: none;
    }

}

/* HOVER */
@media screen and (min-width: 1024px) {

    .nav-menu a:hover {
        opacity: 100%;
    }

}

@media screen and (max-width: 820px) {

:root {
    --pad: 0.8rem;
}

.ascii-element {
    font-size: 10px;
}

    .font-S {
        font-size: 1rem;
        line-height: 1.1;
    }

    .content-wrapper {
        width: 100%;
    }

    .space-0 div:first-child {
        padding-right: 2rem;
        margin-left: 1.5rem;
    }

    .space-1 div:first-child {
        padding-right: 2rem;
        margin-left: 0.7rem;
    }

    .space-1 div:last-child {
        padding-left: 2.5rem;
    }

    .space-2 div:first-child {
        padding-right: 2rem;
    }

    .space-2 div:last-child {
        padding-left: 4rem;
    }

    .service-title {
      padding-top: calc(var(--pad) * 1);
      padding-bottom: calc(var(--pad) * 1);
    }

    .studio-gallery{
        grid-template-columns:repeat(3,1fr);
        gap: calc(var(--pad) * 3);
    }

}

@media screen and (max-width: 500px) { 

    .about-images {
        width: 100%;
    }

    .logo-contact svg {
        width: 40px;
    }

    .header-contact img{
        height: 20vh;
    }

    .font-S {
        font-size: 0.9rem;
    }

    .service-gallery-track {
        gap: 10vw;
    }

    .service-image {
      height: 40vw;
    }

    .studio-gallery{
        grid-template-columns:repeat(2,1fr);
        gap: calc(var(--pad) * 2);
    }

    .studio-img {
        max-height: 70vw;
    }

    .studio-gallery figure:nth-child(3n) {
      grid-column: 1 / -1;
    }

    .ascii-element {
        font-size: 8px;
    }

}