.top-nav-bar{
    padding-top:var(--line-block-default-padding);
    padding-bottom: 113px;
}

.navbar-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    color: var(--clr-grey-100);

    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.top-nav-bar__logo {
    height: 44px;
    vertical-align: middle;
    transition: ease all .5s;
}

#navbarSupportedContent {
    justify-content: end;
}

.top-nav-bar #dropdown-btn{
    justify-self: end;
}

.dropdown-menu.show{ /*sub-dropdown*/
    right: 0;
    left: unset;
}

@media (max-width: 995px) {
    .navbar-collapse.collapsing > .navbar-nav,
    .navbar-collapse.show > .navbar-nav{
        display: flex;
        /* width: fit-content; */
        gap: 0;
        align-items: end;
    }


    .top-nav-bar{
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .top-nav-bar__logo {
        height: 32px;
        vertical-align: middle;
        transition: ease all .5s;
    }

    .top-nav-bar a{
        margin: 0;
        transition: ease all .5s;
    }

    .top-nav-bar .expand-btn {
        box-shadow: none;
        border-radius: 7px;
        background: var(--clr-blue);
        padding: 0;
        width: 36px;
        height: 36px;
        justify-content: center;
        border: 1px solid var(--clr-blue);
        background-image: url(/img/main/carbon_menu.png);
        background-repeat: no-repeat;
        background-position: center;
        font-size: 0;
        transition: ease all .5s;
    }

    .top-nav-bar #dropdown-btn img{
        display: none;
    }
}