/*** 

====================================================================
	Counter one
====================================================================

***/
.counter-one {
    position: relative;
    display: block;
    padding: 0 0 90px;
}

.counter-one__single {
    position: relative;
    display: block;
    border: 1px solid #D9D9D9;
    padding: 42px 45px 40px;
    margin-bottom: 30px;
    z-index: 1;
}

.counter-one__shape-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: -1;
}

.counter-one__single:hover .counter-one__shape-1 {
    transform: scaleY(1.0);
}

.counter-one__icon {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-one__icon span,
.counter-one__icon i {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--thm-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.counter-one__count-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 18px;
    margin-bottom: 16px;
}

.counter-one__count-box h3 {
    font-size: 128px;
    font-weight: 700;
    color: var(--thm-black);
    letter-spacing: -5.12px;
    line-height: 128px !important;
    font-family: var(--thm-font) !important;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__count-box h3 {
    color: var(--thm-white);
}

.counter-one__letter {
    position: relative;
    display: inline-block;
    font-size: 128px;
    font-weight: 700;
    color: var(--thm-black);
    letter-spacing: -5.12px;
    line-height: 128px;
    font-family: var(--thm-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__letter {
    color: var(--thm-white);
}

.counter-one__text {
    font-size: 20px;
    line-height: 25px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__text {
    color: #999999;
}












/*** 

====================================================================
	End
====================================================================

***/