.navbar-custom {
    background-color: #ffffff;
    width: 100%;
  	text-align: center;
  	font-weight: bold;
  	font-size: 14
  > li {
    display: inline-block;
    float: none;
    > a {
      padding-left: 100px;
      padding-right: 100px;
    }
}

/* change the brand and text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: #0e057a !important;
}

/* change the link color */
.navbar-custom .navbar-nav .nav-link {
    color: #0e057a !important;
    padding-left: 100px;
    padding-right: 100px;
}

/* change the color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
    color: #ff0000 !important;
}

