.vizion-process-box {
    position: relative;
}

.vizion-process-box-style-1 .step-separator {
    position: absolute;
    left: -88px;
    top: 27%;
    width: 0;
    transition: width 1.5s ease-in-out;
    border-top: 1px dashed var(--color-theme-primary);
}

.vizion-process-box-style-1 .step-separator.animated {
    width: 150px;
}

.vizion-step-slider .owl-item.active.first-active .step-separator {
    display: none;
}

.vizion-step-slider .owl-item {
    opacity: 0;
}

.vizion-step-slider .owl-item.active {
    opacity: 1;
}

.vizion-process-box-style-1 .process-icon {
    width: 150px;
    height: 150px;
    border: 1px solid var(--color-theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.vizion-process-box-style-1 .process-icon .process-box-step {
    position: absolute;
    right: 2px;
    bottom: 13px;
    background-color: var(--color-theme-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    color: var(--color-theme-white);
}

.vizion-process-box-style-1 .process-icon .process-box-step .process-step-number {
    color: var(--color-theme-white);
    font-size: var(--font-size-normal);
}

.vizion-process-box-style-1 .process-box-content {
    text-align: center;
    margin-top: 40px;
}

.vizion-process-box-style-1 .process-box-content .process-box-desc {
    margin-top: 16px;
}

.vizion-process-box-style-1 .process-box-icon svg {
    width: 71px;
}

.vizion-process-box-style-2 .process-box-step {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-theme-white);
    position: relative;
    border-radius: 50%;
    margin-bottom: 40px;
}

.vizion-process-box-style-2 .process-box-step:after {
    content: '';
    position: absolute;
    right: 8px;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 20px solid var(--color-theme-white);
    border-left: 20px solid transparent;
    transform: rotate(8deg);
}

.vizion-process-box-style-2 .process-box-step .process-step-number {
    color: var(--color-theme-primary);
}

.vizion-process-box-style-2 .step-line {
    border-top: 1px dashed var(--color-theme-primary);
    width: 0;
    position: absolute;
    transition: width .8s ease-in-out;
}

.vizion-process-box-style-2 .separator-box .arrow-one,
.vizion-process-box-style-2 .separator-box .arrow-two {
    position: absolute;
    height: 100%;
    right: 0;
    background-color: var(--color-theme-primary);
    width: 0;
    outline: transparent solid 1px;
    transform: scale(0);
    transition: width .8s ease-in-out, transform .5s ease-in-out;
}

.vizion-process-box-style-2 .separator-box .arrow-one {
    top: 0;
    transform: rotate(45deg) scale(1);
    transform-origin: 100% 0;
}

.vizion-process-box-style-2 .separator-box .arrow-two {
    bottom: 0;
    transform: rotate(-40deg) scale(1);
    transform-origin: 100% 100%;
}

.vizion-process-box-style-2 .separator-box {
    position: absolute;
    left: -170px;
    top: 19%;
    width: 100px;
    height: 1px;
}

.vizion-process-box-style-2 .separator-box.animated .step-line {
    width: 90px;
}

.vizion-process-box-style-2 .separator-box.animated .arrow-one,
.vizion-process-box-style-2 .separator-box.animated .arrow-two {
    width: 10px;
}

.vizion-process-box-style-2 .separator-box.animated .arrow-one {
    transition-delay: .9s;
}

.vizion-process-box-style-2 .separator-box.animated .arrow-two {
    transition-delay: 1s;
}

.vizion-process-style-3 .process-step-wrapper {
    display: flex;
    position: relative;
    margin-bottom: 60px;
}

.vizion-process-style-3 .process-step-wrapper:last-child {
    margin-bottom: 0;
}

.vizion-process-style-3 .process-step-wrapper .process-left-icon .step-separator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    width: 1px;
    height: 70px;
    transition: height 1.5s ease-in-out;
    border-left: 1px dashed var(--color-separator);
}

.vizion-process-style-3 .process-step-wrapper .process-box-content {
    padding-left: 32px;
}

.vizion-process-style-3 .process-step-wrapper .process-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--global-body-lightcolor);
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

.vizion-process-style-3 .process-step-wrapper .process-box-content .process-step-number {
    font-size: var(--font-size-normal);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-one);
    color: var(--color-theme-primary);
}

.vizion-process-style-3 .process-step-wrapper .process-box-content .process-box-desc {
    margin-top: 15px;
}

.vizion-process-style-3 .process-step-wrapper:last-child .process-left-icon .step-separator {
    display: none;
}

.vizion-process-style-3 .process-step-wrapper:hover .process-icon {
    background: var(--color-theme-primary);
}

.vizion-process-style-3 .process-step-wrapper:hover .process-icon .process-box-icon svg path {
    fill: var(--color-theme-white);
}

.vizion-process-style-3 .process-step-wrapper .process-box-content .process-box-desc p {
    margin: 0;
}

@media(max-width:767px) {

    .vizion-process-box-style-1 .step-separator,
    .vizion-process-box-style-2 .separator-box {
        display: none;
    }

    .vizion-process-box-style-2 .vizion-process-details {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

}

@media(max-width:479px) {
    .vizion-process-style-3 .process-step-wrapper {
        flex-direction: column;
    }

    .vizion-process-style-3 .process-step-wrapper .process-box-content {
        padding-left: 0;
        padding-top: 24px;
    }

    .vizion-process-style-3 .process-step-wrapper .process-left-icon .step-separator {
        display: none;
    }

    .vizion-process-style-3 .process-step-wrapper {
        margin-bottom: 30px;
    }
}

@media(max-width:1199px) {
    .process-box-desc br {
        display: none;
    }
}