﻿
:root {
    --main-Blue: rgb(7,18,72);
    --main-Gold: #f6bd14;
    --mid-color: #ddf9fe;
    --midA-color: #2691d9;
    --midB-color: #ffef96;
    --color-dark: #071248;
    --text-grey: #8390A2;
    --midC-color: #f0b947;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
    /*width:95vw;*/
    overflow-x: hidden;
}


/*Top Bar ***********************************************************************/
.Top-Menu {
    display: flex;
    justify-content: space-between;
    /*padding: 1rem 1.5rem;*/
    box-shadow: 2px 2px 4px #8390A2;
    border-left: 1px solid #f8e7e7;
    background: var(--main-Blue);
    position: fixed;
    left: 0px;
    width: 100%;
    top: 0px;
    z-index: 100;
    transition: width 500ms;
    height: 5vw;
}

.nav-container {
    display: flex;
    justify-content: center; /* Center the nav-links horizontally */
    margin-top: .5vw;
    width: 100%; /* Ensure it takes the full width */
    z-index: 1000; /* Higher than .Menubar to ensure it's on top */
}


/* Top Menu Bar *****************************************************************/
.nav-links ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    justify-content: center;
}

    .nav-links ul li {
        margin: 1vw 2vw; /* Adjust spacing between items */
        z-index: 1000;
    }

        .nav-links ul li a {
            text-decoration: none;
            font-weight: bold;
            font-family: Calibri;
            font-size: 1.5vw;
        }

            .nav-links ul li a:hover {
                text-decoration: underline; /* Optional: underline effect */
            }
.Menu-click {
    color: white;
}

.Menu-Unclick {
    color: var(--main-Gold);
}

/*Logo ***************************************************************/
.CompanyLogo {
    width: 10vw;
    height: 10vw;
    padding: .4rem 0rem .5rem .5rem;
    color: #fff;
    z-index: 1000;
    margin-left: 1vw;
}

/*Side Main Menubar ********************************************************************/
.sidebar-brand-Menubar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--main-Blue);
    z-index: 100;
    width: 5vw;
}

/* Content ****************************************************************************/
.Content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2vw 8vw auto;
    margin-bottom: 4vw;
    margin-top: 5vw;
    width: 100%;
}

/* Mission *****************************************************************/
.MainOffice-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
/*    background-color: var(--main-Gold);*/
    /*margin-right: 15vw;*/
}

.MainOffice-Content-Container {
    margin-right: 3vw;
}

.Title-MainOffice {
    color: var(--main-Blue);
    margin-bottom: 2vw;
    margin-top: 1vw;
    font-size: 5vw;
    font-family: Calibri;
    font-weight: bold;
    text-shadow: .2vw .2vw .2vw #808080;
    margin-left: -4vw;
}

.MainOffice-Content {
    color: var(--main-Blue);
    flex: 2;
    text-align: left;
    font-size: 2vw;
    line-height: 1.5;
    margin-bottom: 2vw;
    margin-left: -8vw;
}

.map-container {
    width: 88vw;
    height: 50vw; /* Adjust the height as needed */
    border: 1px solid #ccc; /* Optional: Add a border around the map */
    margin-left: -10vw;
}

/* Footer ******************************************************************/
footer {
    background-color: #f1f5f9;
    color: var(--main-Blue);
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: Calibri;
    font-weight: bold;
    margin-left: -.6vw;
}
