/* ========== Navbar Styles ========== */


.navbar-brand {
    display: none;

}

.navbar-brand-reuse {
    display: block;
    width: 130px;
    height: 100px;
}



.navbar {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.nav-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
}

.nav-item .btn {
    background-color: #E53A3C;
    border-color: #E53A3C;
}

.nav-item .btn:active {
    background-color: #ee5457;
    border-color: #ee5457;
}

.navbar {
    background-color: #FFFFFF;
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
}


.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #E53A3C !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color:#E53A3C;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}