.widget-details-3{
    padding:100px 20px;
}
.widget-details-3 .container{
    display:flex;
    flex-wrap: wrap;
    gap:50px;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.widget-details-3 .el-image{
    background-color: #f7f7f7;
    background-size: cover;
    width: calc(50% - 25px);
    padding-bottom: 60%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;

    transform: translateY(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-3.right .el-image{
    order:1;
}
.widget-details-3 .el-image[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.5s;
}
.widget-details-3 .el-image::after{
    content:'';
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(31,35,44,1) 0%, rgba(31,35,44,0) 100%);
    position: absolute;
}
.widget-details-3 .el-image img{
    width: 100%;
    height: auto;
}
.widget-details-3 .el-content{
    width: calc(45% - 25px);

    transform: translateX(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-3.right .el-content{
    order:0;

    transform: translateX(-100px);
}
.widget-details-3 .el-content[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition-delay: 0.5s;
}
.widget-details-3 .el-content .ui-title{
    
}
.widget-details-3 .el-content p{
    
}
.widget-details-3 .el-content ul{
    margin: 40px 0px 0px 30px;
    list-style: none;
    font-size:14px;
}
.widget-details-3 .el-content ul li {
    text-align: left;
    list-style: none;
    margin: 12px 0px;
    position:relative;
}
.widget-details-3 .el-content ul li:before {
    content: "\f14a";
    font-family: "Line Awesome Free";
    display: inline-block;
    margin: 2px 0px 0px -34px;
    width: 35px;
    font-weight: 600;
    color: var(--color-01);
    font-size: 30px;
    position:absolute;
}
.widget-details-3 .el-content .ui-button{
    margin-top:20px;
}

@media all and (max-width: 768px){
	.widget-details-3 .el-image{
        width: 100%;
    }
    .widget-details-3 .el-content{
        width: 100%;
    }
}