.navigation {
    position: fixed;
    top: 15vw;
    left: 0;
    width: 92vw;
    z-index: 100;
    background-color: rgba(9, 30, 151, 0.85);
    margin-left: 4vw;
    margin-right: 4vw;
    padding: 8vw;
    display: none;
    min-height: 100vh;
  }

  .navigation li {
    width: 100%;
    height: 55px;
    text-align: left;
    line-height: 55px;
    color: white;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
    font-size: 4vw;
  }

  .navigation>ul li {
    /* border-bottom: 1px solid #bbb; */
    position: relative;
    left: 0;
    top: 0;
  }

  .navigation>ul li .icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 6vw;
    width: 6vw;

  }

  .navigation>ul li .icon img {
    width: 100%;
    height: 100%;
  }

  .navigation a {
    text-decoration: none;
    color: white;
  }

  .navigation .subMenu li {

    /* background: rgb(144, 149, 255) */
  }

  .navigation .subMenu {

    border-top: 1px solid white;
    border-bottom: 1px solid white;
  }
  .navigation .cross{
      display: none;
  }