.nav-bar {
    width: 100%;
    height: 60px;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
    margin: 20px 0;
}

.logo {
    width: 110px;
}

.logo > a {
    display: contents;
}

.logo-img {
    height: 100%;
    display: block;
}

.site-navigation {
    height: 100%;
    /* display: flex; */
    display: none;
    align-items: center;
    gap: 20px;
    padding: 0px 40px;
    background-color: #FFFFFF;
    border-radius: 0 0 50px 50px;
    list-style-type: none; 
}

.nav-bar .active {
    font-weight: 700;
}

.site-navigation a {
    padding: 2px 0;
    transition: border-bottom .1s ease-in-out;
}

.site-navigation a:hover {
    border-bottom: solid 3px var(--main-blue);
}

.contact-btn {
    align-self: center;
    text-align: center;
}

