.widget-detail-2{
    padding:80px 20px;
    background:var(--background-03);
}
.widget-detail-2 .container{
    overflow: visible;
}
.widget-detail-2 .ui-title{
    max-width: 600px;
    text-align: center;
    margin:auto;

    transform: translateY(50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-detail-2 .ui-title[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-detail-2 .ui-title h3{
    font-size: 40px;
}
.widget-detail-2 .ui-text{
    text-align: center;
    max-width: 600px;
    margin: 20px auto 0px;

    transform: translateY(50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-detail-2 .ui-text[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}  
.widget-detail-2 ul{
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    list-style: none;
    margin-top:50px;
}
.widget-detail-2 ul li{
    width: calc(33.33% - 34px);

    transform: translateY(50px);
	opacity: 0;
	transition: 1.5s;
}
.widget-detail-2 ul li[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-detail-2 ul li:nth-child(2)[data-scroll="in"]{
    transition-delay: 0.7s;
}
.widget-detail-2 ul li:nth-child(3)[data-scroll="in"]{
    transition-delay: 0.9s;
}
.widget-detail-2 ul li span{
    color:var(--color-01);
    font-size: 50px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom:30px;
    display: block;
}
.widget-detail-2 ul li h6{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.widget-detail-2 ul li p{
    
}

@media all and (max-width: 1024px){
	
}
@media all and (max-width: 768px){
	.widget-detail-2{
        text-align: center;
    }
    .widget-detail-2 .widget-detail-2-content .ui-title{
        width: 100%;
        order:1;
    }
    .widget-detail-2 .widget-detail-2-content div{
        width: 100%;
        order:0;
    }
    .widget-detail-2 ul li{
        width: 100%;
    }
}