.flex-content.process {
    padding: 4rem 0;
}

.flex-content.process .subtitle {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.flex-content.process .items .card {
    --bs-card-spacer-y: 1.5rem;
    --bs-card-spacer-x: 1.5rem;
    --bs-card-border-radius: .75rem;
}

.flex-content.process .item {
    position: relative;
}
.flex-content.process .item + .item::before {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    width: 1.5rem;
    height: 1.5rem;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f59714' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-arrow-right hidden lg:block h-6 w-6 text-accent mx-2 flex-shrink-0'%3E%3Cpath d='M5 12h14'%3E%3C/path%3E%3Cpath d='m12 5 7 7-7 7'%3E%3C/path%3E%3C/svg%3E");
}
@media (max-width: 575px) {
    .flex-content.process .item + .item::before {
        top: -1.5rem;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

.flex-content.process .item-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}
.flex-content.process .item-header .icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    border-radius: 999px;
}
.flex-content.process .item-header svg {
    width: 1.75rem;
    height: 1.75rem;
    object-fit: contain;
    color: #FFF;
}

.flex-content.process .card p:last-child {
    margin-bottom: 0;
}

.flex-content.process .closing-text .card {
    --bs-card-spacer-y: 2.5rem;
    --bs-card-spacer-x: 2.5rem;
    --bs-card-border-radius: .75rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575px) {
    .flex-content.process {
        padding: 3rem 0;
    }
    .flex-content.process .item {
        flex: 1 0 100%;
    }
}