.widget-statistics-2{
    padding:80px 20px 50px;
}
.widget-statistics-2 .container{
    overflow:visible;
}
.widget-statistics-2 .ui-title{
    text-align: center;
    max-width: 750px;
    margin:0px auto 20px;

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

    transform: translateY(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-statistics-2 .ui-text[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-statistics-2 .widget-statistics-2-list{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    gap:50px;
    margin-top: 80px;
}
.widget-statistics-2 .stat-el{
    font-size: 14px;
    text-align: center;

    transform: translateY(100px);
	opacity: 0;
	transition: 1.5s;
}
.widget-statistics-2 .stat-el[data-scroll="in"]{
    transform: translateY(0px);
	opacity: 1;
	transition: 1.5s;
	transition-delay: 0.5s;
}
.widget-statistics-2 .stat-el:nth-child(2)[data-scroll="in"]{
	transition-delay: 0.8s;
}
.widget-statistics-2 .stat-el:nth-child(3)[data-scroll="in"]{
	transition-delay: 1.1s;
}
.widget-statistics-2 .stat-el .stat-data-el{
    font-size: 40px;
    margin:0px auto 40px;
    display: block;
    font-weight: 900;
    position:relative;
    line-height: 100%;
    width: fit-content;
}/*
.widget-statistics-2 .stat-el .stat-data-el::before{
    content: '';
    border: 10px solid var(--color-03);
    border-right: none;
    width: 30px;
    position: absolute;
    height: calc(100% + 30px);
    top: -25px;
    left: -20px;
}
.widget-statistics-2 .stat-el .stat-data-el::after{
    content: '';
    border: 10px solid var(--color-03);
    border-left: none;
    width: 30px;
    position: absolute;
    height: calc(100% + 30px);
    top: -25px;
    right: -20px;
}*/
.widget-statistics-2 .stat-el .stat-data-el::after{
    content: '';
    width: 80%;
    height: 5px;
    position: absolute;
    bottom: -16px;
    right: 10%;
    z-index: 35;
    left: 10%;
    background: var(--color-03);
}
.widget-statistics-2 .stat-el .stat-title-el{
    font-weight: 600;
    display: block;
}
.widget-statistics-2 .stat-el .stat-description-el{
    color:#707070;
    display: block;
}

@media all and (max-width: 768px){
	.widget-statistics-2 .widget-statistics-2-list{
        gap:80px;
    }
    .widget-statistics-2 .stat-el{
        width: 100%;
    }
}