  .slider-container {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
      /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
  }

  .slider {
      position: relative;
      width: 100%;
      height: 100%;
  }

  .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .slide.active {
      opacity: 1;
  }

  .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
  }

  /* Slice animation */
  .slide.slide-in {
      animation: sliceIn 1s forwards;
  }

  .slide.slide-out {
      animation: sliceOut 1s forwards;
  }

  @keyframes sliceIn {
      0% {
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
      }

      100% {
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
      }
  }

  @keyframes sliceOut {
      0% {
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
      }

      100% {
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
      }
  }

  .navigation {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      z-index: 10;
  }

  .nav-btn {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      margin: 0 5px;
      cursor: pointer;
      transition: background 0.3s ease;
  }

  .nav-btn.active {
      background: #fff;
  }

  .prev,
  .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 38px;
      cursor: pointer;
      z-index: 10;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
  }

  .prev:hover,
  .next:hover {
      background: var(--AMDAsecondary-color);
  }

  .prev {
      left: 20px;
  }

  .next {
      right: 20px;
  }

  .headingOfSlider {
      position: absolute;
      bottom: 0;
      background: var(--AMDAsecondary-color);
      color: var(--white);
      width: 100%;
      text-align: center;
      font-size: var(--captionFnSize);
  }


  /* Responsive adjustments */
  @media(max-width:1151px) {
      .slider-container {
          height: 390px;
      }
  }

  @media (max-width: 768px) {
      .slider-container {
          height: 290px;
      }

      .prev,
      .next {
          width: 35px;
          height: 35px;
          font-size: 28px;
      }

      .navigation {
          bottom: 35px;
      }

      .nav-btn {
          width: 8px;
          height: 8px;
          margin: 0 4px;
      }
  }

  @media (max-width: 480px) {

      .prev,
      .next {
          width: 30px;
          height: 30px;
          font-size: 20px;
      }

      .navigation {
          bottom: 30px;
      }

      .nav-btn {
          width: 6px;
          height: 6px;
          margin: 0 3px;
      }
  }

  @media (min-width: 1200px) {

      .prev,
      .next {
          width: 50px;
          height: 50px;
          font-size: 38px;
      }

      .navigation {
          bottom: 35px;
      }

      .nav-btn {
          width: 12px;
          height: 12px;
          margin: 0 6px;
      }
  }