@import url('https://fonts.googleapis.com/css2?family=Overpass&family=Roboto+Slab&display=swap');

#header {
  font-family: 'Overpass', sans-serif;
}

/* 
::-webkit-scrollbar {
  display: none;
}    
*/

/*
=============================================================================
  MOBILE STYLES
=============================================================================
*/
#header {
  background: #00306d;
  -webkit-box-shadow: 0 1px 1px lightgray;
          box-shadow: 0 1px 1px lightgray;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999999999999999 !important;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}

#brand {
  min-width: 320px;
}

/* hidden elements on mobile */
.second-nav-ul, #d-menu {
  display: none;
}

/* navigation styles
========================================*/
#m-nav {
  width: 100%;
  background: white;
  height: 30px;
}

#nav-btn {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  text-align: right;
  padding-right: 30px;
  position: relative;
  outline: 0
}
#nav-btn:focus {
    text-decoration: underline;
}

.menu-icon {
  display: block;
  width: 14px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 5px;
}

.nav-btn-text {
  font-size: 1.2em;
}

.lines {
  display: block;
  background: orange;
  height: 2px;
  width: 100%;
  position: absolute;
}

.line-1 {
  -webkit-transform: translate(0, 6px);
      -ms-transform: translate(0, 6px);
          transform: translate(0, 6px);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}

.line-2 {
  -webkit-transform: translate(0, 10px);
      -ms-transform: translate(0, 10px);
          transform: translate(0, 10px);
  opacity: 1;
}

.line-3 {
  -webkit-transform: translate(0, 14px);
      -ms-transform: translate(0, 14px);
          transform: translate(0, 14px);
}

/* closing mode  */
@-webkit-keyframes closeIconLine-1 {
  100% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
            transform: translate(0, 10px) rotate(45deg);
  }
}
@keyframes closeIconLine-1 {
  100% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
            transform: translate(0, 10px) rotate(45deg);
  }
}

@-webkit-keyframes closeIconLine-2 {
  100% {
    opacity: 0
  }
}

@keyframes closeIconLine-2 {
  100% {
    opacity: 0
  }
}

@-webkit-keyframes closeIconLine-3 {
  100% {
    -webkit-transform: translate(0, 10px) rotate(-45deg);
            transform: translate(0, 10px) rotate(-45deg);
  }
}

@keyframes closeIconLine-3 {
  100% {
    -webkit-transform: translate(0, 10px) rotate(-45deg);
            transform: translate(0, 10px) rotate(-45deg);
  }
}

@-webkit-keyframes openIconLine-1 {
  0% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
            transform: translate(0, 10px) rotate(45deg);
  }

  100% {
    -webkit-transform: translate(0, 6px);
            transform: translate(0, 6px);
  }
}

@keyframes openIconLine-1 {
  0% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
            transform: translate(0, 10px) rotate(45deg);
  }

  100% {
    -webkit-transform: translate(0, 6px);
            transform: translate(0, 6px);
  }
}

@-webkit-keyframes openIconLine-2 {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes openIconLine-2 {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes openIconLine-3 {
  0% {
    -webkit-transform: translate(0, 10px) rotate(-45deg);
            transform: translate(0, 10px) rotate(-45deg);
  }

  100% {
    -webkit-transform: translate(0, 14px);
            transform: translate(0, 14px);
  }
}

@keyframes openIconLine-3 {
  0% {
    -webkit-transform: translate(0, 10px) rotate(-45deg);
            transform: translate(0, 10px) rotate(-45deg);
  }

  100% {
    -webkit-transform: translate(0, 14px);
            transform: translate(0, 14px);
  }
}

/* menu styles */
#m-menu {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

.m-menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 110px);
  background: #1d3a83;
  color: #ffffff;
}

.m-menu-ul {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #00306d;
  padding: 20px 12px;
  overflow-y: scroll;
  margin: 0;
  /* min-height: 100vh */
}

.m-menu-lis {
  list-style: none;
  border-bottom: 1px solid #274f83;
}

.m-menu-links {
  color: white;
  text-decoration: none;
  line-height: 2.5;
  font-size: 1.2em;
  text-transform: capitalize;
  display: block;
  height: auto;
  color: white !important
}
.m-menu-links {
  color: #f5f5f5;
  text-decoration: none;
}

