blink {
        animation: blinker 2s linear infinite;
        color: #FF7E00;
       }
      @keyframes blinker {  
        50% { opacity: 0; }
       }
       .blink-one {
         animation: blinker-one 1s linear infinite;
       }
       @keyframes blinker-one {  
         0% { opacity: 0; }
       }
       .blink-two {
         animation: blinker-two 1.4s linear infinite;
       }
       @keyframes blinker-two {  
         70% { opacity: 0; }
       }

h5 {
	/*margin: 1em 0 0.5em 0; */
	color: #008000;
	font-size: 16px;
	line-height: 20px;
	font-weight: normal;
	text-transform: uppercase;
	font-family: 'Orienta', sans-serif;
	letter-spacing: 1px;
	font-style: bold;
}
