.video-module .img-wrapper {
  position: relative;
  padding-top: 42%;
  overflow: hidden;
  border-radius: 18px;
  z-index: 1;
  background-color: #f5f5f5;
}
.video-module .img-:has(img)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.video-module .img-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.video-module .video-module-txt {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 0;
  align-items: center;
  width: 100%;
  border-radius: 0px 0px 18px 18px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.75px);
  padding: 40px 95px;
  column-gap: 15px;
  row-gap: 20px;
  z-index: 1;
}
.video-module .video-module-txt h2 {
  color: var(--white);
  margin-bottom: 0;
}
.video-module .video-module-txt .btn {
  flex-shrink: 0;
}
.video-module .img-wrapper .vimeo-wrapper,
.video-module .img-wrapper .vimeo-wrapper * {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .video-module .video-module-txt {
    padding: 30px 50px;
  }
}
@media only screen and (max-width: 991px) {
  .video-module .video-module-txt {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .video-module .img-wrapper {
    padding-top: 140%;
  }
  .video-module .video-module-txt h2 {
    font-size: 24px;
  }
}
