.article7 {
    padding: 120rem 0;
    background-color: var(--main-color);
}

.article7 .ar-title h5 {
    color: #fff;
}

.process-wrap {
    display: flex;
    align-items: center;
}

.process-item {
    min-width: 315rem;
    padding: 50rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    border-radius: 10rem;
    background-color: #fff;
}

.process-text strong {
    color: #111;
    display: block;
    font-size: 24rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-text span {
    display: block;
    color: var(--main-color);
    font-size: 20rem;
    font-weight: 600;
    letter-spacing: -0.5rem;
}

.process-arrow {
    flex-shrink: 0;
    padding: 0 8rem;
}

.process-arrow i {
    color: #fff;
    font-size: 32rem;
}

.a7-bottom {
    color: #ffffff70;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    margin-top: 40px;
}


/*==================================================*/
@media (max-width: 1024px) {
    .process-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .process-item {
        min-width: 500rem;
    }

    .process-arrow {
        transform: rotate(90deg) !important;
    }
}


@media (max-width: 450px) {
    .process-wrap {
        width: 100%;
    }
    
    .process-item {
        width: 80%;
        min-width: unset;
    }

    .process-text strong {
        font-size: 45rem;
    }

    .process-text span {
        font-size: 28rem;
    }
    
    .process-arrow i {
        font-size: 45rem;
    }
}