/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 118px 0 90px;
    counter-reset: count;
    z-index: 1;
}

.process-one__shape-4 {
    position: absolute;
    top: 108px;
    left: -73px;
    opacity: .02;
    z-index: -1;
}

.process-one__shape-4 img {
    width: auto;
}

.process-one__inner {
    position: relative;
    display: block;
}

.process-one__inner li:nth-child(1) {
    margin-top: 110px;
}

.process-one__inner li:nth-child(3) {
    margin-top: 110px;
}

.process-one__single {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    z-index: 1;
}

.process-one__shape-1 {
    position: absolute;
    top: -165px;
    right: 0;
    height: 300px;
    border: 1px dashed var(--judges-bdr-color);
    transform: rotate(62deg);
    z-index: -1;
}

.process-one__shape-2 {
    position: absolute;
    bottom: -25px;
    right: 0;
    height: 320px;
    border: 1px dashed var(--judges-bdr-color);
    transform: rotate(-71deg);
    z-index: -1;
}

.process-one__shape-3 {
    position: absolute;
    top: -165px;
    right: 0;
    height: 300px;
    border: 1px dashed var(--judges-bdr-color);
    transform: rotate(62deg);
    z-index: -1;
}

.process-one__icon-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 0;
    z-index: 1;
}

.process-one__count {
    position: absolute;
    top: 0;
    left: -16px;
    height: 35px;
    width: 35px;
    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: 600;
    color: var(--judges-white);
    background-color: var(--judges-base);
    border-radius: 50%;
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.process-one__inner li:hover .process-one__count:before {
    color: var(--judges-base);
    background-color: var(--judges-white);
    box-shadow: 0px 0px 5px 1px #F7F7F7;
}

.process-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: var(--judges-white);
    border: 1px solid var(--judges-base);
    border-radius: 50%;
    margin: 0 auto 0;
    overflow: hidden;
    z-index: 1;
}

.process-one__icon:before {
    content: "";
    position: absolute;
    bottom: -45px;
    right: -34px;
    height: 80px;
    width: 80px;
    background-color: rgba(var(--judges-base-rgb), .20);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.process-one__inner li:hover .process-one__icon:before {
    bottom: 0px;
    right: 0px;
    background-color: rgba(var(--judges-base-rgb), 1);
}

.process-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--judges-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.process-one__inner li:hover .process-one__icon span {
    color: var(--judges-white);
    transform: scale(1.2);
}

.process-one__title {
    font-size: 25px;
    font-weight: 700;
    line-height: 25px;
    text-transform: capitalize;
    margin-top: 13px;
    margin-bottom: 14px;
}


/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/