﻿ @-webkit-keyframes blink { 50% { border-color:#fda30e; 
                                  color: #ffffff;
                            }  }

  @-webkit-keyframes blink1 { 50% { border-color:#1f1e3c; 
                                  color:#fda30e;

                            }  }

.img1{ 
	border: 6px solid;
	text-align:center ;

	-webkit-animation: blink .5s step-end infinite alternate; 
}
.img2{ 
	border: 6px solid;
	text-align:center ;

	-webkit-animation: blink1 .5s step-end infinite alternate; 
}
.text{
    font-weight:bold;
	text-align:center;

	-webkit-animation: blink1 .5s step-end infinite alternate; 
}

.txt{
    -webkit-animation: blink .5s step-end infinite alternate; 
}
.txt1{
    -webkit-animation: blink1 .5s step-end infinite alternate; 
}