/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
    display: block;
    padding: 40px 0 40px;
    z-index: 1;
    background: #f9f9f9;
}

.counter-one__single {
    position: relative;
    display: flex;
    text-align: center;
    margin-bottom: 30px;
    z-index: 1;
    min-height: 188px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s ease;
}
.counter-one__single:hover {
    transform: translateY(-10px);

    
}

.counter-one__count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.counter-one__count h3 {
    font-size: 52px;
    font-weight: 700;
    line-height: 52px;
    position: relative;
    z-index: 9999;
}

.counter-one__count span {
    font-size: 52px;
    font-weight: 700;
    line-height: 52px;
    font-family: var(--chioary-font-two);
    color: var(--chioary-black);
    text-transform: capitalize;
}

.counter-one__count-plus {
    position: relative;
    top: -4px;
}

.counter-one__count-text {
    margin-top: 14px;
    position: relative;
    z-index: 49;
    font-size: 20px;
    color: #404040;
}

.counter-one__shape-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
    background: rgb(0 163 224 / 20%);
    width: 240px;
    height: 150px;
    border-radius: 50px;
    border: 5px solid #f2f2f2;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    z-index: 24;
}

.counter-one__shape-1 img {
    width: auto;
}

.counter-one__single:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 20px;
    background: var(--bs-info);
    width: 120px;
    height: 120px;
    z-index: 1;
    border-radius: 50%;
}

.counter-one__single:after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: var(--bs-warning);
    width: 80px;
    height: 80px;
    z-index: 1;
    border-radius: 100px;
}


















/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/