@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Pavanam');

.foot-nav {
	list-style: none;
	margin: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	justify-content: center;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	border-bottom-color: #B3B3B3;
	margin: 0 auto;
	font-family: 'Pavanam', sans-serif;
}

.foot-nav a {
	text-decoration: none;
	display: block;
	color: white;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: .06em;
	margin-right: 2px;
	margin-left: 2px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	font-family: 'Pavanam', sans-serif;
}

.foot-nav a:hover {
	
	background-position: 2%;
	color: #fad874;
}

@media all and (max-width: 800px) {
  .foot-nav {
    justify-content: space-around;
  }
}

@media all and (max-width: 600px) {
  .foot-nav {
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    padding: 0;
  }
  
  .foot-nav a { 
    text-align: center; 
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,0.3); 
    border-bottom: 1px solid rgba(0,0,0,0.1); 
  }

  
  .foot-nav li:last-of-type a {
    border-bottom: none;
  }
}