#webcomments {
    width:90%;
    height:auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: rgb(248, 184, 21);
    margin-left: 5%;
    margin-top: 5%;
    margin-bottom: 10%;
    border-radius: 10px;
}

.webcommentsbox{
    width:80%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(8, 100%);
    overflow:auto ;
   -webkit-overflow-scrolling: touch;
   scroll-snap-type:x mandatory;
 
}
.webcommentsbox::-webkit-scrollbar{
    display: none;
    visibility: hidden;
    opacity: 0;
} 

.commentbox{
    width:100%;
    height:auto;
    scroll-snap-align: start;
    cursor:pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10px;
    padding: 5px;
}

.commentbox span{
    font-size: 24px;
    text-align: center;
    color: black;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-style: italic;
    letter-spacing: 2px;
}

.commentbox p{
    width: 80%;
    font-size: 16px;
    text-align: right;
    color: rgb(25, 25, 112);
    
}

.reviev{
    width:100%;
    height:auto;
    margin-bottom: 5px;
    padding-top: 10px;
  
}

.reviev pre{
    width:100%;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 600;
}
.reviev ul{
    width: 100%;
    height:100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
}
.reviev img{
    /* width:140px; */
    height:40px;
}
.revievh {
    font-size: 38px !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', Arial, Helvetica, sans-serif !important;
}

@media only screen and (max-width: 768px) {
    .commentbox span{
        font-size: 24px;
    }
    .reviev img{
        /* width:80px; */
        height:28px;
        margin-right: 10px;
    }
    .reviev pre{
        width:100%;
        text-align: center;
        margin-bottom: 20px;
        font-family: 'Raleway', Arial, Helvetica, sans-serif;
        font-size: 15px;
        overflow: hidden;
        font-weight: 400;
    }
    .revievh {
        font-size: 24px !important;
        font-weight: 600 !important;
        letter-spacing: 2px !important;
    }
}
@media only screen and (max-width: 640px) {

    .commentbox span{
        font-size: 18px;
    }
   
    
}

@media only screen and (max-width: 480px) {

    .commentbox span{
        font-size: 16px;
    }
}
