/*===========================
    02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease-out 0s;
  }
  
  .sticky {
    position: fixed;
    z-index: 99;
    background-color: #F3F4F9;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-out 0s;
  }
  
  .sticky .navbar {
    padding: 17px 0;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .sticky .navbar {
      padding: 15px 0;
    }
  }
  
  .sticky .navbar .navbar-nav .nav-item a {
    color: #313450;
  }
  
  .sticky .navbar .navbar-toggler .toggler-icon {
    background: #313450;
  }
  
  .navbar {
    padding: 0;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s ease-out 0s;
    padding: 20px 0;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar {
      padding: 17px 0;
    }
  }
  
  .navbar-brand {
    padding: 0;
  }
  
  .navbar-brand img {
    max-width: 180px;
  }
  
  .navbar-toggler {
    padding: 0;
  }
  
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  
  .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #313450;
    display: block;
    margin: 5px 0;
    position: relative;
    transition: all 0.3s ease-out 0s;
  }
  
  .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    transform: rotate(45deg);
    top: 7px;
  }
  
  .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
  }
  
  .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    transform: rotate(135deg);
    top: -7px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #F3F4F9;
      z-index: 9;
      box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      padding: 5px 12px;
    }
  }
  
  .navbar-nav .nav-item {
    position: relative;
    margin-left: 40px;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-nav .nav-item {
      margin-left: 20px;
    }
  }
  
  .navbar-nav .nav-item a {
    font-size: 18px;
    font-weight: 400;
    color: #6B6F92;
    transition: all 0.3s ease-out 0s;
    padding: 10px 0;
    position: relative;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
    .navbar-nav .nav-item a {
      display: inline-block;
      padding: 6px 0px;
      color: #6B6F92;
    }
  }
  
  .navbar-nav .nav-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    width: 0;
    height: 2px;
    background: #4E6EF1;
    z-index: -1;
    opacity: 0;
    border-radius: 10px;
    transition: all 0.3s ease-out 0s;
  }
  
  .navbar-nav .nav-item a:hover, .navbar-nav .nav-item a.active {
    color: #4E6EF1;
  }
  
  .navbar-nav .nav-item a:hover::before, .navbar-nav .nav-item a.active::before {
    right: auto;
    left: 0;
    opacity: 1;
    width: 100%;
  }
  
  .navbar-nav .nav-item:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item:hover .sub-menu {
      top: 0;
    }
  }
  
  @media (max-width: 767px) {
    .navbar-nav .nav-item:hover .sub-menu {
      top: 0;
    }
  }
  
  .navbar-nav .nav-item .sub-menu {
    width: 200px;
    background-color: #F3F4F9;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .nav-item .sub-menu {
      position: relative;
      width: 100%;
      top: 0;
      display: none;
      opacity: 1;
      visibility: visible;
    }
  }
  
  @media (max-width: 767px) {
    .navbar-nav .nav-item .sub-menu {
      position: relative;
      width: 100%;
      top: 0;
      display: none;
      opacity: 1;
      visibility: visible;
    }
  }
  
  .navbar-nav .nav-item .sub-menu li {
    display: block;
  }
  
  .navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #222;
  }
  
  .navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {
    padding-left: 25px;
    color: #4E6EF1;
  }
  
  .navbar-nav .sub-nav-toggler {
    display: none;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-nav .sub-nav-toggler {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      background: none;
      color: #222;
      font-size: 18px;
      border: 0;
      width: 30px;
      height: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .navbar-nav .sub-nav-toggler {
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      background: none;
      color: #222;
      font-size: 18px;
      border: 0;
      width: 30px;
      height: 30px;
    }
  }
  
  .navbar-nav .sub-nav-toggler span {
    width: 8px;
    height: 8px;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    transform: rotate(-45deg);
    position: relative;
    top: -5px;
  }
  