/* Navbar */
header {
  position: fixed;
  z-index: 9;
  padding: 20px 0;
  width: 100%;
}
.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo{
  max-width: 189px;
  width: 100%;
  height: 38px;
}
.site-logo img{
  max-width: 189px;
  width: 100%;
  height: 38px;
}
.navbar-list {
  list-style: none;
  display: flex;
  gap: 25px;
}
.navbar-list li a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}
.navbar-list li a::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 3px;
  background-color: #f07527;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  opacity: 0;
}
.navbar-list li a:hover::after {
  width: 17px;
  opacity: 1;
}
.dropdown-item {
  position: relative;
}
.dropdown-item::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  background-image: url(../images/down-arrow\ 1.webp);
  right: 0px;
  margin-left: 2px;
  bottom: -2px;
  cursor: pointer;
}
.dropdown-list{
  display: none;
  position: absolute;
  top: 18px;
  left: -45px;
  z-index: 9;
  padding: 20px 0;
}
.dropdown-item:hover .dropdown-list {
  display: block;
}
.dropdown-list ul {
  position: relative;
  display: block;
  list-style: none;
  border: 1px solid white;
  min-width: 132px;
  border-radius: 3px;
}
.dropdown-list ul::after{
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 17px;
  top: -9px;
  z-index: 11;
  background-color: transparent;
  border: 1px solid white;
  transform: rotate(45deg);
  border-bottom: none;
  border-right: none;
}
.dropdown-list ul::before{
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  right: 14px;
  top: -1px;
  z-index: 11;
  background-color: #1453b7;
}
.dropdown-list ul li {
  text-align: center;
  padding: 0 10px;
}
.dropdown-list ul li:hover {
  background: #ffffff26;
  border-bottom: 1px solid white;
}
.dropdown-list ul li a {
  padding: 9px 0;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  border-bottom: 1px solid white;
}
.dropdown-list ul li:last-child {
  border-bottom: none;
}
.dropdown-list ul li a:hover {
  border-bottom: none;
}
.dropdown-list ul li:last-child a{
  border-bottom: none;
}
.dropdown-list li a:hover::after {
  content: unset;
}
.social-links {
  display: flex;
  gap: 15px;
}
.insta-icon img:hover {
  filter: brightness(0) saturate(100%) invert(54%) sepia(25%) saturate(3720%)
    hue-rotate(348deg) brightness(98%) contrast(92%);
}
.linkedin-icon img:hover {
  filter: brightness(0) saturate(100%) invert(54%) sepia(25%) saturate(3720%)
    hue-rotate(348deg) brightness(98%) contrast(92%);
}
.scrollbar-nav {
  background: linear-gradient(184.38deg, #1A67C2 19.51%, #062A8E 69.25%, #F07527 109.92%);
  position: fixed;
  transition: all 0.2s ease;
  top: 0;
  width: 100%;
  padding: 11px 0;
}
.scrollbar-nav .dropdown-list ul{
  background: #1353B6;
}
.menu-btn {
  display: none;
}
.sidebar-header {
  display: none;
}
.mob-social-links{
  display: none;
}
.menu-list .emailID{
  display: none;
}
.no-scroll {
  overflow: hidden;
}
/* /Navbar */
@media screen and (max-width: 991px) {
  header {
    width: 100%;
    width: calc(100% - 30px);
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, 0);
    top: 15px;
    border-radius: 10px;
    background: #ffffff17;
    box-shadow: 0px 0px 13px 0px #5b5b5b26;
    padding: 11px 0px ;
    z-index: 11;
  }
  .scrollbar-nav {
    top: 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    background: linear-gradient(184.38deg, #1A67C2 19.51%, #062A8E 69.25%, #F07527 109.92%);
    box-shadow: 0px 0px 13px 0px #5b5b5b26;
  }
  
  .navbar-list-content {
    display: block;
    position: absolute;
    max-width: 266px;
    width: 100%;
    height: 100vh;
    top: -27px;
    right: -292px;
    transition: 0.5s;
    background: linear-gradient(
      186.66deg,
      #1a67c2 -4.32%,
      #062a8e 61.52%,
      #f07527 115.36%
    );
    z-index: 1111;
  }
  .menu-btn {
    width: 27px;
    display: inline-block;
    height: 27px;
    background: rgb(12 93 159 / 25%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar-list-content.show {
    right: -15px;
  }
  .navbar-list-content .navbar-list {
    display: block;
  }
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px 24px;
    border-bottom: 1px solid #dae5f52e;
  }
  .sidebar-logo {
    padding-top: 5px;
  }
 
  .menu-list {
    padding: 17px 20px;
    border-bottom: 1px solid #dae5f52e;
    cursor: pointer;

  }
.menu-list .emailID{
  display: block;
}
.menu-list:nth-last-child(-n+2){
    border-bottom: none;
    padding-bottom: 0;
  }
  .side-navbar li a:hover::after {
    content: unset;
  }
  .social-links {
    display: none;
  }
  .mob-social-links {
    display: flex;
    gap: 15px;
  }
  .insta-icon img:hover {
    filter: brightness(0) saturate(100%) invert(54%) sepia(25%) saturate(3720%)
      hue-rotate(348deg) brightness(98%) contrast(92%);
  }
  .linkedin-icon img:hover {
    filter: brightness(0) saturate(100%) invert(54%) sepia(25%) saturate(3720%)
      hue-rotate(348deg) brightness(98%) contrast(92%);
  }
  .side-navbar li a:hover::after {
    content: unset;
  }
  .social-links {
    display: none;
  }
  .overlay {
    position: fixed;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 22;
    display: none;
    cursor: pointer;
  }
  .show-overlay {
    display: block;
  }
  .dropdown-item a{
    padding: 17px 20px;
  }
  .dropdown-item::after{
    content: "";
    display: inline-block;
    position: absolute;
    width: 15px;
    height: 15px;
    background: url(../images/down-arrow\ 2.webp) no-repeat;
    right: 20px;
    top: 22px;
    cursor: pointer;
  }
  .dropdown-list{
    display: block;
    padding: 0;
    position: unset;
    border-top: 1px solid #dae5f52e;

  }
  .dropdown-list ul{
    border: none;
    height: 0px;
    overflow: hidden;
    transition: height 0.3s ease-in;
    border-radius: 0;
  }

  .dropdown-item.show-dropdown{
    background: #000c2442 !important;
  }
  .dropdown-item.show-dropdown .dropdown-list ul{
    background: none;
  }
  .dropdown-item.show-dropdown .dropdown-list ul{
    height: 160px;
    transition: height 0.3s ease-in;
    border-bottom: 1px solid #dae5f52e;
  }
  .dropdown-item.show-dropdown::after{
    background: url(../images/arrow-up.webp) no-repeat;
  }
  .dropdown-item.show-dropdown > a{
    width: 100%;
    font-weight: 600;
  }
  .dropdown-list ul::before {
    content: unset;
  }
  .dropdown-list ul::after {
    content: unset;
  }
  .dropdown-list ul li {
    text-align: left;
    padding: 0;
  }
  .dropdown-list ul li a{
    max-width: 226px;
    width: 100%;
    border-bottom: none;
    color: #cdd4e4;  
    padding: 17px 0px;
    margin: 0 20px;
    border-bottom: 1px solid #dae5f52e;
  }
  .navbar-list li a::after {
    content: unset;
  }
  .dropdown-item.show-dropdown .dropdown-list ul li:hover {
    background: #ffffff26;
    border-bottom: 1px solid white;
  }
  .dropdown-item.show-dropdown .dropdown-list ul li:hover a {
    border-bottom: none;
  }
}
@media screen and (max-width: 575px) {
  
  .site-logo {
    max-width: 136px;
    width: 100%;
    height: 28px;
  }
  .site-logo img{
    max-width: 136px;
    width: 100%;
    height: 28px;
  }
}

