.widget-details-7{
    padding:100px 20px;
}
.widget-details-7 .container{
    overflow:visible;
}
.widget-details-7 .ui-title{
    transform: translateX(-50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-7 .ui-title[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-details-7 .widget-details-content{
    margin-top:50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}
.widget-details-7 .widget-details-content ul{
    width: calc(50% - 25px);
    list-style: none;
}
.widget-details-7 .widget-details-content ul li{
    margin:20px 0px;

    transform: translateX(-50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-7 .widget-details-content ul li[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-details-7 .widget-details-content ul li:nth-child(2){
    margin-left:40px;
}
.widget-details-7 .widget-details-content ul li:nth-child(2)[data-scroll="in"]{
    transition-delay: 0.8s;
}
.widget-details-7 .widget-details-content ul li:nth-child(3){
    margin-left:80px;
}
.widget-details-7 .widget-details-content ul li:nth-child(3)[data-scroll="in"]{
    transition-delay: 1.1s;
}
.widget-details-7 .widget-details-content ul li:nth-child(4){
    margin-left:120px;
}
.widget-details-7 .widget-details-content ul li:nth-child(4)[data-scroll="in"]{
    transition-delay: 1.4s;
}
.widget-details-7 .widget-details-content ul li i{
    font-size: 50px;
    color: var(--color-03);
    float:left;
}
.widget-details-7 .widget-details-content ul li h6{
    font-size: 20px;
    margin: 0px 0px 5px 80px;
    font-weight: 500;
}
.widget-details-7 .widget-details-content ul li p{
    font-size: 14px;
    margin: 0px 0px 0px 80px;
}
.widget-details-7 .widget-details-content .el-image{
    background-color: #f7f7f7;
    background-size: cover;
    width: calc(50% - 25px);    
    padding-bottom: 30%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;

    transform: translateX(50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-7 .widget-details-content .el-image[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-details-7 .widget-details-content .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;
}

@media all and (max-width: 1024px){
	.widget-details-7 .widget-details-content ul li{
        margin-left:0px !important;
    }
}
@media all and (max-width: 800px){
	.widget-details-7 .widget-details-content ul{
        width: 100%;
    }
    .widget-details-7 .widget-details-content .el-image{
        width: 100%;
        padding-bottom: 70%;
    }
}