/* ==========================================
   DESKTOP NAVIGATION
========================================== */

.infintor-navbar {
    position: relative;
    padding-left: 40px;
	width: 100%;
}

.main-menu,
.custom-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
	justify-content: space-around;
}

.main-menu > li,
.custom-menu > li,
.mega-parent {
    position: relative;
}

.main-menu > li > a {
    display: block;
/*     padding: 30px 0; */
    color: #243b53;
    text-decoration: none;
    font-weight: 400;
	color: #2d4753 !important;
}

.custom-menu > li > a {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    font-weight: 400;
	color: #2d4753 !important;
}

/* ==========================================
   MEGA MENU
========================================== */

.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;

    padding: 50px 80px;
    background: #fff;

    min-height: auto !important;
    height: auto !important;
    max-height: 650px;
    overflow: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.25s ease;
    z-index: 9999;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.mega-parent:hover > .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-parent::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

/* ==========================================
   MEGA MENU CONTENT
========================================== */

.mega-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.mega-column a {
    display: block;
    padding: 8px 0;
    color: #555;
    text-decoration: none;
}

.mega-column a:hover {
    color: #0d6efd;
}

.mega-featured {
    background: #f5f8ff;
    padding: 25px;
    border-radius: 12px;
}

.mega-feature img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.mega-feature h4 {
    margin-bottom: 10px;
}

.feature-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;

    background: #0d6efd;
    color: #fff;

    border-radius: 5px;
    text-decoration: none;
}

/* ==========================================
   SIMPLE DROPDOWN
========================================== */

.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 280px;
    padding: 15px;

    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transition: 0.25s ease;
    z-index: 9999;
}

.dropdown-parent:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
}

.simple-dropdown a {
    display: block;
    padding: 10px 30px;
    color: #444;
    text-decoration: none;
}

.simple-dropdown a:hover {
    background: #f5f5f5;
}
.headericon-box a:hover {
    background: #00000000;
}

/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu,
.mobile-menu-overlay {
    display: none;
}

.mobile-menu {
    padding: 30px 20px;
}

.mobile-menu-box {
    padding-top: 50px;
}

.mobile-menu-item {
    border-bottom: 1px solid #eee;
}

.mobile-menu-toggle {
    position: relative;

    width: 100%;
    padding: 18px 0;

    text-align: left;
    font-size: 18px;
    font-weight: 600;

    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle.active::after {
    content: "−";
}

.mobile-submenu {
    display: none;
    padding-bottom: 20px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-section {
    margin-bottom: 20px;
}

.mobile-section h4 {
    margin-bottom: 10px;

    font-size: 14px;
    color: #777;
    text-transform: uppercase;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;

    color: #333;
    text-decoration: none;
}

.mobile-contact-btn {
    display: block;
    margin-top: 30px;
    padding: 14px;

    text-align: center;
    text-decoration: none;

    color: #fff;
    background: #1e73be;

    border-radius: 6px;
}

/* ==========================================
   MOBILE OFF-CANVAS
========================================== */

@media (max-width: 991px) {

    .infintor-navbar {
        display: none !important;
    }

    .navWrapperMobile {
        position: fixed;
        top: 0;
        left: -100%;

        width: 320px;
        height: 100vh;

        padding: 20px;

        background: #fff;
        overflow-y: auto;

        transition: all 0.3s ease;
        z-index: 999998;
    }

    .navWrapperMobile.active {
        left: 0;
    }

    .navWrapper-overlay {
        position: fixed;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        background: rgba(0, 0, 0, 0.5);

        opacity: 0;
        visibility: hidden;

        transition: 0.3s;
        z-index: 999997;
    }

    .navWrapper-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}