.videoComment {
    max-width: 1170px;
    width: 100%;
    height: 420px;
    position: relative;
	border:10px solid #d2faed;
	border-radius:24px;
	overflow:hidden;
}
.videoComment .videoCommentImg {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;
    left: 0;
    z-index: -1;
    display: flex;


}
.videoComment .videoCommentImg img {
	width:100%;
	min-width:980px;
	object-fit:cover;
}

.videoComment .videoCommentContent {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    gap:100px
}
.videoComment .videoCommentCol {
    width: 50%;
    max-width: 356px;
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding: 32px;
}
.videoComment .videoCommentCol .videoDesc {
    background-color: #fff;
    padding: 20px;
    min-height: 300px;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
}
.videoComment .videoCommentCol:last-child {
    justify-content: flex-end;
}
.videoComment .videoCommentCol .videobutton {
    text-align: right;
    background-color: transparent;
}
.videoComment .videoCommentCol .name {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    align-self: flex-end;
}

.bvc-video-modal {
    position: fixed;
    width: 100%;
    display: flex ;
    justify-content: center;
    align-items: center;
    background: #000000a3;
    height: 100%;
    border-radius: 16px;
    top: 0;
    left: 0;
}
.close {
	position: absolute;
	z-index: 9999;
	right: 0;
	font-size: 20px;
	color: #fff;
	padding: 0 10px;
	top: -20px;
	display: block;
	background-color: #5737D6;
	border-radius: 10px;
}
 .mobil-video-image {
     display: none !important;
 }

/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 992px) {

}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
	
    .videoComment {
        height: 100%;
       
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
    }
    .videoComment .videoCommentImg {
        height: 50%;
    }
    .videoComment .videoCommentImg img {
	height: 200px;
	
	object-fit: contain;
	object-position: left center;
	width: 100%;
	
}
    .videoComment .videoCommentContent {
        gap:0;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        }
	
	.videoComment .videoCommentCol:first-child {
	display: none;
}
    .videoComment .videoCommentCol {
        width: 100%;
		align-items:center;
		height:200px;

        }
    .videoComment .videoCommentCol:last-child {
        justify-content: center;
        }
    .videoComment .videoCommentCol .name,
    .videoComment .videoCommentCol .title {
        text-align: center;
        }
	.close {
	right: -7px;
	top: -100px;
	
}

    /* CSS */
    .mobil-video-image {
        display: block;
    }
    .comment-web-image {
        display: none;
    }
    }
