.stats{
    display: flex;
    flex-direction: column;
    padding: 120px 40px;
    gap: 72px;
    max-width: 1360px;
    margin: auto;
}

.stats_title{
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
    gap: 16px;
}

.stats_title_big{
    font-size: 39px;
    color: #202020;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.39px;
}

.stats_title_small{
    font-size: 16px;
    color: #545454;
    font-weight: 500;
    line-height: 150%;
}

.stats_container{
    display: flex;
    gap: 24px;
}

.stats_picture{
    display: flex;
    overflow: hidden;
    height: 670px;
    border-radius: 12px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 30% 100%, 0% 70%);
}

.stats_picture img{
    height: 100%;
}

.stats_frame{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats_row{
    display: flex;
    gap: 20px;
}

.stats_box{
    display: flex;
    flex-direction: column;
    width: 277px;
    height: 276px;
    border-radius: 12px;
    padding: 24px;
    gap: 12px;
    background-color: #fff;
    justify-content: flex-end;
}

.stats_red{
    font-size: 76px;
    letter-spacing: -3.04px;
    font-weight: 700;
    color: #202020;
}

.stats_heavy{
    font-size: 16px;
    font-weight: 700;
    color: #656769;
    line-height: 150%;
}

.stats_small{
    font-size: 16px;
    font-weight: 500;
    color: #656769;
    line-height: 150%;
}

@media screen and (max-width: 768px){
    .stats{
        padding: 72px 16px;
        gap: 72px;
        width: auto;
        max-width: none;
    }

    .stats_title{
        flex-direction: column;
        font-size: 31px;
        letter-spacing: -0.31px;
    }

    .stats_container{
        flex-direction: column;
    }

    .stats_picture{
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .stats_frame{
        gap: 16px;
    }

    .stats_row{
        gap: 16px;
        flex-direction: column;
    }

    .stats_box{
        width: auto;
        height: auto;
    }
}

@media screen and (min-width: 1440px) {

}