#MainMenu {
	width: 980px;
	height: 51px;
	margin: 5px auto;
	border-bottom: solid 1px rgb(184, 175, 175);
  
}

#MainMenu ul {
	list-style: none;
	display: flex;
	height: 100%;
	justify-content: space-between;
  background: linear-gradient(to top, #c6c4c4, #fff);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

#MainMenu ul li {
	height: 100%;
  padding: 0 17px;
  border-right: solid 1px  rgb(184, 175, 175);
}

#MainMenu ul li a {
	display: flex;
	height: 100%;
	align-items: center;
	font-size: 14px;
	color: #060606;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
}

#MainMenu ul li.item_active a, 
	#MainMenu ul li a:hover {
	color: red;
	}

/* Tablet & Mobile menu start */

nav {
    display: none;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: solid 1px #c6c4c4;
}
nav .feedback {
  display: none;
  position: fixed;
  right: 50px;
  top: 2%;
}

nav .feedback button {
  border: 0;
  border-radius: 8px;
  background: green;
  padding: 7px 15px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: underline;
  cursor: pointer;
  outline: none;
}

nav .feedback button:hover {
  text-decoration: none;
}

#burger, label  {
     position: fixed;
      top: 10px;
      left: 26px;
      height: 40px;
      width: 32px; 
	  z-index: 100;
	background:  #fff;
	border: solid 1px #fff;	
}

label:hover {
	cursor: pointer;
}

label span {
    position: absolute;
    width: 100%;
    height: 4px;
    top: 38.5%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: black;
    transition: .5s;
}
label span:first-child {
    top: 5px; 
}
label span:last-child {
    top: 26px; 
}   

#burger:checked + label span {
  opacity: 0;
  top: 50%;
} 

#burger:checked + label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}
#burger:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}
#burger ~ nav {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  transition: 0.5s;
  transition-delay: 0.5s;
  overflow: hidden;
}

#burger ~ nav > ul {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
}

#burger ~ nav > ul > li {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0s;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #c6c4c4, #fff);
    border-bottom: solid 1px rgb(184, 175, 175);
}
#burger ~ nav > ul > li > a {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 26px;
    font-size: 15px;
    color: #060606;
    text-decoration: none;
    text-transform: uppercase;
}

#burger ~ nav > ul > li > a:hover {
	color: red;
}
#burger:checked ~ nav {
	height: 417px;
  	transition-delay: 0s;
}
#burger:checked ~ nav > ul > li {
  opacity: 1;
  transition-delay: 0.5s;
}


/* Tablet & Mobile menu end */

