.full-width-video-section {
    margin: 0;
    position: relative;
    z-index: 1;
}
.full-width-video-section:before {
    content: "";
    display: block;
    background: #0a0802;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 1;
    opacity: 0.8;
}
.video-wraper-main {
    position: relative;
}
.video-wraper-main .video-wraper {
    position: relative;
    padding-bottom: 46.25%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wraper-main .video-wraper img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.video-wraper-main {
   position: relative;
}

.video-wraper-main .popup-youtube {
    position: absolute;
    height: 150px;
    width: 150px;
    z-index: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    transform: unset;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}
.video-wraper-main .popup-youtube:before {
    content: "";
    display: block;
    background-color: var(--blue);
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: jkit-ripple 3s infinite;
    -webkit-box-shadow: 0 0 0 0 currentColor;
}
.video-wraper-main .popup-youtube .play-btn {
    display: block;
    height: 100%;
    width: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    
}
.video-wraper-main .popup-youtube svg {
    height: 36px;
    width: 36px;
    vertical-align: middle;
}

@-webkit-keyframes jkit-ripple {
  70% {
    -webkit-box-shadow:0 0 0 15px currentColor;
    box-shadow:0 0 0 15px currentColor;
    opacity:0
  }
  100% {
    -webkit-box-shadow:0 0 0 0 currentColor;
    box-shadow:0 0 0 0 currentColor;
    opacity:0
  }
}
@keyframes jkit-ripple {
  70% {
    -webkit-box-shadow:0 0 0 15px currentColor;
    box-shadow:0 0 0 15px currentColor;
    opacity:0
  }
  100% {
    -webkit-box-shadow:0 0 0 0 currentColor;
    box-shadow:0 0 0 0 currentColor;
    opacity:0
  }
}
@media only screen and (max-width:1199px){
    .video-wraper-main .popup-youtube {
        height: 100px;
        width: 100px;
    }
}
@media only screen and (max-width:767px){
    .full-width-video-section .video-wraper-main {
        padding-bottom: 56.25%;
    }
    .video-wraper-main .popup-youtube svg {
        height: 26px;
        width: 26px;
  
    }
}