@keyframes barMove {
  0% {
    left: 0;
    opacity: 1;
  }
  30% {
    left: 18.16%;
  }
  60% {
    left: 62.16%;
  }
  80% {
    left: calc(100% - 14px);
    opacity: 1;
  }
  100% {
    left: calc(100% - 14px);
    opacity: 0;
  }
}
@keyframes barPulse {
  75% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.2);
  }
  95% {
    transform: scale(1);
  }
}
@keyframes barPulseStart {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.2);
  }
  10% {
    transform: scale(1);
  }
}
@keyframes barPulseStartColor {
  0% {
    fill: var(--colorCopperstringOrange);
  }
  5% {
    fill: #fff;
  }
  10% {
    fill: var(--colorCopperstringOrange);
  }
}
@keyframes barPulseColor {
  75% {
    fill: var(--colorCopperstringOrange);
  }
  80% {
    fill: #fff;
  }
  85% {
    fill: var(--colorCopperstringOrange);
  }
}
@keyframes playPulse {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
  }
}
@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes autoplayLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
video-block-set {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media screen and (max-width: 1200px) {
  video-block-set {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 978px) {
  video-block-set {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 640px) {
  video-block-set {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
video-block-set .item {
  position: relative;
}
video-block-set .item a {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
}
video-block-set .item a .img {
  padding-bottom: 73.52941176%;
  position: relative;
  overflow: hidden;
  background: #000;
}
@media screen and (max-width: 1320px) {
  video-block-set .item a .img {
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 1200px) {
  video-block-set .item a .img {
    padding-bottom: 56.25%;
  }
}
@media screen and (max-width: 978px) {
  video-block-set .item a .img {
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 640px) {
  video-block-set .item a .img {
    padding-bottom: 73.1981982%;
  }
}
video-block-set .item a .img .vimeo-holder--option {
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  bottom: -0.125rem;
  right: -0.125rem;
}
video-block-set .item a .img .vimeo-holder--option iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  size: 250%;
}
video-block-set .item a .img img {
  position: absolute;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.01);
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
video-block-set .item a .text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5625rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  display: grid;
  align-items: center;
  pointer-events: none;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  video-block-set .item a .text {
    padding: 1.25rem;
  }
}
video-block-set .item a .text span {
  text-align: center;
  display: block;
  color: #fff;
  background: linear-gradient(to right, var(--colorCopperstringOrange), #fff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

video-block-set[data-count="1"] {
  grid-template-columns: 1fr;
  max-width: 37.5rem;
  margin: 0 auto;
}

video-block-set[data-count="3"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media screen and (max-width: 1200px) {
  video-block-set[data-count="3"] {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 978px) {
  video-block-set[data-count="3"] {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 640px) {
  video-block-set[data-count="3"] {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