.m-menu-links:hover, .m-menu-links a:focus {
  color: #f5f5f5;
  text-decoration: none;
}

.m-menu-links:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.m-menu-links::after {
  content: '';
  width: 0;
  background: orange;
  height: 2px;
  display: block;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
}

.m-menu-links:hover::after,
.m-menu-links:focus::after {
  width: 100%;
}

/* inner level */
.m-menu-inner-ul {
  background: rgb(6, 46, 89);
  overflow: hidden;
  height: 0;
  -webkit-transition: .8s;
  -o-transition: .8s;
  transition: .8s
}

.m-menu-inner-lis {
  list-style: none;
  line-height: 1.8;
  padding: 0 10px;
  border-bottom: 1px solid rgba(39, 79, 131, 0.29);
}

.m-menu-inner-lis:first-child {
  padding-top: 10px;
}

.m-menu-inner-links {
  text-decoration: none;
  color: rgb(224, 224, 224);
  width: 100%;
  display: block;
}

.m-menu-inner-links:hover,
.m-menu-inner-links:focus {
  color: orange;
  outline: orange
}

.toPage {
  color: orange;
  padding: 5px 0;
}

.toPage:hover,
.toPage:focus,
.toPage:active {
  color: white;
  text-shadow: 0 0 10px white
}

/* second menu styles */
.m-second-nav-ul {
  -ms-flex-preferred-size: 80px;
      flex-basis: 80px;
  padding: 10px 2%;
  background: #ffffff;
  color: #1d3a83;
  margin: 0;
}

.m-second-nav-lis {
  list-style: none;
}

.m-second-nav-links {
  text-decoration: none;
  color: #274f83;
  display: block;
  width: 100%;
  text-align: center;
  font-size: .7em;
  padding: 10px 0;
}

.m-second-nav-links:hover {
  color: orange;
  background: rgb(246, 246, 246)
}

.fas {
  width: 100%;
  font-size: 1.5em;
  padding-bottom: 5px
}

.m-second-nav-lis:nth-child(5)>a>span {
  font-size: 1.5em
}

/* animation styles for #m-menu
====================================== */
.openMenu {
  -webkit-animation: openMenu 1s forwards;
          animation: openMenu 1s forwards;
}

