.page-header .left .header-icon{
    filter: url(#white-overlay);
}

section.figures{
    padding-top: calc(150 * var(--rpx-50));
    padding-bottom: calc(170 * var(--rpx-50));
}

.figures .section-back{
    height: 100%;
}

.figures .industry-icon,
.how .industry-icon{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;

    width: calc(500 * var(--rpx));
    height: calc(500 * var(--rpx));
    object-fit: contain;
    opacity: .2;
}
/*
.figures .plx-hexagon{
    width: calc(1200 * var(--rpx));
    height: calc(1200 * var(--rpx));
    object-fit: contain;
    top: calc((100% - 1200 * var(--rpx)) / 2);
}*/

.figure-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
}

.figure-cell{
    aspect-ratio: 400/320;
    padding: calc(48 * var(--rpx-50)) calc(60 * var(--rpx-50));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.figure-cell.wide{
    aspect-ratio: 800/320;
    grid-column-end: span 2;
}

.figure-cell:nth-of-type(1) {
    grid-column-start: 1;
    grid-row: 1 / 2;
}

.figure-cell:nth-of-type(2) {
    grid-column-start: 3;
    grid-row: 2 / 3;
}

.figure-cell:nth-of-type(3) {
    grid-column-start: 4;
    grid-row: 2 / 3;
}

.figure-cell.dark{
    color: #fff;
    background-color: var(--theme-navy);
}

.figure-cell.gray{
    background-color: #e6e9f3;
}

.figure-cell.beige{
    background-color: #f4ecdb;
}

.figure-cell .value{
    display: flex;
    align-items: center;
    font-size: calc(90 * var(--rpx));
    line-height: 1em;
    font-weight: bold;
}

.figure-cell.wide .value{
    font-size: calc(120 * var(--rpx));
}


/*.story .brick .desc{
    visibility: hidden;
    opacity: 0;
    transition: .6s;
}

.story .brick:hover .desc{
    visibility: visible;
    opacity: 1;
}*/

.spin-wheel{
    aspect-ratio: 800/790;
    position: relative;
}

.spin-wheel.active{
    cursor: pointer;
}

.spin-wheel .layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 205;
}

.spin-wheel .layer.active{
    z-index: 210;
    opacity: 0;
    transition: .3s;
}

.spin-wheel.active .layer.active{
    opacity: 1;
}

.spin-wheel .layer img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}


@media (max-width: 750px) {
    .figure-grid{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
    }

    .figure-cell{
        padding: calc(20 * var(--rpx))
    }
    .figure-cell .value{
        font-size: calc(60 * var(--rpx));
    }
    .figure-cell.wide .value{
        font-size: calc(90 * var(--rpx));
    }

    .figure-cell:nth-of-type(2){
        grid-column-start: 2;
    }
    .figure-cell:nth-of-type(3){
        grid-column-start: 1;
        grid-row: 3/4;
    }
}

