/* ----------------------------------------
   Hide native Betheme submenus
---------------------------------------- */


#Header #Top_bar > .container{
    max-width: 1500px
}
#Header .top_bar_left{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#Header .top_bar_left:before,
#Header .top_bar_left:after{
    display: none;
}
#Header #Top_bar .logo{
    margin: 0;
}
#Top_bar .menu > li{
    padding: 0 14px;
}
#Top_bar .menu > li > a{
    padding: 0;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    transition: all .3s ease-in-out;
}
#Top_bar .menu > li > a:hover,
#Top_bar .menu > li.mega-hover > a{
    border-bottom: 2px solid #0095eb;
}
#Header #Top_bar .menu > li > a span{
    border: 0;
    padding: 0!important;
    line-height: 2.5;
}
#Header #menu .menu > li.mega-hover > a span{
    opacity: 1;
}
.menuo-arrows #Top_bar .menu > li.submenu > a > span:not(.description)::after{
    opacity: 1;
    right: -18px;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-top: -8px;
    border: none;
    background-image: url(../image/arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transition: all .3s ease-in-out;
}
.menuo-arrows #Top_bar .menu > li.submenu.mega-hover > a > span::after{
    transform: rotate(180deg);
}

#Top_bar .menu > li#menu-item-3698 + #menu-item-386{
    display: none
}



/* ----------------------------------------
   Mega Menu Container
---------------------------------------- */

.custom-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0);
    transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    z-index: 9999;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(22, 22, 24, .97), rgba(14, 14, 16, .97));
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid var(--we-divider);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .6);
}


/* ----------------------------------------
   Active State
---------------------------------------- */

.custom-mega-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -20px);
}


/* ----------------------------------------
   Mega Menu Inner
---------------------------------------- */

.custom-mega-menu-inner {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 36px 32px 28px;
    max-width: 1500px;
    margin: 0 auto;
}


/* ----------------------------------------
   Columns
---------------------------------------- */

.mega-menu-column {
    min-width: 200px;
    flex: 1;
}


/* ----------------------------------------
   Titles
---------------------------------------- */

#Top_bar .mega-menu-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .14em;
    margin-bottom: 8px;
    color: #0095eb;
    padding: 0 4px 10px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all .3s ease-in-out;
}

#Top_bar .mega-menu-column.active .mega-menu-title{
    border-bottom: 1px solid #0095eb;
}


/* ----------------------------------------
   Links
---------------------------------------- */

.mega-menu-links {
    list-style: none;
    margin: 0;
    padding: 0
}

.mega-menu-links li {
    margin-bottom: 12px;

}


.mega-menu-links a {
    display: flex;
    color: #d8dadd;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    padding: 6px 4px;
    transition: color 0.3s ease;
    border-radius: 20px;
}
.mega-menu-links li a:hover{
    color: #0095eb;
}


/* ----------------------------------------
   Top Menu Hover State
---------------------------------------- */

#menu .menu > li.mega-hover > a span {
    opacity: 0.7;
}


