.filab-why {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: #eef2f7;
}
.filab-why--reverse .filab-why__media {
    order: 2;
}
.filab-why--reverse .filab-why__body {
    order: 1;
}
.filab-why__media {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: #071b4a;
}
.filab-why__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 27, 74, .05), rgba(7, 27, 74, .42));
}
.filab-why__media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}
.filab-why__body {
    display: flex;
    align-items: center;
    padding: 92px 48px;
}
.filab-why__content {
    width: min(560px, 100%);
    margin: 0 auto;
}
.filab-why h2 {
    margin: 0;
    color: #071b4a;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
}
.filab-why p:not(.filab-eyebrow) {
    color: rgba(7, 27, 74, .68);
    line-height: 1.6;
}
.filab-why__content > .filab-eyebrow {
    margin-top: 8px;
    color: #f58a2c !important;
}
.filab-why__content > p:not(.filab-eyebrow) {
    margin: 16px 0 0;
    font-size: 14px;
}
.filab-why .filab-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: none;
    background: currentColor;
    -webkit-mask-image: var(--filab-icon);
    mask-image: var(--filab-icon);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.filab-why__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 32px 0;
}
.filab-why__cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.filab-why__cards article {
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 24px -8px rgba(7, 27, 74, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.filab-why__cards article:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px -12px rgba(7, 27, 74, .18);
}
.filab-why__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(245, 138, 44, .1);
    color: #f58a2c;
}
.filab-why__icon .filab-icon {
    width: 24px;
    height: 24px;
}
.filab-why__custom-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: currentColor;
    -webkit-mask-image: var(--filab-why-icon);
    mask-image: var(--filab-why-icon);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}
.filab-why__icon--image {
    width: auto;
    min-width: 132px;
    max-width: 190px;
    height: 64px;
    border-radius: 0;
    background: transparent;
    color: inherit;
}
.filab-why__icon--image img {
    width: auto;
    max-width: 190px;
    height: 64px;
    object-fit: contain;
}
.filab-why__cards h3 {
    margin: 12px 0 0;
    color: #071b4a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}
.filab-why__cards p {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.55;
}
@media (min-width: 768px) {
    .filab-why h2 {
        font-size: 48px;
    }
}
@media (max-width: 900px) {
    .filab-why,
    .filab-why__cards {
        grid-template-columns: 1fr;
    }
    .filab-why--reverse .filab-why__media,
    .filab-why--reverse .filab-why__body {
        order: initial;
    }
    .filab-why__media,
    .filab-why__media video {
        min-height: 320px;
    }
    .filab-why__body {
        padding: 56px 20px;
    }
}
