﻿.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-image: -webkit-gradient(
		linear, 
		left top, left bottom, 
		from(#1c65ae), 
		to(#1c65ae)), 
	-webkit-gradient(
		linear, 
		left top, left bottom, 
		from(#0a56cd), 
		to(#0a56cd));
    background-image: -webkit-linear-gradient(
		#1c65ae, 
		#1c65ae), 
	-webkit-linear-gradient(
		#0a56cd, 
		#0a56cd);
    background-image: -moz-linear-gradient(
		#1c65ae, 
		#1c65ae), 
	-moz-linear-gradient(
		#0a56cd, 
		#0a56cd);
    background-image: -o-linear-gradient(
		#1c65ae, 
		#1c65ae), 
	-o-linear-gradient(
		#0a56cd, 
		#0a56cd);
    background-image: linear-gradient(
		#1c65ae, 
		#1c65ae), 
	linear-gradient(
		#0a56cd, 
		#0a56cd);
	background-blend-mode: normal, 
		normal;
	-webkit-box-shadow: 3px 3px 8px 0px 
		rgba(28, 101, 174, 0.3);
	        box-shadow: 3px 3px 8px 0px 
		rgba(28, 101, 174, 0.3);
}

.nav-wrap{
    width: 1200px;
    margin: 0 auto;
}

.nav{
    padding: 0 75px;
    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>a{
    display: block;
    font-size: 21px;
	font-weight: bold;
	line-height: 53px;
	color: #f0f7fe;
    padding: 0 42px;
}

.nav>li.active>a{
    background-color: #00b0ec;
}

.nav>li:hover>a{
    background-color: #00b0ec;
}