﻿@font-face {
            font-family: "Futura PT";
            src: url('/frontend/fonts/FuturaCyrillicLight.ttf') format("truetype");
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura PT';
            src: url('/frontend/fonts/FuturaCyrillicBook.ttf') format("truetype");
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura PT';
            src: url('/frontend/fonts/FuturaCyrillicMedium.ttf') format("truetype");
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura PT';
            src: url('/frontend/fonts/FuturaCyrillicDemi.ttf') format("truetype");
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura PT';
            src: url('/frontend/fonts/FuturaCyrillicBold.ttf') format("truetype");
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura PT';
            src: url('/frontend/fonts/FuturaCyrillicExtraBold.ttf') format("truetype");
            font-weight: 800;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura PT';
            src: url('/frontend/fonts/FuturaCyrillicHeavy.ttf') format("truetype");
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --taguig-blue: #1a4798;
            --taguig-red: #ed1c24;
            --taguig-yellow: #f4c027;
            --ink: #101010;
            --bg-grey: #f4f6f9;
            --bg-blue: #eaf3ff;
            --nav-h: 72px;
            --r: 16px;
            --radius-pill: 999px;
            --radius-card: 16px;
            --radius-panel: 16px;
            --section-pad: clamp(2.2rem, 2.7vw, 3.2rem);
            --content-pad: clamp(2rem, 2.4vw, 3rem);
            --content-gap: clamp(.7rem, .6rem + .45vw, 1rem);
            --section-stack-gap: clamp(.95rem, .86rem + .4vw, 1.25rem);
            --section-head-gap: clamp(.42rem, .34rem + .35vw, .66rem);
            --section-head-space: clamp(.95rem, .78rem + .55vw, 1.3rem);
            --card-pad: clamp(1rem, .9rem + .55vw, 1.28rem);
            --section-title-size: clamp(1.34rem, 1.1rem + .75vw, 1.75rem);
            --section-subtitle-size: clamp(.98rem, .94rem + .2vw, 1.05rem);
            --section-divider-height: 6px;
            --container-max: 1180px;
            --reading-width: 66ch;
            --gap: 1rem;
            --gap-lg: 1.15rem;
            --table-font: .95rem;
            --type-base: clamp(1rem, .97rem + .18vw, 1.08rem);
            --type-body-tight: clamp(.96rem, .94rem + .12vw, 1.01rem);
            --type-hero-title: clamp(2.15rem, 1.2rem + 3.5vw, 3.45rem);
            --type-quote: clamp(1.05rem, .9rem + 1.1vw, 1.5rem);
            --copy-leading: 1.6;
            --panel-radius: var(--radius-panel);
            --panel-pad: var(--card-pad);
            --panel-border: #d6e0f3;
            --text-muted: #4f5f77;
            --text-subtle: #61708b;
            --section-separator: rgba(26, 71, 152, .08);
            --shadow-soft: 0 10px 24px rgba(16, 24, 40, .08);
            --shadow-card: 0 14px 28px rgba(26, 71, 152, .16);
            --shadow-float: 0 18px 36px rgba(26, 71, 152, .22);
            --motion-ease: cubic-bezier(.22, 1, .36, 1);
            --motion-fast: .22s;
            --motion-normal: .36s;
            --motion-slow: .56s;
            --bs-primary: var(--taguig-blue);
            --bs-primary-rgb: 26, 71, 152;
            --bs-danger: var(--taguig-red);
            --bs-danger-rgb: 237, 28, 36;
            --bs-warning: var(--taguig-yellow);
            --bs-warning-rgb: 244, 192, 39;
            --bs-body-color: var(--ink);
            --bs-link-color: var(--taguig-blue);
            --bs-link-hover-color: #153b80;
        }

        * {
            box-sizing: border-box
        }

        html,
        body {
            height: 100%
        }

        html {
            scroll-behavior: smooth
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important
            }
        }

        body {
            font-family: 'Futura PT', Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
            font-size: var(--type-base);
            font-weight: 400;
            color: var(--ink);
            line-height: var(--copy-leading);
            background: var(--bg-grey);
            padding-top: var(--nav-h);
            overflow-x: hidden;
        }

        .btn-primary {
            --bs-btn-bg: var(--taguig-blue);
            --bs-btn-border-color: var(--taguig-blue);
            --bs-btn-hover-bg: #153b80;
            --bs-btn-hover-border-color: #153b80;
            --bs-btn-active-bg: #123570;
            --bs-btn-active-border-color: #123570;
        }

        .btn-danger {
            --bs-btn-bg: var(--taguig-red);
            --bs-btn-border-color: var(--taguig-red);
            --bs-btn-hover-bg: #c9161d;
            --bs-btn-hover-border-color: #c9161d;
            --bs-btn-active-bg: #b8141a;
            --bs-btn-active-border-color: #b8141a;
        }

        .btn-warning {
            --bs-btn-color: #101010;
            --bs-btn-bg: var(--taguig-yellow);
            --bs-btn-border-color: var(--taguig-yellow);
            --bs-btn-hover-color: #101010;
            --bs-btn-hover-bg: #e3b31f;
            --bs-btn-hover-border-color: #e3b31f;
            --bs-btn-active-color: #101010;
            --bs-btn-active-bg: #d4a617;
            --bs-btn-active-border-color: #d4a617;
        }

        .btn-outline-primary {
            --bs-btn-color: var(--taguig-blue);
            --bs-btn-border-color: var(--taguig-blue);
            --bs-btn-hover-color: #ffffff;
            --bs-btn-hover-bg: var(--taguig-blue);
            --bs-btn-hover-border-color: var(--taguig-blue);
            --bs-btn-active-color: #ffffff;
            --bs-btn-active-bg: var(--taguig-blue);
            --bs-btn-active-border-color: var(--taguig-blue);
            --bs-btn-disabled-color: var(--taguig-blue);
            --bs-btn-disabled-border-color: var(--taguig-blue);
        }

        .btn-outline-danger {
            --bs-btn-color: var(--taguig-red);
            --bs-btn-border-color: var(--taguig-red);
            --bs-btn-hover-color: #ffffff;
            --bs-btn-hover-bg: var(--taguig-red);
            --bs-btn-hover-border-color: var(--taguig-red);
            --bs-btn-active-color: #ffffff;
            --bs-btn-active-bg: var(--taguig-red);
            --bs-btn-active-border-color: var(--taguig-red);
            --bs-btn-disabled-color: var(--taguig-red);
            --bs-btn-disabled-border-color: var(--taguig-red);
        }

        .btn-outline-warning {
            --bs-btn-color: #9a6f00;
            --bs-btn-border-color: var(--taguig-yellow);
            --bs-btn-hover-color: #101010;
            --bs-btn-hover-bg: var(--taguig-yellow);
            --bs-btn-hover-border-color: var(--taguig-yellow);
            --bs-btn-active-color: #101010;
            --bs-btn-active-bg: var(--taguig-yellow);
            --bs-btn-active-border-color: var(--taguig-yellow);
            --bs-btn-disabled-color: #9a6f00;
            --bs-btn-disabled-border-color: var(--taguig-yellow);
        }

        img {
            max-width: 100%;
            height: auto
        }

        h1 {
            font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.4rem)
        }

        h2 {
            font-size: clamp(1.35rem, 1rem + 1.2vw, 1.65rem);
            margin-bottom: .4rem
        }

        h3 {
            font-size: clamp(1.05rem, .9rem + .8vw, 1.15rem)
        }

        h1,
        h2,
        h3,
        h4,
        .display-5 {
            color: var(--taguig-blue);
            letter-spacing: .01em
        }

        main {
            position: relative
        }

        main>.section-block,
        header.section-block {
            position: relative
        }

        main>.section-block>.container,
        header.section-block>.container {
            max-width: var(--container-max)
        }

        main>.section-block+.section-block {
            border-top: 1px solid var(--section-separator)
        }

        .section-block {
            padding-block: var(--section-pad);
            scroll-margin-top: var(--nav-h)
        }

        .section-head {
            display: grid;
            gap: var(--section-head-gap);
            margin-bottom: var(--section-head-space);
            align-content: start
        }

        .section-head h2,
        .section-head .h3 {
            color: var(--taguig-blue);
            font-weight: 800;
            font-size: var(--section-title-size);
            line-height: 1.2;
            letter-spacing: .01em;
            margin-bottom: 0;
            text-wrap: balance;
            max-width: 30ch
        }

        .section-body {
            display: grid;
            gap: var(--section-stack-gap)
        }

        .section-body>:where(p, ul, ol) {
            max-width: var(--reading-width)
        }

        .section-head>:where(p, .section-subtitle) {
            margin-bottom: 0;
            font-size: var(--section-subtitle-size);
            color: var(--text-subtle);
            line-height: 1.55;
            max-width: 62ch;
            text-wrap: pretty
        }

        .section-body :where(p, li) {
            color: var(--text-muted);
            line-height: var(--copy-leading);
            font-size: var(--type-body-tight)
        }

        .eyebrow {
            color: var(--text-subtle);
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            font-style: italic;
            font-size: var(--section-subtitle-size);
            line-height: 1.25
        }

        .note {
            color: var(--text-muted)
        }

        .rule {
            height: 3px;
            width: 64px;
            background: var(--taguig-blue);
            border-radius: 999px
        }

        .divider {
            display: flex;
            gap: 0;
            height: var(--section-divider-height);
            border-radius: 999px;
            overflow: hidden;
            margin: .15rem 0 0
        }

        .divider .b {
            flex: 1;
            background: var(--taguig-blue)
        }

        .divider .y {
            flex: 1;
            background: var(--taguig-yellow)
        }

        .divider .r {
            flex: 1;
            background: var(--taguig-red)
        }

        .tint-grey {
            background: #f7f9fc
        }

        .tint-blue {
            background: #eef4ff
        }

        :focus-visible {
            outline: 3px solid var(--taguig-yellow);
            outline-offset: 2px;
            border-radius: .25rem
        }

        .skip-link {
            position: absolute;
            left: -9999px;
            top: 8px;
            z-index: 2200;
            background: #fff;
            color: var(--taguig-blue);
            border: 2px solid var(--taguig-blue);
            border-radius: 8px;
            padding: .45rem .7rem;
            text-decoration: none
        }

        .skip-link:focus {
            left: 12px
        }

        .tsms-topbar {
            height: var(--nav-h);
            position: fixed;
            inset: 0 0 auto 0;
            background: rgba(255, 255, 255, .92);
            border-bottom: 1px solid rgba(16, 16, 16, .06);
            box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
            backdrop-filter: saturate(130%) blur(6px);
            z-index: 1030;
            transition: box-shadow var(--motion-fast) var(--motion-ease), background-color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease)
        }

        .tsms-topbar.is-scrolled {
            background: rgba(255, 255, 255, .98);
            border-color: rgba(16, 16, 16, .08);
            box-shadow: 0 10px 26px rgba(0, 0, 0, .08)
        }

        .tsms-topbar.over-hero {
            background: transparent;
            border-color: transparent;
            box-shadow: none
        }

        .tsms-topbar.peek {
            background: rgba(255, 255, 255, .98);
            border-bottom: 1px solid rgba(16, 16, 16, .08);
            box-shadow: 0 10px 26px rgba(0, 0, 0, .08)
        }

        .tsms-brand {
            display: flex;
            align-items: center;
            gap: .5rem;
            min-width: 0;
            text-decoration: none
        }

        .tsms-logo {
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
            flex: 0 0 44px;
            border-radius: 50%;
            object-fit: cover;
            object-position: center;
            display: block
        }

        .tsms-brandtext {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
            min-width: 0
        }

        .tsms-brandtitle {
            font-weight: 700;
            color: #1b1b1b;
            font-size: clamp(.98rem, .9rem + .7vw, 1.2rem);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis
        }

        .tsms-brandsub {
            color: #6b7280;
            font-size: .9rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis
        }

        .tsms-right {
            display: flex;
            align-items: center;
            gap: .65rem
        }

        .auth-mini {
            display: inline-flex;
            gap: .4rem;
            align-items: center;
        }

        .auth-mini .btn {
            border-radius: 999px;
            padding: .4rem .8rem;
            font-weight: 700;
            font-size: .85rem;
            white-space: nowrap
        }

        .auth-mini .dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
        }

        .auth-mini .dropdown-toggle::after {
            margin-left: .1rem;
        }

        .auth-dropdown-menu {
            border: 1px solid #d7e3ff;
            border-radius: .3rem;
            padding: .25rem;
            min-width: 210px;
            box-shadow: 0 14px 30px rgba(26, 71, 152, .14);
        }

        .auth-dropdown-menu .dropdown-item {
            border-radius: .28rem;
            padding: .5rem .65rem;
            font-weight: 700;
            color: #1a3f94;
            display: inline-flex;
            align-items: center;
            gap: .45rem;
        }

        .auth-dropdown-menu .auth-dropdown-divider {
            margin: .2rem .25rem;
            border-top: 1px solid #d8e3ff;
            opacity: 1;
        }

        .auth-dropdown-menu .dropdown-item i {
            width: 1rem;
            text-align: center;
        }

        .auth-dropdown-menu .dropdown-item:hover,
        .auth-dropdown-menu .dropdown-item:focus {
            background: #edf4ff;
            color: #173b8d;
        }

        .tsms-timewrap {
            display: flex;
            align-items: center;
            gap: .45rem;
            font-weight: 700;
            white-space: nowrap
        }

        .tsms-time-label {
            color: #374151;
            font-size: .87rem
        }


        .tsms-time {
            font-variant-numeric: tabular-nums;
            background: #eef3ff;
            border: 1px solid #d8e3ff;
            padding: .4rem .68rem;
            border-radius: 999px;
            color: #1a3f94;
            letter-spacing: .02em;
            font-size: .86rem;
            min-width: 13.8rem;
            text-align: center;
        }

        .tsms-search {
            display: flex;
            align-items: center;
            gap: .4rem
        }

        .tsms-search .btn-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 999px;
            border: 1px solid #d8e3ff;
            background: #fff;
            color: var(--taguig-blue)
        }

        .tsms-search .form-control {
            width: 0;
            opacity: 0;
            padding-left: 0;
            padding-right: 0;
            border-color: transparent;
            transition: width var(--motion-fast) var(--motion-ease), opacity var(--motion-fast) var(--motion-ease), padding var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), background-color var(--motion-fast) var(--motion-ease)
        }

        .tsms-search.open .form-control {
            width: min(250px, 58vw);
            opacity: 1;
            padding: 0 .75rem;
            border-color: #d8e3ff;
            background: #fff
        }

        .tsms-search-meta {
            display: none;
            align-items: center;
            gap: .35rem;
            background: #eef3ff;
            border: 1px solid #d8e3ff;
            color: #1a3f94;
            border-radius: 999px;
            padding: .25rem .5rem;
            font-weight: 700;
            font-size: .85rem
        }

        .tsms-search.has-results .tsms-search-meta {
            display: inline-flex
        }

        .tsms-search-meta .navbtn {
            background: transparent;
            border: 0;
            padding: .1rem .25rem;
            font-weight: 900;
            line-height: 1;
            cursor: pointer
        }

        mark.search-hit {
            background: #ffe58a;
            padding: .05em .15em;
            border-radius: .2em
        }

        mark.search-current {
            background: #ffd24d;
            box-shadow: 0 0 0 2px rgba(255, 210, 77, .5)
        }

        @media (max-width:767.98px) {
            :root {
                --type-base: .97rem;
                --type-hero-title: clamp(1.9rem, 7.2vw, 2.28rem);
                --type-quote: clamp(1rem, 4.8vw, 1.2rem);
                --type-card-title: clamp(1.02rem, 3.8vw, 1.2rem);
                --type-card-copy: .95rem;
                --section-pad: clamp(1.7rem, 5.5vw, 2.1rem);
            }

            .tsms-topbar .container-fluid {
                justify-content: space-between !important;
                gap: .35rem !important;
                padding-left: .55rem !important;
                padding-right: .55rem !important;
                flex-wrap: nowrap !important;
            }

            .tsms-brand {
                display: inline-flex;
                align-items: center;
                gap: .22rem;
                min-width: 0;
                flex: 0 0 auto;
            }

            .tsms-brandtext {
                display: none;
            }

            .tsms-logo {
                width: 30px;
                height: 30px;
                min-width: 30px;
                min-height: 30px;
                flex: 0 0 30px;
            }

            .tsms-right {
                margin-left: 0;
                gap: .35rem;
                margin-left: auto;
                flex: 0 0 auto;
            }

            .auth-mini {
                display: inline-flex;
            }

            .auth-mini .btn {
                min-height: 34px;
                padding: .35rem .56rem;
                font-size: .76rem;
            }

            .tsms-timewrap {
                display: none;
            }

            .tsms-search {
                display: none !important;
            }

        }

        @media (max-width:375px) {
            :root {
                --nav-h: 60px;
                --type-hero-title: clamp(1.76rem, 8.2vw, 2.06rem);
                --type-quote: clamp(.94rem, 4.7vw, 1.08rem);
            }

            .tsms-topbar .container-fluid {
                padding-left: .4rem !important;
                padding-right: .4rem !important;
                gap: .25rem !important;
            }

            .tsms-brand {
                gap: .15rem;
            }

            .tsms-logo {
                width: 27px;
                height: 27px;
                min-width: 27px;
                min-height: 27px;
                flex: 0 0 27px;
            }

            .auth-mini .btn {
                min-height: 33px;
                padding: .3rem .5rem;
                font-size: .74rem;
            }

            .auth-mini .dropdown-toggle::after {
                margin-left: .05rem;
                vertical-align: .12em;
            }

            .auth-dropdown-menu {
                min-width: 180px;
            }

            .tsms-search .btn-icon {
                width: 32px;
                height: 32px;
            }

        }

        .tsms-hero {
            --skyline-h: 118px;
            background-image: url('/frontend/image/footer-trim.png'), url('/frontend/image/sunray.jpg');
            background-repeat: repeat-x, no-repeat;
            background-position: bottom center, 50% 35%;
            background-size: auto var(--skyline-h), cover;
            background-color: #eaf3ff;
            min-height: calc(100svh - var(--nav-h));
            display: grid;
            place-items: center;
            padding-block: clamp(2.5rem, 6vh, 6rem);
            position: relative;
            isolation: isolate
        }

        @supports not (height: 1svh) {
            .tsms-hero {
                min-height: calc(100vh - var(--nav-h))
            }
        }

        @media (max-width:767.98px) {
            @supports not (height: 1svh) {
                .tsms-hero {
                    min-height: calc(100vh - var(--nav-h));
                }
            }
        }

        @media (max-width:375px) {
            @supports not (height: 1svh) {
                .tsms-hero {
                    min-height: calc(100vh - var(--nav-h));
                }
            }
        }

        .tsms-center {
            max-width: 980px;
            margin-inline: auto;
            text-align: center
        }

        .tsms-eyebrow {
            color: var(--taguig-red);
            font-weight: 800;
            letter-spacing: .07em;
            text-transform: uppercase;
            font-style: italic;
            font-size: .95rem
        }

        .tsms-title {
            color: var(--taguig-blue);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: .01em;
            font-size: var(--type-hero-title);
            margin: .2rem 0 .4rem;
            text-wrap: balance
        }

        .tsms-quote {
            margin: .15rem 0 1rem;
            color: var(--taguig-red);
            font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
            font-weight: 700;
            font-style: normal;
            letter-spacing: .02em;
            line-height: 1.2;
            font-size: var(--type-quote);
            text-shadow: 0 1px 0 rgba(237, 28, 36, .14);
            display: inline-block;
            animation: quoteInkFloat 3.6s var(--motion-ease) infinite;
        }

        @media (max-width:767.98px) {
            .tsms-hero {
                min-height: calc(100svh - var(--nav-h));
                padding-block: clamp(1.7rem, 4.8vh, 3rem);
            }

            .tsms-center {
                max-width: min(34rem, 92vw);
            }

            .tsms-title {
                max-width: 16ch;
                margin-inline: auto;
                text-wrap: normal;
            }

            .tsms-quote {
                max-width: 28ch;
                margin-inline: auto;
            }
        }

        @media (max-width:375px) {
            .tsms-hero {
                min-height: calc(100svh - var(--nav-h));
                padding-block: clamp(1.45rem, 4.2vh, 2.3rem);
            }
        }

        @keyframes quoteInkFloat {

            0%,
            100% {
                transform: translateY(0);
                text-shadow: 0 1px 0 rgba(237, 28, 36, .14);
            }

            50% {
                transform: translateY(-2px);
                text-shadow: 0 4px 10px rgba(237, 28, 36, .2);
            }
        }

        .tsms-hero-arrow {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 22px;
            width: 56px;
            height: 56px;
            border-radius: 999px;
            background: rgba(255, 255, 255, .92);
            color: var(--taguig-blue);
            border: 2px solid #d8e3ff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 26px rgba(16, 16, 16, .08);
            backdrop-filter: saturate(130%) blur(6px);
            cursor: pointer;
            z-index: 2;
            transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
            animation: tsms-bounce 1.6s ease-in-out infinite;
        }

        .tsms-hero-arrow:hover {
            transform: translateX(-50%) translateY(2px);
        }

        .tsms-hero-arrow i {
            font-size: 18px;
        }

        @keyframes tsms-bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(6px);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .tsms-quote {
                animation: none;
            }

            .tsms-hero-arrow {
                animation: none;
            }
        }

        @media (max-width: 420px) {
            .tsms-hero-arrow {
                width: 48px;
                height: 48px
            }
        }

        .hero-wrap.section-block {
            background: #fff
        }

        .home-intro {
            gap: max(var(--section-head-gap), .48rem)
        }

        .home-title {
            line-height: 1.15;
            letter-spacing: .01em;
            max-width: 18ch
        }

        .home-copy {
            max-width: 63ch;
            color: var(--text-muted)
        }

        .home-footnote {
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            color: var(--text-subtle)
        }

        .hero-collage {
            position: relative;
            border-radius: var(--radius-card);
            overflow: clip;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(26, 71, 152, .16);
            background: #fff
        }

        .hero-img {
            width: 100%;
            height: clamp(260px, 30vw, 360px);
            object-fit: cover;
            border-radius: 0
        }

        .tile-badge {
            display: inline-flex;
            align-items: center;
            gap: .45rem;
            font-weight: 900;
            text-transform: uppercase;
            color: #fff;
            letter-spacing: .02em;
            border-radius: 999px;
            padding: .35rem .7rem;
            background: var(--taguig-blue);
            font-size: .82rem
        }

        .tile-badge.danger {
            background: var(--taguig-red)
        }

        .tile-badge.warning {
            background: var(--taguig-yellow);
            color: #111
        }

        .cards-2 {
            display: grid;
            gap: var(--gap)
        }

        @media (min-width: 992px) {
            .cards-2 {
                grid-template-columns: 1fr 1fr
            }
        }

        .req-wrap,
        .merit-wrap,
        .gallery-wrap {
            background: #fff;
            border: 1px solid var(--panel-border);
            border-radius: var(--panel-radius);
            box-shadow: var(--shadow-soft);
            position: relative;
        }

        .topbars {
            height: 10px;
            display: flex;
            border-radius: var(--panel-radius) var(--panel-radius) 0 0;
            overflow: hidden
        }

        .topbars .r {
            background: var(--taguig-red);
            flex: 1
        }

        .topbars .y {
            background: var(--taguig-yellow);
            flex: 1
        }

        .topbars .b {
            background: var(--taguig-blue);
            flex: 2
        }

        .topbars.mams .b {
            flex: 3
        }

        .topbars.mams .r {
            flex: 1.3
        }

        .topbars.mams .y {
            flex: 1
        }

        .req-body {
            padding: var(--card-pad);
            border: 2px dashed #9fb7ea;
            border-radius: calc(var(--panel-radius) - 4px);
            background: #fff;
            position: relative
        }

        @media (min-width: 576px) {
            .req-body {
                padding: 1.25rem
            }
        }

        @media (min-width: 992px) {
            .req-body {
                padding: 1.5rem
            }
        }

        .req-box {
            background: #fff;
            border: 1px solid var(--panel-border);
            border-radius: var(--radius-card);
            padding: var(--card-pad);
            box-shadow: 0 6px 14px rgba(16, 24, 40, .05)
        }

        .req-box h3 {
            margin: 0 0 .35rem;
            color: #000;
            font-weight: 900;
            font-size: 1.02rem
        }

        .caravan-services {
            display: grid;
            gap: var(--gap);
            margin-top: .35rem;
        }

        @media (min-width: 992px) {
            .caravan-services {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .service-card {
            border: 1px solid var(--panel-border);
            border-radius: var(--radius-card);
            padding: var(--card-pad);
            background: #fff;
            box-shadow: 0 8px 20px rgba(16, 16, 16, .04);
            transition: transform var(--motion-normal) var(--motion-ease), box-shadow var(--motion-normal) var(--motion-ease), border-color var(--motion-normal) var(--motion-ease);
        }

        .service-card:hover {
            transform: translateY(-2px);
            border-color: rgba(26, 71, 152, .26);
            box-shadow: 0 12px 24px rgba(16, 24, 40, .12);
        }

        .service-head {
            display: flex;
            align-items: center;
            gap: .7rem;
            margin-bottom: .45rem;
        }

        .service-num {
            width: 30px;
            height: 30px;
            border-radius: 999px;
            background: var(--taguig-blue);
            color: #fff;
            font-weight: 900;
            font-size: .85rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .service-title {
            margin: 0;
            font-weight: 900;
            font-size: 1rem;
            color: var(--taguig-blue);
            letter-spacing: .02em;
            text-transform: uppercase;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
        }

        .service-list li {
            position: relative;
            padding-left: 1.05rem;
            margin: .35rem 0;
            font-size: .95rem;
        }

        .service-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: .6rem;
            width: .42rem;
            height: .42rem;
            border-radius: 50%;
            background: var(--taguig-red);
        }

        .service-note {
            margin: .35rem 0 0;
            color: #6b7280;
            font-size: .85rem;
            font-weight: 600;
        }

        .service-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            margin-top: .45rem;
            border: 1px solid #d5e2fb;
            border-radius: 999px;
            background: #f4f7ff;
            color: #1a3f94;
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .02em;
            text-transform: uppercase;
            padding: .34rem .64rem;
        }

        .service-toggle:hover {
            background: #e9f0ff;
            border-color: #c4d7fb;
        }

        .callout {
            background: #fef7e0;
            border: 1px solid #f3d660;
            border-radius: 12px;
            padding: .75rem .9rem;
            font-size: .95rem
        }

        .callout strong {
            color: #111
        }

        .howto-journey {
            position: relative;
            overflow: hidden;
            background: #f7f9fc;
            isolation: isolate;
            padding-block: var(--section-pad);
        }

        #how-to-assistance .container {
            position: relative;
            z-index: 1;
        }

        .section-head.section-head-center {
            text-align: center;
            justify-items: center;
            margin-bottom: clamp(.75rem, 1.4vw, 1.2rem);
        }

        .journey-eyebrow {
            display: inline-block;
            font-size: .9rem;
            text-transform: uppercase;
            letter-spacing: .06em;
            font-weight: 800;
            color: #3c5b96;
        }

        .journey-subtitle {
            margin: .15rem 0 0;
            max-width: 60ch;
            color: #61708d;
            font-weight: 600;
            font-size: var(--section-subtitle-size);
            line-height: 1.5;
        }

        .journey-divider {
            width: 100%;
            margin: .25rem 0 .45rem;
        }

        .journey-track-wrap {
            position: relative;
            padding-inline: clamp(1.8rem, 2.8vw, 2.6rem);
        }

        .journey-toolbar {
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            gap: .3rem;
            z-index: 5;
            pointer-events: none;
        }

        .journey-toolbar.is-hidden {
            visibility: hidden;
            pointer-events: none;
        }

        .journey-nav-btn {
            width: 42px;
            height: 42px;
            border-radius: var(--radius-pill);
            border: 1px solid #ccdaf9;
            background: #fff;
            color: #1a4798;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: .95rem;
            transition: background-color var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease);
            box-shadow: 0 8px 20px rgba(26, 71, 152, .16);
            pointer-events: auto;
        }

        .journey-nav-btn:hover:not(:disabled) {
            background: #1a4798;
            border-color: #1a4798;
            color: #fff;
            transform: translateY(-1px);
        }

        .journey-nav-btn:disabled {
            opacity: .4;
            cursor: not-allowed;
        }

        .journey-track {
            display: flex;
            gap: clamp(.8rem, 1vw, 1.2rem);
            align-items: flex-start;
            overflow-x: auto;
            overflow-y: hidden;
            padding: .15rem 0 .45rem;
            scroll-snap-type: x mandatory;
            scroll-padding-inline: clamp(1.8rem, 2.8vw, 2.6rem);
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .journey-track::-webkit-scrollbar {
            width: 0;
            height: 0;
            display: none;
        }

        .journey-item {
            text-align: center;
            display: grid;
            justify-items: center;
            align-content: start;
            gap: .6rem;
            padding: .6rem .65rem .8rem;
            flex: 0 0 min(84vw, 360px);
            scroll-snap-align: start;
            border: 1px solid var(--panel-border);
            border-radius: var(--panel-radius);
            background: #ffffff;
            box-shadow: var(--shadow-soft);
            min-height: clamp(320px, 31vw, 400px);
            transition: transform var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease);
        }

        .journey-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-card);
            border-color: #b8cdf4;
        }

        .journey-illustration-wrap {
            width: min(100%, clamp(170px, 18vw, 230px));
            aspect-ratio: 1 / 1;
            display: grid;
            place-items: center;
        }

        .journey-illustration {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            filter: drop-shadow(0 12px 22px rgba(33, 63, 126, .18));
            transition: transform var(--motion-fast) var(--motion-ease), filter var(--motion-fast) var(--motion-ease);
        }

        .journey-item:hover .journey-illustration {
            transform: translateY(-3px);
            filter: drop-shadow(0 15px 28px rgba(33, 63, 126, .24));
        }

        .journey-meta {
            display: inline-flex;
            align-items: center;
            gap: .56rem;
        }

        .journey-step-index {
            width: 2.1rem;
            height: 2.1rem;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            line-height: 1;
            color: #26ad67;
            background: #dff8e9;
            box-shadow: inset 0 0 0 1px #c0ebd5;
        }

        .journey-title {
            margin: 0;
            font-size: clamp(1.05rem, .95rem + .45vw, 1.28rem);
            color: #0d2a5f;
            letter-spacing: .005em;
            line-height: 1.24;
        }

        .journey-copy {
            margin-top: .05rem;
            max-width: 28ch;
            color: #6c7a94;
            font-size: .95rem;
            line-height: var(--copy-leading);
            font-weight: 600;
        }

        @media (min-width: 992px) {
            .journey-item {
                flex-basis: calc((100% - 2rem) / 3);
                min-width: calc((100% - 2rem) / 3);
            }
        }

        @media (max-width: 767.98px) {
            .journey-track-wrap {
                padding-inline: 0;
            }

            .journey-toolbar {
                position: static;
                transform: none;
                justify-content: center;
                gap: .5rem;
                margin-bottom: .55rem;
                pointer-events: auto;
            }

            .journey-item {
                min-height: 300px;
            }
        }

        .merit-body {
            padding: var(--card-pad);
            border: 1px solid var(--panel-border);
            border-top: 0;
            border-radius: 0 0 var(--panel-radius) var(--panel-radius);
            background: #fff
        }

        @media (min-width: 576px) {
            .merit-body {
                padding: 1.25rem 1.25rem 1.35rem
            }
        }

        @media (min-width: 992px) {
            .merit-body {
                padding: 1.6rem 1.6rem 1.8rem
            }
        }

        .merit-title {
            text-align: center;
            color: var(--taguig-blue);
            font-weight: 900;
            font-size: clamp(1.25rem, 1.05rem + 1.1vw, 1.65rem);
            margin: .4rem 0 1rem
        }

        .merit-bullets {
            margin: 0;
            padding: 0;
            list-style: none
        }

        .merit-bullets li {
            position: relative;
            padding: .5rem 0 .5rem 2.05rem
        }

        .merit-bullets li::before {
            content: '\2713';
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: .55rem;
            width: 1.4rem;
            height: 1.4rem;
            border-radius: 50%;
            background: var(--taguig-red);
            color: #fff;
            font-weight: 900;
            font-size: .9rem
        }

        .schedule-wrap {
            background: #fff;
            border-radius: var(--panel-radius);
            overflow: hidden;
            border: 1px solid var(--panel-border);
            box-shadow: var(--shadow-soft);
        }

        .schedule-body {
            padding: var(--card-pad);
        }

        @media (min-width: 576px) {
            .schedule-body {
                padding: 1.25rem;
            }
        }

        @media (min-width: 992px) {
            .schedule-body {
                padding: 1.6rem;
            }
        }

        .schedule-table {
            margin: 0;
            border-collapse: collapse;
        }

        .schedule-table thead th {
            text-transform: uppercase;
            letter-spacing: .12em;
            font-size: .75rem;
            font-weight: 900;
            color: #64748b;
            border-bottom: 1px solid #e8edf8;
            padding: .8rem .75rem;
            white-space: nowrap;
        }

        .schedule-table tbody td {
            padding: .85rem .75rem;
            border-bottom: 1px solid #eef2f7;
            font-weight: 600;
            color: #1f2937;
        }

        .schedule-table tbody tr:last-child td {
            border-bottom: 0;
        }

        .gallery-wrap {
            position: relative
        }

        .gal-body {
            padding: var(--card-pad);
            border: 1px solid var(--panel-border);
            border-top: 0;
            border-radius: 0 0 var(--panel-radius) var(--panel-radius)
        }

        @media (min-width: 576px) {
            .gal-body {
                padding: 1.25rem
            }
        }

        @media (min-width: 992px) {
            .gal-body {
                padding: 1.6rem
            }
        }

        .gallery-grid {
            display: grid;
            gap: .8rem;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr))
        }

        @media (min-width: 576px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(170px, 1fr))
            }
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: zoom-in;
            border: 1px solid rgba(0, 0, 0, .08);
            background: #f8fbff;
            padding: 0;
        }

        .gallery-thumb {
            width: 100%;
            height: 0;
            padding-bottom: 66.66%;
            background-size: cover;
            background-position: center;
            display: block
        }

        .gallery-cap {
            position: absolute;
            inset: auto 0 0 0;
            background: rgba(0, 0, 0, .58);
            color: #fff;
            padding: .4rem .55rem;
            font-size: .85rem;
            transform: translateY(100%);
            transition: transform .2s ease
        }

        .gallery-item:hover .gallery-cap,
        .gallery-item:focus-visible .gallery-cap {
            transform: translateY(0)
        }

        .lightbox-img {
            max-width: 100%;
            max-height: calc(100vh - 180px);
            border-radius: 12px
        }

        .lb-controls {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1rem;
            pointer-events: none
        }

        .lb-btn {
            pointer-events: auto;
            border: 0;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            background: rgba(0, 0, 0, .5);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center
        }

        .lb-btn:hover {
            background: rgba(0, 0, 0, .65)
        }

        .lb-meta {
            font-weight: 800
        }

        .accordion-item {
            border: 1px solid var(--panel-border);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color var(--motion-normal) var(--motion-ease), box-shadow var(--motion-normal) var(--motion-ease)
        }

        .accordion-item+.accordion-item {
            margin-top: .6rem
        }

        .accordion-item:hover {
            border-color: rgba(26, 71, 152, .24);
            box-shadow: 0 10px 20px rgba(26, 71, 152, .08)
        }

        .accordion-button {
            font-weight: 700;
            color: #173b8d;
            background: #fff
        }

        .accordion-button:not(.collapsed) {
            background: #eef4ff;
            color: #173b8d;
            box-shadow: none
        }

        .accordion-button:focus {
            box-shadow: none
        }

        .accordion-body {
            background: #f9fbff;
            color: var(--text-muted)
        }

        .section-block .btn:not(.lb-btn):not(.btn-close):not(.journey-nav-btn) {
            border-radius: var(--radius-pill);
            font-weight: 800;
            transition: transform var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease)
        }

        footer {
            border-top: 4px solid var(--taguig-blue);
            background: #f1f3f7;
        }

        .peso-footer-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: .75rem 1rem;
        }

        .peso-footer-left {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: .15rem .68rem;
            color: #283754;
            letter-spacing: .005em;
        }

        .peso-footer-left strong {
            color: #132d5e;
            font-weight: 800;
        }

        .peso-footer-dot {
            color: #b6c2d8;
            font-weight: 700;
            line-height: 1;
        }

        .peso-footer-social {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: .45rem;
            justify-content: flex-end;
        }

        .peso-footer-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            padding: 0;
            border-radius: 999px;
            border: 1px solid #c2d2f4;
            background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
            color: #132d5e;
            text-decoration: none;
            font-weight: 700;
            line-height: 1;
            box-shadow: 0 4px 10px rgba(26, 71, 152, .08);
            transition: background-color var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease), color var(--motion-fast) var(--motion-ease);
        }

        .peso-footer-pill i {
            font-size: 1.15rem;
        }

        .peso-footer-pill.is-facebook i {
            color: #1877f2;
        }

        .peso-footer-pill.is-instagram i {
            color: #e1306c;
        }

        .peso-footer-pill.is-x i {
            color: #111827;
        }

        .peso-footer-pill.is-web i {
            color: #1a4798;
        }

        .peso-footer-pill:hover {
            background: #dfe9ff;
            border-color: #a8bff0;
            color: #0d2754;
            transform: translateY(-1px);
        }

        .peso-footer-social .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }

        #toTop {
            position: fixed;
            right: 1rem;
            bottom: calc(1rem + var(--fab-footer-offset, 0px));
            z-index: 1030;
            width: 56px;
            height: 56px;
            border-radius: 999px;
            border: 0;
            padding: 0;
            background: transparent;
            color: var(--taguig-blue);
            display: none;
            align-items: center;
            justify-content: center;
            --progress: 0deg;
            transition: transform .2s ease
        }

        #docQuick {
            position: fixed;
            right: 1rem;
            bottom: calc(1rem + 56px + 14px + var(--fab-footer-offset, 0px));
            z-index: 1030;
            width: 56px;
            height: 56px;
            border-radius: 999px;
            border: 0;
            padding: 0;
            background: var(--taguig-blue);
            color: #fff;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 24px rgba(26, 71, 152, .25);
            transition: transform .2s ease, box-shadow .2s ease
        }

        #docQuick .docquick-icon {
            position: relative;
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center
        }

        #docQuick .docquick-icon i:first-child {
            font-size: 22px
        }

        #docQuick .docquick-icon i:last-child {
            position: absolute;
            right: -2px;
            bottom: -2px;
            font-size: 11px
        }

        #docQuick.show {
            display: flex
        }

        #toTop::before,
        #toTop::after {
            content: "";
            position: absolute;
            border-radius: inherit;
            pointer-events: none
        }

        #toTop::before {
            inset: 0;
            background: conic-gradient(var(--taguig-blue) var(--progress), #dbe3f4 0deg);
            z-index: 0
        }

        #toTop::after {
            inset: 6px;
            background: #fff;
            border: 1px solid #d8e3ff;
            box-shadow: 0 12px 24px rgba(26, 71, 152, .18);
            z-index: 1;
            transition: box-shadow .2s ease
        }

        #toTop i {
            position: relative;
            z-index: 2;
            font-size: 18px;
            color: var(--taguig-blue)
        }

        #toTop.show {
            display: flex
        }

        @media (hover: hover) {
            #toTop:hover {
                transform: translateY(-2px)
            }

            #toTop:hover::after {
                box-shadow: var(--shadow-float)
            }

            #docQuick:hover {
                transform: translateY(-2px);
                box-shadow: var(--shadow-float)
            }
        }

        @media (max-width: 991.98px) {
            body {
                padding-top: var(--nav-h)
            }

            section,
            header {
                scroll-margin-top: var(--nav-h)
            }

            .peso-footer-row {
                justify-content: center;
            }

            .peso-footer-left {
                justify-content: center;
            }

            .peso-footer-social {
                justify-content: center;
            }
        }

        @media (max-width: 575.98px) {
            :root {
                --section-pad: clamp(1.85rem, 1.4rem + 2.2vw, 2.5rem);
                --gap: .85rem;
                --gap-lg: 1rem
            }

            #toTop,
            #docQuick {
                width: 48px;
                height: 48px;
                right: .75rem;
            }

            #toTop {
                bottom: calc(.75rem + env(safe-area-inset-bottom, 0px) + var(--fab-footer-offset, 0px));
            }

            #docQuick {
                bottom: calc(.75rem + 48px + 10px + env(safe-area-inset-bottom, 0px) + var(--fab-footer-offset, 0px));
            }

            #toTop::after {
                inset: 5px;
            }

            #toTop i {
                font-size: 16px;
            }

            #docQuick .docquick-icon {
                width: 20px;
                height: 20px;
            }

            #docQuick .docquick-icon i:first-child {
                font-size: 20px;
            }

            #docQuick .docquick-icon i:last-child {
                font-size: 10px;
            }

            .service-card {
                padding: .92rem .88rem;
            }

            .service-card.is-collapsible:not(.is-expanded) .service-list li.is-over-limit {
                display: none;
            }

            .service-card.is-collapsible:not(.is-expanded) .service-list::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 30px;
                background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 85%);
                pointer-events: none;
            }

            .service-card.is-collapsible.is-expanded .service-list::after {
                display: none;
            }

            .service-card.is-collapsible .service-toggle {
                display: inline-flex;
            }

            .journey-subtitle {
                max-width: 34ch;
            }

            .journey-track {
                gap: .72rem;
            }

            .journey-item {
                min-height: 300px;
            }

            .section-head {
                gap: clamp(.32rem, .28rem + .3vw, .5rem)
            }

            .section-head>:where(p, .section-subtitle) {
                max-width: 38ch
            }

            .peso-footer-row {
                justify-content: center;
            }

            .peso-footer-left {
                justify-content: center;
                font-size: .78rem;
            }

            .peso-footer-social {
                justify-content: center;
            }
        }

        #vision-mission .vm-card {
            position: relative;
            overflow: hidden;
            padding: 1.05rem;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, .08);
            transition: border-color .18s ease, box-shadow .18s ease;
        }

        @media (min-width: 576px) {
            #vision-mission .vm-card {
                padding: 1.2rem
            }
        }

        #vision-mission .vm-card::before,
        #vision-mission .vm-card::after {
            content: "";
            position: absolute;
            border-radius: 999px;
            pointer-events: none;
        }

        #vision-mission .vm-card::before {
            width: 220px;
            height: 220px;
            right: -120px;
            top: -120px;
            background: rgba(26, 71, 152, .10);
        }

        #vision-mission .vm-card::after {
            width: 260px;
            height: 260px;
            right: -140px;
            bottom: -140px;
            background: rgba(244, 192, 39, .12);
        }

        #vision-mission .vm-card:hover {
            border-color: rgba(26, 71, 152, .18);
            box-shadow: 0 12px 24px rgba(16, 16, 16, .07);
        }

        #vision-mission .vm-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: .75rem;
            margin-bottom: .65rem;
            position: relative;
            z-index: 1;
        }

        #vision-mission .vm-accent {
            height: 10px;
            border-radius: 999px;
            overflow: hidden;
            display: flex;
            width: 90px;
            flex: 0 0 auto;
            border: 1px solid rgba(0, 0, 0, .06);
            background: #fff;
        }

        #vision-mission .vm-accent span {
            flex: 1
        }

        #vision-mission .vm-accent .b {
            background: var(--taguig-blue)
        }

        #vision-mission .vm-accent .y {
            background: var(--taguig-yellow)
        }

        #vision-mission .vm-accent .r {
            background: var(--taguig-red)
        }

        #vision-mission .vm-sub {
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .motion-ready .js-reveal {
            opacity: 0;
            transform: translate3d(0, 18px, 0);
            transition: opacity var(--motion-slow) var(--motion-ease), transform var(--motion-slow) var(--motion-ease);
            transition-delay: var(--reveal-delay, 0ms);
            will-change: opacity, transform
        }

        .motion-ready .js-reveal.is-revealed {
            opacity: 1;
            transform: translate3d(0, 0, 0);
            will-change: auto
        }

        .motion-ready .divider.js-reveal {
            transform: scaleX(.72);
            transform-origin: left center
        }

        .motion-ready .divider.js-reveal.is-revealed {
            transform: scaleX(1)
        }

