header {
    top: 0; left: 0;
    width: 100%;
}

nav {
    background: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, .1);
}

nav ul {
    display: flex;
    justify-content: flex-start;

    list-style: none;
}

.header_logo {
    height: var(--is-hd); 
}

nav li {
    height: var(--hei-hd);
}

nav a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
    
    font-size: var(--fs-hd);
    text-decoration: none;
    font-weight: 600; 
    color: #00561B;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, .2);
}
nav a:hover {
    background: #F6F6F6;
}
nav li:nth-last-child(2) {
    margin-left: auto;
}
nav li:last-child {
    margin-left: auto;
}










.sidebar {
    position: fixed;
    top: 0; right: 0; 
    z-index: 999;

    height: 100vh;
    width: 250px;
    
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    background: rgba(255, 255, 255, 0.4);
    
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    box-shadow: -10px 0 10px rgba(0, 0, 0, .1);
}

.sidebar li {
    width: 100%;
}
.sidebar a {
    width: 100%;
    font-size: var(--fs-h4);
}
.menu_button {
    display: none;
}



.navbar-profile-picture, .sidebar-profile-picture {
    width: 48px;
    height: 48px;
    border-radius: 100px;
}



























.footer {
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: var(--space-medium);
    gap: var(--space-medium);

    background: #3B3B3B;
}

.f_flex_1 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xsmall);
}
.f_flex_2 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xsmall);
}
.f_flex_3 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xsmall);
}
.f_flex_4 {
    display: flex;
    flex-direction: column;
    gap: var(--space-xsmall);
}
.f_flex_5 {
    display: flex;
    gap: var(--space-xsmall);
}

.footer ul {
    list-style: none;
}
.footer h5 {
    font-size: var(--fs-h4);
    text-decoration: none;
    color: #F6F6F6;
}
.footer a, li {
    margin-top: 4px;

    font-size: var(--fs-body);
    text-decoration: none;
    color: #F6F6F6;
}
.footer_icon {
    color: #F6F6F6;
}










.footer_2 {
    width: 100%;

    padding: var(--space-xsmall);

    font-size: var(--fs-body);
    text-align: center;
    color: #F6F6F6;

    border-top: #F6F6F6 solid .1px;

    background: #3B3B3B;
}