@charset "utf-8";
/* CSS Document */

.sp_gNave{
	display: none;
}

@media screen and (max-width: 1080px) {
/* overlay-styles.css */
	.sp_gNave{
		display: block;
	}
	#gNav{
		display: none;
	}
	h2 img{
		height: 5rem;
	}
	.filter-white{
		filter: none;
	}
	
.hamburger-overlay {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.5);
	border-radius: 8px;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 7px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 30%; }
.hamburger-overlay__line:nth-of-type(2) { top: 50%; }
.hamburger-overlay__line:nth-of-type(3) { top: 70%; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #333;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15,64,107,0.95);;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

	.nav-overlay__item:last-child span{
		font-size: 2.5rem;
		font-weight: bold;
		letter-spacing: 1px;
	}
	
}