/*==============================================
   Counter One
===============================================*/
.counter-one {
    position: relative;
    display: block;
    background-color: #2b2b2b00;
    padding: 60px 0 60px;
    z-index: 1;
    direction: rtl;
}

.counter-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .35;
    mix-blend-mode: hard-light;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.counter-one ul li:nth-child(4) .counter-one__single::before {
    display: none;
}

.counter-one__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 21px;
}

.counter-one__single::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -26px;
    width: 1px;
    height: 75px;
    background-color: #1515152e;
    transform: translateY(-50%);
}

.counter-one__icon {
    position: relative;
    display: inline-block;
}

.counter-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 60px;
    color: var(--fixpro-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
    transform: scale(0.9);
}

.counter-one__count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 10px;
    direction: ltr;
}

.counter-one__count-box h3 {
    font-size: 40px;
    color: var(--fixpro-white);
    line-height: 40px !important;
    font-family: var(--fixpro-font-two) !important;
    font-weight: 600;
}

.counter-one__count-box span {
    font-size: 32px;
    color: var(--fixpro-gray);
    line-height: 40px;
    font-family: var(--fixpro-font-two);
    font-weight: 600;
    text-transform: uppercase;
}

.counter-one__count-text {
    color: var(--fixpro-black);
    font-size: 23px;
}
 