@media (min-width: 991px) {
  .glidy-showreel-wrapper {
    height: 200vh;
    position: relative;
  }

  .glidy-showreel-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .glidy-showreel-img {
    position: absolute;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: scale(1.3);
    transform-origin: center center;
    --clip-top: 47%;
    --clip-right: 45%;
    --clip-bottom: 47%;
    --clip-left: 45%;
    --border-radius: 20px;
    clip-path: inset(var(--clip-top) var(--clip-right) var(--clip-bottom) var(--clip-left) round var(--border-radius));
    will-change: transform, clip-path;
    z-index: 1;
  }

  .glidy-showreel-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 2;
    font-weight: 500;
    font-size: 100px;
    line-height: 1;
  }

  .glidy-showreel-text-left {
    right: 60%;
  }

  .glidy-showreel-text-right {
    left: 60%;
  }

}


.glidy-showreel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}

.glidy-showreel-play-btn .modal-text {
  font-size: 24px;
  color: #000;
}

.glidy-showreel-play-btn .modal-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 100px;
}

@media (max-width: 1399px) {
  .glidy-showreel-text {
    font-size: 80px;
  }
}

@media (max-width: 1199px) {
  .glidy-showreel-text {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .glidy-showreel-text {
    font-size: 50px;
  }

  .glidy-showreel-text {
    display: none;
  }

  .glidy-showreel-play-btn {
    opacity: 1;
    visibility: visible;
  }

}

@media (max-width: 767px) {
  .glidy-showreel-text {
    font-size: 40px;
  }
}