.pulseBtn{
  width: 90%;
  background-color: #0066cc !important;
    color: white !important;
    padding: 20px 26px !important;
    margin: 10px 0 20px;
    font-size: 20px;
    text-transform: uppercase;
    
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    -webkit-animation-name: "play_down";
    -moz-animation-name: "play_up";
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes play_down {
  0% {
    -webkit-box-shadow: 0 0 rgba(55, 55, 55, 0.6);
    -moz-box-shadow: 0 0 rgba(55, 55, 55, 0.6);
    box-shadow: 0 0 rgba(55, 55, 55, 0.6);
  }

  to {
    -webkit-box-shadow: 0 0 0 20px rgba(55, 55, 55, 0);
    -moz-box-shadow: 0 0 0 20px rgba(55, 55, 55, 0);
    box-shadow: 0 0 0 20px rgba(55, 55, 55, 0);
  }
}
.pulseContainer{
  width: 100%;
  display: flex;
  justify-content: center;
}
article video{
  margin-bottom: 16px;
}
.fixedBtn{
  position: fixed;
bottom: 0;
width: 100%;
height: 40px;
z-index: 10000;
color: #fff;
font-weight: 700;
background: #0066CCFF;
display: flex;
align-items: center;
justify-content: center;
  
}