/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: transparent;
    position: absolute;
  }
  .header.header-scrolled {
    background: #fff;
    position: fixed;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: stickyTransition;
    animation-name: stickyTransition;
  }
  @-webkit-keyframes stickyTransition {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
}
@keyframes stickyTransition {
    from {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
}
  .header .logo {
    line-height: 0;
  }
  .header .logo img {
    /*max-height: 40px !important;*/
    /*margin-right: 6px;*/
    /*height: 40px;*/
    width: 70px;
  }
  .header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin-top: 3px;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    font-size: 14px !important;
    font-weight: 600;
    color: #2d4053;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 20px;
    line-height: 1;
    margin-left: 3px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #8e1e9a;
  }
  .navbar .getstarted, .navbar .getstarted:focus {
    background: #8e1e9a;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
  }
  .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    color: #fff;
    background: #8e1e9a;
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }
  .navbar .dropdown ul a i {
    font-size: 18px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #8d209c;
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
    max-height: 500px;
    overflow-y: auto;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -80%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #8e1e9a;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  .mobile-nav-toggle.bx-x {
    color: #8e1e9a;
  }

  .navbar{
    flex-wrap: nowrap;
  }
  
  @media (max-width: 1300px) {
      .header {
          padding: 10px 0;
      }
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  .navbar-mobile {
    position: fixed;
    /* overflow: hidden; */
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fcebfc;
    transition: 0.3s;
    height: 100vh;
  }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 30px;
    right: 15px;
    background: #012970;
    z-index: 999;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50rem;
    color: #fff;
  }
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  .navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #182a36;
    font-weight: 700 !important;
  }
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #8e1e9a;
  }
  .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  .navbar-mobile .dropdown ul a i {
    font-size: 18px;
  }
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #8e1e9a;
  }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  
  
  .navbar-mobile .dropdown > .dropdown-active li{
    visibility: visible;
  }


  .navbar-mobile .btn-callus{
    display: none;
  }
  
  
  /* ===== Scrollbar CSS ===== */
  
  /* Firefox */
  /* * {
      scrollbar-width: 5px;
      scrollbar-color: #8e1e9a #ffffff17;
    } */
    
    /* Chrome, Edge, and Safari */
    /* *::-webkit-scrollbar {
      width: 5px;
      height: 5px;
    } */
    
     /* *::-webkit-scrollbar-track {
      background: #f6f5f4;
    }
    
    ::-webkit-scrollbar-thumb {
      background-color:#8e1e9a;
      border-radius: 10px;
    }  */

 
    
    ::selection {
      background: #eee;
      color: #8e1e9a !important;
    }
    
    ::-moz-selection {
      background: #eee;
      color: #8e1e9a !important;
    }


    #jQueryCookieDisclaimer{
      display: none !important;
    }


    .btn_responsive_btn{
      display: none !important;
    }
    
    @media(max-width:1300px){
      .btn_responsive_btn{
        display: block !important;
      }
    }

    @media(max-width:400px){
      .navbar a.hvr-radial-out{
        padding: 7px 12px !important;
        font-size: 13px !important;
        margin: 0 8px !important;
      }
    }