/* ---------------------------------
    Video Box
   --------------------------------- */
   .video-box .video-wrapper {
    width: 80%;
    margin: 0 auto;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 10px solid #fff;
    box-shadow: 0px 0px 11.83px 1.17px rgba(0, 0, 0, 0.26);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 10px;
}
.video-box.center-align .video-wrapper{
    justify-content: center;
}
.video-box.right-align .video-wrapper{
    justify-content: flex-end;
}
.video-box.left-align .video-wrapper{
    justify-content: flex-start;
}
.video-box .video-wrapper .video-content .primary-text {
    text-transform: uppercase;
    line-height: 1;
    margin-top: 0;
    font-size: 42px;
    font-weight: 600;
}
.video-box .video-wrapper .video-content .primary-text {
    text-transform: uppercase;
    line-height: 1;
    margin-top: 0;
    font-size: 40px;
    margin-bottom: 6px;
}
.video-box .video-wrapper .video-content .secondary-text {
    line-height: 1;
    font-size: 18px;
    margin-bottom: 20px;
}
.video-box .video-wrapper .video-content .play {
    display: inline-block;
    height: 80px;
    width: 80px;
    background-color: #fff;
    color: #076e5d;
    line-height: 1;
    text-align: center;
    position: relative;
    border-radius: 50%;
    font-size: 24px;
    animation: pulse-animation 1.5s infinite;
}
.my-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.video-box .video-wrapper .video-content .play:hover{
    background-color: #e85c0d;
    color: #fff;
}
.video-box .video-wrapper .video-content .play > i{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: 1px;
}
.video-box {
    position: relative;
}
.video-box .vb-top,
.video-box .vb-top-blur,
.video-box .vb-bottom,
.video-box .vb-bottom-blur {
    position: absolute;
}
.video-box .vb-top {
    left: 0;
    top: -80px;
    z-index: -1;
    max-width: 350px;
}
.video-box .vb-top-blur {
    right: 0;
    z-index: -1;
    top: 0;
    max-width: 100px;
}
.video-box .vb-bottom-blur {
    left: 70px;
    bottom: -130px;
    z-index: -1;
    max-width: 210px;
}
.video-box .vb-bottom {
    z-index: 1;
    bottom: -40px;
    right: 0;
    max-width: 210px;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.9);
    transform: scale(0.9);
  }
  50%{
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    transform: scale(0.9);
  }
}
@media (max-width: 1599px){
    .video-box .video-wrapper{
      height: 500px;
    }
    .video-box .vb-top{
        max-width: 320px;
    }
}
@media (max-width: 991px){
    .video-box .video-wrapper{
        width: 90%;
        height: 380px;
    }
    .video-box .vb-top {
        max-width: 260px;
    }
    .video-box .vb-top-blur {
        top: -40px;
    }
    .video-box .vb-bottom {
        max-width: 160px;
    }
    .video-box .vb-bottom-blur {
        left: 0px;
        bottom: -110px;
        max-width: 180px;
    }
}
@media (max-width: 767px){
  .video-box .video-wrapper {
      width: 100%;
      height: 180px;
      border: 4px solid #fff;
  }
  .video-box .vb-top {
      max-width: 80px;
      top: -30px;
      left: -15px;
  }
  .video-box .vb-top-blur {
      top: -30px;
      right: -15px;
      max-width: 70px;
  }
  .video-box .vb-bottom {
      max-width: 80px;
      right: -15px;
      bottom: -20px;
  }
  .video-box .vb-bottom-blur {
      left: -15px;
      bottom: -50px;
      max-width: 80px;
  }
  .video-box .video-wrapper .video-content .primary-text {
      font-size: 34px;
  }
  .video-box .video-wrapper .video-content .secondary-text {
      font-size: 16px;
  }
  .video-box .video-wrapper .video-content .play {
      height: 50px;
      width: 50px;
      font-size: 16px;
  }
}

