
/*Video Call Section*/
/*----------------------------------------------------*/
@-webkit-keyframes spin {
    from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @keyframes spin {
    from {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @-webkit-keyframes VD_animation_1 {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    25% {
      -webkit-transform: translateX(-40px);
              transform: translateX(-40px);
    }
    50% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    75% {
      -webkit-transform: translateX(40px);
              transform: translateX(40px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  @keyframes VD_animation_1 {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    25% {
      -webkit-transform: translateX(-40px);
              transform: translateX(-40px);
    }
    50% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    75% {
      -webkit-transform: translateX(40px);
              transform: translateX(40px);
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
  }
  
  .bar-vd-video-call-section {
    z-index: 1;
  }
  .bar-vd-video-call-section .bar-vd-video-call-line {
    z-index: -1;
  }
  .bar-vd-video-call-section .bar-vd-video-call-emoji {
    top: 50%;
    right: 150px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-animation-name: spin;
            animation-name: spin;
    -webkit-animation-duration: 5000ms;
            animation-duration: 5000ms;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  
  .bar-vd-video-call-img-content .bar-vd-video-shape {
    top: 0;
    z-index: -2;
    right: -70px;
  }
  
  .bar-vd-video-call-img {
    margin-bottom: 45px;
  }
  
  .bar-vd-video-call-feature {
    margin: 0 auto;
    max-width: 1032px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1B1B1B;
  }
  .bar-vd-video-call-feature ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .bar-vd-video-call-feature li {
    font-size: 18px;
    padding-left: 30px;
    position: relative;
    text-transform: capitalize;
    color: #fff;
  }
  .bar-vd-video-call-feature li:before {
    top: 0;
    left: 0;
    content: "\f058";
    position: absolute;
    color: var(--vc-color);
    font-family: "Font Awesome 5 Pro";
  }
  .bar-vd-video-call-feature li:nth-child(2):before {
    color: #5E2EED;
  }
  .bar-vd-video-call-feature li:nth-child(3):before {
    color: #06D14B;
  }