.widget-details-4{
    padding:50px 20px;
    background:var(--color-02);
    margin-top:150px;
	color:#fff;
}
.widget-details-4 .container{
    overflow:visible;
}
.widget-details-4 ul{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    list-style: none;
    margin-top:100px;
	color:#fff;
}
.widget-details-4 ul li{
    width: calc(33.33% - 34px);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 15px;
    align-items: center;
}
.widget-details-4 ul li.animation{
    transform: translateY(50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-details-4 ul li.animation[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-details-4 ul li:nth-child(2).animation[data-scroll="in"]{
    transition-delay: 0.8s;
}
.widget-details-4 ul li:nth-child(3).animation[data-scroll="in"]{
	transition-delay: 1.1s;
}
.widget-details-4 ul li i{
    font-size: 50px;
    color: var(--color-03);
    grid-row: 1 / span 2;
}
.widget-details-4 ul li h5{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
}
.widget-details-4 ul li p{
    
}

@media all and (max-width: 1024px){
	
}
@media all and (max-width: 768px){
	.widget-details-4{
		margin-top:100px;
	}
    .widget-details-4 ul li{
        width: 100%;
    }
}