@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 80px;
    background-attachment: scroll;
  }

  .navbar-brand {
    font-size: 1.5rem!important;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 10px 20px!important;
  }

  .ptb-80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pt-80 {
    padding-top: 60px;
  }

  .pb-80 {
    padding-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .nav-scroll {
    background: #fff;
    padding: 0 0 0 0;
    position: sticky;
    top: -90px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(90px);
    transform: translateY(90px);
    border: none;
    -webkit-box-shadow: 0 10px 35px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 10px 35px 0 rgba(0, 0, 0, .1);
    height: 90px;
    z-index: 99;
  }

  .navbar {
    background-color: white;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    /* transition: transform .5s; */
    height: 90px;
  }
  .login-profile-btn{
    order: 3;
  }
}

@media (max-width: 991px) {
  .navbar {
    background-color: white;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    transition: transform .5s;
    position: sticky;
    top: 0;
    z-index: 99;
    height: 90px;
  }
  .login-profile-btn{
    margin-left: auto;
    margin-right: 10px;
  }
  .nav-item.active .nav-link:after{
    display: none;
  }
  .nav-item.active .nav-link{
    color: var(--primary-color) !important;
  }
  .header-wrapper .nav-link:after{
    display: none;
  }
  .header-wrapper .nav-link{
   padding: 15px 0 !important;
  }
}
