/* Component */



/* Main */

.solutionCards {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 56px;

}

.solCardHeadline {
    display: flex;
    align-items: center;
    gap: 16px;
}

.solCard {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    padding: 24px;
    border-radius: var(--radius);
    /* border: var(--border); */
    box-shadow: var(--shdw)
}

.solCardTxt {
    display: flex;
    flex-direction: column;
    gap: 12px;

    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.solCardTxt p {
    font-size: 14px;

    color: var(--font-lg);

}

.solCard img {
    width: 48px;
}

.bullets {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullet {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    /* padding: 12px; */
    /* border: var(--border); */
    border-radius: var(--radius);
    /* background-color: rgba(0, 107, 194, 0.081); */

}

.bullet p {
    font-size: 14px;
    color: var(--font-lg);
}

.bullet img {
    width: 8px;

}

@media(max-width: 1020px) {
    .solutions {
        flex-direction: column;
        align-items: center;
        gap: 56px;
    }

    .solutionCards {
        grid-template-columns: repeat(1, 1fr);

    }

    .solCard {
        padding: 32px 24px;
    }
}