/*Main-Menu*/
.nav {
	/*not styledbackground-image: url(../../images/GT-LOGO.png);
	background-position:left;
	background-repeat:no-repeat;
	background-size: 260px auto;	*/
	
}
.nav__bar {
	width:100%;
	max-width:1280px;
	min-height: 192px;
	position: relative;
	border:0;
	margin: 0 0 16px 0;
	padding-top: 60px;
	background: url(../assets/svgs/SVG-LOGO-WE-GRUENTEAM.svg), url(../assets/jpgs/bg-flieder_header.jpg);
	background-position: bottom 10px center, top right;
	background-repeat:no-repeat, no-repeat;
	background-size: 76% auto, cover;
}
/*li Main-Menu*/
.nav__item {
	border:0;
	box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.2);
	padding: 0;
	margin: 0 0 2px 0;
	background-color: rgba(127,178,75,0.8);
	transition: 0.4s ease;
}
#activ {
	background-color: rgba(173,193,97,1);
}
#activ a:hover {
	cursor:text;
}
.nav__item:hover, .nav__item:focus, .nav__item:activ {
	background-color: rgba(35,107,89,1);
}


/*li a Main-Menu*/
.nav__item a {
  border:0;
  margin: 0;
  display: block;
  padding: 1em;
  color: #FFFFFF;
  font-size: 1.2rem;
  text-decoration: none;
  text-shadow: 1px 1px 2px #333;

}
.nav__item a:hover {
  color: #EEEEEE;
}
/*li a Main-Menu*/
.nav__item a:link, .nav__item a:visited {
  color: #FFFFFF;
}
.nav__item:hover, .nav__item:focus, .nav__item a:active {
	text-decoration: none;
	background-color: rgba(173,193,97,1);
}
/*label 4 Hamburger-Menu*/
.nav__icon {
  display: block;
  position: absolute;
  top: 20px;
  right: 13px;
  height: 27px;
  width: 27px;
  cursor: pointer;
  text-indent: -9999px;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  border: none;
  color: transparent;
  text-shadow: 0 0 0 gray;
  text-align: center;
}
.nav__icon:focus {
  outline: none;
}
@media (max-width: 1023px) {
	.nav__bar {
	background-position: bottom 10px center, top right;
	background-repeat:no-repeat, no-repeat;
	background-size: 76% auto, cover; /*background-size: 260px auto, auto;*/
	}
}
@media (min-width: 1281px) {
	.nav__bar {
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
@media (min-width: 753px) {
	.nav__bar {
		padding: 0;
		background-size: 46%, auto;
	}
}
/*@media (max-width: 640px) {
	.nav__bar {
		background-size: 64%, auto;
	}
}*/
/*ul Main-Menu*/
.nav__items {
  max-height: 0px;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 1s cubic-bezier(0.325, 1, 0.22, 1);
}
@media (min-width: 753px) {
/*ul Main-Menu*/
.nav__items {
	max-height: none;
	text-align: right;
}/*li Main-Menu*/
.nav__item {
	display: inline-block;
	border:0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.nav__item:hover, .nav__item:focus, .nav__item:activ {
	background-color: rgba(35,107,89,1);
}
.nav__item:last-child {
	border-bottom-right-radius: 0;
}
}

@media (max-width: 753px) {
.nav__bar {
	min-height: 92px;
	background-size: 62% auto, cover;
}

/*li a Main-Menu*/
.nav__item a {
	width:100%;
	border:0;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
}
.nav__item:hover, .nav__item:focus, .nav__item a:active {
	text-decoration: none;
	background-color: rgba(173,193,97,1);
}
}

@media (min-width: 753px) {
  .nav__icon {
    display: none;
  }
}
@media (max-width: 240px) {
	.nav__bar {
		background-size: 76% auto, cover;
	}
}
/*span 3 lines Hamburger-Menu*/
.nav__icon-line {
  position: absolute;
  display: block;
  background: #fff;
  width: 27px;
  height: .2rem;
  border-radius: .2rem;
  left: 0;
  text-indent: 0;
  transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1.2);
}
.nav__icon-line:first-child {
  top: 0;
}
.nav__icon-line:nth-child(2) {
  top: 8px;
}
.nav__icon-line:nth-child(3) {
  top: 16px;
}

input[type=checkbox] {
  display: none;
  visibility: hidden;
}
input[type=checkbox]:checked ~ nav .nav__items {
  height: auto;
  max-height: 30rem;
  transition: all 2s cubic-bezier(0.5, 1, 0.22, 1);
}
input[type=checkbox]:checked ~ label .nav__icon-line:first-child {
  top: 0px;
  width: 27px;
  transform: translateX(-8px) rotate(-45deg) translateY(12px);
}
input[type=checkbox]:checked ~ label .nav__icon-line:nth-child(2) {
  opacity: 0;
}
input[type=checkbox]:checked ~ label .nav__icon-line:nth-child(3) {
  top: 14px;
  width: 27px;
  transform: translateX(-5px) rotate(45deg) translateY(-8px);
}
