.px-circle {
  position: relative;
  padding: 5px 0 50px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .px-circle {
    margin-top: -150px;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .px-circle {
    margin-top: -50px;
  }
}
.px-circle .px-circle-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.px-circle .container {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .px-circle .container {
    min-height: unset;
  }
}
.px-circle .center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 392px;
  height: 392px;
}
@media (max-width: 1400px) {
  .px-circle .center-image {
    width: 250px;
    height: 250px;
  }
}
.px-circle .center-image .image {
  width: 100%;
  height: 100%;
}
.px-circle .center-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.px-circle .center-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  height: 550px;
  border: 1px dashed var(--grey);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: rotate 90s linear infinite;
}
@media (max-width: 1400px) {
  .px-circle .center-image::before {
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 640px) {
  .px-circle .center-image {
    display: none;
  }
}
.px-circle .boxes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 640px) {
  .px-circle .boxes {
    position: unset;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.1764705882rem, 0.3815580286rem + 4.222972973vw, 4.1176470588rem);
    flex-wrap: wrap;
  }
}
.px-circle .box {
  position: absolute;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: white;
  border-radius: 50%;
  border: 1px solid var(--greyLight);
  transition: all 0.3s ease;
  z-index: 3;
  pointer-events: auto;
}
.px-circle .box .content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.px-circle .box .content .icon {
  margin: 0;
}
.px-circle .box .content .icon img {
  width: 21px;
  height: 21px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.px-circle .box .content .title {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 5px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--fontColor);
  white-space: nowrap;
  text-align: center;
  width: max-content;
  transition: var(--baseTransition);
}
.px-circle .box .content .link {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 25px;
  white-space: nowrap;
  color: var(--grey);
  font-weight: 700;
  opacity: 0;
  text-align: center;
  width: max-content;
  transition: var(--baseTransition);
}
.px-circle .box .content .link svg {
  margin-left: 5px;
}
.px-circle .box .content:hover .link {
  opacity: 1;
}
.px-circle .box .content:hover .title {
  color: var(--mainColor);
}
.px-circle .box .content:hover .icon {
  filter: invert(18%) sepia(97%) saturate(7491%) hue-rotate(320deg) brightness(91%) contrast(102%);
}
@media (max-width: 640px) {
  .px-circle .box {
    position: unset;
    height: unset;
    width: fit-content;
    border: none;
    flex-basis: calc(50% - 20px);
  }
  .px-circle .box .content .title {
    position: unset;
    transform: none;
    margin-bottom: 0;
  }
  .px-circle .box .content .icon {
    padding: 10px;
    border-radius: 50%;
    border: 1px solid var(--greyLight);
  }
  .px-circle .box .content .link {
    opacity: 1;
    margin-top: 0;
    position: unset;
    transform: none;
  }
}
@media (max-width: 390px) {
  .px-circle .box {
    flex-basis: 100%;
  }
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 1400px) {
  .px-circle .px-circle-inner .center-image::before {
    width: 400px;
    height: 400px;
  }
}
