@charset "UTF-8";
/* Copyright © 2022-now Flac Studio. All rights reserved. francois.lacruche.fr
<><><><><><><><><><><><><><><><> */
@font-face {
  font-family: 'e-Ukraine-HeadRegular';
  src: url("../fnt/e-UkraineHead-Regular.woff2") format("woff2"), url("../fnt/e-UkraineHead-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'e-Ukraine-Regular';
  src: url("../fnt/e-Ukraine-Regular.woff2") format("woff2"), url("../fnt/e-Ukraine-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spektra-Medium';
  src: url("../fnt/DOTSpektraTekstTRIAL-Medium.woff2") format("woff2"), url("../fnt/DOTSpektraTekstTRIAL-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spektra-Regular';
  src: url("../fnt/DOTSpektraTekstTRIAL-Regular.woff2") format("woff2"), url("../fnt/DOTSpektraTekstTRIAL-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --scroll-percent-progress: 0;
  --scroll-progress: 0.25deg;
  --scroll-progress-360: calc(var(--scroll-progress) * 360);
  --font-size: 1rem;
  --font-size-l: calc(var(--font-size) * 2.25);
  --font-size-xl: calc(var(--font-size) * 8.5);
  --line-height: 1.45;
  --arrow-select-size: 2rem;
  --small-spacing: 1px;
  --x-spacing: 1.15rem;
  --y-spacing: calc(var(--x-spacing) * 0.75);
  --padding: var(--y-spacing) var(--x-spacing);
  --white: rgb(245, 245, 245);
  --black: rgb(30, 30, 32);
  --hover-color: var(--black);
  --project-count: 4;
  --list-item-height-multiplier: 1.15;
}

html {
  background-color: var(--black);
  font-size: clamp(14px, calc(1vh + 1vw), 18px);
  font-family: 'e-Ukraine-HeadRegular';
  hyphens: auto;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100dvh;
}

html body {
  position: relative;
  height: 100%;
  width: 100%;
  line-height: var(--line-height);
}

html body .main-container {
  position: relative;
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  padding: var(--padding);
  line-height: 1.2;
}

p {
  padding: var(--padding);
  font-size: var(--font-size);
}

h3 {
  font-size: var(--font-size-l);
  padding-bottom: 0;
}

.project-wrapper {
  display: block;
  position: relative;
  height: 100dvh;
  width: 100%;
}

.project-wrapper.first-project-wrapper {
  margin-top: 50dvh;
}

.grid-template {
  pointer-events: none;
  display: grid;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  max-width: 100vw;
  max-height: 100dvh;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 10dvh 80dvh 10dvh;
  gap: var(--small-spacing);
  perspective: 1000px;
  perspective-origin: center;
  transition: grid-template-columns 400ms cubic-bezier(0.86, 0, 0.07, 1), grid-template-rows 400ms cubic-bezier(0.86, 0, 0.07, 1);
}

.switch-fullscreen .grid-template {
  grid-template-columns: 0fr 0fr 1fr 1fr 0fr 0fr !important;
  grid-template-rows: 5dvh 90dvh 5dvh !important;
  column-gap: 0px;
  transition: grid-template-columns 400ms cubic-bezier(0.86, 0, 0.07, 1), grid-template-rows 400ms cubic-bezier(0.86, 0, 0.07, 1), column-gap 400ms linear 200ms;
}

@media only screen and (min-width: 620px) {
  .grid-template {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    perspective-origin: 33% 50%;
  }
}

@media only screen and (min-width: 980px) {
  .grid-template {
    grid-template-columns: 1fr 1fr 2fr 2fr 1fr 1fr;
    perspective-origin: center;
  }
}

@media only screen and (min-width: 1485px) {
  .grid-template {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    perspective-origin: center;
  }
  .switch-gallery .grid-template {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr !important;
  }
  .switch-landscape .grid-template {
    grid-template-columns: 1fr 1fr 3fr 3fr 1fr 1fr;
  }
}

.grid-template.main-grid {
  z-index: 2;
  position: fixed;
}

.grid-template.intro-grid {
  display: grid;
  pointer-events: none;
  z-index: 3;
  position: fixed;
}

.scrolled .grid-template.intro-grid {
  display: none;
}

.grid-template.intro-grid.about {
  pointer-events: all;
}

.grid-template.project-grid {
  z-index: 1;
  position: sticky;
  top: -0.5px;
  height: 80dvh;
  transition: height 400ms cubic-bezier(0.86, 0, 0.07, 1);
  margin-bottom: var(--small-spacing);
}

.grid-template .grid-item {
  pointer-events: all;
  display: block;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 1.4rem;
  backdrop-filter: blur(0px);
  color: var(--black);
  background-color: var(--white);
  border-radius: 1.4rem;
  transition: box-shadow 200ms;
  box-sizing: border-box;
}

.grid-template .grid-item.button {
  overflow: hidden;
  transition: border-radius 400ms cubic-bezier(0.86, 0, 0.07, 1);
}

.grid-template .grid-item.button:hover {
  z-index: 2;
  cursor: pointer;
}

.grid-template .grid-item.button:hover::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: var(--arrow-select-size);
  height: calc(var(--arrow-select-size) / 2);
  background-image: url("../img/arrow-selector-x.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
}

.grid-template .grid-item.button:hover::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: var(--arrow-select-size);
  height: calc(var(--arrow-select-size) / 2);
  background-image: url("../img/arrow-selector-x.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
}

.grid-template .grid-item.r1c1 {
  grid-row: 1;
  grid-column: 1/3;
  transform-origin: top left;
}

.grid-template .grid-item.r1c2 {
  grid-row: 1;
  grid-column: 3/5;
  transform-origin: top center;
}

.grid-template .grid-item.r1c3 {
  grid-row: 1;
  grid-column: 5/7;
  transform-origin: top right;
}

.grid-template .grid-item.r2c1 {
  grid-row: 2;
  grid-column: 1/3;
  transition: translate 400ms cubic-bezier(0.86, 0, 0.07, 1), box-shadow 200ms;
  translate: -100% 0;
  transform-origin: top right;
}

.switch-gallery .grid-template .grid-item.r2c1 {
  translate: -100% 0;
}

.switch-hide-img .grid-template .grid-item.r2c1 {
  translate: 0 0;
}

@media only screen and (min-width: 620px) {
  .grid-template .grid-item.r2c1 {
    translate: -100% 0;
    grid-row: 2;
    grid-column: 1/5;
  }
}

@media only screen and (min-width: 980px) {
  .grid-template .grid-item.r2c1 {
    translate: 0 0;
    grid-row: 2;
    grid-column: 1/3;
  }
  .switch-gallery .grid-template .grid-item.r2c1 {
    translate: 0 0;
  }
}

.grid-template .grid-item.r2c2 {
  grid-row: 2;
  grid-column: 1/7;
}

@media only screen and (min-width: 620px) {
  .grid-template .grid-item.r2c2 {
    grid-column: 1/5;
  }
}

@media only screen and (min-width: 980px) {
  .grid-template .grid-item.r2c2 {
    grid-column: 3/5;
  }
}

.grid-template .grid-item.r2c3 {
  grid-row: 2;
  grid-column: 3/7;
  background-color: transparent;
}

.grid-template .grid-item.r2c3 .r2c3-content-wrapper {
  background-color: var(--white);
  border-radius: 1.4rem;
  height: 100%;
  width: 100%;
  transition: translate 400ms cubic-bezier(0.86, 0, 0.07, 1), box-shadow 200ms;
  translate: 100% 0;
}

@media only screen and (min-width: 620px) {
  .grid-template .grid-item.r2c3 .r2c3-content-wrapper {
    translate: 0 0;
  }
}

.switch-hide-img .grid-template .grid-item.r2c3 .r2c3-content-wrapper {
  translate: 0 0;
}

@media only screen and (min-width: 620px) {
  .grid-template .grid-item.r2c3 {
    grid-column: 5/7;
  }
  .switch-gallery .grid-template .grid-item.r2c3 {
    translate: 0 0;
  }
}

.grid-template .grid-item.r3c1 {
  grid-row: 3;
  grid-column: 1/3;
}

.grid-template .grid-item.r3c2 {
  grid-row: 3;
  grid-column: 3/5;
}

.grid-template .grid-item.r3c3 {
  grid-row: 3;
  grid-column: 5/7;
}

.grid-template .grid-item.header-left {
  box-shadow: 0px 0px 0px 1px var(--black);
  border-radius: 0 0 1.4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-template .grid-item.header-left .go-crazy {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.switch-shuffled .grid-template .grid-item.header-left .go-crazy {
  display: none;
}

.grid-template .grid-item.header-left .go-back {
  display: none;
  width: 100%;
  height: 100%;
}

.switch-shuffled .grid-template .grid-item.header-left .go-back {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: red;
  color: var(--white);
}

.grid-template .grid-item.header {
  box-shadow: 0px 0px 0px 1px var(--black);
  border-radius: 0 0 1.4rem 1.4rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-template .grid-item.header img {
  width: auto;
  max-width: 80%;
  height: 65%;
  max-width: 80%;
  object-fit: contain;
}

.grid-template .grid-item.button-prev {
  border-radius: 0 0 0 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 0px 0px 1px var(--black);
}

.grid-template .grid-item.project-list {
  overflow: hidden;
  position: relative;
  font-family: 'Spektra-Medium';
  font-size: var(--font-size-xl);
  border-radius: 0 1.4rem 1.4rem 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.grid-template .grid-item.project-list::before {
  z-index: 1000;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  translate: 0 0.5px;
  width: var(--arrow-select-size);
  height: calc(var(--arrow-select-size) / 2);
  background-image: url("../img/arrow-selector-x.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
}

.grid-template .grid-item.project-list::after {
  z-index: 1000;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  translate: 0 0.5px;
  width: var(--arrow-select-size);
  height: calc(var(--arrow-select-size) / 2);
  background-image: url("../img/arrow-selector-x.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
}

.grid-template .grid-item.project-list ul {
  width: 100%;
  height: calc( (var(--font-size-xl) * var(--project-count) - var(--font-size-xl) / 2) * var(--list-item-height-multiplier));
  line-height: 1;
  position: relative;
  box-sizing: border-box;
  translate: 0 50%;
  transform: translateY(calc(var(--scroll-percent-progress) * -1));
}

.grid-template .grid-item.project-list ul .project-list-item {
  display: block;
  position: relative;
  overflow: clip;
  overflow-clip-margin: 100px;
  white-space: nowrap;
  width: 100%;
  height: calc(var(--font-size-xl) * var(--list-item-height-multiplier));
  cursor: pointer;
}

.grid-template .grid-item.project-list ul .project-list-item .span-wrapper {
  display: block;
  width: fit-content;
  padding: calc(var(--list-item-height-multiplier) * 0.8rem) calc(var(--x-spacing)) 0 calc(var(--x-spacing));
  box-sizing: border-box;
}

.grid-template .grid-item.project-list ul .project-list-item .span-wrapper span {
  width: auto;
}

.grid-template .grid-item.project-list ul .project-list-item .span-wrapper span.hide {
  display: none;
}

.grid-template .grid-item.project-list ul .project-list-item .span-wrapper span.show {
  display: inline;
}

.grid-template .grid-item.project-list ul .project-list-item:hover::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: var(--arrow-select-size);
  height: calc(var(--arrow-select-size) / 2);
  background-image: url("../img/arrow-selector-x.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
}

.grid-template .grid-item.project-list ul .project-list-item:hover::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: var(--arrow-select-size);
  height: calc(var(--arrow-select-size) / 2);
  background-image: url("../img/arrow-selector-x.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
}

.project-list .grid-template .grid-item.project-list ul .project-list-item:hover {
  background-color: var(--black);
}

.grid-template .grid-item.project-list .project-indicator {
  z-index: 2;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  mix-blend-mode: difference;
}

.grid-template .grid-item.cover-container {
  box-shadow: 0px 0px 0px 1px var(--black);
  opacity: 1;
  z-index: 3;
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  transform: rotateY(var(--scroll-progress-360));
  border-radius: 0;
  cursor: zoom-in;
}

.switch-gallery .grid-template .grid-item.cover-container {
  transform: rotateY(90deg);
  opacity: 0;
}

.switch-hide-img .grid-template .grid-item.cover-container {
  transform: rotateY(90deg);
  opacity: 0;
}

.switch-fullscreen .grid-template .grid-item.cover-container {
  box-shadow: 0px 0px 0px 0px var(--black);
  cursor: ew-resize;
  transform: rotateY(180deg);
}

.is-animating .grid-template .grid-item.cover-container {
  transition: transform 400ms cubic-bezier(0.86, 0, 0.07, 1), opacity 0ms cubic-bezier(0.86, 0, 0.07, 1) 0ms;
}

.is-animating.switch-hide-img .grid-template .grid-item.cover-container {
  transition: transform 400ms cubic-bezier(0.86, 0, 0.07, 1), opacity 0ms cubic-bezier(0.86, 0, 0.07, 1) 400ms !important;
}

.is-animating.switch-gallery .grid-template .grid-item.cover-container {
  transition: transform 400ms cubic-bezier(0.86, 0, 0.07, 1), opacity 0ms cubic-bezier(0.86, 0, 0.07, 1) 400ms !important;
}

.grid-template .grid-item.cover-container.tranche {
  opacity: 0;
}

.grid-template .grid-item.cover-container .entry-cover {
  display: none;
}

.grid-template .grid-item.cover-container .entry-cover.current {
  display: block;
}

.grid-template .grid-item.cover-container .entry-cover .entry-img,
.grid-template .grid-item.cover-container .entry-cover .entry-video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: -1 1;
}

.switch-fullscreen .grid-template .grid-item.cover-container .entry-cover .entry-img, .switch-fullscreen .grid-template .grid-item.cover-container .entry-cover .entry-video {
  object-fit: contain;
}

.grid-template .grid-item.about {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 0px 1px var(--black);
  border-radius: 0;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.grid-template .grid-item.about p {
  cursor: pointer;
}

.grid-template .grid-item.about .contact-info,
.grid-template .grid-item.about .footer-info {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.grid-template .grid-item.about .contact-info {
  top: 0;
  padding: var(--padding);
  box-sizing: border-box;
}

.grid-template .grid-item.about .footer-info {
  bottom: 0;
}

.grid-template .grid-item.about .footer-info p {
  width: 100%;
  font-size: calc(var(--font-size) * 0.75);
}

.grid-template .grid-item.about a:hover {
  text-decoration: underline;
}

.grid-template .grid-item.gallery {
  box-shadow: 0px 0px 0px 0px var(--black);
  overflow: hidden;
  background-color: transparent !important;
  border-radius: 0 !important;
}

.switch-gallery .grid-template .grid-item.gallery {
  overflow-y: auto;
}

.grid-template .grid-item.gallery .sub-grid-template {
  height: 100%;
  display: grid;
  position: relative;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-template-rows: repeat(auto-fit, minmax(0, 1fr));
  gap: 0rem;
  border-radius: 0 !important;
  padding: var(--x-spacing);
  box-sizing: border-box;
  background-color: white;
  scale: 0;
  transition: scale 400ms cubic-bezier(0.86, 0, 0.07, 1);
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template {
  scale: 1;
  transition: scale 400ms cubic-bezier(0.86, 0, 0.07, 1) 400ms;
}

.grid-template .grid-item.gallery .sub-grid-template .entry-gallery-media {
  cursor: zoom-in;
}

.grid-template .grid-item.gallery .sub-grid-template .entry-img,
.grid-template .grid-item.gallery .sub-grid-template .entry-video {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 0;
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1);
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img, .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video {
  scale: 1;
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 400ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(1), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(1) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 500ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(2), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(2) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 600ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(3), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(3) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 700ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(4), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(4) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 800ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(5), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(5) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 900ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(6), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(6) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 1000ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(7), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(7) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 1100ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(8), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(8) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 1200ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(9), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(9) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 1300ms;
}

.switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-img:nth-child(10), .switch-gallery .grid-template .grid-item.gallery .sub-grid-template .entry-video:nth-child(10) {
  transition: all 400ms cubic-bezier(0.86, 0, 0.07, 1) 1400ms;
}

.grid-template .grid-item.description {
  height: calc(100% + 0.5px);
  border-radius: 1.4rem 0 0 1.4rem;
  box-shadow: 0px 0px 0px 1px var(--black);
}

.switch-gallery .grid-template .grid-item.description {
  pointer-events: none;
  box-shadow: 0px 0px 0px 0px var(--black);
}

@media only screen and (min-width: 620px) {
  .switch-gallery .grid-template .grid-item.description {
    box-shadow: 0px 0px 0px 1px var(--black);
  }
}

.grid-template .grid-item.description .r2c3-content-wrapper {
  border-radius: 1.4rem 0 0 1.4rem;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
}

.grid-template .grid-item.description:hover::before {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--arrow-select-size) / 2);
  height: var(--arrow-select-size);
  background-image: url("../img/arrow-selector-y.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.grid-template .grid-item.description:hover::after {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translate(50%, -50%);
  width: calc(var(--arrow-select-size) / 2);
  height: var(--arrow-select-size);
  background-image: url("../img/arrow-selector-y.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.grid-template .grid-item.footer-left {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 0px 1px var(--black);
  cursor: pointer;
  border-radius: 0 1.4rem 0 0;
}

.grid-template .grid-item.footer-left .string-view {
  display: none;
}

.grid-template .grid-item.footer-left .string-list-desc {
  display: block;
}

.switch-hide-img .grid-template .grid-item.footer-left .string-view {
  display: block;
}

.switch-hide-img .grid-template .grid-item.footer-left .string-list-desc {
  display: none;
}

@media only screen and (min-width: 980px) {
  .grid-template .grid-item.footer-left p {
    display: none !important;
  }
}

.grid-template .grid-item.footer-left:hover {
  cursor: pointer;
}

@media only screen and (min-width: 980px) {
  .grid-template .grid-item.footer-left:hover {
    cursor: auto;
  }
}

.grid-template .grid-item.footer {
  box-shadow: 0px 0px 0px 1px var(--black);
  border-radius: 1.4rem 1.4rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: crosshair;
  background-color: var(--white);
}

.grid-template .grid-item.footer .string-gallery {
  display: block;
}

.grid-template .grid-item.footer .string-exit {
  display: none;
}

.switch-fullscreen .grid-template .grid-item.footer .string-gallery, .switch-gallery .grid-template .grid-item.footer .string-gallery {
  display: none;
}

.switch-fullscreen .grid-template .grid-item.footer .string-exit, .switch-gallery .grid-template .grid-item.footer .string-exit {
  display: block;
}

.grid-template .grid-item.button-next {
  border-radius: 1.4rem 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 0px 0px 1px var(--black);
}
