.menu-arrow-click{
   display: none;
}

@media only screen and (max-width: 1199px) {
    .ic-nav-link{
        display: flex!important;
        align-items: center;
        justify-content: space-between;
    }
    .menu-arrow-click{
        font-size: 17px;
        display: inline;
    }
    .ic-navbar-nav .ic-nav-item.ic-dropdown .ic-dropdown-toggle::after{
        display: none;
    }
  }


  .ic-header-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    animation: sticky 0.8s;
}

@keyframes sticky {
    from {
        top: -300px;
    }

    to {
        top: 0;
    }
}
