.navbar {
    position: fixed;
    left: 0;
    width: 100% !important;
    padding: 0 !important;
    z-index: 1000;
    transition: 0.3s;
}

.navbar:hover, .navbar-brand:hover {
    background: var(--white);
}

.navbar-brand {
    padding: 0;
}

.brand-logo svg {
    transition: 0.3s;
}

.navbar .circle {
    border-radius: 100px;
    margin-bottom: 0px;
}

.navbar-brand path {
    fill: var(--green);
}

.navbar-brand:hover path {
    fill: var(--gray) !important;
}

@media screen and (max-width: 991px)  {
    .circle {
        height: 50px;
        width: 50px;
        background-color: #636363;
        padding: 10px;
    }

    .circle img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .navbar .circle {
        display: inline-block;
        margin-bottom: 5px;
    }

    .navbar .active .circle {
        margin-bottom: 10px;
        height: 65px;
        width: 65px;
        border: 8px solid var(--white);
        background-color: var(--teal) !important;
    }

    .navbar {
        bottom: 0;
    }

    .navbar > .container-fluid {
        display: flex;
        flex-direction: column;
    }

    .navbar-expand .navbar-collapse {
        width: 100%;
    }

    .navbar-brand {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        background: #ffffffee;
        position: absolute;
        bottom: calc(100vh - 65px);
    }

    .navbar-brand svg {
        height: 65px;
    }

    .navbar-expand .navbar-nav {
        width: 100%;
        background-color: #636363;
        justify-content: space-around;
        align-items: end;
        height: 85px;
        padding-bottom: 30px;
    }

    .nav-link {
        width: 65px;
        text-align: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
        color: var(--white) !important;
        font-weight: 500 !important;
        font-size: .8rem;
    }

    .nav-link.active {
        padding-bottom: 0px !important;
    }

}

@media screen and (min-width: 992px)  {
    .navbar .circle {
        display: none !important;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        background: #ffffffee;
    }

    .brand-logo svg {
        height: 70px ;
    }

    .nav-link {
        border-radius: 50px;
        padding: .5rem 1.2rem !important
    }

    .nav-link.active {
        background: linear-gradient(264.78deg, rgba(0, 110, 117, 0.75) 4.19%, rgba(0, 75, 79, 0.75) 59.6%);
        color: var(--white) !important;
    }

    .nav-link:hover {
        outline: 1px solid var(--gray) !important;
        background: #fff;
        color: var(--gray) !important;
    }

    .nav-link {
        margin: auto .7rem;
        color: var(--gray) !important;
        font-weight: 500 !important;
    }

    .nav-link:hover {
        font-weight: 700 !important;
    }

    .navbar:hover .brand-logo svg {
        height: 90px !important;
    }
}