﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,500;0,700;0,800;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    }
nav{ 
  background-color: rgb(255, 255, 255);
      position: fixed;
  top: auto;
  left: 0;
  width: 100%;
  height: 100%;
  margin:auto 0;
  height: 70px;
   z-index: 99;
   box-shadow:0 .125rem .25rem rgba(0,0,0,.075);
}
 
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
 
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; padding: 0 50px; */
 
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height:40px;
  height: 100%;
  padding-top: 6px;
}
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;  line-height: 58px;
  color:rgb(22 28 45);
  font-size: 12px;
  font-weight: 500;
}
nav .navbar .links li:hover>a,nav .navbar .links li:hover>.arrow {
 
        color: rgba(26,157,174,1);   
         }
/*
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }*/
.links li:hover .htmlcss-arrow1,
.links li:hover .js-arrow1{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 58px;
  text-align: center;
  display: inline-block;
  color:#151d36;

  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
   padding: 5px 0;
  line-height: 40px;
  background: rgb(255 255 255 );
 box-shadow: 0 0 3px #3c485826;
  -webkit-box-shadow: 0 0 3px #3c485826;
  -moz-box-shadow: 0 0 3px #3c485826;
    border-radius: 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li .sub-menu1{
  position: absolute;
  top: 100%;
  right: 0;  line-height: 40px;
   padding: 5px 0;
  line-height: 40px;
  background: rgb(255 255 255 );
 box-shadow: 0 0 3px #3c485826;
  -webkit-box-shadow: 0 0 3px #3c485826;
  -moz-box-shadow: 0 0 3px #3c485826;
    border-radius: 4px;
  display: none;
  z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,nav .navbar .links li:hover .profile-arrow,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid #f5f5f5;
  min-width:250px;
}
.navbar .links li .sub-menu1 li{
  padding: 0 22px;
  border-bottom: 1px solid #f5f5f5;
  
}
.navbar .links li .sub-menu li:last-child,.navbar .links li .sub-menu1 li:last-child
{
  border-bottom: 0;
}
.navbar .links li .sub-menu a,.navbar .links li .sub-menu1 a{
  color:#151d36;
  font-size: 12px;
  font-weight: 500; line-height: 40px;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
  
}
.navbar .links li .sub-menu .more i{

    border-bottom-color: rgba(26,157,174,1);
    border-inline-end-color: rgb(22 28 45 / 1);
    border-inline-start-color: #000000;
    border-radius: 2px;
    border-top-color: #000000;
    border-width: 3px;
    display: inline-block;
    inset-inline-end: 1.25rem;
    position: absolute;
    top: 1px;

}

.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100.5%;
     border-radius: 4px;
  z-index: 1;
  display: none;
}          
.navbar .links li .sub-menu .more-arrow:hover {
	color: rgba(26,157,174,1);
}
.links li .sub-menu .more {
		color: rgba(26,157,174,1);
}
.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: #3E8DA8;
  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: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  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;
}/*
@media (max-width:920px) {
nav
{
	height:auto;
}
  nav .navbar{
    max-width: 100%;
     
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}*/
@media (max-width:991px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
 
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  rgba(26,157,174,1);
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 10000;
    overflow: scroll;
  }
  nav .navbar .links li a
  {
	    color:#fff;

}
nav .navbar .links li .arrow, 
nav .navbar .links li:hover>a,nav .navbar .links li:hover>.arrow {
       
        color: #fff; 
    }

  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #000;
    }
 
    .navbar .bx-x{
      font-size: 25px;
      color: #fff;
    }

  nav .navbar .links{
    display: block;
    margin-top: 20px;
 
       }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
 
	  background:transparent;

}
.navbar .links li .sub-menu a
{
    color:#fff;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
  min-width:100%;
  padding:0;

}
.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-arrow1,
.links li:hover .js-arrow1{
  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.show4 .links .profile-arrow,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow1,
    .navbar .nav-links.show3 .links .js-arrow1{
        transform: rotate(180deg);
}
nav .navbar .links li:hover>a, nav .navbar .links li:hover>.arrow{
	color:#fff;
}
 .navbar .links li .sub-menu .more-arrow
 {
		position:relative;
}
.navbar .links li .sub-menu .more i
{
	inset-inline-end:auto;    top: auto;height:40px;
}
 .navbar .links li .sub-menu .more-arrow:hover
 {
	color:#fff;
}

    .navbar .nav-links.show2 .links .more i{
      transform: rotate(180deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}
