
/* ==========================
           NAVBAR
        ========================== */
.row-top {
    position: absolute;
   top:0;
   margin:0;
}
.navbar-custom {
    background: linear-gradient( to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 1) 100% );
    height: 125px;
    z-index: 1;
}
/* LOGO CENTER FIX */
.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

    /* LOGO IMAGE */
    .logo-center img {
        max-width: 350px;
        max-height: 85px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

/* NAV LINKS */
.navbar-nav .nav-item {
    margin-left: 10px;
    margin-right: 10px;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-family: "Arial", sans-serif;
    font-weight: 400; /* Regular */
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: 1px;
    padding: 0 12px;
}

/* ==========================
           TOP RIGHT INFO
        ========================== */
.top-info {
    position: absolute;
    top: 8px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 12pt;
}

    .top-info a {
        color: #ffffff;
        text-decoration: none;
        padding-right:5px;

    }

    .top-info span {
        color: #ffffff;
    }

/* ==========================
           DROPDOWNS
        ========================== */

.dropdown-menu {
    background: rgba(var(--primary-bg-rgb), 0.8);
    width: 170px;
    border: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    margin-top: 8px;
}

.dropdown-item {
    color: #ffffff;
    font-size: 17px;
    padding: 8px 15px;
}

    .dropdown-item:hover {
        background: rgba(255,255,255,0.12);
    }

.navbar .dropdown-toggle::after {
    display: none !important;
}

/* MOBILE */
.navbar-toggler {
    border-color: rgba(255,255,255,0.6);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



@media (max-width: 991px) {
    .logo-center {
        position: static;
        transform: none;
        width: 250px;
        height: 65px;
        margin: 0 auto;
    }

        .logo-center img {
            max-width: 250px;
            max-height: 65px;
        }
}


