img {
    vertical-align: baseline;
}

.rotate{
	animation-name: rotation;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotation {
    0% {
        transform:rotate(0deg);
    }
    100% {
        transform:rotate(360deg);
    }
}

.dsc > i > a:nth-child(2) > b {color: #6666CC;}
.dsc > i > a:nth-child(3) > b {color: #B06A00;}