@-webkit-keyframes openMenu {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes openMenu {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.closeMenu {
  -webkit-animation: closeMenu 1s forwards;
          animation: closeMenu 1s forwards
}

@-webkit-keyframes closeMenu {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes closeMenu {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
}





/* google search
============================== */

.desktop-search{
  display: none;
}
.search-engine{
  width: 100%;
  padding: 20px 10px;
}

.search-close-btn{
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: white;
}

/* googles classes */
.gsc-control-cse {
    background-color: none !important;
    color: inherit;
}
.gsc-control-cse {
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-bottom: 2px solid orange !important;
}
.gsc-input-box {
    border: none !important;
    background: none !important;
}
.search-engine input {
  background-color: transparent !important;
  font-size: 3em !important;
  color: white !important;
  text-transform: capitalize !important;
}
::-webkit-input-placeholder {
  color: rgb(240, 240, 240);
  background-color: inherit;
  font-size: 1.5rem !important;
}
:-ms-input-placeholder {
  color: rgb(240, 240, 240);
  background-color: inherit;
  font-size: 1.5rem !important;
}
::-ms-input-placeholder {
  color: rgb(240, 240, 240);
  background-color: inherit;
  font-size: 1.5rem !important;
}
::placeholder {
  color: rgb(240, 240, 240);
  background-color: inherit;
  font-size: 1.5rem !important;
}
.gsc-result-info{
  color: white !important;
    background-color: inherit;
}
.gsc-above-wrapper-area-container{
  border-top: 2px solid orange !important;
  padding: 10px 0
}


/* google search animation */
.mobile-search{
  padding: 20px 0;
  background: rgb(6, 34, 89);
  position: fixed;
  top: -100%;
  opacity: 0;
  z-index: 100;
  width: 100%;
  /* animation: openMobileSeach 1s forwards; */
}

@-webkit-keyframes openMobileSeach {
  0%{
    top: -100%;
    opacity: 0;
  }
  100%{
    top: 110px;
    opacity: 1;
  }
}

@keyframes openMobileSeach {
  0%{
    top: -100%;
    opacity: 0;
  }
  100%{
    top: 110px;
    opacity: 1;
  }
}
@-webkit-keyframes closeMobileSeach {
  0%{
    top: 110px;
    opacity: 1;
  }
  100%{
    top: -100%;
    opacity: 0;
  }
}
@keyframes closeMobileSeach {
  0%{
    top: 110px;
    opacity: 1;
  }
  100%{
    top: -100%;
    opacity: 0;
  }
}
/*
=============================================================================
  DESKTOP STYLES
=============================================================================
*/
@media screen and (min-width: 960px) {
    
/*    
::-webkit-scrollbar {
  display: block;
}    
*/

  .header-container {
    width: 960px;
  }

  #brand {
    width: 40%;
  }

  #second-nav {
    width: 60%;
  }

  .second-nav-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .second-nav-lis {
    list-style: none;
  }

  .second-nav-links {
    padding: 0 20px;
    position: relative;
    color: white;
    top: 5px;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: .7em;
    text-decoration: none !important;
  }

  .second-nav-links:hover,
  .second-nav-links:focus {
    color: orange;
    background-color: inherit;
  }

  .second-nav-links::before {
    content: '';
    width: 2px;
    height: 100%;
    background: white;
    display: block;
    position: absolute;
    left: 0px
  }

  .second-nav-lis:nth-child(1)>a::before {
    display: none;
  }

  .fas {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.3em;
  }

  /* navigation styles
  ========================================*/
  #nav-btn, #m-menu, .toPage {
    display: none !important;
  }

  #m-nav {
    width: 100%;
    background: white;
    height: auto;

  }

  #d-menu {
    display: block;
    height: 100%;
  }

  /* menu tabs  */
  .d-menu-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 50px !important;
    line-height: 50px;
    text-transform: capitalize;
    margin-bottom: 0 !important;
  }

  .d-menu-lis {
    list-style: none;
    height: 100%;
  }

  .d-menu-links {
    padding: 0 20px;
    text-decoration: none;
    color: #274f83;
    height: 100%;
    display: block;
    text-decoration: none !important;
    position: relative;
  }
  .d-menu-links::before{
    content: '>';
    position: absolute;
    right: 5px;
    transform: rotate(90deg) scale(1,1.5);
  }
  
  .d-menu-lis:nth-child(9) > a:nth-child(1)::before{
    display: none;
  }
  
  .d-menu-links::after {
    content: '';
    display: block;
    height: 4px;
    width: 0;
    background: orange;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 100 !important
  }
  .d-menu-links:active,
  .d-menu-links:visited{
    color: #274f83 !important;
  }

  .d-menu-links:hover::after,
  .d-menu-links:focus::after {
    width: 100%;
  }

  /* tabs desktop hover effects */
  .about:hover+.d-menu-inner-ul,
  .aboutUl:hover,
  .about:focus+.d-menu-inner-ul,
  .aboutUl:focus {
    height: 300px; /* 230px; */
    opacity: 1;
  }

  .give:hover+.d-menu-inner-ul,
  .giveUl:hover,
  .give:focus+.d-menu-inner-ul,
  .giveUl:focus {
    height: 240px; /* 230px; */
    opacity: 1;
  }
  
  .pay-for-college:hover+.d-menu-inner-ul,
  .pfcUl:hover,
  .pay-for-college:focus+.d-menu-inner-ul,
  .pfcUl:focus {
    height: 240px; /* 230px; */
    opacity: 1;
  }
  
  .admissions:hover+.d-menu-inner-ul,
  .admissionsUl:hover,
  .admissions:focus+.d-menu-inner-ul,
  .admissionsUl:focus,
  .cewd:hover+.d-menu-inner-ul,
  .cewdUl:hover,
  .cewd:focus+.d-menu-inner-ul,
  .cewdUl:focus {
    height: 300px; /* 260px; */
    opacity: 1;
  }

  .academics:hover+.d-menu-inner-ul,
  .academicsUl:hover,
  .academics:focus+.d-menu-inner-ul,
  .academicsUl:focus,
  .student-life:hover+.d-menu-inner-ul,
  .student-lifeUl:hover,
  .student-life:focus+.d-menu-inner-ul,
  .student-lifeUl:focus {
    height: 250px; /* 276px; */
    opacity: 1;
  }

  .login:hover+.d-menu-inner-ul,
  .loginUl:hover,
  .login:focus+.d-menu-inner-ul,
  .loginUl:focus {
    height: 370px;
    opacity: 1;
  }

  /* desktop inner items  */
  .d-menu-inner-ul {
    background: rgb(6, 34, 89);
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    height: 0;
    overflow: hidden;
    z-index: -1;
    opacity: 0
  }

  .d-menu-inner-lis {
    list-style: none;
    border-bottom: 1px solid #274f83;
    line-height: 3;
  }

  .d-menu-inner-links {
    color: white;
    text-decoration: none;
    text-transform: none;
    width: 100%;
    height: 100%;
    display: block;
    line-height: 1.5;
    padding: 10px 0;
    text-decoration: none !important;
  }

  .d-menu-inner-links:hover,
  .d-menu-inner-links:focus {
    color: orange;
    background-color: inherit;
  }

  .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 20px;
    text-transform: none;
  }
  
  .column-1, .column-2 {
      min-width: 500px;
  }
