/*==============================================
   Process One
===============================================*/
.process-one {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 0;
    z-index: 1;
}

.process-one .section-title {
    margin-bottom: 30px;
}

.process-one__single-inner {
    position: relative;
    display: block;
    margin-bottom: 21px;
}

.process-one__single {
    position: relative;
    display: flex;
    justify-content: center;
}

.process-one__img {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
}

.process-one__icon {
    position: relative;
    z-index: 1;
    background-color: var(--helpest-base);
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.process-one__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 28px;
    height: 28px;
    background-color: inherit;
    transform: translateX(-50%) rotate(45deg);
    border-bottom-right-radius: 6px;
    z-index: -1;
}

.process-one ul li:nth-child(2) .process-one__icon {
    background-color: var(--helpest-primary);
}

.process-one ul li:nth-child(3) .process-one__icon {
    background-color: var(--helpest-secondary);
}

.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: var(--helpest-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.process-one__single-inner:hover .process-one__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.process-one__count-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 70px;
    margin: 0 auto 0;
    padding: 5px;
    background-color: rgba(var(--helpest-base-rgb), .40);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.process-one ul li:nth-child(2) .process-one__count-inner {
    background-color: rgba(var(--helpest-primary-rgb), .40);
}

.process-one ul li:nth-child(3) .process-one__count-inner {
    background-color: rgba(var(--helpest-secondary-rgb), .40);
}

.process-one__count {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 60px;
    background-color: var(--helpest-base);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.process-one ul li:nth-child(2) .process-one__count {
    background-color: rgba(var(--helpest-primary-rgb), .40);
}

.process-one ul li:nth-child(3) .process-one__count {
    background-color: rgba(var(--helpest-secondary-rgb), .40);
}

.process-one__count:before {
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    color: var(--helpest-white);
    font-family: var(--helpest-font-three);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.process-one__content {
    position: relative;
    display: block;
    text-align: center;
}

.process-one__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-transform: capitalize;
}

/*==============================================
    End
===============================================*/
