.video-figure {
  --bs-aspect-ratio:68.8%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  @media screen and (max-width: 991.98px) {
    margin-bottom: 20px;
  }
}
.video-figure video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.video-figure .play-pause-icon {
  position: absolute;
  /*top: 50%;*/
  /*left: 50%;*/
  /*-webkit-transform: translate(-50%, -50%);*/
  /*        transform: translate(-50%, -50%);*/
  width: 55px; /* Adjust the width of your custom icon */
  height: 55px; /* Adjust the height of your custom icon */
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 9;
  top: 80%;
  left: 25px;
}
@media screen and (max-width: 575.98px) {
    .video-figure .play-pause-icon {
        width: 45px;
        height: 45px;
        top: 70%;
        left: 15px;
    }
}
.video-figure .play-icon {
  background-image: url("https://vcare-polyclinic.webc.in/wp/wp-content/uploads/2023/12/play-button.svg"); 
  background-size: contain;
  filter: invert(85%) sepia(67%) saturate(15%) hue-rotate(217deg) brightness(103%) contrast(104%);

}
.video-figure .pause-icon {
  background-image: url("https://vcare-polyclinic.webc.in/wp/wp-content/uploads/2023/12/video-pause-button.svg"); /* Replace with your pause icon path */
  background-size: contain;

  filter: invert(85%) sepia(67%) saturate(15%) hue-rotate(217deg) brightness(103%) contrast(104%);


}