.about {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    padding: 1rem;
}

.about p {
    opacity: .7;
}

.iconed-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.iconed-card {
    background: linear-gradient(#00b7ff1c, #db0af92b);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #d0a3fd;
}

.iconed-card svg {
    background-color: #0080002e;
    border-radius: 1rem;
}

.iconed-card h3 {
    margin: 4px 0px;
}

.iconed-card p {
    margin: 4px 0;
}

.process {
    background: #7739aa;
    border-radius: 1rem;
    padding: 1rem 3rem;
    color: #fff;
}

.process>div {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.process>div h3 {
    margin: 8px 0px;
}

.process>div h3 {
    margin: 0;
}

.process>div p {
    margin: 8px 0;
}

.process>div>div {
    margin: auto 0;
}

.process>div:not(:last-child):before {
    content: '';
    display: block;
    height: 48px;
    position: absolute;
    border-left: 4px dashed #fff;
    left: 2.4rem;
    top: 88px;
}



.process>div>div:first-child {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    min-width: 80px;
    min-height: 80px;
    padding: 1rem;
    border-radius: 4rem;
}

.process>div>div::after {
    content: '';
    display: block;
    position: absolute;
    height: 4rem;
    width: 4px;
    top: 4rem;
}

@media (max-width: 768px) {
    .iconed-card-wrapper {
        grid-template-columns: auto;
    }

    .container {
        margin: 1rem;
    }
}

@media (max-width: 525px) {
    .process>div:not(:last-child)::before {
        height: 80px;
        top: 84px;
    }
}