@font-face {
  font-family: "Inter";
  src:
    url("../fonts/Inter-Regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

* {
  box-sizing: border-box;
}


html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  color: #111;
  font-family:
    "Inter",
    sans-serif;
}

:root {
  --bg: #fff;
  --fg: #111;
  --pad: 28px;
  --image-gap: 20px;
}

body {
  cursor: none;
}

body::after {
  content: var(--cursor-arrow);
  position: fixed;
  z-index: 9999;
  left: var(--cursor-x);
  top: var(--cursor-y);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  transform:
    translate(-50%, -50%);
  color: #111;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px;
  box-sizing: border-box;
  z-index: 20;
  pointer-events: none;
}

.header-menu-left-container {
  width: 42%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.header-menu-left {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: normal;
  opacity: 1;
  transform: none;
  color: #1a1a1a;
  text-decoration: none;
  pointer-events: auto;

}

.brand {

  color: inherit;
  text-decoration: none;
  pointer-events: auto;
  font-family:
    "Inter",
    sans-serif;

}

.counter {
  display: none;
}

#gallery {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;

}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity .35s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}
.slide-pair {

  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--image-gap);
  height: calc(100vh - 214px);
  max-height: 78vh;
  width: auto;
}

.image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: auto;
  flex: 0 0 auto;
}

.image-wrapper img,
.image-wrapper video {

  display: block;
  height: 100%;
  width: auto;
  max-width: calc(
    50vw - 70px
  );

  object-fit: contain;
  object-position: center;

}

@media (max-width: 700px) {

  :root {
    --pad: 14px;
  }

  .header {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--pad);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1000;
    pointer-events: none;
  }

  .header-menu-left-container {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    flex-shrink: 0;
  }


  .header-menu-left {
    font-size: 15px;
    line-height: 1.35;
    pointer-events: auto;

  }

  .slide {
    padding:
      45px
      14px
      45px;
  }


  .slide-pair {
    height: calc(100vh - 90px);
    max-height: none;
    width: 100%;
  }

  .image-wrapper {
    width: 100%;
    height: 100%;
  }

  .image-wrapper img,
  .image-wrapper video {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .image-wrapper:nth-child(2) {
    display: none;
  }

  body::after {
    display: none;
  }

}


html,
body,
#gallery,
.slide,
.slide-pair,
.image-wrapper,
.image-wrapper img,
.image-wrapper video {

  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;

}


img,
video {

  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;

}