/*-------------------------------------------

=slide

-------------------------------------------*/
.container {
  height: 200vh;
}
.section {
  position: sticky;
  top: 0;
  height: 100vh;
  background-color: #fff
}
.inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14vw;
  height: 100%;
  width: 100%;
  color: #fff;
  mix-blend-mode: difference;
  position: relative;
  z-index: 5;
}
.text {
  font-size: 6vw;
  white-space: nowrap;
  flex-shrink: 0;
}
.left {
  text-align: right;
}
.center img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: calc(50vw * 0.625);
  object-fit: cover;
  clip-path: inset(40% 40% 40% 40%);
  will-change: clip-path, width, height;
  z-index: 1;
}
.contact-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) /*scale(0.9)*/ ;
  padding: 10px 36px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 1.2rem;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}