/*
  .column-1 {
    min-width: 350px;
  }

  .column-2 {
    min-width: 350px;
  }
*/
  .column-3 {
    width: 300px;
  }

  .column-3 img {
    width: 200px;
  }

  .column-img-info {
    line-height: 1.2;
    text-decoration: none;
    color: white;
    padding-top: 10px
  }
  .column-img-info:hover{
    color: orange !important;
    text-decoration: none !important
  }
  .column-img-details {
    color: white;
    line-height: 1.2;
    padding-top: 10px
  }

  /* google search
  ============================== */
  .mobile-search {
    display: none;
  }

  /* SEARCH ENGINE STYLES */
  .desktop-search {
    display: inherit;
    padding: 20px 0;
    background: rgb(6, 34, 89);
    position: absolute;
    top: 130px
  }

  .search-engine {
    width: 80%;
    margin: auto;
    padding: 20px;
  }

  /* google search animation */
  .desktop-search {
    width: 100%;
    padding: 20px 0;
    background: rgb(6, 34, 89);
    position: absolute;
    top: -100%;
    opacity: 0;
    z-index: 100;
    /* animation: openDesktopSeach 1s forwards; */
  }

  @-webkit-keyframes openDesktopSearch {
    0% {
      top: -100%;
      opacity: 0;
    }

    100% {
      top: 130px;
      opacity: 1;
    }
  }

  @keyframes openDesktopSearch {
    0% {
      top: -100%;
      opacity: 0;
    }

    100% {
      top: 130px;
      opacity: 1;
    }
  }

  @-webkit-keyframes closeDesktopSearch {
    0% {
      top: 130px;
      opacity: 1;
    }

    100% {
      top: -100%;
      opacity: 0;
    }
  }

  @keyframes closeDesktopSearch {
    0% {
      top: 130px;
      opacity: 1;
    }

    100% {
      top: -100%;
      opacity: 0;
    }
  }
}

.stu-svc-depts {
    margin: 1rem 0 2rem;
    font-weight: bold;
    font-size: 1.3rem;
    color: #575858;
}

@media only screen and (max-width: 1440px){
    .stu-svc-depts{
        font-size: 1.15rem;
    }
}

/*
=============================================================================
  COVID-19 STYLES
=============================================================================
*/

p.covid-19 {
	font-size: 1.1rem;
}
a.covid-19a {
	text-decoration:none;
	color: inherit;
	background-color: inherit;
}
/*
================================================================
  CHATBOT STYLES
================================================================
*/
.u8botwelcome .botsuggestion { background-color: #00306d; color: #ffffff;}
.u8botwelcome .input-container{background: #fff; color: #00306d;}
.u8botwelcome{overflow: hidden;}
#u8botchatMain.u8botchatMain .u8botwelcome .chat-input { width:74%; }
#u8botchatMain.u8botchatMain { z-index: 9999999999999999 !important}
.msgcontent { font-family: 'Overpass', sans-serif; !important;}