/* ===== HEADER ===== */
.header {
	background: -webkit-linear-gradient(top, #666 0%, #999 100%);
	background: linear-gradient(to bottom, #666 0%, #999 100%);
	box-shadow: 0vmax 0vmax 1vmax 0.1vmax rgba(0,0,0,1);
	position: fixed;
	width: 100%;
}
.nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}

/* ----- LOGO ----- */
.nav__logo {
	width: 3vmax;
}
.nav__logo a {
	cursor: pointer;
}
.li__svg {
	padding: 0.3vmax 0 0 0;
}
.svg1 {
	fill: #ff5500;
}
.svg2 {
	fill: #0055ff;
}
/* @keyframes spin {100% {-webkit-transform: rotate(360deg); transform:rotate(360deg);} }
.nav__logo svg:hover {animation:spin 4s linear infinite;} */
@keyframes rotate-center {
  0% {-webkit-transform: rotate(0); transform: rotate(0);}
  100% {-webkit-transform: rotate(360deg); transform: rotate(360deg);}
}
@-webkit-keyframes rotate-center {
  0% {-webkit-transform: rotate(0); transform: rotate(0);}
  100% {-webkit-transform: rotate(360deg); transform: rotate(360deg);
  }
}
.nav__logo svg:hover {
	-webkit-animation: rotate-center 0.6s ease-in-out both;
	animation: rotate-center 0.6s ease-in-out both;
}

/* ----- MENU ----- */
.nav__menu {

}
.nav__menu ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.nav__menu ul li {
	
}
.nav__menu ul li a {
	font-weight: bold;
	cursor: pointer;
	margin: 1vmax;
	color: #000;
	-webkit-transition: color 0.3s linear;
	transition: color 0.3s linear;
	font-size: 1.1vmax;
}
.nav__menu ul li a:hover {
	color: #ddd;
	opacity: 0.8;
}
.nav__menu ul li a:active {
}

