.homeCommentsboxLayout {
    flex-grow: 1;
    background: #fff;
    display: flex;
    flex-direction: row;
}
.videoContainer{
    width: 100%;
    height: 650px;
    background-color: #fff;
    overflow: auto;
    white-space: nowrap;
    margin: auto;
}
.homeCommentsContainer {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
}
.homeCommentsImageSlides img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
    min-height: 100%;
    vertical-align: bottom;
}
.homeCommentsImageSlides {
    display: none;
    width: 100%;
}

.homeCommentsImageSlides:first-child {
    display: block;
    width: 100%;
}

.homeCommentsBox{
    width: 95%;
    display: flex;
    position: absolute;
    justify-content: flex-end;
}
.homeCommentsBox a:hover{
    text-decoration: none;
 }
.homeCommentsPrev{
    background: #008CBE;

    cursor: pointer;
    width: auto;
    padding: 28px 38px;
    color: white;
  
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  
    transition: 0.6s ease;
    user-select: none;
}
.homeCommentsNext {
    background: #59D3FF;
    
    cursor: pointer;
    width: auto;
    padding: 28px 38px;
    color: white;
  
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  
    transition: 0.6s ease;
    user-select: none;
}


@media screen and (max-width: 900px) {
    .homeCommentsBox{
        width: 95%;
    }
}
@media screen and (max-width: 767px) {
    .homeCommentsBox{
        width: 95%;
    }
    .homeCommentsboxLayout {
        flex-grow: 1;
        background: #fff;
        display: flex;
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 550px) {
    .homeCommentsBox{
        width: 100%;
    }
    .homeCommentsContainer {
        flex-direction: column;
    }
    .homeCommentsPrev{
        padding: 25px 26px;
        font-size: 20px;
    }
    .homeCommentsNext {
        padding: 25px 26px;
        font-size: 20px;
    }
}
