   .custom-slider .swiper {
      width: 100%;
      height: 100dvh;
      position: relative   ;
	   background-color:#fff
    
    }
    .custom-slider .swiper-wrapper{
        position: relative;

    }



     .custom-slider .swiper-slide {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;

      z-index: 1;
    }
        .custom-slider .swiper-slide::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
        background: rgba(0, 0, 0, 0.5);
      z-index: -1;

    }

     .custom-slider .mySwiper .content {
      position: relative;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      transition: all 0.1s ease-in-out;
      display: flex ;
      flex-direction: column;
      align-items: flex-end;
      z-index: 10;
      color: #fff;
      text-align: right;
      
    }


     .custom-slider .mySwiper .content span{
        font-size: 18px;
        font-weight: 500;
          color: #dadada;

    }
     .custom-slider .mySwiper .content h1 {
      font-size: 45px;
      font-weight: 800;
      margin: 5px 0;
      max-width: 500px;
          line-height: 1.4;

    }
     .custom-slider .mySwiper .content p {
      font-size: 18px;
      font-weight: 400;
      max-width: 500px;
          line-height: 2;
          color: #dadada;


    }
     .custom-slider .mySwiper .content :where(span, h1, p) {


        position: relative;
      display: block;
      opacity: 0;
      transform: translateX(-60px);
      transition: all 0.5s ease-in-out;
      z-index: 10;

    }
 .custom-slider .swiper-slide.swiper-slide-active .content span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

 .custom-slider .swiper-slide.swiper-slide-active .content h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;

}

 .custom-slider .swiper-slide.swiper-slide-active .content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
    @media(max-width:768px) {
       .custom-slider .mySwiper .content{
        right: unset;
        padding: 0 20px;
       }
       .custom-slider .mySwiper .content h1{
        font-size: 30px;  }
        .custom-slider .mySwiper .content p{
        font-size: 16px;
        max-width: 100%;
        }
        .custom-slider .mySwiper .content span{
        font-size: 18px;
        }
    }


    .custom-slider .swiper-pagination {
      position: absolute;
      top: 50% !important;
      left: 5% !important;
      transform: translateY(-50%);
      z-index: 10;
      width: auto !important;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }



     .custom-slider .swiper-pagination .swiper-pagination-bullet {
      height: 40px;
      width: 40px;
      background: transparent;
      border-radius: 50%;
      color: #fff !important;
      opacity: 0.6;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: all 0.3s ease-in-out;
    }

     .custom-slider .swiper-pagination .swiper-pagination-bullet::before {
      content: "";
      position: absolute;
      width: 0;
      height: 1px;
      background: #fff;
      top: 50%;
      left: 100%;
      transform: translateY(-50%);
      transition: all 0.3s ease-in-out;
    }


     .custom-slider .swiper-pagination .swiper-pagination-bullet-active {
      opacity: 1;
    }

     .custom-slider .swiper-pagination .swiper-pagination-bullet-active::before {
      width: 50px;
    }

        @media(max-width:768px) {
       .custom-slider .swiper-pagination {
        left: 50% !important;
        top: 80% !important;
        transform: translateX(-50%);
        flex-direction: row;

      }
      .custom-slider .swiper-pagination .swiper-pagination-bullet::before {
        display: none;
      }
    }