:root {
    --labi-primary: #0b3b75;
    --labi-primary-dark: #062b59;
    --labi-accent: #0b78b8;

    --labi-bg: #f4f7fb;
    --labi-white: #ffffff;

    --labi-border: #d8e3ed;

    --labi-text: #0b3264;
    --labi-text-body: #324f69;
    --labi-muted: #7b8c9e;

    --labi-light: #edf4fa;

    --labi-shadow:
        0 5px 20px rgba(11, 50, 100, .06);
}

.labi-page,
.labi-page *,
.labi-page *::before,
.labi-page *::after {
    box-sizing: border-box;
}

.labi-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--labi-bg);
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--labi-text);
}

.labi-container {
    width: calc(100% - 40px);
    max-width: 1450px;
    margin: 0 auto;
}

.labi-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 46px;

    background:
        linear-gradient(
            135deg,
            var(--labi-primary-dark) 0%,
            var(--labi-primary) 100%
        );

    color: #ffffff;
}

.labi-hero::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    top: -210px;
    right: -90px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.035);
}

.labi-hero::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    right: 240px;
    bottom: -230px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.025);
}

.labi-hero .labi-container {
    position: relative;
    z-index: 2;
}

.labi-eyebrow {
    display: block;

    margin-bottom: 8px;

    color: #7fd3ff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.labi-hero h1 {
    max-width: 1050px;

    margin: 0;

    color: #ffffff;

    font-size: 36px;
    font-weight: 800;

    line-height: 1.22;
}

.labi-hero p {
    max-width: 850px;

    margin: 13px 0 0;

    color:
        rgba(255,255,255,.88);

    font-size: 13px;

    line-height: 1.65;
}

.labi-content {
    padding: 40px 0 65px;
}

.labi-block {
    position: relative;

    padding: 28px;

    border: 1px solid var(--labi-border);

    border-radius: 14px;

    background: #ffffff;

    box-shadow: var(--labi-shadow);
}

.labi-block-full {
    margin-bottom: 22px;
}

.labi-section-label {
    display: block;

    margin-bottom: 7px;

    color: var(--labi-accent);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.labi-block h2 {
    position: relative;

    margin: 0 0 20px;

    padding-bottom: 12px;

    color: var(--labi-text);

    font-size: 27px;
    font-weight: 800;

    line-height: 1.3;
}

.labi-block h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 48px;
    height: 3px;

    border-radius: 20px;

    background: var(--labi-accent);
}

.labi-text {
    color: var(--labi-text-body);

    font-size: 13px;

    line-height: 1.85;

    text-align: justify;
}

.labi-text br {
    content: "";
    display: block;

    margin-bottom: 8px;
}

.labi-main-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 500px);

    gap: 22px;

    align-items: stretch;

    margin-bottom: 22px;
}

.labi-image-area {
    width: 100%;
}

.labi-image-box {
    height: 100%;
    min-height: 360px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 18px;

    border: 1px solid var(--labi-border);

    border-radius: 14px;

    background: #ffffff;

    box-shadow: var(--labi-shadow);

    overflow: hidden;
}

.labi-image-box img {
    display: block;

    width: 100%;
    height: 100%;

    max-height: 460px;

    object-fit: contain;

    border-radius: 9px;
}

.labi-vision {
    max-width: calc(100% - 522px);
}

.labi-empty {
    min-height: 320px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    border: 1px solid var(--labi-border);

    border-radius: 14px;

    background: #ffffff;

    text-align: center;

    box-shadow: var(--labi-shadow);
}

.labi-empty-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    border-radius: 50%;

    background: var(--labi-light);

    color: var(--labi-primary);

    font-size: 25px;
}

.labi-empty h2 {
    margin: 0;

    color: var(--labi-text);

    font-size: 19px;
    font-weight: 800;
}

.labi-empty p {
    max-width: 520px;

    margin: 8px 0 0;

    color: var(--labi-muted);

    font-size: 11px;

    line-height: 1.65;
}

@media (max-width: 991.98px) {

    .labi-main-grid {
        grid-template-columns: 1fr;
    }

    .labi-image-area {
        max-width: 600px;
        margin: 0 auto;
    }

    .labi-image-box {
        min-height: 300px;
    }

    .labi-vision {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {

    .labi-container {
        width: calc(100% - 24px);
    }

    .labi-hero {
        padding: 31px 0;
    }

    .labi-eyebrow {
        font-size: 8px;

        line-height: 1.5;
    }

    .labi-hero h1 {
        font-size: 23px;
    }

    .labi-hero p {
        font-size: 11.5px;
    }

    .labi-content {
        padding: 28px 0 42px;
    }

    .labi-block {
        padding: 20px;
    }

    .labi-block h2 {
        font-size: 22px;
    }

    .labi-text {
        font-size: 11.5px;

        line-height: 1.75;

        text-align: left;
    }

    .labi-main-grid {
        gap: 16px;
    }

    .labi-image-box {
        min-height: 220px;

        padding: 12px;
    }
}

@media (max-width: 390px) {

    .labi-hero h1 {
        font-size: 20px;
    }

    .labi-block h2 {
        font-size: 20px;
    }
}