/* ================================
   Working Process Section
   ================================ */

.process-one {
    position: relative;
    padding: 120px 0 90px;
    background-color: #ffffff;
    z-index: 1;
    overflow: hidden;
}

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

.process-one .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.process-one [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .process-one .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .process-one .col-lg-6,
    .process-one .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .process-one [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.process-one__row {
    position: relative;
}

.process-one__single {
    position: relative;
    display: block;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.07);
    padding: 50px 30px 60px;
    text-align: center;
    transition: all 500ms ease;
    margin-bottom: 30px;
    z-index: 1;
}

/* Inset Decorative Border */
.process-one__single::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(110, 84, 243, 0.15);
    border-radius: 5px;
    z-index: -1;
    transition: all 500ms ease;
}

.process-one__single:hover {
    transform: translateY(-10px);
}

.process-one__single:hover::before {
    border-color: #6e54f3;
}

/* Organic Blob Icon Box */
.process-one__single-icon {
    position: relative;
    width: 80px;
    height: 74px;
    background-color: #6e54f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #ffffff;
    font-size: 35px;
    transition: all 500ms ease;
    /* Blob Shape */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.process-one__single:hover .process-one__single-icon {
    transform: rotateY(180deg);
}

.process-one__single-title {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 15px;
    transition: all 500ms ease;
}

.process-one__single-text {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #666666;
    margin: 0;
}

/* Step Count Circle */
.process-one__single-count {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #6e54f3;
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
    transition: all 500ms ease;
}

.process-one__single:hover .process-one__single-count {
    background-color: #1b1b1b;
}

/* Section Tagline Decoration */
.process-one .block-title__tagline-wrapper {
    position: relative;
    display: inline-block;
    padding: 0 40px;
    margin-bottom: 10px;
}

.process-one .block-title__tagline-wrapper::before,
.process-one .block-title__tagline-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #b718a6 0%, #6e54f3 100%);
    transform: translateY(-50%);
}

.process-one .block-title__tagline-wrapper::before {
    left: 0;
}

.process-one .block-title__tagline-wrapper::after {
    right: 0;
}

.process-one .section-title__title {
    font-size: 40px;
}

.process-one .section-title__title span {
    color: #6e54f3;
}

/* Background Decorative Shapes */
.process-one__shape-1 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 50px solid rgba(110, 84, 243, 0.03);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 1199px) {
    .process-one .section-title__title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .process-one {
        padding: 80px 0 50px;
    }
    
    .process-one .section-title__title {
        font-size: 30px;
    }

    .process-one [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
