.statistic {
    margin-bottom: 160px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 360px);
    gap: 20px;
    background-color: #fff;
}

.statistic__block {
    display: flex;
    background: rgba(245, 237, 224, 1);
}

.statistic__block-inner {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    width: 100%;
}

.statistic__block-title {
    font-family: 'Noto Serif Display', sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 100px;
    color: rgba(60, 36, 21, 1);
}

.statistic__block-descr {
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: rgba(60, 36, 21, 1);
}

.statistic__block.video {
    background: #fff;
}

.statistic__block.video video {
    width: 100%;
    object-fit: cover;
}

.statistic__block.photo {
    background: #fff;
    pointer-events: none;
    user-select: none;
}

.statistic__block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1300px) {
    .statistic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 360px);
    }
}

@media (max-width: 800px) {
    .statistic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 360px);
    }

    .statistic__block.empty {
        display: none;
    }

    .block-1 {
        order: 1;
    }

    .block-2 {
        order: 2;
    }

    .block-3 {
        order: 3;
    }

    .block-4 {
        order: 4;
    }

    .block-5 {
        order: 5;
    }

    .block-6 {
        order: 6;
    }

    .block-7 {
        order: 7;
    }
}

@media (max-width: 576px) {
    .statistic {
        margin-bottom: 64px;
        gap: 12px;
        grid-template-rows: 248px 335px 220px 192px 220px 216px 220px;
    }

    .statistic__block-inner {
        padding: 24px;
    }

    .statistic__block-title {
        font-size: 40px;
        line-height: 56px;
    }

    .statistic__block-descr {
        font-size: 20px;
        line-height: 24px;
    }
}