.widget-details-3{
    padding:50px 20px;
    background:var(--color-02);
    margin-top:150px;
	color:#fff;
}
.widget-details-3 .container{
    overflow:visible;
}
.widget-details-3 .widget-details-3-content{
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    position:relative;
}
.widget-details-3 .widget-details-3-content .ui-content{
    width: calc(45% - 25px);

    transform: translateX(-100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-3 .widget-details-3-content .ui-content[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-details-3 .widget-details-3-content .ui-content .ui-title{
    color:#fff;
}
.widget-details-3 .widget-details-3-content .el-image{
    width: calc(55% - 25px);
    text-align: center;
    position: absolute;
    right: 0;
    bottom: -50px;

    transform: translateX(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-3 .widget-details-3-content .el-image[data-scroll="in"]{
    transform: translateX(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-details-3 .widget-details-3-content div img{
    width: 100%;
}
.widget-details-3 ul{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    list-style: none;
    margin-top:100px;
	color:#fff;
}
.widget-details-3 ul li{
    width: calc(33.33% - 34px);

    transform: translateY(50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-3 ul li[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-details-3 ul li:nth-child(2)[data-scroll="in"]{
    transition-delay: 0.8s;
}
.widget-details-3 ul li:nth-child(3)[data-scroll="in"]{
	transition-delay: 1.1s;
}
.widget-details-3 ul li i{
    font-size: 50px;
    color: var(--color-03);
    margin-bottom: 20px;
}
.widget-details-3 ul li h6{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.widget-details-3 ul li p{
    
}
.widget-details-3 ul li .ui-button{
    margin-top:20px;
}

@media all and (max-width: 1024px){
	
}
@media all and (max-width: 768px){
	.widget-details-3{
		text-align: center;
		margin-top:100px;
	}
    .widget-details-3 .widget-details-3-content .ui-content{
        width: 100%;
        order:1;
    }
    .widget-details-3 .widget-details-3-content .el-image{
        width: 100%;
        order:0;
        margin-top:-200px;
        position: relative;
        margin-bottom:30px;
    }
    .widget-details-3 ul li{
        width: 100%;
    }
}