.circle-container {
    display: flex;
    justify-content: center;
  }
  .circle-container .outer-circle {
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .circle-container .outer-circle .inner-circle {
    width: 130px;
    height: 130px;
    box-sizing: content-box;
    border: 10px solid  var(--tmsyellow);;
    transform: rotate(45deg);
    border-radius: 50%;
  }
  .circle-container .outer-circle .inner-circle .inner-circle-content {
    background: #ffffff;
    border: 3px 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);
  }
  .circle-container .outer-circle .inner-circle .inner-circle-content span {
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    line-height: 18px;
  }
  .circle-container .outer-circle .inner-circle .inner-circle-content svg {
    margin-top: 15px;
  }
  .circle-container .outer-circle svg path {
    stroke:  var(--tmsyellow);
    fill:  var(--tmsyellow);
  }
  .circle-container .outer-circle:not(:first-child) {
    margin-left: -69px;
  }
  .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(--tmsyellow);
  }
  @media (max-width: 980px) {
    .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: -69px;
    }
  }
  