.custom-semicircle-main {
  position: absolute;
  border-radius: 50%;
  right: -300px;
  z-index: 20;
  top: 0px;
}
.custom-semicircle-item {
  cursor: pointer;
  display: flex;
  gap: 10px;
  position: absolute;
  align-items: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.custom-semicircle-item-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;

  border-radius: 50%;
}

.custom-semicircle-item-text {
  color: #fff;
  font-size: 20px;
}
.custom-semicircle-content .active .custom-semicircle-item-text {
  font-weight: 600;
  font-size: 24px;
}
.custom-semicircle-item-icon .img_1 {
  position: absolute;
  transition: all 0.5s ease-in-out;
  width: 30px;
  height: 30px;
  opacity: 1;
}
.custom-semicircle-item-icon .img_2 {
  background-color: #fff;
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  width: 0%;
  height: 0%;
}
.custom-semicircle-item-icon .img_2 img {
  width: 100%;
  height: 100%;
}
.custom-semicircle-content .active .custom-semicircle-item-icon .img_2 {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.custom-semicircle-content .active .custom-semicircle-item-icon .img_1 {
  opacity: 0;
}
