/* === START: header, main, section scaffolding, lists === */
.tr-dashboard-toggle {
  position: relative;
  top: -8px;
}

/*target is css3 for any target - in this case with an id - before adds a pseudo element that the style is applied to */
:target[id]:before {
  content: '';
  display: block;
  /*height: 8rem;*/
  margin: 10px 0 0;
}

.borderless .list-group-item {
  border: none;
}

/*--------------------------------------------------------------
# lists
--------------------------------------------------------------*/

ul.v-spaced li, ol.v-spaced li {
  margin-bottom:1.5rem;
}

ul.v-spaced li:first-child, ol.v-spaced li:first-child {
  margin-top:1.5rem;
}

ul.h-spaced li, ol.h-spaced li {
  padding-left:1.5rem;
}

.li-spaced li {
  margin-bottom: 1rem; /* nicely spaced, not too much */
}

.li-comfortable {
  line-height: 1.6; /* only for li content */
}

.feature-list {
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.9rem;
}

/*--------------------------------------------------------------
# Header  background: rgb(62,77,84); dk gray
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  background: rgb(255,255,255);
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgb(255,255,255);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img.main-logo {
  min-width: 225px;
  width:auto;
}

@media (max-width: 767.98px) {
  #header .logo img.main-logo {
    min-width: 175px;
    width:auto;
  }
}

#header .logo img.main-logo-sm {
  max-height: 42px;
  width:auto;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main.public-inside {
  margin-top: 8.75em;
}

.nav-offset {
  scroll-margin-top: 8.25em;
}

#collegeList .logo {
  width:125px;
  min-width:125px;
  height:125px;
  min-height:125px;
}

#collegeList .btn {
  display:inline-block;
  font-weight:500;
  text-align:center;
  vertical-align:middle;
  color:#ffffff;
  user-select:none;
  border:1px solid transparent;
  padding:.4375rem 1.3125rem;
  line-height:1.5;
  border-radius:.25rem;
  white-space: nowrap;
  cursor:pointer;
  font-size:.9375rem;
  -webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

#collegeList .btn-collegeList {
  height:38px;
  background-color:#09a1e4 !important;
  border-color:#09a1e4 !important;
  padding-left:40px;
  padding-right:40px;
}

.sticky-offset {
  top: 75px;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section.inside {
  padding:10px 0;
}

section.partners {
  padding:25px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #eef7fd;
} /* used on home page and in news section */

.section-title {
  text-align: center;
  padding-bottom: 1.50rem;
}

.section-title.collegeList {
  text-align: center;
  padding-bottom: .50rem;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #09a1e4;
}

.section-title h2.collegeList {
  margin-bottom: .50rem;
  margin-top:1.875rem;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #09a1e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/* === START: desktop nav, mobile nav, employer bg === */

/*--------------------------------------------------------------
# Navigation Menu  bg color set by header line 565+/-
--------------------------------------------------------------*/
/* Desktop Navigation */

.navbar-collapse .navbar-nav a.active {
  color: var(--bs-sage);
  background-color: white;
}

.navbar-collapse .navbar-nav a:hover {
  color: var(--bs-orangered);
}

ul.navbar-nav li.nav-item a.active {
  color:var(--bs-sage) !important;
}

.cursor-pointer { cursor: pointer; }

.navbar-light .navbar-nav .nav-link { color: rgb(33,37,41); }
.navbar-light .navbar-nav .nav-link .text-white {color:rgb(255,255,255) !important;}

/* see https://stackoverflow.com/questions/43233421/changing-dropdown-icon-on-bootstrap-4
   border:none!important; removes the default bootstrap 4 caret icon which is really just borders
   rest replaces it with the desired fa icon */
.dropdown-toggle::after {
  border: none!important;
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f107"!important; /* the desired FontAwesome icon */
  vertical-align: 0; /* to center vertically */
}

/* vertical nav inside sponsor section */
#vnav a {color:rgb(33,37,41)}
.vnav_wrapper {height: 100vh;}
.vnav_header {height: 2vh;}
.vnav_nav {height: 100%;}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #036A96;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #09a1e4;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 58, 90, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------- background images for specific containers ----*/
div.employer-full-image {
  background-image: url('https://d162s0cet9s8p8.cloudfront.net/site_images/employer/515660006_vert_alt.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* === START: back-to-top, footer === */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #09a1e4;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #09a1e4;
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
}

#footer .footer-mcag {
  padding: 50px 0;
  background: #ffffff;   /* was #eef7fd */
  text-align: center;
  font-size: 15px;
  color: #444444;
  margin-left: 15px;
  margin-right: 15px;
}


#footer .footer-mcag h3 {
  font-size: 1.65rem;
  font-weight: 400;        /* lighter weight so it reads as a label above the title */
  margin-bottom: 0.1rem;   /* pull h2 up tight beneath it */
  color: #555;             /* soften it so h2 stays dominant */
}
#footer .footer-mcag h2 {
  margin-top: 0;           /* remove any top margin pushing them apart */
}

