﻿.header-grid{
    grid-area: 1/1/2/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    z-index: 9;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
	position: fixed;
    width: 100%;
}

.header-wrap{
    width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.logo{
    margin-left: 22px;
    margin-right: 59px;
}

.nav{
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    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{
    display: block;
    font-size: 19px;
	font-weight: bold;
	letter-spacing: 0.8px;
	color: #333333;
    position: relative;
}

.nav>li>a::after{
    display: none;
    position: absolute;
    width: 14px;
	height: 12px;
    content: "";
    top: 36px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    background: url(../images/nav-icon.png) no-repeat;
    -o-background-size: 100% 100%;
       background-size: 100% 100%;
}

.nav>li.active>a{
    color: #ca1f27;
}

.nav>li.active>a::after{
    display: block;
}

.nav>li:hover>a{
    color: #ca1f27;
}

.nav>li:hover>a::after{
    display: block;
}

.nav-two{
    display: none;
    position: absolute;
    left: 0;
    top: 55px;
    background: rgba(117, 1, 0, 0.9);
    border-radius: 10px;
}

.nav>li:last-child>.nav-two{
    left: -67px;
    top: 55px;
}

.nav-two>li{
    margin-top: 30px;
}

.nav-two>li:first-child{
    margin-top: 10px;
}

.nav-two>li:last-child{
    margin-bottom: 10px;
}

.nav-two>li>a{
    display: block;
    font-size: 16px;
	color: #ffffff;
    padding-left: 10px;
    padding-right: 31px;
    white-space: nowrap;
}

.nav-two>li:hover>a{
    color: #ffe14c;
}