
.slider{
    position: relative;
    width: 600px;
    height: 370px;
    /* overflow: hidden; */
    background-color: rgba(255, 0, 0, 0);
}


.item{
    position: absolute;
    display: flex;
    justify-content: center;
    width: 400px;
    height: 320px;
    text-align: justify;
    background-color: #ffffff00;
    border-radius: 10px;
    padding: 20px;
    /* padding-bottom: 100px; */
    transition: 0.5s;
    left: calc(50% - 110px);
    top: 0;
}
#next, #prev{
    position: absolute;
    top: 70%;
    color: #ff5e00d0;
    background-color: transparent;
    border: none;
    font-size: 20px;
    padding: 20px;
    font-family: monospace;
    font-weight: bold;
    left: 38%;
    z-index: 100;
}
#next{
    /* left: unset; */
    left: 77%;
    /* right: 50px; */
}


#mahsolDis{
    text-align: justify;
}



@media (max-width:884px) {
    .slider{
        position: relative;
      
        /* width: 350px; */
        width: 100%;
        height: 370px;
       
       
    } 
    .item{
        width: 250px !important;
    }
    
    #prev{ left: 0px;
    /* color:red; */
 
    }

#next{
    left: unset;
    right: 0px;
    /* color:red; */
}
}


