.flex_layout.image_content_stat .image_content_stat_wrapper{
    display: flex;
    gap: 250px;
    padding-inline: 20px;
    padding-block: 100px;
}
.flex_layout.image_content_stat .image_content_stat_wrapper .content_wrapper{
    padding-block: 40px;
}
.image_stat_wrapper{
    position: relative;
}
.flex_layout.image_content_stat .image_content_stat_wrapper .image_wrapper{
    height: 100%;
    border-radius: 10px;
    overflow: clip;
}
.flex_layout.image_content_stat .image_content_stat_wrapper .image_wrapper img{
    object-fit: cover;
    width: 100%; height: 100%;
    max-width: unset;
}
.flex_layout.image_content_stat .image_content_stat_wrapper .stat_container{
    position: absolute;
    background-color: var(--ag-white);
    text-align: center;
    border-radius: 10px; padding: 20px;
    box-shadow: 0px 22px 28px hsla(0, 0%, 0%, 0.2);
    bottom: 50px; right: -100px;
    max-width: 250px;
}
.flex_layout.image_content_stat .image_content_stat_wrapper .percentage{
    position: relative; isolation: isolate;
    width: calc(100% - 20px); aspect-ratio: 1;
    margin-inline: auto;
    margin-bottom: 20px;
}
.flex_layout.image_content_stat .image_content_stat_wrapper .number{
    background-color: var(--ag-white);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    width: 100%; height: 100%;

    font-weight: 700; font-size: 48px;
}
.flex_layout.image_content_stat .image_content_stat_wrapper .percentage .circle{
    position: absolute;
    z-index: -1;
    inset: -10px;
    border-radius: 50%;
    background-image: conic-gradient(var(--ag-turquoise) var(--target-percentage), var(--ag-grey) var(--target-percentage), var(--ag-grey) 100%);
}


.flex_layout.image_content_stat .image_content_stat_wrapper .stat_container .content{
    font-size: 18px; font-weight: 300;
}



@media screen and (min-width: 993px){
    .flex_layout.image_content_stat .image_content_stat_wrapper{
        /* align-items: stretch; */
    }
    
    .flex_layout.image_content_stat .image_content_stat_wrapper.image_right{
        flex-direction: row-reverse;
    }

    .flex_layout.image_content_stat .image_stat_wrapper{
        flex-basis: 47.5%;
    }
    .flex_layout.image_content_stat .content_wrapper{
        flex-basis: 52.5%;
    }
}
@media screen and (max-width: 992px){
    .flex_layout.image_content_stat .image_content_stat_wrapper{
        flex-direction: column;
        gap: 20px;
        padding-block: 40px;
    }
    .flex_layout.image_content_stat .image_content_stat_wrapper .image_wrapper{
        padding-block: 20px;
    }
    .flex_layout.image_content_stat .image_content_stat_wrapper .stat_container{
        bottom: -20px; right: unset; left: 20px;
    }
}
@media screen and (max-width: 767px){
    .flex_layout.image_content_stat .image_content_stat_wrapper .stat_container{
        display: flex; flex-direction: row; align-items: center;
        gap: 30px;
        max-width: unset;
        right: 20px;
    }
    .flex_layout.image_content_stat .image_content_stat_wrapper .percentage{
        height: 75px; width: auto;
        margin: unset;
        flex-shrink: 0;
    }
    .flex_layout.image_content_stat .image_content_stat_wrapper .number{
        font-size: 28px;
    }
    .flex_layout.image_content_stat .image_content_stat_wrapper .stat_container .content{
        text-align: left;
    }
    .flex_layout.image_content_stat .image_content_stat_wrapper .stat_container .content p{
        margin-bottom: 0;
    }
}