/* ========================================================================================== */        
        /* Philippine Map */
        .map-container2 {
            display: flex;
            justify-content: center;
            align-items: center;
            /* background-color: #fff; */
            padding: 20px;
            /* .active-thumbnail: .25rem;
            box-shadow: 0 0 1px rgba(0,0,0,.125),0 1px 3px rgba(0,0,0,.2); */
            height: 100%;
        }
        /* --- 1. Initial State (Hidden and Off-Screen Left) --- */
        .map-container2 img {
            max-width: 100%;
            height: auto;        
            
            /* Key properties for animation */
            transform: translateX(-100%); /* Pushes the element entirely off to the left */
            opacity: 0;                   /* Makes the element invisible initially */
            transition: transform 1.5s ease-out, opacity 1s ease-in; /* Defines a smooth, 1.5-second animation */
        }
        /* --- 2. Active State (On Screen) --- */
        /* The element smoothly transitions to this state when the class is added */
        .map-container2 img.animate-in {
            transform: translateX(0); /* Moves the element to its original, on-screen position */
            opacity: 1;               /* Makes the element fully visible */
        }        
        .content-wrapper {
            padding: 20px;
        }
        h1.info-box-title {
            color: #7d965d;
            font-weight: 300;
            text-align: center;
            margin-bottom: 4;
        }
        .info-box2{
            color: #7d965d; /* Greenish color from the image */
            font-family: 'Revans Medium', sans-serif;
            font-size: 2.3rem;
            font-weight: 300;
            text-transform: uppercase;
        }

@media (max-width: 767.98px) { 

        h1.info-box-title {
            color: #7d965d;
            font-weight: 300;
            text-align: center;
            margin-bottom: 4;
        }
        .info-box2{
            color: #7d965d; /* Greenish color from the image */
            font-family: 'Revans Medium', sans-serif;
            font-size: 2rem;
            font-weight: 300;
            text-transform: uppercase;
        }

    .info-box-text .branch-label {
        font-size: 1rem !important; /* Smaller size on mobile */
    }
}