@keyframes clockAnimate {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.donut {
  width: 70%;
  margin: auto;
  margin-top: 5rem;
  overflow: hidden;
}
.donut__container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.donut svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.donut__svg {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
}
.donut__svg-outer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-name: clockAnimate;
  animation-duration: 50s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.donut__svg-outer .cls-1 {
  fill: #fff;
}
.donut__svg-outer .cls-2 {
  stroke: #308e2e;
  stroke-miterlimit: 10;
}
.donut__svg-outer .cls-2,
.donut__svg-outer .cls-3 {
  fill: #216e20;
}
.donut__svg-outer .cls-4 {
  fill: #fff;
}
.donut__svg-outer a {
  transition: 0.3s ease;
}
.donut__svg-outer a:hover {
  opacity: 0.7;
}
.donut__svg-outer .cls-3:hover {
  fill: #089706;
}

.donut__svg-outer a._active {
  opacity: 0.7;
}
.donut__svg-inner {
  width: 77%;
  height: 77%;
  padding: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  animation-name: clockAnimate;
  animation-duration: 70s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: reverse;
}
.donut__svg-inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #fff;
  z-index: -1;
}
.donut__svg-inner .cls-1 {
  fill: #fff;
}
.donut__svg-inner .cls-2 {
  fill: #727171;
  stroke: #969094;
  stroke-miterlimit: 10;
}
.donut__svg-inner a {
  transition: 0.3s ease;
}
.donut__svg-inner a:hover {
  opacity: 0.7;
}
.donut__svg-inner a._active {
  opacity: 0.7;
}
.donut__svg-inner svg {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.donut__svg-logo {
  width: 30%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.donut__svg-logo img {
  width: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .donut {
    width: 100%;
    margin-top: 40px;
  }
}