#footer .footer-mcag h4 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}
/*
#footer .footer-mcag form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}*/
/*
#mcag .mcag-signup form {
  background:#ffb700;
  padding: 8px 20px;
}*/

#footer .footer-mcag form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
  border: 1.5px solid #c8e8f7;    /* move border to wrapper */
}

#footer .footer-mcag form:focus-within {
  border-color: #09a1e4;           /* highlight whole pill on focus */
}

#footer .footer-mcag form input[type="email"] {
  border: 0;                       /* back to no border on input */
  padding: 4px 8px;
  width: calc(100% - 120px);      /* bump up from 100px to give submit more room */
  outline: none;
  background: transparent;
}


#footer .footer-mcag form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #09a1e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-mcag form input[type="submit"]:hover {
  background: #09a1e4;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5e5e5e;
}

#footer .footer-top .title {
  font-size: 16px;
  font-weight: bold;
  color: #036A96;
  position: relative;
  padding-bottom: .25rem;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #09a1e4;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #09a1e4;
  color: #fff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  font-size:.90em;
  letter-spacing: 1px;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}

.college-state-list {
  z-index:1;
}

.prime-directory .section-title h2 {
  color: var(--bs-prime);
}

.prime-directory a {
  color: var(--bs-prime);
}

label.required:after, span.required:after {
  content: ' *';
  color: #dc3545;
}



/* === START: responsive helpers, logo row === */

/* keep hero image from shrinking vertically on very wide screens */
@media screen and (min-width: 1500px) and (max-width:2400px) {
  #hero {height:58vh;}
}

@media (max-width: 767.98px) {
  .table-custom th,
  .table-custom td {
      padding: .35em !important;
      font-size:85%;
  }
  .table-custom td.w-33 {
    width:30%!important;
  }
  .table-custom td.w-66 {
    width:70%!important;
  }
  h2.page_heading {
    font-size: 1.75rem;   /* override the clamp floor on small screens */
  }
  h5.page_subheading {
    font-size: 1.05rem;
  }
}

.logo-row .logo-item {
  transform: translateY(15px);
}

.logo-row .logo-item img {
    max-height: 50px;
}

.event_body span.collapse:not(.show) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.event_body span.collapse.collapsing {
    min-height: 80px !important;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.event_body > a.more.collapsed:after  {
    content: '+ Read More';
    font-size: 0.85rem;
}

.event_body > a.less:not(.collapsed):after {
    content: '- Read Less';
    font-size: 0.85rem;
}

a.event-readmore {
  text-decoration: none;
  /*color: #07ABA0;*/
  color: rgb(109,109,109);
  font-size:.7325em;
}

a.event-address  {
  text-decoration: none;
  font-size:.7825em;
}

a.modal-event-title, a.college-profile-name  {
  text-decoration: none;
  color:rgb(13, 10, 253);
}

.event-location {
  white-space: nowrap;
  overflow:hidden;
}

@media (min-width: 767.98px) {
  .min-vh-lg-75 {
    min-height: 75vh !important;
  }
}

.navbar-nav a {
  color: rgb(33,37,41);
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: normal;
}

.navbar-nav a.nav-link {
  border: 1px solid white;
  border-radius:6px;
  text-align: center;
  padding-top: .5rem !important;
}

/* this 2024-09-30 */
.navbar-nav a.nav-link:hover {
  border: 1px solid var(--bs-gray-200,inherit);
  color: var(--bs-royal)!important;
}


/* === END: nav-footer === */