      /*WP NAVBAR*/
      .webplatform-nav ul {
        list-style: none;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 14px;
      }
      .webplatform-nav > ul {
        width: 60%;
        margin: auto;
        height: 15vh;
        display: flex;
        justify-content: space-around;
        align-items: center;
        /*background-color: whitesmoke;*/
      }
      .webplatform-nav > ul a {
        color: #555;
      }

      .webplatform-nav ul li {
        position: relative;
        width: 200px;
        padding-left: .5em;
      }
      .webplatform-nav ul li a{
        text-decoration: none;
      }

      .wp-navlinks.single, .wp-navlinks.dropdown {
        text-decoration: none;
      }
      .dropdown-menu {
        position: absolute;
        display: none;
        bottom: 1;
        left: 0;
        background-color: white;
        z-index: 3;
      }
      .dropdown-menu > li {
        height: 10vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;

      }
      .dropdown-menu > li:not(:last-child) {
        border-bottom: 1px solid #EEE;
      }
      .dropdown-menu > li.active {
        background-color: #021130;
        color: white;
      }

      .dropdown-menu > li.active > a {
        color: white;
        font-size: 14px;
      }

      .dropdown-menu li .wp-dropdown-2nd-list {
        position: absolute;
        display: none;
        background-color: whitesmoke;
        right: -149px;
        top: 0;
        width: 150px;
      }
      .wp-dropdown-2nd-list > li {
        height: 10vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 1em;
      }
      .wp-dropdown-2nd-list > li:not(:last-child) {
        border-bottom: 1px solid #EEE;
      }
      .wp-navlinks.active {
        color: #021130;
      }
      .wp-navlinks.dropdown.active + .dropdown-menu {
        display: block;
      }
      li.active .wp-dropdown-link + .wp-dropdown-2nd-list {
        display: block;
      }
      .wp-dropdown-2nd-link.active {
        color: #021130;
      }

      @media screen and (max-width: 800px) {
        .webplatform-nav > ul {
          width: 80%;
        }
      }
      @media screen and (max-width: 600px) {
        .webplatform-nav > ul {
          width: 100%;
        }
      }
      /**/