.navbar{
    box-shadow: 0 0 3px 0 #9e9e9e;
    background: white;
    width: 100%;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}
.navbar.sticky{
    position: fixed;
    top: 0;
}
#header-menu{
    position: relative;
    display: inline-block;
}
#header-menu>ul{
    padding: 0;
    margin-bottom: 0;
}
#header-menu>ul li{
    position: relative;
    font-size: 16px;
    list-style: none;
    display: inline-block;
    line-height: 56px;
    padding: 0 24px;
    text-transform: none;
    white-space: nowrap;
}
#header-menu>ul > li{
    text-transform: uppercase;
    line-height: 56px;
    transition: .3s ease-in-out;
}
#header-menu>ul > li:after {
    content: '';
    position: absolute;
    height: 24px;
    width: 1px;
    background: #e7e7e7;
    top: 16px;
    right: -2px;
    transition: .3s ease-in-out;
}
#header-menu>ul>li:last-of-type:after {
    display: none;
}

#header-menu>ul a:hover{
    text-decoration: none;
}
#header-menu-logo{
    display: none;
}
/****SUBMENU****/
    #header-menu>ul .menu-arrow{
        display: none;   
    }
	#header-menu>ul li > ul {
		position: absolute;
        opacity: 0;
        visibility: hidden;
        z-index: 99;
        left: 0;
        text-align: left;
        list-style: none;
        padding: 16px 0;
        box-shadow: 0px 4px 12px 0px rgba(186, 199, 214, 0.4);
        background-color: rgba(255, 255, 255, 0.97);
        border-radius: 4px;
        transform: translateY(1rem);
        transition: visibility .4s ease, opacity .2s ease, transform .2s ease;
	}
	#header-menu>ul li > ul > li {
        display: block;
	}
	#header-menu>ul li:hover > ul {
		opacity: 1;
	    visibility: visible;
        transition: visibility .4s ease, opacity .4s ease, transform .4s ease;
        transform: translateY(0);
	}
	#header-menu>ul li > ul > li > a {
        left: 0;
        transition: all 0.2s ease-in-out;
    }
    #header-menu>ul li > ul > li > a:before {
        position: absolute;
        content: "";
        bottom: 8px;
        left: 51%;
        right: 51%;
        height: 2px;
        background: linear-gradient(to right,transparent,#bb1a19,transparent) !important;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
	}
	#header-menu>ul li > ul > li:hover > a:before {
        right: 10%;
        left: 10%;
        transition: all 0.3s ease-in-out;
    }
	#header-menu>ul a {
		display: block;
		position: relative;
	}
	#header-menu>ul ul a {
		padding: 8px 24px;
        line-height: 24px;
	}
/****END SUBMENU****/

/****MOBILE MENU****/
	#toggle-menu {
    display: none;
    position: relative;
    width: 56px;
    height: 56px;
    cursor: pointer;
    margin: 0 auto;
    z-index: 1001;
    transition: margin .3s ease-in-out;
}
    #toggle-menu span{
        display: block;
        position: absolute;
        height: 3px;
        left: 8px;
        width: 40px;
        background-color: #AA151B;
        transition: .3s ease-in-out;
    }
    #toggle-menu span:nth-child(1) {    
        top: 16px;
        width: 40px;
        left: 8px;
    }
    #toggle-menu span:nth-child(2) {
         top: 26px;
    }
    #toggle-menu span:nth-child(3) {
         top: 36px;
         width: 40px;
        left: 8px;
    }
    #toggle-menu.mobile-active{
        background-color: #ffd119;
        border: none;
        left: auto;
        top: 0;
        right: 0;
        position: fixed;
        margin: 0;
        z-index: 3000;
        border-radius: 0 0 0 2px;
        box-shadow: 0 4px 20px 1px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.08);
        transition: .0s;
    }
    #toggle-menu.mobile-active span:nth-child(1) {
         top: 25px;
         -webkit-transform: rotate(135deg);
         -moz-transform: rotate(135deg);
         -o-transform: rotate(135deg);
         transform: rotate(135deg);
    }
     #toggle-menu.mobile-active span:nth-child(2) {
         opacity: 0;
         left: -60px;
    }
     #toggle-menu.mobile-active span:nth-child(3) {
         top: 25px;
         -webkit-transform: rotate(-135deg);
         -moz-transform: rotate(-135deg);
         -o-transform: rotate(-135deg);
         transform: rotate(-135deg);
    }

@media (max-width: 1199px){
    #header-menu>ul > li{
        padding: 0 16px;
    }
}
@media (max-width: 991px){
    #toggle-menu {
        display: block;
    }
    #header-menu>ul li > ul {
    display: none;
    opacity: 1;
    position: relative;
    z-index: 99;
    text-align: left;
    padding: 8px 0;
    box-shadow: none;
    min-width: 10em;
    border-radius: 0;
    }
    #header-menu>ul li > ul > li{
    border-bottom: none;
    }
    #header-menu {
    position: fixed;
    visibility: hidden;
    z-index: 10;
    top: 0;
    left: 0;
    bottom: -56px;
    right: 0;
    background-color: transparent;
    opacity: 0;
    transition: all 0.3s ease 0s;
    }
    #header-menu-logo{
    display: inline-block;
    height: 48px;
    margin: 8px 8px 24px;
    }
    #header-menu>ul{
    position: fixed;
    overflow: auto;
    background-color: #bb1a19;
    color: white;
    padding: 16px;
    top: 0px;
    left: 0px;
    bottom: -56px;
    padding-bottom: 56px;
    width: 0;
    text-align: center;
    transition: all 0.4s ease-out 0s, bottom 0.4s ease-out 0s;
    opacity: 0;
    box-shadow: 0 4px 20px 2px rgba(0,0,0,.06), 0 1px 4px rgba(0, 0, 0, 0.1);
    }
    #header-menu>ul li{
    display: block;
    transition: 0.3s ease-in-out;
    }
    #header-menu>ul > li:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,transparent,white,transparent);
    }
    #header-menu>ul > li:after {
    opacity: 0;
    }
    #header-menu>ul a {
    padding: 8px;
    line-height: 32px;
    }
    #header-menu>ul li:hover > ul {
	display: none;
	}
    #header-menu>ul > li.active-submenu {
    position: relative;
	padding-top: 16px;
	padding-bottom: 8px;
    }
    #header-menu>ul > li.submenu.active-submenu:before {
    opacity: 1;
    }
	#header-menu>ul li.active-submenu > ul {
	display: block;
	visibility: visible;
	}
    #header-menu>ul .menu-arrow{
    position: absolute;
    right: 16px;
    top: 0px;
    display: inline-block;
    transition: 0.3s ease-in-out;
    color: #0063a9;
    background-image: -webkit-linear-gradient(92deg,#06a6e3,#0063a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
    #header-menu>ul .menu-arrow:before{
    font-size: 16px;
    }
    #header-menu>ul > li.active-submenu > .menu-arrow {
	padding-top: 8px;
	transform: rotate(90deg);
    }
    .mobile-active #header-menu {
    visibility: visible;
    opacity: 1;
    background-color: #00000064;
    }
    .mobile-active #header-menu>ul{
    opacity: 1;
    width: 320px;
    }
}
/****END MOBILE MENU****/