:root {
  --text-offset: 80px;
  --first-text-offset: 50px;
}

.strategy-circle {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.strategy-circle .no-javascript {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strategy-circle .circle-wrapper {
  border: 1px solid #d79b01;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: relative;
  animation: 5s floating infinite ease-in-out;
  display: none;
}
.strategy-circle .circle-wrapper .circle-item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12.5px;
  width: 25px;
  height: 25px;
  background-color: #d79b01;
  display: block;
  border-radius: 50%;
}
.strategy-circle .circle-wrapper .circle-item .circle-item-text {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  animation: 5s slideInOut infinite ease-in-out;
}
.strategy-circle .center-text {
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@keyframes floating {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slideInOut {
  0% {
    margin: 0px;
  }
  50% {
    margin: 3px;
  }
  100% {
    margin: 0px;
  }
}/*# sourceMappingURL=styles.css.map */

@media (max-width: 1200px) {
    .strategy-circle .circle-wrapper {
        width: 300px;
        height: 300px;
    }

    .strategy-circle .center-text {
        width: 300px;
        height: 300px;
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
    .strategy-circle {
        display: block;
    }
    .circle-wrapper {
        margin: 0 auto;
        margin-bottom: 38px;
    }
    .circle-item {
        display: none!important;
    }
    .strategy-circle ul {
        display: block!important;
    }
    .strategy-circle ul li {
        list-style: none;
    }
    .strategy-circle ul li div br {
        display: none;
    }
    .strategy-circle ul li div {
        padding: 15px 0 15px 30px;
        text-align: left!important;
        position: relative;
        font-size: 18px;
    }
    .strategy-circle ul li div::before {
        content: "";
        position: absolute;
        background: #D79B01;
        left: 0;
        top: calc(50% - 10px);
        width: 20px;
        height: 20px;
        border-radius: 50%;
    }
    .strategy-circle .center-text {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .strategy-circle .circle-wrapper {
        width: 300px;
        height: 300px;
    }

    .strategy-circle .center-text {
        font-size: 28px;
        width: 300px;
        height: 300px;
    }
}
