.denim-image-with-text-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;
      margin: 10px 0px;
      font-weight: 700;
      font-size: 60px;
      text-transform: uppercase;
      @media (max-width: 767px) {
        font-size: 25px;
        margin-top: 0px;
        margin-bottom: 5px;
      }
    }
    .description-title {
      font-size: 18px;
      line-height: normal;
      margin-bottom: 30px;

    }
    .button-text-wrapper {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      @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;
    }
  }
}