/* Prevent scroll on narrow devices */
/* html,
body {
  overflow-x: hidden; 
}

body {
  padding-top: 62px;
} */

@media (max-width: 767px) {
  .offcanvas-collapse {
    position: fixed;
    top: 62px; /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #fff;
    transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}


.nav-underline .active {
  font-weight: 500;
  color: #343a40;
}
@media (min-width: 1360px){
  .container{
    max-width: 1360px;
  }

}
.navbar-nav li a::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 3px;
  bottom: -5px;
  background-color: #b8a3cc;
  transform: scale(0);
  transition: all 0.3s;
} 
.navbar-nav li a:hover::before {
  transform: scale(1.3);
}
.dropdown-item:hover{
  background-color: #fff;
}