@font-face {
    font-family: 'naratifcondensed-bolditalic';
    src: url('https://test.oceanhydro.my/index.php/fontspring/Web Fonts/naratifcondensed_bolditalic_macroman/naratifcondensed-bolditalic-webfont.woff2') format('woff2'),
         url('https://test.oceanhydro.my/index.php/fontspring/Web Fonts/naratifcondensed_bolditalic_macroman/naratifcondensed-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

   
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1% 3%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
  }

  .nav-black-text {
    background: black;
    color: rgb(255, 255, 255) !important;
  } 
  

  nav .links ul{
    list-style: none;
  }

  nav .links ul li{
    display: inline-block;
    position: relative;
  }
  
  nav .links ul li a{
    color: white;
    font-size: 2em;
    text-transform: None;
    position: relative;
    font-family: 'Mulish', sans-serif;
    display: block;
    padding: 11px 10px;
    text-decoration: none;
    text-align: center;
  }


  
  nav .links ul li ul.dropdown li{
    display: block;
    padding: 0;
  }

  nav .links ul li ul.dropdown{
    width: 100%;
    background: black;
    position: absolute;
    z-index: 999;
    justify-content: center;
    display: none;
    border-radius: 5px;
  }

  nav .links ul li a:hover{
    background: #133d84;
  }

  nav .links ul li:hover ul.dropdown{
    display: inline-table;
    justify-content: center;
    padding: 15px 35px;
  }

  nav .links ul li ul.dropdown li a{
    margin: 0;
    width: max-content;

  }

  .header .gif {
    position: absolute;
    left: 1em;
    top: 54%;
    transform: translateY(-50%);
  }
  
 
  .header  .gif img{
  width: 18%;
}
  
  .logo {
    font-size: 2.6rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20%;
    color: var(--white);
    font-family: 'Naratif Condensed', sans-serif;
  }
  
  
  
  .logo span {
    color: white;
  }
 
  
  /*   @media only screen and (max-width: 768px) {
  
  
    nav #menu-btn {
      display: inline-block;
    }
  
    nav .links {
      position: absolute;
      top: 100%;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: #eee;
      transition: 0.5s;
      background: black;
    }
  
    nav .links a {
      display: block;
      padding: 1.5rem;
      margin: 1rem;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--white);
      text-align: center;
    }
  
  }
  
   */
