.pqcew-process-items-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 120px;
}

.pqcew-process.pqcew-style-1 {
    background-color: #FBF8F4;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 45px 40px 35px;
    border-radius: 15px;
    position: relative;
    z-index: 5;
}

.pqcew-process.pqcew-style-1 .pqcew-step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    padding: 7px 22px;
    white-space: nowrap;
    position: relative;
    color: #CB0000;
}

.pqcew-process.pqcew-style-1 .pqcew-step-number::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 15px;
    height: 15px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0 0 4px 0;
    border-top: unset;
    border-left: unset;
    transition: all 0.4s ease-in-out;
}

.pqcew-process.pqcew-style-1 .pqcew-step-number span {
    color: #CB0000;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 1px;
    transition: all 0.4s ease-in-out;
}

.pqcew-process.pqcew-style-1 .pqcew-step-title {
    color: #000000;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
    position: relative;
}

.pqcew-process.pqcew-style-1 .pqcew-step-description {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    margin: 0;
}

.pqcew-process.pqcew-style-1 .pqcew-step-icon {
    position: absolute;
    top: -1px;
    right: -1px;
    z-index: 2;
}

.pqcew-process.pqcew-style-1 .pqcew-step-icon svg {
    fill: #ffff;
}

.pqcew-process.pqcew-style-1 .pqcew-step-connector {
    position: absolute;
    top: 30%;
    right: -150px;
    z-index: -1;
    width: 149px;
}

.pqcew-process.pqcew-style-1:last-child .pqcew-step-connector {
    display: none;
}

@media(max-width:1099px) {

    .pqcew-process.pqcew-style-1 .pqcew-step-connector {
        display: none;
    }

    .pqcew-process-items-1 { 
        gap: 30px;
    }
}

@media(max-width:1023px) { 
        .pqcew-process-items-1 {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .pqcew-process.pqcew-style-1:nth-child(3) {
        grid-column: span 2;
    }
}

@media(max-width:767px) {
    .pqcew-process-items-1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pqcew-process.pqcew-style-1 {
        padding: 30px;
    }

    .pqcew-process.pqcew-style-1:nth-child(3) {
        grid-column: span 1;
    }
}

@media(max-width:397px) {
    
}