/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/

.counter-one__bg-shape {
    position: absolute;
    top: 3px;
    left: 3px;
    bottom: 3px;
    opacity: .80;
    width: calc((100% - 360px) / 2);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: lighten;
    z-index: -1;
}


/*--------------------------------------------------------------
# Counter Two
--------------------------------------------------------------*/
.counter-two {
    position: relative;
    display: block;
    padding: 58px 0 37px;
    background: linear-gradient(90deg, #0F1C34 0%, #103B8C 45.5%, #0F1C34 100%);
    z-index: 1;
}

.counter-two__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
}

.counter-two__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 11px;
}

.counter-two__icon-inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(270deg, rgba(250, 86, 116, 0.2) 0%, rgba(96, 101, 213, 0.2) 100%);
    border-radius: 50%;
}

.counter-two__icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(270deg, #FA5674 0%, #6065D4 100%);
    border-radius: 50%;
}

.counter-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 26px;
    color: var(--techguru-white);
}

.counter-two__content {
    position: relative;
    display: block;
    flex: 1;
}

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

.counter-two__count-box h3 {
    font-size: 35px;
    font-weight: 500;
    line-height: 60px !important;
    font-family: var(--techguru-font) !important;
    color: var(--techguru-white);
}

.counter-two__count-box span {
    font-size: 35px;
    font-weight: 500;
    line-height: 60px !important;
    font-family: var(--techguru-font) !important;
    color: var(--techguru-white);
}

.counter-two__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-top: 1px;
}




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