.video_area {
    padding: 200px 0px;
    background-color: var(--theme-primary-color);
    text-align: center;
    position: relative;
    z-index: 1;
}
.video_area::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.video_area h4 {
    color: var(--white);
}
.video_popup {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
    z-index: 1;
}
.video_popup i {
    font-size: 22px;
    color: var(--theme-primary-color);
}
.video_popup::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.3);
    animation: waves 3s infinite linear;
    animation-delay: 0s;
    z-index: -2;
}
.video_popup::after {
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: waves 3s infinite linear;
    animation-delay: 1s;
    z-index: -1;
}
@keyframes waves {
    0% {
      transform: translate(-50%, -50%) scale(1, 1);
      opacity: 0;
    }
    50% {
      opacity: 0.9;
    }
    100% {
      transform: translate(-50%, -50%) scale(1.4, 1.4);
      opacity: 0;
    }
}
  

.video_popup_wrapper {
    top: 0;
    right: 0;
    left: 0;
}