#container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            overflow-x: hidden;
            position: relative;
            flex-wrap: wrap; /* Allow flex items to wrap onto multiple lines */
        }

        .line {
            position: absolute;
            background: #ff8b3d;
            width: 30px;
            left: 20%;
            top: 0;
            transform: translateX(-50%);
            z-index: 1;
            height: 100%;
        }

        .branches {
            display: flex;
            z-index: 2;
            padding-top: 20px;
            max-width: 80vw;
            width: 100%;
            box-sizing: border-box;
        }

        .branch {
            position: relative;
            width: calc(60% - 10px); /* Adjusted width to fit two branches in a row with spacing */
            display: flex;
            flex-direction: column;
            align-items: left;
            justify-content: left;
            margin-bottom: 10vh;
            box-sizing: border-box;
            margin-left:25%;
            margin-right:10%;

        }

        .branch.left::before {
            content: ''; /* Add content property to make the pseudo-element visible */
    position: absolute;
    background: #ff8b3d;
    width: 200px; /* Set the width for the horizontal line */
    height: 20px; /* Height represents the thickness of the line */
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    z-index: 1;
        }

           

        .branch-container {
            width: 100%;
            padding: 20px;
            background-color: #f0f0f0;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 3;
            text-align: left;
        }

        .photo-link {
            display: block;
            margin-top: 10px;
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            z-index: 99999;
            display: none;
            text-align: center;
            min-width: 400px;
            min-height: 300px;
            overflow: auto;
            max-height: 80vh;   
        }

        .close-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size:x-large;
        }

       

        .marginleft {
            margin-left: 10%;
        }

        .marginright {
            margin-right: 10%;
        }

        .row {
            display: flex;
            flex-wrap: wrap; /* Allow flex items to wrap onto multiple lines */
        }

        @media screen and (max-width: 768px) {
            .branches {
                flex-direction: column; /* Display branches in a column on small screens */
                align-items: center; /* Center items horizontally */
            }

            .branch {
                margin:0%;
                margin-bottom: 50px; /* Add margin between branches in the column layout */
                width:90%;
                
            }

            .branch-container {
                text-align: left; /* Left-align branch content on small screens */
            }

            .marginleft {
                margin-left: 0%;
              }

            .marginright {
                margin-right: 0%;
            }

            .branch.left::before {
                display:none;
            }

            .line{
                display: none;
            }

          
        }