/*--------------------------------------------------------------
# Counter One — Premium Services style background
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 50px 0 30px;
    background-color: var(--finris-white);
    z-index: 1;
}

.counter-one__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.04;
    z-index: -1;
    pointer-events: none;
}

.counter-one__shape-1 {
    display: none;
}

.counter-one .container {
    position: relative;
    z-index: 1;
}

.counter-one__list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 0;
}

.counter-one__list li {
    position: relative;
    display: block;
    flex: 1 1 200px;
}

.counter-one__list li:before {
    content: "";
    position: absolute;
    top: 18px;
    left: -95px;
    height: 7px;
    width: 7px;
    background-color: var(--finris-primary);
    border-radius: 50%;
}

.counter-one__list li:after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: -95px;
    height: 7px;
    width: 7px;
    background-color: var(--finris-primary);
    border-radius: 50%;
}

.counter-one__list li:first-child:before,
.counter-one__list li:first-child:after {
    display: none;
}

.counter-one__single {
    position: relative;
    display: block;
    text-align: center;
}

.counter-one__single:before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 16px;
    left: -92px;
    width: 1px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(6, 28, 34, 0.2) 20%,
        rgba(37, 150, 190, 0.45) 50%,
        rgba(6, 28, 34, 0.2) 80%,
        transparent 100%
    );
}

.counter-one__list li:first-child .counter-one__single:before {
    display: none;
}

.counter-one__count {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.counter-one__count p {
    font-size: 60px;
    color: var(--finris-black);
    line-height: 60px;
    font-weight: 700;
}

.counter-one__count-plus {
    font-size: 60px;
    color: var(--finris-primary);
    line-height: 60px;
    font-weight: 700;
}

.counter-one__text {
    font-size: 18px;
    font-weight: 500;
    color: var(--finris-gray);
}

@media (max-width: 991px) {
    .counter-one__list li:before,
    .counter-one__list li:after,
    .counter-one__single:before {
        display: none;
    }

    .counter-one__count p,
    .counter-one__count-plus {
        font-size: 44px;
        line-height: 44px;
    }

    .counter-one__text {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/
