*{box-sizing: border-box;}body{    margin: 0px;    padding: 0px;    background-color: #ddd; }

body{
  overflow-x: hidden; 
  height: 100%;   
    width: 100%; 

}

html{scroll-behavior: smooth;
    height: 100%;
}

/* start header up  here */

.header-up{display: flex;
width: 100%;
padding: 1%;
background-color: #44a53c;}

.header-up-left{    width: 50%;
    display: flex;
    align-items: center;
    padding-left: 4%;}

    .header-up-left a{text-decoration:none;
    color: white;
display: block;
font-size: 22px;
font-family: 'roboto';
font-weight: bold;}

.header-up-left a:hover
{
    text-decoration: underline;
    text-decoration-color:#efdcdc;
    color: #efdcdc;
}

.header-up-right{    display: flex;
    border:none;
    width: 50%;
    position: relative;
    align-items: center;}

.header-up-social{    position: absolute;
    right:6%;}

    .header-up-social a{text-decoration:none;
    color: white;
font-size: 16px;
margin-left: 12px;}

/* end css header up here */

/* start css nav here */

.nav{display: flex;
border:none;
background-color: #fff;
border-bottom: 1px solid green;}

.logo-img{    width: 60%;
    margin: 10px 10px 5px 50px;
filter: drop-shadow(1px 1px 1px yellow);}

.left-nav{border:none;
width: 30%;}

.right-nav{width: 70%;
border:none;
display: flex;
align-items: center;}

.nav-ul{margin: 0px;
padding: 0px;}

.nav-ul .nav-li{
    list-style: none;
    float: left;
    position: relative;

   }


.nav-ul .nav-li a:hover{color: #fff;
display: block;
background-color: #267843;
}

.nav-ul .nav-li a{text-decoration: none;
display: block;
color: #000;
font-family: 'poppins';
font-weight:500;
float: left;
padding: 12px 17px 12px 17px;
border:none;
margin-left: 5px;
display: block;
border-radius: 5px;
font-size: 16px;
}

.nav-ul-u{margin: 0px;
padding: 0px;
position: absolute;
background-color: #267843;
margin-top: 81px;
visibility:hidden;
z-index: 1;
  opacity: 0;
  transition: visibility 2s, opacity 0.5s linear;

}




.nav-ul .nav-li:hover .nav-ul-u{  
visibility: visible;
opacity: 1;
}

.nav-ul-u .nav-ul-li{
list-style: none;
position:relative;}

.nav-ul-u .nav-ul-li a{
    text-decoration: none;
    width: 320px;
    max-width: 320px;
    border-bottom: 1px solid black;
    color: white;
    border-radius: 0px;
    font-size: 15px;
}

#sidenav{display: none;}

#sidebaricon{display: none;} 

/* end css end here */


@media (max-width:880px){
     .nav-ul{display: none; 
    }

#sidebaricon{display:block;} 

.left-nav{width: 60%;}

.right-nav{width: 40%;}

#sidebaricon{margin-left: 70%;
font-size: 22px;
cursor: pointer;}

.logo-img{margin-left: 6%;}

.header-up-left{width: 60%;}

.header-up-left a{font-size: 20px;}

.header-up-right{width: 40%;}


}


@media (max-width:600px){
  .logo-img{width: 80%;}
}


/* @@@@@@@@@@@@@@ */



/* Fixed sidenav, full height */
#sidenav {
    height: 100%;
    width:100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 30px;
  }
  
  #crossside{position: absolute;
    top: 2%;
    right: 3%;
    display: block;
    color: white;
    font-size: 35px;
    cursor: pointer;
    
}

  /* Style the sidenav links and the dropdown button */
  #sidenav a, .dropdown-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    font-family: 'poppins';
  }
  
  /* On mouse-over */
  #sidenav a:hover, .dropdown-btn:hover {
    color: #f1f1f1;
  }
  
  /* Main content */
  .main {
    margin-left: 200px; /* Same as the width of the sidenav */
    font-size: 20px; /* Increased text to enable scrolling */
    padding: 0px 10px;
  }
  
  /* Add an active class to the active dropdown button */
  .active {
    background-color: green;
    color: white;
  }
  
  /* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
  .dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
  }
  
  /* Optional: Style the caret down icon */
  .fa-caret-down {
    float: right;
    padding-right: 8px;
  }
  
  /* Some media queries for responsiveness */
  @media screen and (max-height: 450px) {
    #sidenav {padding-top: 15px;}
    #sidenav a {font-size: 18px;}
  }


/* @@@@@@@@@@@@@@ */


