/* =====================
    FONTS
=====================*/

@font-face {
  font-family: "gerst";
  src: url("fonts/Gerstner-ProgrammLight.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "gerst-italic";
  src: url("fonts/Gerstner-ProgrammLightItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
}

:root {
  --base: 16px;
  --lhvalue: 1.25;
  --lineheight: var(--lhvalue);
  --textcolour: #000000;
  --color-accent: #ff4f00;
  --greytint: 224, 4%;
  --fontMain: 'gerst', Helvetica, sans-serif;
  --padd: .5rem;
  --sideW: clamp(3rem, 16.5vw - 1.125rem, 9vw);
}

@media (min-width: 500px) {
  :root {
    --base: 19px;
    --padd: .675rem;
  }
}

@media (min-width: 800px) {
  :root {
    --base: 21px;
    --padd: .875rem;
  }
}

@media (min-width: 1200px) {
  :root {
    --base: 23px;
  }
}

html {
  margin: 0;
  padding: 0;
  font-size: var(--base);
}

::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

body {
  font-family: var(--fontMain);
  line-height: var(--lineheight);
  padding: 0;
  width: 100%;
  height: 100svh;
  overflow-x: hidden;
  color: #000;
  background: #FFF;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}


a {
  color: inherit;
  text-decoration: none;
  transition: color .15s ease-in-out;
  line-height: 1;
}

a:hover {
  color: #828282;
  text-decoration: none;
  cursor: pointer;
}

p {
  margin: 0 0 0.8em 0;
}

p:last-of-type {
  margin: 0;
}

em, i {
  font-family: 'gerst-italic', Helvetica, sans-serif;
  font-weight: normal;
}
strong, b {
  font-weight: 400;
}

ul {
  display: block;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.125;
}

/* 250814 */
.cont {
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-flow: row wrap;
}

.side-logo {
  width: var(--sideW);
  padding: var(--padd) 0 var(--padd) var(--padd);
  display: flex;
  justify-content: flex-end;
  position: sticky;
  top: 0;
  align-items: flex-start;
  height: 100svh;
}

.blogo {
  width: 100%;
  text-align: center;
  z-index: 1001;
  top: var(--padd);
  height: auto;
}

.blogo svg {
  width: 92%;
  max-width: 70px;
  overflow: visible;
  transition: transform .15s ease-in-out;
}

.blogo a svg {
  z-index: 100;
  transform-origin: center;
}

.blogo a:hover>svg {
  transform: rotate(90deg) scale(0.9);
}

.main-body {
    width: calc(100% - var(--sideW));
  }

@media (min-width: 1200px) {
  .main-body {
    width: calc(100% - (var(--sideW)*2));
  }
  .side-logo {
    padding: var(--padd);
  }
  .blogo {
    text-align: right;
  }
}

.main-content {
  padding: 0 var(--padd) var(--padd) var(--padd);
}
.main-header {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  align-items: center;
  height: 3.5em;
  padding: var(--padd);
}
.mh1 {
  flex-grow: 1;
}
.mh-links {
  flex-shrink: 1;
}

.exhib-col {
  columns: 1;
  column-count: 1;
  column-gap: var(--padd);
  padding: var(--padd) 0;
}
.exr {
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
@media (min-width: 700px) {
  .exhib-col {
    column-count: 2;
  }
}
@media (min-width: 1200px) {
  .exhib-col {
    column-count: 3;
  }
}

.col-set {
  display: flex;
  flex-flow: row wrap;
  gap: var(--padd);
}
.col-third,.three-col-tile {
  width: 100%;
}
.three-col-tile {
  position: relative;
}
.tct-sticky-header {
  position: sticky;
  top: 0;
  background: linear-gradient(0deg,rgba(255,255,255,0) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,1) 100%);
  font-size: 190%;
  width: 100%;
  padding: .375em 0 2rem 0;
  z-index: 999;
}

@media (min-width: 800px) {
  .main-header {
    height: 100px;
  }
  .col-third,.three-col-tile {
    width: calc(50% - (var(--padd)/2));
  }
}
@media (min-width: 1200px) {
  .col-third,.three-col-tile {
    width: calc(33.3333% - (calc(var(--padd)*2) / 3));
  }
}

footer {
  width: 100%;
}
.credit {
  font-size: .675rem;
  margin-top: 4em;
}

p + h4 {
  margin-top: 3em !important;
}
.full-date-range {
  opacity: 0;
  position: fixed;
  left: calc(var(--sideW)*.765); 
  bottom: 50svh; 
  white-space: nowrap;
  transform-origin: bottom left;
  transform: rotate(-90deg) translateX(-50%);
  transition: opacity .3s ease-in-out;
}

/* menu overlay */
.menu {
position: fixed;
top: 0;
left: 0;
margin: 0;
display: flex;
flex-direction: column;
z-index: 1000;
opacity: 0;
transition: opacity .2s ease-in-out;
pointer-events: none;
padding: 0 var(--padd) var(--padd) calc(var(--sideW) + var(--padd));
background-color: white;
width: 100%;
height: 100svh;
overflow-y: scroll;
overflow-x: hidden;
}
.menu.menuOpen {
  opacity: 1;
  pointer-events: all;
}
.menuClose {
  cursor: pointer;
}
.menu .main-header {
  justify-content: end;
  padding-right: 0;
  padding-left: 0;
}

.menu-links ul {
  padding-right: 0;
  display: flex;
  flex-direction: column;
}
.menu-links ul li a {
  display: block;
  width: 100%;
  position: relative;
  min-height: 4.5rem;
  border-top: 1px solid;
  padding-top: .5em;
  padding-right: 150px;
}
.menu-links ul li {
  display: block;
}
.menu-links ul li a span, .menu-link-gif {
  display: inline-block;
}
.menu-links ul li a span {
  font-size: 150%;
  line-height: 1.1;
  margin-bottom: .5em;
}
.menu-link-gif {
  position: absolute;
  top: .25em;
  right: 0;
  transition: transform .15s ease-in-out;
  transform: translateX(0);
}
.menu-links ul li a:hover .menu-link-gif {
  transform: translateX(-1em);
}
.menu-link-gif img {
  max-height: 4rem;
  max-width: 200px;
}
@media (min-width:1200px) {
  .menu {
  padding: 0 calc(var(--sideW)) var(--padd) calc(var(--sideW) + var(--padd));
  }
  .menu .main-header {
    padding-right: var(--padd);
    }
   .menu-links ul {
    padding-right: var(--padd);
   } 
}

/* slider */
.g-slider {
  position: relative;
  margin: 2em 0;
  border-top: 1px solid;
  padding-top: .5em;
}
.g-slide-box {
  width: calc(100% - 3em);
  height: 100%;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow-y: hidden;
}

.slick-track, .gsc-inner, .slick-list {
  aspect-ratio: 1 / 1;
}

.gsc-inner {
  display: flex !important;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
}

.g-slide-box .slick-slide {
  position: relative;
}
.slick-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.prev-next {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  display: flex;
  flex-flow: row wrap;
  z-index: 1001;
}
.sl-prev, .sl-next {
  width: 50%;
  height: 100%;
  display: block;
  content: " ";
  cursor: pointer;
}
.slide-counter {
  position: absolute;
  top: 0;
  right: 0;
  margin-top: .5em;
}

@media (min-width:800px) {
  .g-slider,
  .g-slide-box,
  .slick-list,
  .slick-track,
  .gsc-inner {
  aspect-ratio: 3 / 2 !important;
  }
}

/* 2020 */

/******************
    VIMEO
******************/

.vimeo-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(336deg, #B4D523, #A8CEC0, #E9F396 70.71%);
}

.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100svh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/******************
    MAIN
******************/

main {
  padding-bottom: 5em;
}

.cont p a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cont p a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cont p {
  margin-bottom: 1em;
  max-width: 680px;
}

.cont h3 {
  margin-bottom: 1.4rem;
  position: relative;
  font-size: 200%;
}

.cont h3::after {
  display: block;
}

.singleImgBlock figure img {
    max-width: 1400px;
  max-height: 900px;
}

/**************************
     GRID - PAGE
**************************/

.grid {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
}

.two-col-tile img,
.three-col-tile img,
.g-text img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.two-col-tile h1,
.three-col-tile h1,
.g-text h1,
.text h1 {
  font-size: 220%;
  margin-bottom: 2rem;
}

.two-col-tile h2,
.three-col-tile h2,
.g-text h2,
.text h2 {
  font-size: 160%;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.two-col-tile h3,
.three-col-tile h3,
.g-text h3,
.text h3 {
  font-size: 115%;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.two-col-tile h4,
.three-col-tile h4,
.g-text h4,
.text h4 {
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  line-height: normal;
  display: block;
  font-size: .9;
  margin: .15em 0;
  padding: .4em 1em 1em 0;
  border-top: 1px solid;
}

.two-col-tile blockquote,
.three-col-tile blockquote,
.g-text blockquote,
.text blockquote {
  font-size: 90%;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  line-height: 1.125;
}

.four-tile,
.three-tile,
.two-tile {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
  margin-left: 1rem;
}

.four-tile {
  width: calc(25% - 1.25rem);
}

.three-tile {
  width: calc(33.333% - 1.33rem);
}

.two-tile {
  width: calc(40% - 1.5rem);
}


/** TILE SET **/
.tile-set {
  width: 100%;
  padding: var(--padd) 0;
  display: flex;
  flex-flow: row wrap;
  gap: var(--padd);
}

/* text-based cols */

.two-col-tile {
  width: 48%;
  margin-right: 2%;
}

.page-tile-text {
  font-size: 130%;
}

.page-tile-text:after {
  content: "â†—";
}

.tile-fig {
  margin-bottom: 0.3em;
  transition: transform .15s ease-in-out;
  transform: rotate3d(0);
}

.four-tile:hover:nth-child(1n)>figure,
.three-tile:hover:nth-child(1n)>figure,
.two-tile:hover:nth-child(1n)>figure {
  transform: rotate3d(1, 2, 1, 20deg);
}

.four-tile:hover:nth-child(2n)>figure,
.three-tile:hover:nth-child(2n)>figure,
.two-tile:hover:nth-child(2n)>figure {
  transform: rotate3d(2, 1, 1, -35deg);
}

.four-tile:hover:nth-child(3n)>figure,
.three-tile:hover:nth-child(3n)>figure,
.two-tile:hover:nth-child(3n)>figure {
  transform: rotate3d(2, -1, -1, -0.2turn)
}

.four-tile:hover:nth-child(4n)>figure,
.three-tile:hover:nth-child(4n)>figure,
.two-tile:hover:nth-child(4n)>figure {
  transform: rotate3d(0, 1, -0.4, 25deg);
}


.tile-fig img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/** BEEFY PARA **/
.beefy-para-cont {
  width: 100%;
}

.beefy-para {
  display: block;
  max-width: 1300px;
  
}

.beefy-para p {
  max-width: 96%;
  font-size: 150%;
}


/** TWO-THIRDS IMAGE FIRST **/
.g-2313,
.g1323 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

.g-2313 .image {
  width: 58%;
}

.g-2313 .text {
  width: 40%;
}

.g-2313 .image img {
  width: 100%;
  height: auto;
}

.image figcaption {
  font-size: 14px;
  max-width: 360px;
  margin: 0.3rem 0 1rem 0;
}

/** TWO-THIRDS TEXT FIRST **/
.g1323 .image {
  width: 58%;
  margin-bottom: 1rem;
}

.g1323 .text {
  width: 40%;
}

.g1323 .image img {
  width: 100%;
  height: auto;
}


/** LARGE TITLE WITH SUB **/
.g-lts {
  width: 100%;
}

.g-lts h2 {
  font-size: 250%;
  margin: .875em 0 .25em 0;
  border-top: 1px solid;
  padding-top: .25em;
}

.g-lts div {
  max-width: 780px;
  margin-bottom: 1em;
}

/** NORMAL TEXT SECTION **/
.g-text {
  width: 100%;
  display: block;
  
  margin-bottom: 1em;
}

.g-text-center {
  margin: 0 auto 1em auto;
}

.g-text hr,
.g-text-center hr {
  border: none;
  border-top: 1px solid #000;
  color: #000;
  margin: 2rem 0;
}


/** LARGE TITLE WITH SUB + LINK **/
.g-ltsl {
  padding: 1em 15% 0 0;
  margin: 2rem 0;
  width: 100%;
  display: block;
  border-top: 1px solid;
  border-bottom: 1px solid;
  transition: padding .15s ease-in-out;
}

.g-ltsl div.large-header {
  font-size: 250%;
  max-width: 100%;
  padding-bottom: 3rem;
}

.g-ltsl div.large-header:after {
  content: "↗";
  display: inline;
  margin-left: 0.5rem;
}

.g-ltsl div.subtitle {
  margin-top: 0.4rem;
  max-width: 600px;
}
.g-ltsl:hover {
  padding-left: .875rem;
}

/** VIDEO EMBED FULL WIDTH **/
.vid-section {
  width: 100%;
}

.g-vid-full {
  margin-bottom: 1rem;
}


/** VIDEO EMBED NORMAL WIDTH **/
.g-vid {
  
  max-width: 800px;
}

.g-vid-center {
  margin: 0 auto;
  
  max-width: 800px;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}



.btn {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

.btn {
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
  min-width: 1.5em;
  border-radius: 10em;
  background: #3E4C20;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  border: 1px solid transparent;
  /*text-transform: uppercase;*/
  margin: .15em .1em;
  padding: .4em .8em .2em;
}




.section-title {
  width: 100%;
  padding: 1rem 0 0 1rem;
}

.s-title {
  text-transform: uppercase;
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  display: inline-block;
  vertical-align: top;
  font-size: 0.85rem;
  border-radius: 10em;
  border: 1px solid #000;
  margin: .15em .1em;
  padding: .4em .8em .2em;
}


/****************************
    ARCHIVE PAGE
****************************/

.archive {
  width: 100%;
  padding: 0;
  /*word-break: break-all;*/
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
}

.arch-links {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}

.arch-link-cell {
  width: 100%;
  padding: 1rem 1rem 4rem 1rem;
  z-index: 0;
  font-size: 5vw;
  color: #000000;
  border-bottom: 1px solid #000;
}

.arch-link-cell:nth-of-type(2n) {
  text-align: right;
}



.archive ul li:last-of-type {
  border-bottom: none;
}

.a-img-hover {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4% 10%;
  pointer-events: none;
  z-index: 100;
  order: 1;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

.a-img-hover img {
  position: absolute;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  right: 2rem;
}

.arch-link-cell:nth-of-type(2n) .a-img-hover>img {
  left: 2rem;
  right: 0;
}

.arch-link-cell:hover>figure.a-img-hover {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}


.arch-prog {
  padding: 0 2rem 0 1rem;
  margin-bottom: 2rem;
}

.arch-prog:after {
  content: " ";
  display: block;
  width: 15px;
  height: 1px;
  background: #000;
  margin-top: 1rem;
}

.arch-prog h5 {
  padding: 1rem 0;
  font-size: 120%;
  line-height: var(--lineheight);
  max-width: 500px;
}


/******************
    FOOTER
******************/

footer {
  line-height: var(--lineheight);
  padding: var(--padd) 0 0 0;
  margin-top: 10em;
}

footer ul li {
  display: inline;
  margin-right: 3ch;
}

footer ul li:last-of-type {
  margin-right: 0;
}

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

  .cell {
    max-height: 200px;
  }

  .cell img {
    max-height: 200px;
  }

  .g1323 .image,
  .g1323 .text,
  .g-2313 .image,
  .g-2313 .text {
    width: 49%;
  }

  .exhib-head {
    height: auto;
  }

  .exhib-half {
    width: 100%;
  }

  .p-cell {
    width: 50%;
  }

  .exhib-list-cell:nth-of-type(n) {
    width: 33.333%;
  }

  .exhib-about {
    padding: 1rem 1rem 3rem 1rem;
    margin: 0 auto;
  }

  .e-links {
    border-left: none;
  }

  .e-links ul li a {
    text-align: center;
    border-bottom: none;
    border-top: 1px solid #000;
  }

  .exhib-title {
    border-bottom: 1px solid #000;
  }


  /* COLUMNS */
  .four-tile {
    width: calc(33.333% - 1.33rem);
  }

  .three-tile {
    width: calc(50% - 1.5rem);
  }

  .two-tile {
    width: calc(50% - 1.5rem);
  }

}


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

  footer ul li {
    display: block;
    width: 100%;
    padding: 1px 0;
    line-height: var(--lineheight);
  }

  footer ul li:hover {
    padding-left: 0.7rem;
  }

  .arch-link-cell {
    font-size: 165%;
  }

  .g1323 .image,
  .g1323 .text,
  .g-2313 .image,
  .g-2313 .text {
    width: 100%;
  }

  .g-2313 .image {
    padding-left: 5%;
  }

  .g1323 .image {
    order: 1;
  }

  .g1323 .text {
    order: 2;
  }


  .bullet {
    display: none;
  }

  .cell {
    width: 48%;
  }


  .cross-bg {
    display: none;
  }

  .p-sun {
    border-left: none;
    border-top: 1px solid #000;
  }

  .p-cell {
    width: 100%;
    position: relative;
  }

  .p-cell:after {
    content: " ";
    display: block;
    position: absolute;
    top: 35%;
    left: 0;
    height: 1px;
    width: 100%;
    background: #000;
    z-index: -99;
  }

  .exhib-list-cell:nth-of-type(n) {
    width: 50%;
  }

  .watch-text {
    font-size: 140%;
    padding: 0 3rem;
  }

  .arch-section {
    width: 100%;
  }
  .arch-left,
  .arch-right {
    width: 100%;
  }

  .arch-left ul li {
    border-top: none;
    border-bottom: 1px solid #000;
  }

  .arch-right {
    border-left: none;
  }

  .section-name {
    width: 100%;
    min-height: auto;
    border-right: none;
  }

  .arch-box {
    padding: 0 0 2rem 0;
  }

  .float-logo img {
    width: 160px;
  }

  .p-cell-img {
    padding-left: 15%;
  }

  .exhib-inline-cell a {
    font-size: 130%;
  }

  .e-links ul li a {
    text-align: left;
  }

  /* COLUMNS */
  .four-tile {
    width: calc(50% - 1.5rem);
  }

  .two-tile {
    width: 85%;
  }


}


@media only screen and (max-width: 700px) {
  .beefy-para p {
    max-width: 100%;
    font-size: 120%;
  }

  .nav-wrap {
    display: none;
  }

}


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

  .two-col-tile {
    width: 100%;
    margin-right: 0;
  }

  .three-tile {
    width: calc(100% - 2rem);
  }
}

@media only screen and (max-width: 420px) {
  .g-lts h2 {
    font-size: 190%;
  }

  .exhib-list {
    padding: 0;
  }

  .exhib-list-cell:nth-of-type(n) {
    width: 100%;
    border-top: 1px solid #000;
    padding: 0;
    margin-bottom: 0.25rem;
  }

  .exhib-list-cell:first-of-type {
    border-top: none;
  }

  .exhib-name {
    order: 1;
    width: 58%;
    padding-left: 1rem;
    padding-top: 1rem;
    padding-right: 1rem;
  }

  .e-nom {
    font-size: 1.4em;
    line-height: var(--lineheight);
  }

  .e-img-hover {
    width: 42%;
    order: 2;
    transform-origin: right;
  }
  .exhib {
    width: 90% !important;
  }

  /* COLUMNS */
  .four-tile {
    width: calc(50% - 1.5rem);
  }

  .two-tile {
    width: calc(100% - 2rem);
  }


  .four-tile:hover:nth-child(1n)>figure,
  .three-tile:hover:nth-child(1n)>figure,
  .two-tile:hover:nth-child(1n)>figure {
    transform: rotate3d(0);
  }

  .four-tile:hover:nth-child(2n)>figure,
  .three-tile:hover:nth-child(2n)>figure,
  .two-tile:hover:nth-child(2n)>figure {
    transform: rotate3d(0);
  }

  .four-tile:hover:nth-child(3n)>figure,
  .three-tile:hover:nth-child(3n)>figure,
  .two-tile:hover:nth-child(3n)>figure {
    transform: rotate3d(0)
  }

  .four-tile:hover:nth-child(4n)>figure,
  .three-tile:hover:nth-child(4n)>figure,
  .two-tile:hover:nth-child(4n)>figure {
    transform: rotate3d(0);
  }


}