.readMorecontent {
    overflow: hidden;
    max-height: 140px;
    transition: max-height 0.3s ease;
    max-width: 1165px;
    margin: auto;
    position: relative;
  }
  .readMorecontent::after {
    position: absolute;
    bottom: 0;
    height: 50%;
    width: 100%;
    content: "";
    background: linear-gradient(to top,
       rgba(255,255,255, 1) 11%, 
       rgba(255,255,255, 0) 89%
    );
    /* pointer-events: none; */
}
.readMorecontent.noafter::after {
  background: none;
}


  .btncontainer {
    max-width: 1165px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 1.65px;
    margin-top: 24px !important;
    background-color: #E6E6E6;
    margin: 0 auto;
    background-image: linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
    background-image: -o-linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
    background-image: -moz-linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
    background-image: -webkit-linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
    background-image: -ms-linear-gradient(left , white 2%, #E6E6E6 50%, white 98%);
    background-image: -webkit-gradient( linear, left bottom, right bottom, color-stop(0.02, white), color-stop(0.5, gray), color-stop(0.98, white) );
}
  
.readMoreBtn {
    box-sizing: border-box;
    height: 32px;
    width: 125px;
    outline:none;
    border: 1px solid #464646;
    border-radius: 8px;
    background-color: #F9F7F7;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.16);
    position: absolute;
    top: -15px;
    color: #464646;
    font-family: var(--subheading-font-family);
    font-size: 14px;
    letter-spacing: 0;
    line-height: 16px;
    text-align: center;
  }