/* ======Pure CSS3 Menu FullScreen start======= */
input {
  display: none;
}

.open {
  background-color: #fff;
  width: 24px;
  height: 2px;
  display: block;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  top: 0;
}

.open:before {
  content: "";
  background-color: #fff;
  width: 24px;
  height: 2px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: -8px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.open:after {
  content: "";
  background-color: #fff;
  width: 24px;
  height: 2px;
  display: block;
  border-radius: 2px;
  position: relative;
  top: 6px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.menuOpen {
  width: 24px;
  /*height: 20px;*/
  display: block;
  padding: 15px;
  cursor: pointer;
  float: right;
  z-index: 10;
  margin-right: 10px;
}

.menuOpen:hover .open:before {
  top: -9px;
}

.menuOpen:hover .open:after {
  top: 5px;
}

.menu {
  position: fixed;
  width: 100vw;
  height: 110vh;
  top: 0;
  left: 0;
  z-index: 9;
  background: #16161d;
}

.menu label {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-size: 100%;
  cursor: pointer;
}

.menu .menuContent {
  position: relative;
  font-size: 54px;
  text-align: center;
  z-index: 9;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

div#menulogo {
  text-align: center;
  position: relative;
  margin: auto;
  top: 0;
  transform: translate(-50%, 50%);
  width: 100%;
}

.menuAppIcon {
  position: relative;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.menu ul li a {
  display: block;
  color: #8a8a8e;
  text-decoration: none;
  transition: color 0.2s;
  font-family: Trebuchet MS;
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 32px;
  font-family: Impact;
}

.menu ul li a:hover {
  color: #fed201;
}

.menuEffects {
  background-color: #11443d;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.menuEffects ul {
  transform: translateY(0%);
  transition: all 0.5s;
}

#menuToggle:checked ~ .menuEffects {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

#menuToggle:checked ~ .menuEffects ul {
  opacity: 1;
}

#menuToggle:checked ~ .menuOpen .open {
  background-color: transparent;
}

#menuToggle:checked ~ .menuOpen .open:before {
  content: "";
  background-color: white;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:checked ~ .menuOpen .open:after {
  content: "";
  background-color: white;
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}

@media (max-width: 2560px) {
  #menuArea {
    display: none;
  }
}

@media (max-width: 1278px) {
  #menuArea {
    display: contents;
  }
}
/* ======Pure CSS3 Menu FullScreen end======= */
