/*Template 28*/
.circle-container {
  display: flex;
  justify-content: center;
}
.circle-container .outer-circle {
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.circle-container .outer-circle .inner-circle {
  width: 181px;
  height: 181px;
  box-sizing: content-box;
  border: 20px solid var(--secondary-color);
  transform: rotate(45deg);
  border-radius: 50%;
}
.circle-container .outer-circle .inner-circle .inner-circle-content {
  background: #ffffff;
  border: 5px solid #ffffff;
  box-sizing: border-box;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: inset 0px 0px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.circle-container .outer-circle .inner-circle .inner-circle-content span {
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  padding: 0 10px;
  display: block;
  margin-bottom: 5px;
}
.circle-container .outer-circle .inner-circle .inner-circle-content img {
  height: 42px;
}
.circle-container .outer-circle svg path {
  stroke: var(--secondary-color);
  fill: var(--secondary-color);
}
.circle-container .outer-circle:not(:first-child) {
  margin-left: -49px;
}
.circle-container .outer-circle:nth-child(odd) .inner-circle {
  border-top-color: transparent;
  border-left-color: transparent;
}
.circle-container .outer-circle:nth-child(even) {
  margin-top: 1px;
}
.circle-container .outer-circle:nth-child(even) .inner-circle {
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.circle-container .outer-circle:first-child .inner-circle {
  border-left-color: var(--secondary-color);
}
@media (max-width: 767px) {
  .circle-container {
    flex-direction: column;
    align-items: center;
  }
  .circle-container .outer-circle .inner-circle {
    transform: rotate(135deg);
  }
  .circle-container .outer-circle .inner-circle .inner-circle-content {
    transform: rotate(225deg);
  }
  .circle-container .outer-circle:not(:first-child) {
    margin-left: 0px;
    margin-top: -49px;
  }
}
/*Circle end*/