.navbar {
    background-color: #FFFFFF;
    height: 100vh;
    width: 96px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: absolute;
    z-index: 1000;
}

#empty_div {
    width: 100%;
    height: 10px;
}

.a_home {
    display: block;
    text-decoration: none;
    color: black;
    width: 90%;
    font-size: 17px;
    padding: 10px 0px;
    margin: 15px auto;
    position: relative;
}

.a_home::after {
    content: "";
    position: absolute;
    bottom: 7px;
    height: 2px;
    width: 100%;
    left: 0;
    margin: 0 auto;
    background-color: black;
    transition: .2s;
    transition-timing-function: ease-in-out;
    transform: scaleX(0);
}

.a_home:hover::after {
    transform: scaleX(.6);
}

.a_home_mobile {
    display: none;
    text-decoration: none;
    color: black;
    height: fit-content;
    width: 60px;
    font-size: 17px;
    padding: 10px 0px;
    margin: auto 0px;
    position: relative;
}

.burger_svg {
    width: 55%;
    height: auto;
    margin-top: 15px;
    position: relative;
    padding: 5px;
    fill: black;
    transition: .3s;
}

.burger_svg:hover {
    transform: scale(1.1);
    transition: .3s;
}

.close_svg {
    display: none;
    width: 50%;
    height: auto;
    margin-top: 20px;
    position: relative;
    padding: 5px;
    fill: rgb(255, 255, 255);
    transition: .3s;
}

.close_svg:hover {
    transform: scale(1.1);
    transition: .3s;
}

.logo_svg_black {
    display: block;
    width: 75px;
    margin: 0 auto;
}

.logo_svg_white {
    display: none;
    width: 75px;
    margin: 0 auto;
}

.navbar_bottom_filler {
    display: block;
    width: 10px;
    height: 40px;
}




.navbar2 {
    background-color: #000000;
    height: 100vh;
    width: 96px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: absolute;
    z-index: 1000;
}

.a_home2 {
    display: block;
    text-decoration: none;
    color: rgb(255, 255, 255);
    width: 90%;
    font-size: 17px;
    padding: 10px 0px;
    margin: 15px auto;
    position: relative;
}

.a_home2::after {
    content: "";
    position: absolute;
    bottom: 7px;
    height: 2px;
    width: 100%;
    left: 0;
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
    transition: .2s;
    transition-timing-function: ease-in-out;
    transform: scaleX(0);
}

.a_home2:hover::after {
    transform: scaleX(.6);
}





@media only screen and (max-width: 1024px) {
    .navbar {
        height: 90px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-content: center;
        position: fixed;
        z-index: 1000;
    }

    #empty_div {
        width: 150px;
        height: 100%;
    }

    .a_home {
        display: none;
    }

    .a_home_mobile {
        display: block;
        margin-right: 25px;
    }

    .burger_svg {
        width: auto;
        height: 55%;
        margin-top: 0px;
        position: relative;
        padding: 5px;
        fill: black;
        transition: .3s;
    }
    
    .burger_svg:hover {
        transform: scale(1.1);
        transition: .3s;
    }

    .top_container {
        margin-left: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close_svg {
        display: none;
        width: auto;
        height: 55%;
        margin-top: 0px;
        position: relative;
        padding: 5px;
        fill: rgb(255, 255, 255);
        transition: .3s;
    }
    
    .close_svg:hover {
        transform: scale(1.1);
        transition: .3s;
    }

    .logo_svg_black, .logo_svg_white {
        display: none;
    }

    .logo_svg_black_mobile {
        display: block;
        width: 250px;
    }

    .logo_svg_white_mobile {
        width: 250px;
    }




    .navbar2 {
        background-color: #000000;
        height: 90px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-content: center;
        position: fixed;
        z-index: 1000;
    }

    .a_home2 {
        display: none;
        text-decoration: none;
        color: rgb(255, 255, 255);
        width: 90px;
        font-size: 17px;
        padding: 10px 0px;
        margin: 15px auto;
        position: relative;
    }
    
    .a_home2::after {
        content: "";
        position: absolute;
        bottom: 7px;
        height: 2px;
        width: 100%;
        left: 0;
        margin: 0 auto;
        background-color: rgb(255, 255, 255);
        transition: .2s;
        transition-timing-function: ease-in-out;
        transform: scaleX(0);
    }
    
    .a_home2:hover::after {
        transform: scaleX(.6);
    }

}

@media only screen and (max-width: 480px) {
    .navbar {
        height: 80px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-content: center;
        position: fixed;
        z-index: 1000;
    }

    #empty_div {
        width: 1px;
        height: 100%;
    }

    .top_container {
        margin-left: 15px;
    }

    .logo_svg_black_mobile {
        display: block;
        width: 150px;
    }

    .logo_svg_white_mobile {
        width: 150px;
    }

    .a_home {
        display: none;
    }

    .a_home_mobile {
        display: block;
        margin-right: 10px;
    }
}