.nav{
	width: 100%;
	height: 70px;
	background-color: #353A42;
}

.nav-container{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 auto;
	max-width: 1200px;
}

.nav-title{
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	flex-shrink: 0;
	transition: all .6s;
	margin-right: 10px;
}

.nav-list{
	list-style-type: none;
	display: flex;
	flex-direction: row;
  height: 70px;
}

.nav-list li{
	padding: 0 20px;
	height: 70px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.nav-list li a{
	color: #fff;
	font-size: 18px;
	transition: all .6s;
}



.footer{
	width: 100%;
  padding: 20px 0;
  background-color: #000;
  margin-top: 30px;
  text-align: center;
}

.footer-statement{
  color: #8A8A8A;
  padding: 0 20px;
}

.footer-copyright{
  padding: 0 20px;
  font-size: 12px;
  margin-top: 6px;
}

.footer-copyright span{
	color: #616161;
}
.footer-copyright a{
	color: #616161;
}



@media screen and (max-width:700px){
	.nav-list li a{
		font-size: 14px;
	}
	.nav-list li{
		padding: 0 10px;
	}
	.nav-title{
		font-size: 24px;
	}

	.nav-list li{
		padding: 0 10px;
	}
}


@media screen and (max-width:400px){
	.nav-list{
		overflow-x: scroll;
	}
}