@charset "utf-8";


/* morph-styles.css */
.hamburger-morph {
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 12345678 !important;
	width: 80px;
	height: 80px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

.hamburger-morph__icon {
  width: 100%;
  height: 100%;
}

.hamburger-morph__line {
  fill: none;
  stroke: #789880;
  stroke-width: 8;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
              stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}

.nav-morph {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(171,173,151,1.00);
	clip-path: circle(0% at calc(100% - 44px) 44px);
	transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1234567 !important;
}

.nav-morph.active {
  clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	z-index: 1234567 !important;
}

.nav-morph__list {
	margin-top: 80px;
	padding: 0;
	list-style: none;
	text-align: center;
}

.nav-morph__item {
	width: 750px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
  opacity: 1;
  transform: translateY(0);
}

/*.nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
.nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
.nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
.nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }*/


.nav-morph__link {
	position: relative;
	display: inline-block;
	padding: 35px;
	font-size: 24px;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
	border-bottom: 1px dashed #FFFFFF;
	width: 600px;
}

.nav-morph__text,
.nav-morph__hover {
	display: block;
	transition: transform 0.3s ease;
	color: #fff;
	text-decoration: none;
}



.nav-morph__link:hover {
	color: #FFF;
	text-decoration: underline;
}



