.navbar-section{
    height: 100px;
    width: 100%;
    padding: 19px 0px;
    background-color: #141941;
    position: relative;
	z-index: 999;
  }
  .active{
    color: #d35600!important;
    font-weight: bolder!important;
  }
  .navbar-section .nav-header{
    display: inline;
  }
  .navbar-section .nav-header .nav-logo{
    display: inline-block;
    margin-top: -12px;
  }
  .nav-logo {
    width: 300px;
  }
  .nav-logo img{
    width: 100%;
  }
  .nav-links{
	display: inline-block;
  }
  .nav-bar-ul{
	display: flex;
  justify-content: space-between;
  }
  .navbar-section .nav-links{
    display: inline;
    float: right;
    font-size: 14px;
    width: 50%;
    margin-top: 7px;
  }
   
  .navbar-section .nav-links .loginBtn{
    display: inline-block;
    padding: 5px 15px;
    margin-left: 20px;
    font-size: 17px;
    color: rgb(9, 14, 90);
  }
  .nav-bar-ul li a{
    text-transform: uppercase;
    font-size: 16px;
  }
  .dropBtn{
    text-transform: uppercase;
  }
  .navbar-section .nav-links a {
    padding: 10px 12px;
    text-decoration: none;
    font-weight: 550;
    font-size: 16px!important;
    color: #ffffff;
    transition: 0.3s ease;
  }
  .nav-links a::after{
    content: "";
    bottom: 0;
  }
  /* Hover effects */
  .navbar-section .nav-links a:hover{
  
    background-color: #ddd;
    transition: 0.3s ease;
  }
   
  /* responsive navbar-section toggle button */
  .navbar-section #nav-check, .navbar-section .nav-btn{
    display: none;
  }
   
  @media (max-width:700px) {
	.banner-style{
		z-index: -999;
	}
	.nav-bar-ul{
		display: inline-block;
		
	}
    .navbar-section .nav-btn{
      display: inline-block;
      position: absolute;
      top: 0px;
      right: 0px;
	  z-index: 999;
    }
    .navbar-section .nav-btn label {
      display: inline-block;
      width: 80px;
      height: 70px;
      padding: 25px;
    }
    .navbar-section .nav-btn label span {
      display: block;
      height: 10px;
      width: 25px;
      border-top: 3px solid #fff;
    }
    .navbar-section .nav-btn label:hover, .navbar-section #nav-check:checked ~ .nav-btn label {
      background-color: rgb(9, 14, 90);
      transition: all 0.5s ease;
    }
    .navbar-section .nav-links{
      position: absolute;
      display: block;
      text-align: center;
      width: 86%!important;
      background-color: #e1e2eb;
      transition: all 0.3s ease-in;
      overflow-y: hidden;
      top: 70px;
      right: 0px;
    }
    .navbar-section .nav-links a {
      display: block;
      margin: 12px 0px;
      font-size: 18px!important;
    }
   
    /* when nav toggle button not checked */
    .navbar-section #nav-check:not(:checked) ~ .nav-links {
      height: 0px;
    }
   
    /* when nav toggle button is checked */
    .navbar-section #nav-check:checked ~ .nav-links {
      height: auto;
      overflow-y: auto;
    }
    .navbar-section .nav-links .loginBtn {
      padding: 10px 40px ;
      margin: 20px;
      font-size:  18px;
      font-weight: bold;
      color: rgb(9, 14, 90);
    }
    /* Responsive dropdown code */
    .navbar-section .nav-links .dropdown, .navbar-section .nav-links .dropdown2 {
      float: none;
      width: 100%;
    }
    .navbar-section .nav-links .drop-content, .navbar-section .nav-links .drop-content2 {
      position: relative;
      background-color: rgb(220, 220, 250);
      top: 0px;
      left: 0px;
    }
    /* Text color */
    .navbar-section .nav-links .drop-content a {
      color: rgb(9, 14, 90);
    }  
   
  }
   
  /* Dropdown menu CSS code */
  .dropdown{
    position: relative;
    display: inline-block;
  }
  
  .drop-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 300px;
    font-size: 16px;
    top: 45px;
    z-index: 1;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    border: 2px soldi #fff;
    left: -26px;
    transition: 1s ease;
  }
  .drop-content2 {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    font-size: 16px;
    top: 0;
    z-index: 999;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border: 2px soldi #fff;
  }
  /* on hover show dropdown */
  .dropdown:hover .drop-content, .dropdown2:hover .drop-content2 {
    display: block;
    border: 2px soldid #fff;
    transition: 1s ease;
  }
  .drop-content2 a:hover{
    border: 2px soldid #fff;
  }
  /* drondown links */
  .drop-content a {
    padding: 12px 10px;
  
    display: block;
    transition: all 0.5s ease !important;
  }
  .drop-content a:hover {
    border-bottom: 2px solid #004b97;
    background-color: #cccccc!important;
  }
  
  .dropdown2 .drop-content2 {
    position: absolute;
    left: 170px;
    top: 0px;
    
  }
  .dropBtn2 i {
    margin-right: 5px;
  }
