
 
  .wholeMenu {
    list-style-type: none;
    padding: 0;
    overflow: visible;
    background-color: transparent;
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1vw;
    z-index: 5;
    transition: 1s;
    cursor: pointer;
  }
  
  .wholeMenu .fa {
    color: transparent;
  }
  
  .wholeMenu div.menuElements {
    display: flex;
    /* align-self: center; */
    margin-right: 5%;
    /* justify-content: flex-end; */
    margin-top: 2%;
  }
  
  .wholeMenu .imgMenuElement {
    display: block;
    color: black;
    text-align: center;
    margin-left: 5%;
    padding: 8px;
    padding-left: 0px;
    text-decoration: none;
    height: 6vw;
  }
  
  .wholeMenu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 0px 25px;
    text-decoration: none;
    transition: 0.7s;
    cursor: pointer;
  }
  .wholeMenu li.social{
    display: flex;
      justify-content: center;
  
  }
  
  .wholeMenu li.social a{
    padding: 15px 5px;
  }
  .wholeMenu span {
  position: relative;
  display: block;
  cursor: pointer;
}

.wholeMenu span:before,
.wholeMenu span:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0%;
  margin-top: -1px;
  background: #ff0;
}

.wholeMenu span:before {
  left: -2.5px;
}

.wholeMenu span:after {
  right: 2.5px;
  background: #fff;
  transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wholeMenu span:hover:before {
  background: #fff;
  width: 100%;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wholeMenu span:hover:after {
  background: transparent;
  width: 100%;
  transition: 0s;
}
  
  /* .wholeMenu li a:hover {
    color: gold;
    text-decoration: none;
  } */
  
  .wholeMenu .languageDropDown {
    position: absolute;
    right: 0;
    overflow: visible;
  }
  
  .wholeMenu  .languageDropDown {
    display: none;
  }
  
  .wholeMenu .languageDropDownHamMenu {
    display: none;
  }
  
  .wholeMenu  .languageDropDown .dropbtn {
    background-color: white;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    min-width: 80px;
    position: relative;
    padding-left: 5px;
  }
  
  .wholeMenu .languageDropDown .dropbtn img {
    position: absolute;
    width: 15%;
    margin-left: 10px;
    top: 50%;
    transform: translate(0, -60%);
  }
  
  .wholeMenu  .languageDropDown .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .wholeMenu  .languageDropDown .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 80px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    text-align: center;
  }
  
  .wholeMenu  .languageDropDown .dropdown-content p {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .wholeMenu  .languageDropDown .dropdown-content p:hover {
    background-color: black
  }
  
  .wholeMenu  .languageDropDown .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .wholeMenu  .languageDropDown .dropdown:hover .dropbtn {
    background-color: black
  }
  .wholeMenu .amebaHeader{
    width: 100%;
    position: absolute;
    z-index: -1;
    pointer-events: none;
  }
  
  /* Menu komponent  END*/
  
  @media only screen and (max-width: 999px) {
  .wholeMenu {
          list-style-type: none;
          padding: 0;
          overflow: hidden;
          background-color: #FF1433;
          position: fixed;
          width: 100%;
          display: flex;
          justify-content: space-between;
          font-size: 17px;
          z-index: 5;
          transition: 1s;
      }
  
  
      .wholeMenu   div.menuElements {
          display: flex;
          align-self: center;
          justify-content: flex-end;
          flex-direction: column;
          background-color: #FF1433;
          transition: 1s;
          margin-top: -283px;
          width: 100%;
          padding-bottom: 50px;
          
      }
  
  
      .wholeMenu  div .imgMenuElement {
          display: block;
          color: white;
          text-align: center;
          padding: 3px;
          padding-left: 10px;
          text-decoration: none;
          height: 65px;
          background-color: white;
          position: fixed;
      }
  
      .wholeMenu a,
      .wholeMenu p {
          color: black;
          padding: 14px 16px;
          text-decoration: none;
          font-size: 17px;
          display: block;
      }
  
      .wholeMenu a.icon {
          display: block;
          position: absolute;
          right: 0;
          top: 0;
          background-color: #FF1433;
          height: 25px;
          position: fixed;
      }
  
      .wholeMenu  .fa {
          color: white;
      }
  
      .wholeMenu  li a {
          display: block;
          color: white;
          text-align: center;
          padding: 15px 40px;
          padding-left:0px;
          text-decoration: none;
          transition: 0.7s;
          cursor: pointer;
          background-color: #FF1433;
      }
  
      .wholeMenu  li a:hover {
          color: gold;
          text-decoration: none;
      }
  
      .wholeMenu  .languageDropDown {
          display: none;
      }
  
      .wholeMenu .languageDropDownHamMenu {
          display: flex;
          justify-content: center;
      }
    }


    @media only screen and (max-width: 600px) {

    .wholeMenu .imgMenuElement{
      height: 11vw;
    }
    .wholeMenu .amebaHeader{
      display: none;
    }

  }