 .Pc_Ps_BA-wrapper {
	     position: relative;
    background-color: #2b2b2b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 100px 5%;
    box-sizing: border-box;
    overflow: hidden;
	 z-index: 10
  }
  .Pc_Ps_BA-wrapper * {
    box-sizing: inherit;
  }
  .Pc_Ps_BA-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }
  .Pc_Ps_BA-title {
   position: absolute;
    top: 50px;
    left: -180px;
    z-index: 30;
    pointer-events: none;
    font-family: Clash Display;
    font-weight: 400;
    font-size: clamp(2.5rem, 1.9429rem + 2.2857vw, 4rem);
  }
  .Pc_Ps_BA-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #111;
    border: 1px solid #1a1a1a;
    --slider-pos: 25%;
    user-select: none;
    overflow: hidden;
  }
  .Pc_Ps_BA-img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(1px);
    z-index: 1;
  }
  .Pc_Ps_BA-img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    clip-path: polygon(0 0, var(--slider-pos) 0, var(--slider-pos) 100%, 0 100%);
    will-change: clip-path;
  }
  .Pc_Ps_BA-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--slider-pos);
    width: 2px;
    background-color: #ffffff;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: left;
  }
  .Pc_Ps_BA-handle-btn {
    width: 48px;
    height: 48px;
    background-color: #F1EFE9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  }
  .Pc_Ps_BA-handle-btn svg {
        width: 50px;
    height: 50px;
    color: #2b2b2b;
  }
  .Pc_Ps_BA-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
  }
  .Pc_Ps_BA-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 2000px;
    cursor: ew-resize;
  }
  .Pc_Ps_BA-range::-moz-range-thumb {
    width: 60px;
    height: 2000px;
    cursor: ew-resize;
    border: none;
  }
  .Pc_Ps_BA-text-wrapper {
    position: absolute;
    bottom: 0;
    right: -200px;
    z-index: 20;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    pointer-events: auto;
  }
  .Pc_Ps_BA-desc {
    color: rgba(255, 255, 255, 1);
    margin: 0;
    font-family: Archivo;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
  }
  .Pc_Ps_BA-btn {
  background-color: rgba(240, 234, 220, 1) !important;
    color: #2b2b2b !important;
    text-decoration: none;
    padding: 3px 6px 3px 20px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.2s ease, filter 0.2s ease;
    font-family: Clash Display;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0%;
  }
/*   .Pc_Ps_BA-btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.95);
  } */
  .Pc_Ps_BA-btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(45, 45, 45, 1);
    color: #ffffff;
    width: 29px;
    height: 29px;
    border-radius: 50%;
  }
  .Pc_Ps_BA-btn-icon svg {
    width: 14px;
    height: 14px;
	  transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  .Pc_Ps_BA-btn:hover .Pc_Ps_BA-btn-icon svg {
    transform: rotate(45deg);
  }
  
@media (min-width: 1200px) and (max-width: 1400px) {
  .Pc_Ps_BA-title{
      font-size: 56px;
  }
  .Pc_Ps_BA-text-wrapper{
      right: -150px;
  }
}
  
  @media (max-width: 900px) {
    .Pc_Ps_BA-title {
      left: -20px;
    }
  }
  @media (max-width: 768px) {
    .Pc_Ps_BA-wrapper {
      padding: 60px 20px;
    }
    .Pc_Ps_BA-container {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .Pc_Ps_BA-title {
      position: static;
      font-size: 2.8rem;
      text-shadow: none;
    }
    .Pc_Ps_BA-slider-container {
      aspect-ratio: 1 / 1;
    }
    .Pc_Ps_BA-text-wrapper {
      position: static;
      max-width: 100%;
      align-items: center;
      text-align: center;
      gap: 20px;
    }
    .Pc_Ps_BA-desc {
      font-size: 1rem;
      color: #d1d1d1;
      text-shadow: none;
    }
  }