.video {
    margin: 0px 0px 15rem 0px;
  }
  @media (max-width: 991.98px) {
    .video {
      margin: 0px 0px 10rem 0px;
    }
  }
  @media (max-width: 767.98px) {
    .video {
      margin: 0px 0px 5rem 0px;
    }
  }
  .video__title {
    color: var(--unnamed, #696E7C);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "Raleway";
    font-size: 3rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.25;
    margin: 0px 0px 4rem 25.7352941176%;
  }
  @media (max-width: 991.98px) {
    .video__title {
      margin: 0px 0px 2rem 0;
    }
  }
  @media (max-width: 767.98px) {
    .video__title {
      margin: 0px 0px 1.5rem 0;
      font-size: 2rem;
    }
  }
  .video__item {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 39.167%;
    position: relative;
  }
  @media (max-width: 991.98px) {
    .video__item {
      padding-bottom: 56.25%;
      /* min-height: 210px; */
    }
  }
  .video__item:hover::after {
    transform: translate(-50%, -50%) scale(0.8);
  }
  .video__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(14, 24, 47, 0.5);
    border-radius: 20px;
  }
  .video__item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    display: block;
    background: url("/images/video/play.svg") center/contain no-repeat;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.6s ease 0s;
  }
  @media (max-width: 767.98px) {
    .video__item::after {
      width: 80px;
      height: 80px;
    }
  }
  .video__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }