/*
navi.css
Author: steckdesign.ch
Author URI: http://www.steckdesign.ch/
*/

/* @keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 1rem, 0); }
  75% {
    opacity: 0.75;
    transform: translate3d(0, 0, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } } */



.fs-nav-home {
	height: calc(var( --fontsize ) * 3.7 );
    background-color: var(--deepgreen-500);
}
.nav-header {
    background-color: var(--deepgreen-500);
}

.nav_wrapper {
	display: grid;
	grid-template-columns: auto auto;
	align-content: space-around;
	justify-content: space-between;
	align-items: center;
}



/*	============================================================
	Header
	============================================================ */

.nav_brand {
	display: block;
	width: calc(var( --fontsize ) * 9 );
	padding-left: 0px;
	padding-right: 0px;
	padding-top: calc(var( --size-1 ) * 0.7 );
	padding-bottom: 0px;
	margin-right: 0px;
}
a.nav_brand img {
	max-height: 100%;
	max-width: 100%;
}
.nav_brand img:hover {
	opacity: 0.8;
}
	@media (min-width: 576px) { 
	}
	@media (min-width: 768px) { 
	}
	@media (min-width: 992px) { 
	}
	@media (min-width: 1200px) { 
	}



/* ---| Overlay |------------------------- */

.aside {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba( var(--maincolor-9), 1);
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  z-index: 2000;
}

.open {
  opacity: 1;
  visibility: visible;
}


/* ---| Menu |------------------------- */

.main-nav {
	height: 95vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.main-nav {
	align-items: center;
	text-align: center;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.main-nav li {
	align-items: center;
	/* flex: 1; */
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}
.main-nav li:before { /* the custom styled bullets */
    background-color: transparent;
    border-radius: 0%;
    content: "";
    display: inline;
    margin-right: 0px;
    margin-bottom: 0px;
    height: 0px;
    width: 0px;
    margin-left: 0;
}

	@media (min-width: 576px) { 
	}
	@media (min-width: 768px) { 
	}
	@media (min-width: 992px) { 
	}
	@media (min-width: 1200px) { 
	}

.main-nav .menu-item,
.main-nav .menu-item:visited {
	font-size: 3.5vh;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
	transition: all 0.5s ease;
	display: block;
	text-decoration: none;
	color: #1B1B1B!important;
	outline-style: none;
	outline-width: 0px;
	padding: 0px;
	margin: 0px;
}
.main-nav .menu-item:active,
.main-nav .menu-item:focus,
.main-nav .menu-item:hover{
	color: rgba(255, 255, 255, 0.9)!important;
	-webkit-transform: scale(1.1);
		  transform: scale(1.1);
    background-color: transparent;
}
.main-nav .menu-item a:hover:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
		  transform: scaleX(1);
}

	@media (min-width: 576px) { 
		.main-nav .menu-item {
			/* font-size: 1rem; */
		}
	}
	@media (min-width: 768px) { 
		.main-nav .menu-item {
			/* font-size: 1.25rem; */
		}
	}
	@media (min-width: 992px) { 
		.main-nav .menu-item {
			/* font-size: 1.5rem; */
		}
	}

.main-nav .menu-item.active .nav-link, 
.main-nav .menu-item.hover .nav-link {
    color: #FFFFFF!important;
    background-color: transparent;
}

.main-nav li.current-menu-item, 
.main-nav  li.current_page_item {
    color: #76FF03!important;
    background-color: transparent;
}


/* ---| Submenu |------------------------- */

.main-nav .sub-menu {
    /* display: none; */
}
.main-nav li:hover > .sub-menu {
    /* display: block; */
}
.main-nav .sub-menu li {
	font-size: 2.5vh;
}





/* .close {
	position: relative;
	top: 40px;
	right: 60px;
	color: white;
	z-index: 3;
	cursor: pointer;
	font-family: sans-serif;
}
.close span,
.close span:before,
.close span:after {
	border-radius: 4px;
	height: 5px;
	width: 35px;
	background: white;
	position: absolute;
	display: block;
	content: '';
}
.close span {
	background: transparent;
}
.close span:before {
	-webkit-transform: rotate(45deg);
		  transform: rotate(45deg);
}
.close span:after {
	-webkit-transform: rotate(-45deg);
		  transform: rotate(-45deg);
}

.outer-close {
	position: absolute;
	right: 0;
	top: 0;
	width: 85px;
	height: 85px;
	cursor: pointer;
}
 */


/* ==========================================================================
   Expander
   ========================================================================== */

a.nav-expander .fa {
	color: #c7c7c7;
    margin-top: calc(var( --size-1 ) * 0.5 );
}
a.nav-expander .fa:hover {
	color: #76FF03; 
}

a.nav-expander {
    font-size: calc(var( --size-1 ) * 0.8 );
    font-weight: 400;
    padding-top: calc(var( --size-1 ) * 0.8 );
    padding-right: 1.0em;
    padding-left: 1.0em;
    padding-bottom: 0.5em;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
	/*text-indent: -9999px;*/
	cursor: pointer;
}

a.nav-expander:hover {
  cursor: pointer;
}

a.nav-expander.fixed {
	position: fixed;
	z-index: 2000;
}

/*--- Negativ ---*/
a.nav-expander-negativ .fa {
    color: #898888;
}
a.nav-expander-negativ .fa:hover {
    color: #DAD8D8;
}

a.nav-expander-negativ {
    font-size: 15px;
    font-weight: 400;
    padding-top: 0.75em;
    padding-right: 1.0em;
    padding-left: 1.0em;
    padding-bottom: 0.5em;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
	/*text-indent: -9999px;*/
	cursor: pointer;
}

a.nav-expander-negativ:hover {
  cursor: pointer;
}

a.nav-expander-negativ.fixed {
	position: fixed;
	z-index: 2000;
}



/* ==========================================================================
   Close Button
   ========================================================================== */

.ps-close-nav {
	display: block;
	position: relative;
	top: 0;
	right: 0;
	margin-top: 17px;
	margin-right: 13px;
	z-index: 10;
	width: calc(var( --size-1 ) * 2 );
	height: calc(var( --size-1 ) * 2 );
	transition: transform .35s ease-in-out;
	outline: none;
	background: transparent;
	border: none;
	cursor: pointer;
	text-indent: -9999px;
}
.ps-close-nav:hover {
    transform: rotate(180deg);
}
.ps-close-nav:focus {
	border: none;
}
.ps-close-nav:before {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: calc(var( --size-1 ) * 2 );
    height: 0;
    border-top: 4px solid #76FF03;
    transform: rotate(45deg);
    transform-origin: center;
}
.ps-close-nav:after {
    content: "";
    position: absolute;
    display: block;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: calc(var( --size-1 ) * 2 );
    height: 0;
    border-top: 4px solid #76FF03;
    transform: rotate(-45deg);
    transform-origin: center;
}
.ps-close-nav:hover:before, .ps-close-nav:hover:after {
    border-top: 4px solid #fff;
}


