/* ========== HEADER START ========== */

/* NAVBAR BASE (ALL PAGES) */
.website-header-bg {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}


.home .website-header-bg {
    background: transparent !important;
	box-shadow: unset;

}


/* LOGO */
.website-logo {
    display: flex;
    align-items: center;
}

.website-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.website-header-icon{
    border: none;
    background-color: white;
    border-radius: 4px;
}

/* =============================== */
/* NAV MENU DEFAULT (OTHER PAGES) */
/* =============================== */

.website-nav-menu>li.nav-item {
    padding-right: 10px;
}

/* TEXT */
.website-nav-menu>li.nav-item>a {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
}

.home .website-nav-menu>li.nav-item>a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}
.website-nav-menu>li.nav-item>a i {
    color: #000000;
    transition: all 0.3s ease;
}

.home .website-nav-menu>li.nav-item>a i {
    color: #fff;
    transition: all 0.3s ease;
}

/* TOP LEVEL HOVER ONLY */
.website-nav-menu>li.nav-item:hover {
    background-color: #084a7b;
    border-radius: 8px;
}

.website-nav-menu>li.nav-item:hover>a,
.website-nav-menu>li.nav-item:hover>a i {
    color: #ffffff !important;
}

/* ALIGN */
.website-nav-head {
    align-items: center;
}

/* =============================== */
/* DROPDOWN */
/* =============================== */

.nav-dropdown {
    border-radius: 8px;
}

.nav-dropdown li {
    padding-right: 0;
}

/* dropdown item default */
.nav-dropdown .dropdown-item {
    color: #000000 !important;
    font-weight: 500;
}

/* dropdown item hover */
.nav-dropdown .dropdown-item:hover {
    background-color: #003764;
    color: #ffffff !important;
}

/* prevent parent highlight when dropdown open */
.nav-item.dropdown.show {
    background: transparent !important;
}

/* =============================== */
/* LOGIN BUTTON */
/* =============================== */

.nav-btn button {
    padding: 5px 36px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 600;
    background-color: #002350;
    color: #ffffff !important;
    transition: all 0.4s ease;
}

.nav-btn button:hover {
    background: #d67b03;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* =============================== */
/* HOME PAGE INITIAL TRANSPARENT */
/* =============================== */

.navbar-home-transparent {
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-home-transparent .website-nav-menu>li.nav-item>a,
.navbar-home-transparent .website-nav-menu>li.nav-item>a i {
    color: #ffffff !important;
}

/* dropdown text visible on transparent */
.navbar-home-transparent .dropdown-menu .dropdown-item {
    /* color: #000000 !important; */
}

/* =============================== */
/* HOME PAGE SCROLLED */
/* =============================== */

.scroll-active-holder.scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.home.scroll-active-holder.scrolled {
    background: transparent !important;
   
}

.scroll-active-holder.scrolled .website-nav-menu>li.nav-item>a,
.scroll-active-holder.scrolled .website-nav-menu>li.nav-item>a i {
    color: #000000 !important;
}

/* hover after scroll */
.scroll-active-holder.scrolled .website-nav-menu>li.nav-item:hover>a,
.scroll-active-holder.scrolled .website-nav-menu>li.nav-item:hover>a i {
    color: #ffffff !important;
}

/* scrolled login */
.scroll-active-holder.scrolled .nav-btn button {
    background: #002350;
}

.scroll-active-holder.scrolled .nav-btn button:hover {
    background: #ff6b00;
}

/* =============================== */
/* RESPONSIVE */
/* =============================== */

@media (max-width: 1280px) {
    .website-nav-menu>li.nav-item>a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .website-nav-menu>li.nav-item>a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .website-nav-menu>li.nav-item>a {
        font-size: 14px;
    }
}

/* ========== HEADER END ========== */