#header {
    position: sticky;
    /* display: inline-block; */
    width: 100%;
    top: 0;
    min-height: calc(5rem + 10px);
    z-index: 99;
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 100;
}
.header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 2rem 0 2rem;
    width: 100%;
    height: 5rem;
    background-color: #06323D;
    border-bottom: 0.625rem solid #8CD53B;
    z-index: 102;
}
.header-image-link {
    position: absolute;
    left: 2rem;
    top: .5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 103;
}
.header-image {
    height: 3.5rem;
    width: auto;
    z-index: 103;
}
.header-links-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 2rem;
    z-index: 102;
}
.header-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 3rem;
    color: white;
    font-family: NeuzitGrotesk, Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-decoration: none;
}
    .header-link:hover {
        color: D5EEE8;
        text-decoration: underline;
    }

.header-link-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 103;
}

    .header-link-button p {
        font-size: 1.5rem;
    }

.header-hamburger-button {
    position: fixed;
    top: .5rem;
    right: .5rem;
    z-index: 104;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: .25rem;
    border: none;
    background-color: transparent;
    height: 4rem;
    width: 4.5rem;
    cursor: pointer;
}

.hamburger-line {
    min-height: 3px;
    width: 3.6rem;
    background-color: white;
    border-radius: 1.5px;
    margin: 0;
    transition: transform 500ms ease, background-color 500ms ease;
}

.header-mobile-backdrop {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(20,25,25,.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 3;
}

@media screen and (max-width: 950px) {
    .header {
        flex-direction: column;
        justify-content: flex-start;
        min-height: 5rem;
        margin: 0;
        padding: 0;
        height: auto;
    }
    .header-image-link {
        position: relative;
        left: 0;
        top: 0;
        align-self: flex-start;
        margin: .75rem 0 1rem 1rem;
    }
    .header-image {
        height: 3rem;
        width: auto;
    }
    .header-hamburger-button {
        display: flex;
    }
    .header-links-container {
        flex-direction: column;
        display: none;
        margin: 0;
        padding: 0 0 2rem 0;
    }
    .heaeder-social-buttons-container {
        flex-direction: row;
    }
    .header-nav-button {
        height: 3.625rem;
        width: 80vw;
        min-width: 7rem;
        max-width: 100%;
        position: relative;
        z-index: 103;
        background-color: rgba(120, 215, 215, .3);
    }

    .mobile-header-active {
        display: flex;
    }
    
    .mobile-header-active-hide {
        display: none;
    }
}

/* ------------FOOTER------------- */
    
.footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 2rem;
    width: 100%;
    min-height: 5rem;
    background-color: #06323D;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 100;
}