.our-video .section-title {
    margin-bottom: 50px;
}
.our-video-col{
    width: 33.33%;
    padding: 0px 15px;
}
.our-video-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    height: 300px;
}
.our-video-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-video-item .play-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--white);
    z-index: 1;
}
.mfp-iframe-scaler video {
  width: 100%;
  height: auto;
  max-height: 80vh;
}
.our-video-item .play-btn a img{
    border: 8px solid rgb(239 115 0 / 70%);
    border-radius: 100%;
    transition: var(--transition);
}
.our-video-item .play-btn a:hover img{
    border: 8px solid rgb(239 115 0 / 100%);
}