/* New eyebrow header  */

.header-eyebrow li {
	font-size: calc(12vw / var(--context));
}

ul {
/*   list-style: none; */
  margin: 0;
  padding: 0;
}

nav ul .sub-menu {
	 list-style: none;
}

a {
  text-decoration: none;
}
/*header*/

.header-main {
  background-color: #002142;
  display: flex;
  height: 50px;
  align-items: center;
}

.header-eyebrow .menu .menu-item {
  display: inline-block;
  position: relative;
}
.header-eyebrow .menu .menu-item a {
  display: block;
  padding: 12px 0;
/*   font-size: 16px; */
  color: #fff;
  transition: all 0.3s ease;
}
.header-eyebrow .menu .menu-item a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}

.header-eyebrow .menu .menu-item a .plus:before,
.header-eyebrow .menu .menu-item a .plus:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: #fff;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.header-eyebrow .menu .menu-item a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.header-eyebrow .menu .menu-item .sub-menu .menu-item a:hover,
.header-eyebrow .menu .menu-item .sub-menu ul li:hover {
  text-decoration: underline;
}

.header-eyebrow .menu .menu-item .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #2b5987;
  padding-top: 18px;
  padding-right: 30px;
  transform: translateY(10px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.nav-col {
  margin: 0;
  margin-left: 40px;
  width: 350px;
  padding-bottom: 75px;
}

.nav-col .title {
  font-size: calc(16vw / var(--context));
  line-height: 1.375rem;
  margin: 0 0 16px;
  border-bottom: 3px solid #5f84b3;
  padding-bottom: 15px;
}

@media (min-width: 992px) {
  .nav-menu .menu {
    display: flex;
  }
  .nav-menu .menu .web-right {
    position: absolute;
    right: 0;
  }
  .nav-menu .menu .web-right ul {
    display: flex;
  }

  .nav-menu .menu .web-right ul li a {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-menu .menu .web-right ul li a:hover {
    background-color: #fefefe;
    color: #048;
  }

  .header-eyebrow .menu .menu-item-has-children:hover .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
	z-index: 100;  
  }
  .header-eyebrow .menu .menu-item-has-children:hover a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  #mobile-nav {
    display: none;
  }

  .menu .sub-menu {
    display: flex;
    overflow: hidden;
    color: #fff;
  }

  .menu .sub-menu ul li {
    border-bottom: 1px solid #5f84b3;
  }

  #university-menu {
    background-color: #048;
    padding-left: 1rem;
    padding-right: 1.5rem;
	height: 50px  
  }
	
  .search-form input.gsc-search-button {
  position: absolute;
  top: 50%;
  right: 16px;
  background: url(/_resources/images/sprite.png) no-repeat;
  width: 23px;
  height: 21px;
  margin: -10px 0 0;
  border: none;
}
}

.header-eyebrow .menu .menu-item .sub-menu .menu-item a {
  display: block;
  padding: 10px 20px;
/*   font-size: 16px; */
/*   font-weight: 600; */
  color: #fff;
  transition: all 0.3s ease;
  text-transform: capitalize;
}
.header-eyebrow .open-nav-menu {
  height: 34px;
  width: 40px;
  margin-right: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
}
.header-eyebrow .open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #fff;
  position: relative;
}
.header-eyebrow .open-nav-menu span:before,
.header-eyebrow .open-nav-menu span:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
}
.header-eyebrow .open-nav-menu span:before {
  top: -7px;
}
.header-eyebrow .open-nav-menu span:after {
  top: 7px;
}
.header-eyebrow .close-nav-menu {
  height: 40px;
  width: 40px;
  color: #fff;
  margin: 0 0 15px 15px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.header-eyebrow .close-nav-menu img {
  width: 16px;
}
.header-eyebrow .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

/* responsive */

@media (max-width: 991px) {
  .header-eyebrow .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  .header-eyebrow .nav-menu {
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top: 0;
    overflow-y: auto;
    background-color: #00376e;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
  }
  .header-eyebrow .nav-menu.open {
    visibility: visible;
    right: 0px;
  }
  .header-eyebrow .menu .menu-item {
    display: block;
    margin: 0;
  }
  .header-eyebrow .menu .menu-item-has-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-eyebrow .menu .menu-item a {
    color: #ffffff;
    padding: 12px 15px;
    border-bottom: 1px solid #33699f;
  }
  .header-eyebrow .menu .menu-item a:hover {
    text-decoration: underline;
  }
  .header-eyebrow .menu .menu-item:first-child a {
    border-top: 1px solid #33699f;
  }
  .header-eyebrow .menu .menu-item a .plus:before,
  .header-eyebrow .menu .menu-item a .plus:after {
    background-color: #ffffff;
  }
  .header-eyebrow .menu .menu-item-has-children.active a .plus:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .header-eyebrow .menu .menu-item .sub-menu {
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border: none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top: auto;
    max-height: 0;
    overflow: hidden;
  }
  .heaheader-eyebrowder .menu .menu-item .sub-menu .menu-item a {
    padding: 12px 45px;
    color: #ffffff;
    border-bottom: 1px solid 1px solid #33699f;
  }
  .header-eyebrow .close-nav-menu,
  .header-eyebrow .open-nav-menu {
    display: flex;
  }

  #web-nav {
    display: none;
  }

  .header-eyebrow .menu .menu-item .shu-title:hover{
	  text-decoration: none;
	  
  }
  .icon {
    display: none !important;
  }
	
	
	
/* 	search  */
	.search-form input.gsc-search-button {
  position: relative;
  top: -35px;
  right: -200px;
  background: url(/_resources/images/sprite.png) no-repeat;
  width: 23px;
  height: 21px;
  margin: -10px 0 0;
  border: none;
}
	
}

/* form  */

/* .search-form {
  background: #1a1a1a;
  min-width: 175px;
  padding: 10px;
  overflow: hidden;
}
.search-form [type="search"],
.search-form [type="text"] {
  background: 0 0;
  border: 0;
  color: #a6a6a6;
  margin: 0;
}
.search-form input.gsc-search-button {
  top: 50%;
  right: 16px;
  background: url(/_resources/images/sprite.png) no-repeat;
  height: 21px;
  margin: -10px 0 0;
  border: none;
} */


form.search-form label {
    display: none;
}

/* label {
    display: block;
    margin: 0;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.8;
    color: #0a0a0a;
} */

.search-form [type=search], .search-form [type=text] {
    background:0 0;
	background-color: #1a1a1a;
    border: 0;
    width: 100%;
    padding-right: 53px;
	padding-left: 10px;
    color: #a6a6a6;
    height: 50px;
/*     font-size: 15px; */
    margin: 0;
    vertical-align: top;
}

/* .search-form input.gsc-search-button {
  position: absolute;
  top: 50%;
  right: 16px;
  background: url(/_resources/images/sprite.png) no-repeat;
  width: 23px;
  height: 21px;
  margin: -10px 0 0;
  border: none;
} */