
    * {
      box-sizing: border-box;
    }

    .nav {
      height: auto;
      z-index: 9;
      width: 100%;
      background-color: transparent;
      position: fixed;
      padding: 0.5rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav>.nav-header {
      display: inline;
    }

    .nav>.nav-header+.nav-btn {
      font-size: 22px;
      color: #fff;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 16px;
      letter-spacing: .1em;
      cursor: pointer;
    }

    .nav>.nav-header+.nav-btn>label {
      cursor: pointer;
    }

    .nav>.nav-header+.nav-btn:hover {
      color: #DCE45C;
    }

    .nav>.nav-header>.nav-title>img {
      width: 150px;
    }

    .nav>.nav-btn {
      display: none;
    }

    .nav>.nav-links {
      display: inline;
      font-size: 18px;
    }

    .nav>.nav-links>ul {
      list-style-type: none;
      width: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      margin: 0px;
      padding-left: 0px;
    }

    .nav>.nav-links>ul>li {
      position: relative;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
    }

    .nav>.nav-links>ul>li a {
      color: #fff;
      font-weight: 500;
      font-size: 14px;
      padding: 13px 10px 13px 10px;
      cursor: pointer;
    }

    .nav>.nav-links>ul>li:last-child>a {
      color: #ffffff;
      border: 1px solid #DCE45C;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      padding-left: 18px;
      padding-right: 18px;
      margin-top: 0px;
      background: #DCE45C;
      -webkit-border-radius: 40px;
      -moz-border-radius: 40px;
      -ms-border-radius: 40px;
      border-radius: 40px;
      margin-left: 10px;
    }

    .nav>.nav-links>ul>li button {
      border: none;
      background: no-repeat;
      color: #fff;
      font-weight: 500;
      font-size: 14px;
      padding: 13px 10px 13px 10px;
      cursor: pointer;
    }

    .nav>.nav-links>ul ul,
    .nav>.nav-links>ul>li>ul>li ul {
      list-style-type: none;
      position: absolute;
      display: none;
      padding-left: 0px;
    }


    .nav>.nav-links>ul>li.dropDown:hover>button+ul,
    .nav>.nav-links>ul>li>ul>li:hover>ul {
      display: block;
      background-color: #f1f1f1;
      box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
      z-index: 1;
      border-radius: 20px;
      min-width: 200px;
    }



    .nav>.nav-links>ul>li.dropDown:hover>button+ul a,
    .nav>.nav-links>ul>li>ul>li ul a {
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      font-weight: 500;
    }

    .nav>.nav-links>ul>li.dropDown:hover>button+ul a:hover,
    .nav>.nav-links>ul>li>ul>li ul a:hover {
      background-color: #ddd;
      border-radius: 20px;
    }

    .nav>.nav-links>ul>li>ul>li:hover>ul {
      display: block;
      left: 100%;
      top: 0;
    }

    .nav>.nav-links a {
      display: inline-block;
      padding: 13px 10px 13px 10px;
      text-decoration: none;
      color: #efefef;
    }

    .nav>.nav-links a:hover {
      /* background-color: rgba(0, 0, 0, 0.3); */
      /* color: #DCE45C!important; */
    }

    .nav>#nav-check {
      display: none;
    }

    @media (max-width:920px) {
      .nav>.nav-links>ul {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav>.nav-links>ul ul {
        /* position: relative;
      display: block; */
      }

      /* .nav > .nav-links > ul ul a,
  .nav > .nav-links > ul ul{
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
    margin-left: 20px; 
  }  */
      .nav>.nav-links>ul ul a {
        padding: 12px 16px;
      }

      .nav>.nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
      }

      .nav>.nav-btn>label {
        display: inline-block;
        width: auto;
        height: 50px;
        padding: 13px;
      }

      .nav>.nav-btn>label:hover,
      .nav #nav-check:checked~.nav-btn>label {
        /* background-color: rgba(0, 0, 0, 0.3); */
      }

      .nav>.nav-btn>label>span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #eee;
      }

      .nav>.nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #2c98a5;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 80px;
        left: 0px;
      }

      .nav>.nav-links a {
        display: block;
        width: 100%;
      }

      .nav>#nav-check:not(:checked)~.nav-links {
        height: 0px;
      }

      .nav>#nav-check:checked~.nav-links {
        height: calc(100vh - 25%);
        overflow-y: auto;
      }
    }