  * {
      font-family: "کهربا", Sans-serif !important;
  }


  .slider-container {
      min-height: 85vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0;
      background: linear-gradient(0deg, #a3a3a3, transparent);
      ;
      position: relative;
      overflow: hidden;

  }


  .slider {
      position: relative;
      width: 100%;
      max-width: 1200px;
      height: 52vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;

  }


  .slide {
      position: absolute;
      width: 320px;
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: center center;
      top: -50px;
  }

  .slide img {
      width: 80%;
      height: 100%;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      margin-right: 30px
  }

  .slide.active {
      opacity: 1;
      filter: none;
      z-index: 10;
      transform: scale(1) translateX(0);
  }

  .slide.active img {
      box-shadow: none;
  }

  .slide.next,
  .slide.prev {
      opacity: 0.4;
      filter: blur(4px) brightness(0.7);
      z-index: 1;
      transform: scale(0.85);
  }

  .slide.next {
      transform: scale(0.85) translateX(340px);
  }

  .slide.prev {
      transform: scale(0.85) translateX(-340px);
  }

  .caption {
      /*margin-top: 40px;*/
      text-align: center;
      max-width: 600px;
      padding: 0 20px;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .caption h3 {
      font-size: 14px;
      font-weight: 600;
      color: white;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 4px;
  }

  .caption h2 {
      font-size: 24px;
      font-weight: 800;
      color: #545a31;
      line-height: 1.4;
      margin-bottom: 8px;
      letter-spacing: -0.5px;
  }

  .caption p {
      font-size: 16px;
      font-weight: 600;
      color: white;
      line-height: 1.3;
  }

  .dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin-top: 15px;
      z-index: 20;
  }

  .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #c0c0c0;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
      outline: none;
  }

  .dot:hover {
      background-color: #a0a0a0;
      transform: scale(1.2);
  }

  .dot.active {
      background-color: #545a31;
      width: 8px;
      height: 8px;
  }

  @media (max-width: 768px) {
      .slider-container {
          min-height: 75vh !important;
      }

      .slider {
          height: 36vh;
          background: transparent;
      }

      .slide {
          width: 250px;
          height: 350px;
      }

      .slide.next {
          transform: scale(0.85) translateX(160px);
      }

      .slide.prev {
          transform: scale(0.85) translateX(-160px);
      }

      .caption h2 {
          font-size: 20px;
      }

      .caption p {
          font-size: 14px;
      }
        .slide img{
        width: 65%;
        margin-right: 50px;
        }
  }

  @media (max-width: 480px) {
      .slider {
          background: transparent;
      }

      .slide {
          width: 250px;
          height: 280px;
      }

      .slide.next {
          transform: scale(0.85) translateX(130px);
      }

      .slide.prev {
          transform: scale(0.85) translateX(-130px);
      }

      .caption h2 {
          font-size: 18px;
      }

      .caption h3 {
          font-size: 12px;
      }

      .caption p {
          font-size: 13px;
      }
  }

  .e-con-inner {
      padding: 0;
      margin: 0;
  }