::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #fff !important;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #0a0a0a !important;
}

::-webkit-scrollbar-thumb:hover {
  background: #0a0a0a !important;
}

.clents_title {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 600;
  text-align: center;
}

.clents {
  position: relative;
  z-index: 11;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.clents .clents_img_wrpa {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  transform-origin: center center;
  transform-style: preserve-3d;
}
@media (max-width: 768px) {
  .clents .clents_img_wrpa {
    transform-origin: center center;
  }
}
.clents .clents_img_item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(80px, 6vw, 80px);
  height: clamp(40px, 5vw, 60px);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
  opacity: 0;
  user-select: none;
  pointer-events: all;
  cursor: pointer;
  filter: brightness(0.8);
  transform: translate(-50%, -50%);
}
.clents .clents_img_item:hover {
  opacity: 1;
}
.clents .clents_img_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  backface-visibility: hidden;
  transform-origin: center center;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}
@media (max-width: 768px) {
  .clents {
    perspective: 1000px;
  }
  .clents .clents_img_wrpa {
    transform-origin: center center;
  }
}
.clents_pop_up {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}

.clents_pop_up_title {
  height: 30px;
}

.clents_pop_up_item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  max-width: 85%;
  max-height: 80vh;
  overflow: hidden;
}
.clents_pop_up_item.pc .clents_pop_up_item_img {
  max-height: 600px;
}
.clents_pop_up_item.mobile .clents_pop_up_item_img {
  max-height: 480px;
}
.clents_pop_up_item_close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.clents_pop_up_item_close:before, .clents_pop_up_item_close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #868686;
  transform-origin: center;
}
.clents_pop_up_item_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.clents_pop_up_item_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.clents_pop_up_item_close:hover:before, .clents_pop_up_item_close:hover:after {
  background: #000;
}

.clents_pop_up_item_img {
  width: 100%;
  overflow-y: auto;
  border-radius: 10px;
}

.clents_pop_up_item_img img {
  width: 100%;
  display: block;
}
