/* ---------- header start ----------- */

/* ADI */
/* global variable */
:root {
    --header-height: 90px;
}

/* header */
header {
    width: 100%;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08);
}

/* sticky header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* push page content down automatically */
body {
    padding-top: var(--header-height);
}
/* ADI */

.navbar {
    padding: 10px 0;
}





ul.navbar-nav {
    padding-left: 25px;
    position: relative;
    min-height: 70px;
    align-items: center;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding:0 5px;
    line-height: 30px;
    display: block;
    border-radius: 50px;
}

li.nav-item {
    padding-right: 25px;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

@media (min-width: 992px) {
    li.nav-item {
        z-index: 11;
    }
}

/* .navbar-nav .nav-link.active {
    border-bottom: 3px solid #007bff;
} */

.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

li.nav-item i {
    display: none;
}

li.nav-item:last-child {
    padding-right: 0;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    /* border-bottom: 3px solid #0081E5; */
    transition: all 0.2s ease-in-out;
    background: -webkit-linear-gradient(#62cff4, #2c67f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0 5px;
    /* color: #fff !important; */
    border-radius: 50px;
}

button#toggle {
    display: none;
}

ul.navbar-nav .nav-item:hover .mega-menu {
    display: block;
}

span.plus-icon {
    display: none;
}

.mega-menu {
    position: absolute;
    left: 0;
    display: none;
    box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08);
    z-index: 999999;
    background: #fff;
    top: 30px;
    transition-delay: 1s;
    padding: 0;
    /* width: 320px; */
    /* margin: 25px 0; */

    /* background-color: #fff;
        border-top: 6px solid #eab05c;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
        left: 40%;
        min-width: 290px;
        opacity: 0;
        padding: 0;
        pointer-events: none;
        position: absolute;
        text-align: left;
        top: 100%;
        transform: translateX(-50%);
        transition: all .2s ease 0s; */
}

.nav-item svg {
   visibility: hidden;
}

@media (min-width: 992px) {
    .mega-menu {
        background-color: #fff;
        border-top: 6px solid #62cff4;
        box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
        left: 48%;
        min-width: 250px !important;
        opacity: 0;
        padding: 0;
        /* pointer-events: none; */
        position: absolute;
        text-align: left;
        /* top: 100%; */
        transform: translateX(-50%);
        transition: all .2s ease 0s;
    }

    ul.navbar-nav .nav-item:hover .mega-menu {
        display: block;
        opacity: 1;
    }

    .mega-menu ul li {
        font-size: 15px;
    }

    .nav-item svg {
       visibility: visible;
    }
}

@media (max-width: 1199px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 13px !important;
    }
}

/* @media (max-width: 991px) {
    .sidebar {
        z-index: 333 !important;
    }
} */

.mega-menu ul li a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    display: block;
    color: #000;
}

.mega-list {
    margin-bottom: 25px;
}

.mega-list h3.mi-link {
    color: #212121;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.25px;
    text-transform: none;
    margin-bottom: 15px;
    position: relative;
}

h3.mi-link::after {
    display: block;
    position: absolute;
    bottom: -6px;
    left: 0;
    content: "";
    height: 2px;
    width: 100%;
    opacity: 0.5;
    background-color: #0081e5
}

.mega-list ul li {
    padding: 7px 0;
}

.mega-list ul li a {
    color: #212121;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.25px;
    text-transform: none;
}
