.widget-details{
    padding:100px 20px;
}
.widget-details .container{
    display:flex;
    flex-wrap: wrap;
    gap:50px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
.widget-details .el-image{
    background-size: cover;
    width: calc(45% - 25px);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.widget-details .el-image.animation{
    transform: translateY(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details.right .el-image{
    order:1;
}
.widget-details .el-image.animation[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition-delay: 0.5s;
}
.widget-details .el-image img{
    max-width: 100%;
    height: auto;
}
.widget-details .el-content{
    width: calc(55% - 25px);
    max-width: 560px;
}
.widget-details .el-content.animation{
    transform: translateX(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details.right .el-content{
    order:0;
}
.widget-details.right .el-content.animation{
    transform: translateX(-100px);
}
.widget-details .el-content.animation[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition-delay: 0.5s;
}
.widget-details .el-content .ui-title{
    
}
.widget-details .el-content .ui-title p{
    margin: 0px 0px 15px !important;
}
.widget-details .el-content p{
    margin: 15px 0px 0px;
}
.widget-details .el-content ul{
    margin: 30px 0px 30px 30px;
    list-style: none;
}
.widget-details .el-content ul li {
    text-align: left;
    list-style: none;
    margin: 12px 0px;
    position:relative;
}
.widget-details .el-content ul li:before {
    content: "\f14a";
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    margin: 2px 0px 0px -30px;
    width: 30px;
    font-weight: 300;
    color: var(--color-07);
    font-size: 25px;
    position:absolute;
}
.widget-details .el-content .ui-button{
    margin-top:20px;
}

@media all and (max-width: 768px){
    .widget-details .el-image,
    .widget-details.right .el-image{
        width: 100%;
        order:0;
    }
    .widget-details .el-content{
        width: 100%;
        order:1;
    }
}