.nav-grid{
    grid-area: 2/1/3/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    background-color: #25283b;
}

.nav-wrap{
    width: 1200px;
    margin: 0 auto;
    padding-left: 18px;
    padding-right: 15px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

.nav{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.nav>li{
    position: relative;
}

.nav>li>a{
    font-size: 18px;
	font-weight: bold;
    line-height: 50px;
	font-stretch: normal;
	letter-spacing: 1px;
	color: #ffffff;
    position: relative;
}

.nav>li>a::after{
    display: none;
    position: absolute;
    content: "";
    top: 33px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 60px;
	height: 4px;
	background-color: #cc3333;
	border-radius: 4px 4px 0px 0px;
}

.nav>li.active>a::after{
    display: block;
}

.nav>li:hover>a::after{
    display: block;
}

.nav-two{
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translateX(-45%);
       -moz-transform: translateX(-45%);
        -ms-transform: translateX(-45%);
         -o-transform: translateX(-45%);
            transform: translateX(-45%);
    background-color: #ffffff;
	-webkit-box-shadow: 0px 5px 20px 0px 
		rgba(37, 40, 59, 0.2);
	        box-shadow: 0px 5px 20px 0px 
		rgba(37, 40, 59, 0.2);
}

.nav-two>li{
    position: relative;
    border-bottom: 1px solid #f0f4f7;
}

.nav-two>li:last-child{
    margin-bottom: 4px;
    border: none;
}

.nav-two>li:first-child{
    margin-top: 6px;
}

.nav-two>li>a{
    display: block;
    width: 144px;
    font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 23px;
	letter-spacing: 0px;
	color: #333333;
    padding: 5px 10px 5px 6px;
    margin: 0 10px;
}

.nav-two>li:hover>a{
    color: #c63132;
}

.top-nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}