:root {
  --bodyFont: "Jost", sans-serif;
  --titleFont: "Jost", sans-serif;
  --transition: all .3s ease;
  --body_bg: #ffffff;
  --globalColor: #F5F5F5;
  --borderColor: #DFE0E4;
  --bodyColor: #404A60;
  --titleColor: #222E48;
  --primaryColor: #2660B5;
  --secondaryColor: #EB7A23;
  --whiteColor: #ffffff;
  --blackColor: #171717;
  --linkColor: #2660B5;
  --hoverColor: var(--secondaryColor);
  --boxBorderRadius: 5px;
  --imageBorderRadius: 4px;
  --btnBorderRadius: 5px;
  --btnBgColor: #2660B5;
  --btnHoverBgColor: #EB7A23;
  --btnColor: #ffffff;
  --btnHoverColor: #ffffff;
  --btnBgColor2: transparent;
  --btnHoverBgColor2: #2660B5;
  --btnColor2: #222E48;
  --btnHoverColor2: #ffffff;
}

.circle-text {
  width: 180px;
  max-width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid var(--whiteColor);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .circle-text {
    width: 125px;
    max-width: 125px;
    height: 125px;
  }
}
.circle-text .text {
  animation: rotate 50s linear infinite;
  width: 100%;
  height: 100%;
  position: absolute;
}
.circle-text .text p {
  transform: translate(50%, 0);
}
.circle-text .text span {
  position: absolute;
  font-size: inherit;
  color: inherit;
  transform-origin: 0 70px;
}
@media (max-width: 991px) {
  .circle-text .text p {
    transform: translate(50%, 0);
  }
  .circle-text .text span {
    transform-origin: 0 60px;
  }
}
.circle-text:hover .text {
  animation-play-state: paused;
}
.circle-text .img-area {
  width: 110px;
  max-width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-text .img-area::before {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: var(--primaryColor);
}
@media (max-width: 991px) {
  .circle-text .img-area {
    width: 70px;
    max-width: 70px;
    height: 70px;
  }
}
.circle-text.second .img-area {
  width: 140px;
  max-width: 140px;
  height: 140px;
}
@media (max-width: 991px) {
  .circle-text.second .img-area {
    width: 90px;
    max-width: 90px;
    height: 90px;
  }
}
.circle-text.second .img-area span {
  font-size: 57px;
  color: #fff;
}/*# sourceMappingURL=experience.css.map */