.counter-section {
    padding: 48px 0;
    background: #000;
}
.counter-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px -16px;
    padding: 0 25px;
}
.counter-row > div {
    padding: 0 6px;
    margin-bottom: 16px;
}
.counter-row .counter-left {
    width: 28%;
}

.counter-row .counter-middle {
    width: 44%;
}

.counter-row .counter-right {
    width: 28%;
}

.counter-row .counter-left .counter-box {
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(25deg, rgba(0, 0, 0, 0.00) 50%, #FF3FB9 200%), rgba(255, 255, 255, 0.10);
    padding: 30px 10px;
}

.counter-row .counter-right .counter-box {
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(121deg, rgba(0, 0, 0, 0.00) 50%, #FF3FB9 200%), rgba(255, 255, 255, 0.10);
    padding: 30px 10px;
}

.counter-middle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.counter-middle .counter-box {
    width: calc(33.333% - 8px);
}
.counter-row .counter-middle .counter-box {
    border-radius: 127px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(174deg, rgba(0, 0, 0, 0.00) 50%, #FF3FB9 200%), rgba(255, 255, 255, 0.10);
    padding: 32px 18px 54px;
}

.counter-row .counter-box {
    min-height: 258px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}
.counter-row .counter-middle .top-content .num {
    display: block;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
}
.counter-row .counter-box .label {
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    display: inline-block;
    color: #FFF;
    opacity: 0.7;
    vertical-align: middle;
}

.counter-row .counter-box .small {
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    opacity: 0.5;
    line-height: 12.1px;
    display: inline-block;
    margin-bottom: 7px;
}

.counter-row .counter-left .counter-box .num,.counter-row .counter-right .counter-box .num {
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: 77px;
    display: inline-block;
}
.counter-row .counter-middle>div:nth-child(even) {
    border-radius: 127px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(25deg, rgba(0, 0, 0, 0.00) 50%, #FF3FB9 200%), rgba(255, 255, 255, 0.10);
}


@media only screen and (max-width:991px){
    .counter-row .counter-middle .top-content .num {
        font-size: 26px;
        line-height: 34px;
    }
    .counter-row .counter-left .counter-box .num, .counter-row .counter-right .counter-box .num {
        font-size: 40px;
        line-height: 50px;
    }
}
@media only screen and (max-width:767px){
    .counter-row .counter-right {
        width: 100%;
    }
    .counter-row .counter-left {
        width: 100%;
    }
    .counter-row .counter-middle {
        width: 100%;
    }
    .counter-row .counter-middle .counter-box {
        padding: 32px 10px;
    }
    .counter-row .counter-box {
        min-height: 210px;
    }
     .counter-row {
        margin: 0 auto -16px;
        max-width: 320px;
        width: 100%;
    }
}