.font-white {
    color: #fff;
}

.sidenav {
    height: 100%;
    width: 0px;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background: #1c1666;
    /* background-color: #fff; */
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.5s;
    /* padding         : 15px 0px 0px 0px; */
    padding: 0px;
    font-size: 1rem;
}

.backdrop {
    display: none;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 998;
    top: 0;
    position: fixed;
}

.closebtn {
    color: red;
    font-size: 1.5rem;
}

.navMenuMb {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.navMenuMb-item {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border-bottom: 1px solid #c4c4c4;
    /* color     : #294661; */
    cursor: pointer;
}

.navMenuMb-item a {
    color: #0061ad;
}

.navMenuMb-item a:focus {
    color: #1c1666;
}

/* .sub-menu-mb {
    list-style: none;
    padding   : 0px;
    margin    : 0px;
} */
.sub-menu-mb {
    list-style: none;
    padding: 0px;
    margin: 0px 0px 0px 6px;
}

.sub-menu-mb-item {
    display: block;
    width: 100%;
    padding: 3px 8px;
    color: #0061ad;
    cursor: pointer;
}

.sub-menu-mb-item2 {
    display: block;
    width: 100%;
    padding: 3px 20px;
    color: #0061ad;
    cursor: pointer;
}

/* .sub-menu-mb-item a:focus {
    color        : #1c1666;
    border-bottom: 2px solid !important;
    border-image : radial-gradient(rgb(236 45 39), rgb(248 172 28)) 1 !important;
} */
.sub-menu-mb-item a:focus {
    color: #0061ad;
    border-bottom: none;
    border-image: none;
}

.sub-menu-mb-item2:focus {
    color: #1c1666;
}

.dropdown-toggle::after {
    display: none;
}

.text-decoration-none {
    text-decoration: none !important;
}

/* Font Awesome Icons have variable width. Added fixed width to fix that.*/
.icon-width {
    width: 2rem;
}

/***** demo styles *****/

body {
    background-color: #e9ecef;
    margin: 0;
    padding: 0;
}

.demo-container {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/***** Base header & nav styles *****/

.header {
    position: relative;
    padding-bottom: 0;
    width: 100%;
    max-width: 1600px;
    background-color: #fff;
    z-index: 4;
}

.header__container {
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-height: 50px;
}

.header ul {
    margin: 0;
    padding: 0;
}

.header ul li {
    list-style: none;
    margin-bottom: 0;
}

.header ul li a:hover {
    color: #1a82e2;
}

nav.secondary {
    height: 2rem;
    width: 100%;
    border-bottom: 1px solid #e9ecef;
}

nav.primary {
    background-color: #fff;
    box-shadow: 0px 1px 3px -1px rgba(41, 70, 97, 0.2);
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

nav.primary ul {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
}

nav.primary ul li {
    flex: 1;
}

nav.primary ul li.logo {
    flex: 3;
    text-align: left;
}

nav.primary ul li.logo a {
    /* height             : 72px;
    min-width          : 150px;
    background-image: url("//sendgrid.com/brand/sg-logo-300.png");
    background-position: left 22px;
    background-repeat  : no-repeat;
    background-size    : 150px auto; */
    display: flex;
    /* margin-left        : 8%; */
}

/***** Mobile nav toggle container *****/

li.mobile-nav {
    position: relative;
    text-align: right;
    display: block;
    height: 4.5rem;
    vertical-align: middle;
}

/***** hamburger menu *****/

#nav-toggle {
    font-size: 1.875rem;
    position: initial;
    width: 32px;
    right: 0;
    height: 50px;
    background: transparent;
    border: none;
    display: block;
    z-index: 1000;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

/* #nav-toggle:hover,
#nav-toggle:focus {
  color: #1a82e2;
  outline: none;
} */
#nav-toggle .menu {
    position: absolute;
    display: block;
    width: 1.875rem;
    height: 2px;
    background: #1a82e2;
    overflow: visible;
    transition: background-color 0.3s ease-out;
    transition-delay: 0.1s;
}

#nav-toggle .menu:before,
#nav-toggle .menu:after {
    content: "";
    position: absolute;
    left: 0;
    width: 1.875rem;
    height: 2px;
    background: #1a82e2;
    transition: transform 0.2s;
}

#nav-toggle .menu:before {
    top: -8px;
}

#nav-toggle .menu:after {
    top: 8px;
}

#nav-toggle.open .menu {
    /* background-color: transparent; */
    transition: background-color 0s;
    transition-delay: 0s;
}

#nav-toggle.open .menu:before,
#nav-toggle.open .menu:after {
    transition: transform 0.3s;
}

/* #nav-toggle.open .menu:before {
  top: 0;
  box-shadow: none;
  transform: rotate(45deg);
}
#nav-toggle.open .menu:after {
  transform: rotate(-45deg);
  top: 0;
} */

/***** Mobile nav menu styles *****/

/* nav.mobile {
  display: block;
  position: fixed;
  top: 6.5rem;
  width: 100%;
  background-color: #fff;
  z-index: 3;
  box-shadow: 0px 1px 3px -1px rgba(41, 70, 97, 0.2);
  transform: translate(0, -360px);
  transition: all 0.3s ease-out;
  padding-bottom: 1rem;
  opacity: 0;
  //added this for demo only. On a mobile device max width is not necessary.
  max-width: 450px;
}
nav.mobile--open {
  transform: translate(0, 0);
  opacity: 1;
}
nav.mobile ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
nav.mobile li.link {
  font-weight: 400;
  font-size: 1rem;
  padding: 1.5rem 0 0.5rem 1.5rem;
}
nav.mobile li.link a {
  color: #294661;
  display: block;
  text-decoration: none;
} */