.denim-image-with-text-slider-conatiner {
  .image-text-slider-js {
    .swiper-wrapper {
      .wrapper {
        display: flex;
        width: 100%;
        padding: 50px;
        align-items: center;
        gap: 20px;
        @media (max-width: 767px) {
          padding: 20px 15px;
          flex-direction: column;
          gap: 10px;
        }
        .left-side-content {
          flex: 1;
          .banner-image {
            img {
              width: 100%;
              height: auto;
              max-width: 100%;
            }
          }
        }
        .right-side-content {
          flex: 1;
          .section-title {
            display: block;
            font-weight: 700;
            font-size: 50px;
            text-transform: uppercase;
            @media (max-width: 767px) {
              font-size: 25px;
              margin-top: 0px;
              margin-bottom: 5px;
            }
          }
          .section-subtitle {
            display: block;
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 5px;
            @media (max-width: 767px) {
              font-size: 20px;
            }
          }
          .description-title {
            font-size: 18px;
            line-height: normal;
            margin-bottom: 30px;
            @media (max-width: 767px) {
              font-size: 17px;
            }
          }
          .button-text-wrapper {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 10px;
            &:last-child {
              margin-bottom: 0px;
            }
            @media (max-width: 767px) {
              gap: 5px;
            }
            .button {
              width: calc(50% - 10px);
              background: #000;
              color: #fff;
              padding: 10px;
              text-align: center;
              font-size: 16px;
              display: flex;
              align-items: center;
              justify-content: center;
              cursor: pointer;
              @media (max-width: 767px) {
                width: calc(50% - 5px);
              }
            }
          }
          .shop-link-text {
            font-size: 16px;
            display: block;
            width: 100%;
            margin: 8px 0;
            padding: 10px;
            background: #000;
            color: #fff;
            text-align: center;
            cursor: pointer;
          }
        }
      }
    }
    .swiper-button-next {
      right: 50.7%;
      @media (max-width: 767px) {
        right: 15px;
      }
    }
    .swiper-button-prev {
      left: 50px;
      @media (max-width: 767px) {
        left: 15px;
      }
    }
    .swiper-button-next,.swiper-button-prev {
      &::after {
        content: " ";
      }
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      width: 40px;
      border: 1px solid #000;
      background-color: #000;
      border-radius: 0px;
      top: 45%;
      @media (max-width: 767px) {
        width: 35px;
        height: 35px;
        top: 22%;
      }
      svg {
        height: 100%;
        width: 100%;
        padding: 8px;
        fill: #fff;
      }
    }
    .swiper-pagination {
      bottom: 10%;
      left: -22%;
      @media (max-width: 767px) {
        bottom: 50%;
        left: 0;        
      }
      .swiper-pagination-bullet {
        &::before {
          content: unset;
        }
        width: 8px;
        height: 8px;
        &.swiper-pagination-bullet-active {
          background-color: #000;
        }
      }     
    }
  }
}