@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@600&display=swap");
 body {
	 margin: 0px;
	 /*font-family: "Source Sans Pro", "Segoe UI", "Helvetica", sans-serif;*/
   font-family: "Source Sans Pro", sans-serif;
	 font-size: 1rem;
	 line-height: 1.5em;
   overflow-x: hidden !important;
}
 .navigation {
	 height: 90px;
	 background-image: linear-gradient(to right, #e0e0e0, #fff, #e5e5e5, #eff0f0);
   width:100%;
   position:relative;
   width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
 .brand {
	 position: absolute;
	 padding-left: 20px;
	 padding-top: 10px;
	 float: left;
	 line-height: 90px;
	 text-transform: uppercase;
	 font-size: 1.4em;
}
 .brand a, .brand a:visited {
	 color: #333;
	 text-decoration: none;
}
 .nav-container {
	 max-width: 1280px;
	 margin: 0 auto;
   height: 90px;
   position:relative;
   display:block;
}
 nav.cbmg-nav {
	 float: right;
}
 nav.cbmg-nav ul.nav-list {
	 list-style: none;
	 margin: 0;
	 padding: 0;
}
 nav.cbmg-nav ul.nav-list li {
	 float: left;
	 position: relative;
   margin:0px;
}
 nav.cbmg-nav ul.nav-list li a, nav.cbmg-nav ul.nav-list li a:visited {
	 display: block;
	 padding: 0 20px;
	 line-height: 90px;
	 color: #333;
	 text-decoration: none;
	 text-transform: uppercase;
}
 nav.cbmg-nav ul.nav-list li a:hover, nav.cbmg-nav ul.nav-list li a:visited:hover {
	 color: #333;
}
 nav.cbmg-nav ul.nav-list li a:not(:only-child):after, nav.cbmg-nav ul.nav-list li a:visited:not(:only-child):after {
	 padding-left: 4px;
	 content: " ▾";
}
 nav.cbmg-nav ul.nav-list li ul li {
	 min-width: 190px;
}
 nav.cbmg-nav ul.nav-list li ul li a {
	 padding: 15px;
	 line-height: 20px;
}
 nav.cbmg-nav ul.nav-list li a:after {
	 background: none repeat scroll 0 0 transparent;
	 bottom: 20px;
	 content: "";
	 display: block;
	 height: 3px;
	 left: 50%;
	 position: absolute;
	 background: #00457c;
	 transition: width 0.2s ease 0s, left 0.2s ease 0s;
	 width: 0;
}
 nav.cbmg-nav ul.nav-list li a:hover:after {
	 width: 70%;
	 left: 15%;
}
 a#cbmg-nav-toggle:hover::after, a#cbmg-nav-toggle:after {
	 display: none !important;
	 opacity: 0;
	 width: 0px;
}
 .nav-dropdown {
	 position: absolute;
	 display: none;
	 z-index: 1;
	 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}
/* Mobile navigation */
 .nav-mobile {
	 display: none;
	 position: absolute;
	 top: 0;
	 right: 0;
	 height: 90px;
	 width: 90px;
}
 @media only screen and (max-width: 899px) {
	 .nav-mobile {
		 display: block;
	}
	 nav.cbmg-nav {
		 width: 100%;
		 padding: 90px 0 0;
	}
	 nav.cbmg-nav ul {
		 display: none;
	}
	 nav.cbmg-nav ul li {
		 float: none;
     width: 100%;
	}
	 nav.cbmg-nav ul li a {
		 padding: 30px;
		 line-height: 20px;
		 background-image: linear-gradient(to right, #e0e0e0, #fff, #e5e5e5, #eff0f0);
		 border-top: 1px solid #ccc;
	}
	 nav.cbmg-nav ul li a:hover {
		 background-image: linear-gradient(to right, #e0e0e0, #fff, #e5e5e5, #eff0f0);
	}
	 nav.cbmg-nav ul li a::after, nav.cbmg-nav ul li a:hover:after {
		 display: none;
		 opacity: 0;
	}
	 nav.cbmg-nav ul li ul li a {
		 padding-left: 30px;
	}
	 .nav-dropdown {
		 position: static;
	}
}
 @media screen and (min-width: 899px) {
	 .nav-list {
		 display: block !important;
	}
}
 #cbmg-nav-toggle {
	 position: absolute;
	 left: 18px;
	 top: 30px;
	 cursor: pointer;
	 padding: 10px 35px 16px 0px;
}
 #cbmg-nav-toggle span, #cbmg-nav-toggle span:before, #cbmg-nav-toggle span:after {
	 cursor: pointer;
	 border-radius: 1px;
	 height: 5px;
	 width: 35px;
	 background: #333;
	 position: absolute;
	 display: block;
	 content: "";
	 transition: all 300ms ease-in-out;
}
 #cbmg-nav-toggle span:before {
	 top: -10px;
}
 #cbmg-nav-toggle span:after {
	 bottom: -10px;
}
 #cbmg-nav-toggle.active span {
	 background-color: transparent;
}
 #cbmg-nav-toggle.active span:before, #cbmg-nav-toggle.active span:after {
	 top: 0;
}
 #cbmg-nav-toggle.active span:before {
	 transform: rotate(45deg);
}
 #cbmg-nav-toggle.active span:after {
	 transform: rotate(-45deg);
}
 