.menu {
  visibility: hidden;
  position: fixed;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 10;
  -webkit-transition: .4s;
  transition: .4s;
  background-color: rgba(255, 255, 255, .8);
  max-width: 570px;
  width: 100%;
  padding-left: 0;
}
.menu--show {
  visibility: visible;
  opacity: 1;
}
.navigation__item:first-child {
  display: none;
}
a.navigation__item-text {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  width: 115px;
  border-right: 1px solid #ccc;
  display: block;
  line-height: 2;
  cursor: pointer;
  transition: all .5s ease;
}

.menu__nav.navigation {
  position: relative;
}

.navigatiobmenu {
  position: absolute;
  left: 210px;
  top: 0;
  transition: all .5s ease;
  visibility: hidden;
  opacity: 0;
  min-height: 100vh;
  padding: 2vw 4vw;
  width: calc(100% - 210px);
}
.navigation__item {
  max-width: 210px;
  transition: all .5s ease;
  padding: 20px 0 20px 5vw;
}
.navigation__item:hover{
  background: rgba(255, 255, 255, .5);
  padding-left: 5.5vw;
}
.menu__right-side {
  display: none;
}
.submenvList2 a {
  font-size: 18px;
  color: #333;
  line-height: 2;
  margin: 7px 0;
  display: block;text-align: center;
}
.navigation__item:hover .navigatiobmenu {
  visibility: visible;
  opacity: 1;
  padding-left: 3vw;
  background: rgba(255, 255, 255, .5);
}
.submenvList2 a:hover {
    color: #f73367;
}
