/* ==========================
   Business Mega Menu
========================== */

.business-dropdown{
    position: relative;
}

.business-mega-menu{
    position: absolute;
    top: 60px;
    left: -250px;
    width: 820px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}

.business-dropdown:hover .business-mega-menu{
    opacity: 1;
    visibility: visible;
    top: 50px;
}

.mega-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.mega-body{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    padding: 20px;
}

.mega-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #566985;
    transition: .3s;
}

.mega-item:hover{
    background: #f5f5f5;
}

.mega-item i{
    font-size: 22px;
    color: #3d528b;
}


/* Business Dropdown Text Fix */

.business-mega-menu .mega-item{
    color:#566985 !important;
}

.business-mega-menu .mega-item span{
    color:#566985 !important;
}

.business-mega-menu .mega-item i{
    color:#3d528b !important;
}

.business-mega-menu .mega-header h4{
    color:#2e3f6e !important;
}

.business-mega-menu .mega-header a{
    color:#3d528b !important;
}