@charset "utf-8";
/* CSS Document */


body{ background-image:url("../images/bodybg.jpg"); background-size: cover}
.logo{width: 150px; height: auto; margin: 20px}
.client-box{width:200px; height: 200px; border: 4px solid #cccccc;  position: relative}

.client-box:before{width:220px; height: 220px; border: 3px solid #fdd0a9; border-bottom-color:#e26d5c; border-right-color:#e26d5c; position: absolute; content: "";border-radius: 50%; right:-8%; top:-8%; left:-8%; animation: rotate 4s linear infinite;	}

.linktop a{color:white; text-decoration: none; font-weight: bold}

@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}
@keyframes rotate1 {
	100% {
		transform: rotate(0deg);
	}
}


