
/*--------------------------------------------------------------
# Counter Four
--------------------------------------------------------------*/
.counter-four {
    position: relative;
    display: block;
    z-index: 3;
}

.counter-four__inner {
    position: relative;
    display: block;
    border-radius: 10px;
    background-color: var(--careon-base);
    padding: 40px 50px 11px;
    width: 80%;
    margin: 0 auto -70px;
}

.counter-four__list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.counter-four__list li {
    position: relative;
    display: block;
}

.counter-four__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.counter-four__single:before {
    content: "";
    position: absolute;
    top: 50px;
    left: -160px;
    width: 108px;
    height: 2px;
    background-color: rgba(var(--careon-white-rgb), .40);
}

.counter-four__list li:first-child .counter-four__single:before {
    display: none;
}

.counter-four__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-four__count-box h3 {
    font-size: 55px;
    font-weight: 600;
    line-height: 55px !important;
    font-family: var(--careon-font) !important;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(var(--careon-white-rgb), 1);
}

.counter-four__count-box span {
    font-size: 55px;
    font-weight: 600;
    line-height: 55px;
    font-family: var(--careon-font);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(var(--careon-white-rgb), 1);
}

.counter-four__text {
    color: var(--careon-white);
    margin-top: 9px;
}





























/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/