/**
 * PLS Emu Counter - CSS
 * Based on Emu Template counter-block-one
 */

.pls-emu-counter-wrap {
    position: relative;
    display: block;
    text-align: center;
}

.pls-emu-counter-wrap .counter-block {
    position: relative;
}

.pls-emu-counter-wrap .count-outer {
    position: relative;
    display: flex;
    width: 130px;
    height: 130px;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(254, 22, 96, 0.2);
}

.pls-emu-counter-wrap .count-outer .count-text {
    position: relative;
    display: inline-block;
    font-size: 45px;
    line-height: 45px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #161616;
}

.pls-emu-counter-wrap .count-outer .count-suffix {
    font-size: 45px;
    line-height: 45px;
    font-weight: 400;
    color: transparent;
    background: -webkit-linear-gradient(0deg, #161616, #161616 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pls-emu-counter-wrap .counter-block h3 {
    font-weight: 400;
    margin-top: 21px;
    font-size: 18px;
    line-height: 1.4;
    color: #161616;
}

.pls-emu-counter-wrap .counter-block h3 span {
    font-weight: 700;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .pls-emu-counter-wrap .count-outer {
        width: 110px;
        height: 110px;
    }

    .pls-emu-counter-wrap .count-outer .count-text,
    .pls-emu-counter-wrap .count-outer .count-suffix {
        font-size: 36px;
        line-height: 36px;
    }

    .pls-emu-counter-wrap .counter-block h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .pls-emu-counter-wrap .count-outer {
        width: 100px;
        height: 100px;
    }

    .pls-emu-counter-wrap .count-outer .count-text,
    .pls-emu-counter-wrap .count-outer .count-suffix {
        font-size: 32px;
        line-height: 32px;
    }
}
