 

/*=============================
	Fact Counter Two Css
===============================*/
.fact-counter-two {
    position: relative;
    display: block;
    background: var(--thm-white);
    padding: 70px 0px 70px;
    z-index: 1;
}

.fact-counter-two .shape1 {
    position: absolute;
    top: -120px;
    right: 0;
    z-index: -1;
    width: 200px;
}

.fact-counter-two__single {
    position: relative;
    display: block;
    padding-top: 40px;
    margin-bottom: 30px;
}

.fact-counter-two__single .icon-box {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--thm-primary);
    border-radius: 0;
    z-index: 3;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    background-image: linear-gradient(to right, #355ba7, #2a96d2);
}

.fact-counter-two__single .icon-box span {
    position: relative;
    display: inline-block;
    color: var(--thm-white);
    font-size: 45px;
    line-height: 45px;
    transition: all 300ms linear;
    transition-delay: 0.1s;
}

.fact-counter-two__single:hover .icon-box span {
    transform: rotateY(180deg);
}

.fact-counter-two__single-inner {
    position: relative;
    display: block;
    background: #f7f7f7;
    padding: 65px 15px 40px;
    border-radius: 0px;
    text-align: center;
    border-top-right-radius: 70px;
    border-bottom-left-radius: 70px;
    /* box-shadow: 0px 0px 1px rgb(0 0 0 / 13%); */
}

.fact-counter-two__single-inner h2 {
    font-size: 43px;
    line-height: 43px;
    font-weight: 500;
}

.fact-counter-two__single-inner .text {
    position: relative;
    display: block;
    margin-top: 10px;
}

.fact-counter-two__single-inner .text p {
    font-size: 19px;
    line-height: 28px;
    font-weight: 500;
    font-family: var(--thm-heading-font);
    color: #000000;
}