@keyframes fadeInOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes autoplayLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
video-block-set {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 978px) {
  video-block-set {
    grid-template-columns: 1fr;
  }
}
video-block-set .item {
  position: relative;
  padding: 2rem;
  border-radius: 3.75rem;
  background: rgba(var(--colorPrimaryVals), 0.5);
}
@media screen and (max-width: 1200px) {
  video-block-set .item {
    padding: 1.25rem;
    border-radius: 3.375rem;
  }
}
@media screen and (max-width: 640px) {
  video-block-set .item {
    padding: 0.625rem;
    border-radius: 2rem;
  }
}
video-block-set .item a {
  position: relative;
  display: block;
  border-radius: 2.5rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  video-block-set .item a {
    border-radius: 1.5rem;
  }
}
video-block-set .item a .img {
  padding-bottom: 64.1025641%;
  position: relative;
  overflow: hidden;
  background: var(--colorTertiary);
}
@media screen and (max-width: 978px) {
  video-block-set .item a .img {
    padding-bottom: 59.80861244%;
  }
}
@media screen and (max-width: 640px) {
  video-block-set .item a .img {
    padding-bottom: 100% !important;
  }
}
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: 3.75rem 1.875rem 1.875rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  display: grid;
  align-items: center;
  pointer-events: none;
}
@media screen and (max-width: 640px) {
  video-block-set .item a .text {
    padding: 1.875rem 1.25rem 1.25rem;
  }
}
video-block-set .item a .text span {
  color: #fff;
  text-align: center;
  display: block;
}

video-block-set[data-count="1"] {
  grid-template-columns: 1fr;
  max-width: 56.25rem;
  margin: 0 auto;
}
video-block-set[data-count="1"] .item a .img {
  padding-bottom: 59.80861244%;
}
