@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Montserrat:wght@400;700&family=Lato&display=swap');

/* Applying Roboto font to body text */
body {
    font-family: 'Roboto', sans-serif;
}

/* Applying Montserrat font to headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

body{
  min-height: 100vh;
  padding-top: 140px;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #AC3B61;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;


}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: red; */
  padding: 0px;
}

.navbar .logo a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 200;
}

.logo2 {
  font-size: 10px !important;
  font-weight: 500 !important;
  background-color: #FFFFFF ! important;
}

nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}

nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 50px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 53px;
  left: 0;
  line-height: 40px;
  background: #AC3B61;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  width: 170%;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
/*.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px;  logo
}*/
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
  width:180%;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #AC3B61;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background:#AC3B61;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #AC3B61;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}

h1 {
  color:#FFFFFF; /* Set text color to white */
  background-color: #123C69; /* Set background color to blue */
  padding: 10px; /* Add padding for better readability */
  margin: 0; /* Remove any default margin */
  width: 100%; /* Set width to cover entire page width */
  box-sizing: border-box; /* Include padding and border in the width */
  font-size: 20px; /* Adjust the font size as needed */
}

nav a:hover{
	opacity: .7;
}

/* Style the dropdown button */
.dropbtn {
  background-color: #123C69;
  color: white;
  padding: 0px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  position: fixed; /* Position it fixed to the viewport */
  right: 0px; /* Adjust this value to move it horizontally */
  top: 0px;
  display: flex;
  line-height: 5px;
  align-items: center;
  margin: 0px;

}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  top: 50px;
  line-height: 20px;
  border-radius: 0 0 4px 4px;
  right: 0px;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  color:#123C69;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1;
  color:#AC3B61;
  opacity: 0.7;
}

.dropdown{
  display: flex;
flex-direction: column;
}

.dropbtn:hover{
  opacity: 0.5;
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}



.user_logo {
  /* Adjust the path to your IconsFolder and the specific icon file */  
  display: block;
  max-width: 40px; /* Adjust the width according to your icon size */
  height: auto;
  max-height: 40px;
   /* Adjust the height according to your icon size */
  padding: 1px;
  margin: 5px;
  align-items: center;
  border-radius: 50%;
  border: #f1f1f1;
}

.user_logo img{
  width: 100%;
  height: auto;
  max-width: 40px;
  max-height: 40px;
  padding: 0px;
  border-radius: 50%;

}

.logo{
  left: 10px;
  line-height: 5px;
  padding: 3px;
  margin: 5px;
  align-self: center;
  justify-content: center;

  display: block;
}

.logo h5{
color:#123C69;
font-size: 14px;
line-height: 14px;
padding: 2px;
}

.logo-small{
  display: flex;
  left: 5px;
  justify-content: center;
  align-self: start;
  top: 10px;
   }
  

@media (max-width:920px) {


  nav .navbar{
    max-width: 100%;
    padding: 0 2px;
    margin: 0px;
  }

  nav .navbar .logo a{
    font-size: 16px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }

.logo{

 left: 10px;
  line-height: 3px;
  padding: 2px;
  margin: 0px;
  align-self: center;
  justify-content: center;

  display: block;
}
.logo h5{
  color:#123C69;
  margin:10px;
  margin-left:0px ;
 font-size: 11px;
 line-height: 10px;
 }
 
 .logo-small{
display: flex;
left: 5px;
margin: 0px;
align-self: start;

 }

  .dropbtn {
    font-size: 12px;  
  }

  .dropdown-content {

    min-width: 120px;
    top: 30px;
    line-height: 20px;
    margin: 0px;
    right: 0px 
 

  }

  /* Style the links inside the dropdown */
.dropdown-content a {
 
  padding: 6px 8px;
  font-size: 12px;

}

  
  .user_logo {

    max-width: 20px; /* Adjust the width according to your icon size */
    max-height: 20px; /* Adjust the height according to your icon size */
    vertical-align: middle;
    padding: 1px;
    margin: 1px;
  }


  h1 {
    font-size: 15px; /* Adjust the font size as needed */
  }

  .navbar .bx-menu{
    display: block;
  }

  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 350px;
    width: 100%;
    background:  #AC3B61;
    line-height: 30px;
    padding: 20px;
    padding-left: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
    max-height: 2000px; /* Set the maximum height for the container */
    overflow-y: auto; /* Add a vertical scroll for overflow content */
  }


  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 20px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 30px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }


.more-arrow{

  transform: rotate(90deg);

}


 .links {
  height: 100%;
  max-width: 1250px;
  width: 190%;
  display: block; /* Change display to block */
  text-align: left; /* Align text (and inline elements) to the left */
  margin: 0px;
  /* background: red; */
  padding: 0px;





}
.logo{
  left: 5px;
   align-self: center;
    line-height: 0px;
  padding: 20px;
  margin: 10px;
justify-content: center;

}

}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

