.live_btn{
  width:200px;
  background-color: red; /* Green */
   animation:blinker 2s linear infinite;
  border: none;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  position:fixed;
  z-index:9999;
  left:0px;
  top:200px;
}
.live_btn2{
  width:170px;
  background-color: red; /* Green */
   animation:blinker 2s linear infinite;
  border: none;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  position:fixed;
  z-index:9999;
  right:0px;
  top:200px;
}
.live_btn, .live_btn2, span a{
  color:white;
  text-decoration:none;
}
.live_btn, .live_btn2, span a:hover{
  color:white;
  text-decoration:none;
}
@keyframes blinkingText{
    0%{     color: yellow;    }
    49%{    color: transparent; }
    50%{    color: transparent; }
    99%{    color:transparent;  }
    100%{   color: white;    }
}
        .blink {
           animation: blinker 1s linear infinite;
		   background: -webkit-linear-gradient(green, yellow, orange);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 font-weight:bold;
       }

      @keyframes blinker {  
           50% { opacity: -1; }
      }
.top-header{
  margin: 0px 0px;
  padding: 5px;
  background: #de3b69;
}
.top-header a{
  margin: 0px 10px;
  color: #ffff;
  font-weight: bold;
  text-decoration: none;
}
.top-header a:hover{
  color: #f9f700;
}
.sec-title h2{
	border-bottom: 2px dashed black;
	width:368px;
}
.abt-icon{
	padding:10px;
	margin:10px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
	-moz-box-shadow:    rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;  /* Firefox 3.5 - 3.6 */
	box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.abt-icon:hover{
	-webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
	-moz-box-shadow:    rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;  /* Firefox 3.5 - 3.6 */
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.abt-icon img{
	width:50px;
	margin: 0px auto;
	text-align:center;
}
.brochure{
	width:200px;
	margin:0px auto;
	text-align:center;
	padding:20px;
	background-color:#e63946;
	display:block;
	border-radius:4px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.brochure a{
	animation:blinker 2s linear infinite;
	text-decoration:none;
	@keyframes blinker {  
           50% { opacity: 50; }
      }
}