body, html {
  height: 100%;
  background: #fff;
}
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    font-size: 12px;
    font-family: TTHoves-Regular,helvetica,arial,verdana,sans-serif;
    color: #fff;
    font-weight: 400;
    background-color: #fff;



.footervideo {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    font-size: 12px;
    font-family: TTHoves-Regular,helvetica,arial,verdana,sans-serif;
    color: #fff;
    font-weight: 400;
    width: 105%;
    margin-left: -4%;
    margin-bottom: -5px;
}

.pulse-button {
  position: relative;
  top: -18px;
  left: 60px;
  margin-left: 0px;
  margin-top: 0px;
  display: block;
  width: 1px;
  height: 1px;
  font-size: 1em;
  
  font-family: 'Trebuchet MS', sans-serif;
  
  text-align: center;
  line-height: 50px;
  letter-spacing: -1px;
  color: white;
  border: none;
  border-radius: 50%;
  background: #3684FF;
  cursor: pointer;
  box-shadow: 0 0 0 0 #3684FF;
  -webkit-animation: pulse 2s infinite;
}

.pulse-button:hover {
  -webkit-animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  70% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(90, 153, 212, 0);
  }
  100% {
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}


