.comparison-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.comparison-items {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}

.comparison-item {
    border: 1px solid var(--grey);
    background-color: var(--dark-grey);
    border-radius: 1.4rem;
    padding: 20px 40px 40px;
    width: 48%;
}

.highlighted {
    background-image: linear-gradient(348deg, #14274e, #1a3469);
}

.comparison-heading {
    color: #fff;
    font-weight: 400;
}

.feature-keypoint-list {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    color: var(--elements-webflow-library--neutral--100);
    font-size: var(--_website---text);
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.check-icon-wrapper {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border-radius: 50%;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
}

.check-icon-wrapper {
    flex: none;
    justify-content: center;
    align-items: center;
    margin-right: .5rem;
    display: flex;
}

.icon-1x1-small {
    flex: none;
    width: 1.25rem;
    height: 1.25rem;
}

@media screen and (max-width: 767px) {
    .comparison-items {
    flex-direction: column;
    }
    .comparison-item {
        width: 100%;
    }
}