.navBar {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
}
.header-nav {
    display: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: inline;
    margin: auto;
    max-width: 250px;
}

.nav-toggle {
    display: block;
}

.nav-toggle:hover {
    cursor: pointer;
}

.nav-container {
    height: auto;
    background-color: var(--nav-bg-color);
    justify-content: space-between;
    width: 100%;
}
.list-item {
    display: inline-block;
}

.list-item a {
    display: block;
    color: var(--nav-item-link-color);
    text-decoration: none;
    font-weight: bold;
    padding: 16px;
}

.list-item:hover {
    height: 100%;
    background-color: var(--nav-item-hover-bg-color);
}

.list-item a:hover {
    color: var(--nav-item-link-color);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 400px;
    background-image: url("../images/Hero_Image.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 100%;
    border-radius: 0;
}

.hero-welcome {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-color: white;
    width: 25rem;
    height: auto;
    padding: 25px;
    position: relative;

    animation-name: easeFromTop;
    animation-duration: 2s;
}

.hero-heading,
.hero-para,
.gt-buttons {
    position: relative;
    animation-name: easeFromTop;
    animation-duration: 2s;
}

@keyframes easeFromTop {
    from {
        top: -20px;
    }
    to {
        top: 0;
    }
}

section {
    padding: 5px;
}

.main-container {
    display: flex;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.theTeam h2 {
    text-align: center;
    margin: 2rem;
}

.team-container {
    display: block;
}

.team-container section {
    max-width: 100%;
    margin: 1rem;
    padding: 1rem;
    border: 1px solid #aaaaaa;
}

.team-container section img {
    display: block;
    margin: auto;
    max-width: 150px;
    border-radius: 50%;
    margin-bottom: 0.6rem;
}

.team-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.team-container section span {
    display: block;
    margin-bottom: 2px;
}

.gt-wrapper {
    padding: 1rem;
}

.gt-h2 {
    text-align: center;
}
.gt-content section {
    display: flex;
    justify-content: center;
}

.gt-button {
    padding: 0.5rem;
    margin: 0.3rem;
    border: 1px solid white;
    color: white;
}

.gt-residents {
    transition-property: background-color, border-color, color;
    transition-duration: 1s;
    background-color: #006100;
}

.gt-residents:hover {
    background-color: white;
    color: #006100;
    border-color: #006100;
    cursor: pointer;
}

.gt-policymakers {
    transition-property: background-color, border-color, color;
    transition-duration: 1s;
    background-color: #123c69;
}

.gt-policymakers:hover {
    background-color: white;
    color: #123c69;
    border-color: #123c69;
    cursor: pointer;
}

.copyright {
    text-align: center;
}

#map {
    min-height: 60vh;
    width: 100%;
}

#searchField {
    width: 100%;
}

.searchControls button {
    width: 100%;
}

.residentHeading {
    display: block;
    width: 100%;
}

.residents-container,
.policy-container {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
}

.goalPoints,
.projectScopes,
.challengeScenario,
.usedTech {
    margin-top: 10px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: left;
}

.goalPara,
.projectPara {
    text-align: left;
}

#technologies-banner {
    width: 50%;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.footer-nav-item {
    display: inline-block;
    list-style-type: none;
    margin: 1rem;
}

.footer-nav-item a {
    font-size: 1.5em;
    text-decoration: none;
    color: white;
}

.footer-nav-item a:hover {
    text-decoration: underline;
}

.footer-logo-container {
    display: flex;
    justify-content: space-around;
}

.footer-logo {
    display: inline-block;
    max-width: 64px;
    max-height: 64px;
}

.leaflet-control-layers-list {
    text-align: left;
}

.searchContainer {
    width: 100%;
}

.fa-bars {
    font-size: 30px;
}

.supportingImages-content {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#supportImage {
    padding-top: 20px;
    display: block;
    width: 45%;
}
