/*==============================================
    Process One
===============================================*/
.process-one {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 60px 0 60px;
    /* background-color: var(--fixpro-black); */
    z-index: 1;
}

.process-one .section-title__tagline-border::after {
    background: var(--fixpro-black);
}

.process-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    mix-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.process-one .section-title__title {
    /* color: var(--fixpro-white); */
}

.process-one__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    background: #000000fc;
    padding: 30px 25px;
}

.process-one__icon-box {
    position: relative;
    display: block;
    height: 85px;
    width: 100px;
    margin: 0 auto 0;
}

.process-one__count {
    position: absolute;
    top: -15px;
    left: 0px;
    height: 35px;
    width: 35px;
    border-radius: var(--fixpro-bdr-radius);
    z-index: 2;
}

.process-one__count:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    color: var(--fixpro-white);
    background-color: #da8c5d;
    border-radius: var(--fixpro-bdr-radius);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

 

.process-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    margin: 0 auto 0;
    border-radius: 50%;
    background-color: rgb(248 255 252);
    z-index: 1;
}

 

.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 33px;
    color: #da8c5d;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}
 

.process-one__content {
    position: relative;
    display: block;
    /* margin-top: 15px; */
}

.process-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: var(--fixpro-white);
}

.process-one__single--two .process-one__content {
    margin-top: 0;
    margin-bottom: 32px;
}

.process-one__text {
    color: rgba(var(--fixpro-white-rgb), .80);
    margin-bottom: 0;
}
 