.widget-details-4{
    padding:100px 20px;
}
.widget-details-4.widget-details-4--no-video .container{
    justify-content: center;
}
.widget-details-4.widget-details-4--no-video .el-content{
    width: 100%;
    max-width: 720px;
    transform: translateX(0);
    opacity: 1;
}
.widget-details-4.widget-details-4--no-video .el-content[data-scroll="in"]{
    transform: translateX(0);
    opacity: 1;
}
.widget-details-4 .container{
    display:flex;
    flex-wrap: wrap;
    gap:50px;
    align-items: center;
    justify-content: center;
}
.widget-details-4 .el-video{
    width: 500px;
    height: 320px;
    border-radius: 10px;
    cursor:pointer;
    overflow: hidden;
    background-color: #000;
    background-size: cover;

    transform: translateX(-100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-4.right .el-video{
    order:1;
    transform: translateX(100px);
}
.widget-details-4 .el-video[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition-delay: 0.5s;
}
.widget-details-4 .el-video .el-layout{
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(31,35,44,1) 0%, rgba(31,35,44,0) 100%);
    position:relative;
}
.widget-details-4 .el-video .el-layout .el-data{
    position: absolute;
    bottom:50px;
    left:50px;
    width: calc(100% - 100px);
}
.widget-details-4 .el-video .el-layout .el-data i{
    font-size: 50px;
    color: #fff;
    float:left;
}
.widget-details-4 .el-video .el-layout .el-data p{
    font-size: 14px;
    margin: 0px 0px 0px 70px;
    color:rgba(255,255,255,0.7);
}
.widget-details-4 .el-video .el-layout .el-data h6{
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    margin: 0px 0px 10px 70px;
    color:#fff;
}
.widget-details-4 .el-content{
    width: 418px;
    transform: translateX(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-4.right .el-content{
    order:0;
    transform: translateX(-100px);
}
.widget-details-4 .el-content[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition-delay: 0.5s;
}
.widget-details-4 .el-content .ui-title{
    
}
.widget-details-4 .el-content p{
    
}
.widget-details-4 .el-content .ui-button{
    margin-top:20px;
}
.widget-details-4 .el-content .el-review{
    display:flex;
    align-items: center;
    justify-content: flex-start;
    gap:20px;
    margin-top:30px;
}
.widget-details-4 .el-content .el-review img{
    
}
.widget-details-4 .el-content .el-review p{
    font-size:12px;
    line-height: 150%;
}

@media all and (max-width: 1024px){
	.widget-details-4 .el-video{
        width: calc(55% - 25px);
    }
    .widget-details-4 .el-content{
        width: calc(45% - 25px);
    }
    .widget-details-4.widget-details-4--no-video .el-content{
        width: 100%;
        max-width: 720px;
    }
}
@media all and (max-width: 768px){
	.widget-details-4 .el-video{
        width: 100%;
		order:1;
    }
    .widget-details-4 .el-content{
        width: 100%;
		order:0;
    }
}